    /* ───────────── TOKENS ───────────── */
    :root {
      --white:        #ffffff;
      --primary:      #8cbf3a;
      --primary-dark: #69a040;
      --secondary:    #2B803E;
      --secondary-dk: #1d5c2b;
      --text:         #1a1a1a;
      --text-mid:     #3a3a3a;
      --text-muted:   #5a6a55;
      --bg-tint:      #f5f9ee;
      --bg-dark:      #0f2016;
      --border:       #d4e8bb;
      --radius:       10px;
      --radius-lg:    18px;
      --shadow-sm:    0 2px 12px rgba(43,128,62,.10);
      --shadow-md:    0 8px 32px rgba(43,128,62,.14);
      --transition:   .25s cubic-bezier(.4,0,.2,1);
      --font-display: 'DM Sans', sans-serif;
      --font-body:    'DM Sans', sans-serif;
    }

    /* ───────────── RESET & BASE ───────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.65;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ───────────── LAYOUT ───────────── */
    .shell {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 clamp(1.2rem, 4vw, 2.5rem);
    }
    section { padding: clamp(4rem, 7vw, 7rem) 0; }

    /* ───────────── TYPOGRAPHY ───────────── */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -.01em;
    }
    .section-label {
      display: inline-block;
      font-family: var(--font-display);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: .85rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.1rem);
      margin-bottom: 1.1rem;
    }
    .section-lead {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 60ch;
      line-height: 1.75;
    }

    /* ───────────── BUTTONS ───────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: .03em;
      padding: .8rem 2rem;
      border-radius: 6px;
      transition: var(--transition);
      cursor: pointer;
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(140,191,58,.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--secondary);
      border-color: var(--secondary);
    }
    .btn-outline:hover {
      background: var(--secondary);
      color: var(--white);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--white);
      color: var(--secondary);
      border-color: var(--white);
    }
    .btn-white:hover {
      background: var(--bg-tint);
      transform: translateY(-2px);
    }

    /* ───────────── CIRCUIT SVG PATTERN ───────────── */
    .circuit-bg {
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%238cbf3a' stroke-width='0.5' opacity='0.18'%3E%3Crect x='10' y='10' width='60' height='60' rx='2'/%3E%3Ccircle cx='10' cy='10' r='2.5'/%3E%3Ccircle cx='70' cy='10' r='2.5'/%3E%3Ccircle cx='10' cy='70' r='2.5'/%3E%3Ccircle cx='70' cy='70' r='2.5'/%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Cline x1='40' y1='10' x2='40' y2='36'/%3E%3Cline x1='40' y1='44' x2='40' y2='70'/%3E%3Cline x1='10' y1='40' x2='36' y2='40'/%3E%3Cline x1='44' y1='40' x2='70' y2='40'/%3E%3Ccircle cx='40' cy='10' r='2'/%3E%3Ccircle cx='40' cy='70' r='2'/%3E%3Ccircle cx='10' cy='40' r='2'/%3E%3Ccircle cx='70' cy='40' r='2'/%3E%3Cline x1='10' y1='10' x2='25' y2='10'/%3E%3Cline x1='10' y1='10' x2='10' y2='25'/%3E%3Cline x1='70' y1='10' x2='55' y2='10'/%3E%3Cline x1='70' y1='10' x2='70' y2='25'/%3E%3Cline x1='10' y1='70' x2='25' y2='70'/%3E%3Cline x1='10' y1='70' x2='10' y2='55'/%3E%3Cline x1='70' y1='70' x2='55' y2='70'/%3E%3Cline x1='70' y1='70' x2='70' y2='55'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 80px 80px;
    }

    /* ───────────── NAVIGATION ───────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(0,0,0,.06);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--text);
    }
    .nav-brand img {
      height: auto;
      width: 135px;
    }
    .nav-brand .brand-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      margin-left: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: .2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-display);
      font-size: 1.02rem;
      font-weight: 600;
      padding: .45rem .75rem;
      border-radius: 6px;
      color: var(--text-mid);
      transition: var(--transition);
    }
    .nav-links a:hover { background: var(--bg-tint); color: var(--secondary); }
    .nav-cta { margin-left: .6rem; }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: .4rem;
      margin-left: .6rem;
    }

    /* hamburger */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: .4rem;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
      transform-origin: center;
    }
    .nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 1140px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .nav-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0 1.5rem;
        align-items: flex-start;
        padding-left: clamp(1.2rem, 4vw, 2.5rem);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        z-index: 99;
      }
    }

    /* ───────────── HERO ───────────── */
    .hero {
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: var(--white);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%238cbf3a' stroke-width='0.5' opacity='0.14'%3E%3Crect x='10' y='10' width='60' height='60' rx='2'/%3E%3Ccircle cx='10' cy='10' r='2.5'/%3E%3Ccircle cx='70' cy='10' r='2.5'/%3E%3Ccircle cx='10' cy='70' r='2.5'/%3E%3Ccircle cx='70' cy='70' r='2.5'/%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Cline x1='40' y1='10' x2='40' y2='36'/%3E%3Cline x1='40' y1='44' x2='40' y2='70'/%3E%3Cline x1='10' y1='40' x2='36' y2='40'/%3E%3Cline x1='44' y1='40' x2='70' y2='40'/%3E%3Ccircle cx='40' cy='10' r='2'/%3E%3Ccircle cx='40' cy='70' r='2'/%3E%3Ccircle cx='10' cy='40' r='2'/%3E%3Ccircle cx='70' cy='40' r='2'/%3E%3Cline x1='10' y1='10' x2='25' y2='10'/%3E%3Cline x1='10' y1='10' x2='10' y2='25'/%3E%3Cline x1='70' y1='10' x2='55' y2='10'/%3E%3Cline x1='70' y1='10' x2='70' y2='25'/%3E%3Cline x1='10' y1='70' x2='25' y2='70'/%3E%3Cline x1='10' y1='70' x2='10' y2='55'/%3E%3Cline x1='70' y1='70' x2='55' y2='70'/%3E%3Cline x1='70' y1='70' x2='70' y2='55'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 80px 80px;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0; right: 0;
      height: 90px;
      background: linear-gradient(to bottom, transparent, var(--white));
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1000px;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-display);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--primary-dark);
      background: rgba(140,191,58,.12);
      border: 1px solid rgba(140,191,58,.3);
      padding: .35rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.8rem;
    }
    .hero-kicker::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--primary);
      border-radius: 50%;
    }
    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -.02em;
      color: var(--text);
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--secondary);
    }
    .hero-lead {
      font-size: 1.18rem;
      color: var(--text-muted);
      max-width: 52ch;
      line-height: 1.72;
      margin-bottom: 2.4rem;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3.5rem;
    }
    .trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: .7rem;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-mid);
    }
    .trust-icon {
      width: 38px; height: 38px;
      background: rgba(140,191,58,.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: .9rem;
      flex-shrink: 0;
    }

    /* ───────────── STATS STRIP ───────────── */
    .stats-strip {
      background: var(--secondary);
      padding: 3.5rem 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-item { color: var(--white); }
    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1;
      color: var(--primary);
      display: block;
      margin-bottom: .25rem;
    }
    .stat-label {
      font-size: .95rem;
      color: rgba(255,255,255,.7);
      font-weight: 400;
    }
    @media (max-width: 700px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
      .stat-number { font-size: clamp(1.8rem, 8vw, 2.5rem); }
      .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
      .nav-cta {padding: .4rem 1rem;}
      .team-card--primary {flex-direction: column;}
    }

    /* ───────────── O NÁS ───────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--bg-tint);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--text-muted);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
    }
    .about-img-placeholder i { font-size: 3rem; color: var(--border); }
    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background: var(--secondary);
      color: var(--white);
      border-radius: var(--radius);
      padding: 1.2rem 1.5rem;
      font-family: var(--font-display);
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .about-badge .num {
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1;
      color: var(--primary);
      display: block;
    }
    .about-badge .lbl { font-size: .85rem; opacity: .8; }
    .about-text .section-label { display: block; }
    .about-highlights {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: .85rem;
    }
    .about-highlight {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
      padding: .9rem 1.1rem;
      background: var(--bg-tint);
      border-radius: var(--radius);
    }
    .about-highlight i { color: var(--primary-dark); margin-top: .15rem; font-size: 1rem; }
    .about-highlight p { font-size: .95rem; color: var(--text-mid); line-height: 1.5; }
    @media (max-width: 840px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-badge { bottom: .5rem; left: .5rem; }
    }

    /* ───────────── JAK TO FUNGUJE ───────────── */
    .steps-section { background: var(--bg-tint); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 2.5rem;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      z-index: 0;
    }
    .step-item {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 .5rem;
    }
    .step-num-wrap {
      width: 60px;
      height: 60px;
      background: var(--white);
      border: 3px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--secondary);
      box-shadow: var(--shadow-sm);
    }
    .step-icon {
      width: 56px; height: 56px;
      background: var(--secondary);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      color: var(--white);
      font-size: 1.4rem;
      box-shadow: var(--shadow-sm);
    }
    .step-item h3 {
      font-size: 1.15rem;
      margin-bottom: .5rem;
      color: var(--text);
    }
    .step-item p { font-size: .92rem; color: var(--text-muted); }
    @media (max-width: 780px) {
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
    }
    @media (max-width: 460px) {
      .steps-grid { grid-template-columns: 1fr; }
    }

    /* ───────────── NAŠE ČINNOST ───────────── */
    .activity-header { margin-bottom: 3rem; }
    .activity-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .activity-card {
      padding: 2rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .activity-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .activity-card-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      box-shadow: 0 4px 16px rgba(140,191,58,.3);
    }
    .activity-card h3 {
      font-size: 1.35rem;
      margin-bottom: .7rem;
      color: var(--text);
    }
    .activity-card p { font-size: .97rem; color: var(--text-muted); line-height: 1.65; }
    @media (max-width: 680px) {
      .activity-cards { grid-template-columns: 1fr; }
    }

    /* Material tags */
    .material-section {
      background: var(--bg-tint);
      padding: 2.5rem 2.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
    }
    .material-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--secondary);
      margin-bottom: 1.2rem;
    }
    .material-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .38rem .85rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: .88rem;
      color: var(--text-mid);
      font-weight: 500;
      transition: var(--transition);
    }
    .tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .tag i { font-size: .75rem; color: var(--primary-dark); }
    .tag:hover i { color: var(--white); }

    /* ───────────── FOTOGALERIE ───────────── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--bg-tint);
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(27,90,45,.7) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }
    .gallery-item:hover .gallery-item-overlay { opacity: 1; }
    .gallery-item-overlay span {
      color: var(--white);
      font-size: .88rem;
      font-weight: 500;
    }
    .gallery-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      color: var(--text-muted);
      font-size: .9rem;
    }
    .gallery-placeholder i { font-size: 1.8rem; color: var(--border); }
    @media (max-width: 680px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ───────────── CENÍK ───────────── */
    .pricing-section { background: var(--bg-tint); }
    .pricing-section .section-label { color: var(--primary); }
    .pricing-section .section-title { color: var(--text); }
    .pricing-section .section-lead { color: var(--text-muted); }
    .pricing-header { margin-bottom: 2.5rem; }
    .pricing-table-wrap {
      overflow-x: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }
    table.pricing-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      font-size: .97rem;
    }
    .pricing-table thead tr {
      background: var(--bg-dark);
      color: var(--white);
    }
    .pricing-table th {
      padding: 1.1rem 1.4rem;
      text-align: left;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
    }
    .pricing-table td {
      padding: .95rem 1.4rem;
      color: var(--text-mid);
      border-bottom: 1px solid var(--border);
    }
    .pricing-table tbody tr:last-child td { border-bottom: none; }
    .pricing-table tbody tr:hover td { background: var(--bg-tint); }
    .price-badge {
      display: inline-block;
      padding: .25rem .7rem;
      border-radius: 100px;
      font-family: var(--font-display);
      font-size: .88rem;
      font-weight: 700;
    }
    .price-high { background: rgba(43,128,62,.12); color: var(--secondary); }
    .price-mid  { background: rgba(140,191,58,.15); color: var(--primary-dark); }
    .price-low  { background: rgba(90,106,85,.1); color: var(--text-muted); }
    .pricing-note {
      margin-top: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      background: white;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius);
      padding: 1rem 1.4rem;
      font-size: .92rem;
    }
    .pricing-note i { color: var(--primary); flex-shrink: 0; margin-top: .1rem; }

    /* ───────────── FAQ ───────────── */
    .faq-list { max-width: 820px; margin: 3rem auto 0; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: .75rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item.open { border-color: var(--primary); }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      gap: 1rem;
    }
    .faq-question:hover { background: var(--bg-tint); }
    .faq-chevron {
      font-size: .85rem;
      color: var(--primary-dark);
      transition: transform .3s ease;
      flex-shrink: 0;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .25s ease;
      padding: 0 1.5rem;
      font-size: .97rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 1.5rem 1.3rem;
    }

    /* ───────────── POPTÁVKA ───────────── */
    .form-section { background: var(--bg-tint); }
    .form-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 4rem;
      align-items: start;
    }
    .form-sidebar .section-lead { font-size: 1rem; }
    .form-info-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form-info-item {
      display: flex;
      gap: .85rem;
      align-items: flex-start;
    }
    .form-info-icon {
      width: 40px; height: 40px;
      background: var(--secondary);
      color: var(--white);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .form-info-item h4 {
      font-size: 1rem;
      margin-bottom: .15rem;
      color: var(--text);
    }
    .form-info-item p { font-size: .9rem; color: var(--text-muted); }
    .contact-form {
      background: var(--white);
      padding: 2.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group:last-child { margin-bottom: 0; }
    .form-group label {
      display: block;
      font-size: .88rem;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: .4rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: .97rem;
      color: var(--text);
      background: var(--white);
      transition: var(--transition);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(140,191,58,.15);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      font-size: .88rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }
    .form-consent input[type=checkbox] { flex-shrink: 0; margin-top: 3px; accent-color: var(--primary); }
    @media (max-width: 820px) {
      .form-layout { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ───────────── KONTAKT ───────────── */
    .contact-section { background: var(--bg-dark); }
    .contact-section .section-label { color: var(--primary); }
    .contact-section .section-title { color: var(--white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }
    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }
    .contact-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .contact-icon {
      width: 48px; height: 48px;
      background: rgba(140,191,58,.15);
      border: 1px solid rgba(140,191,58,.25);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-info-item h4 {
      font-size: .85rem;
      color: rgba(255,255,255,.5);
      font-weight: 500;
      font-family: var(--font-body);
      margin-bottom: .2rem;
    }
    .contact-info-item p, .contact-info-item a {
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 500;
    }
    .contact-info-item a:hover { color: var(--primary); }
    .opening-hours {
      margin-top: 2rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .hours-title {
      padding: .75rem 1.2rem;
      background: rgba(140,191,58,.15);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
    }
    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: .65rem 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,.06);
      font-size: .92rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: rgba(255,255,255,.6); }
    .hours-row .time { color: var(--white); font-weight: 500; }
    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
    }
    .map-wrap iframe {
      width: 100%;
      height: 360px;
      border: 0;
      filter: grayscale(30%);
    }
    .map-link {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .8rem 1.2rem;
      background: rgba(255,255,255,.06);
      color: var(--primary);
      font-size: .9rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .map-link:hover { background: rgba(140,191,58,.15); }
    @media (max-width: 820px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    /* ───────────── FOOTER ───────────── */
    .site-footer {
      background: var(--bg-dark);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 3.5rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: .8rem;
    }
    .footer-tagline {
      font-size: .92rem;
      color: rgba(255,255,255,.5);
      line-height: 1.6;
      max-width: 28ch;
    }
    .footer-socials {
      display: flex;
      gap: .7rem;
      margin-top: 1.5rem;
    }
    .footer-social {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      transition: var(--transition);
    }
    .footer-social:hover { background: var(--primary); color: var(--white); }
    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.1rem;
      letter-spacing: .02em;
    }
    .footer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }
    .footer-nav a {
      color: rgba(255,255,255,.55);
      font-size: .93rem;
      transition: var(--transition);
    }
    .footer-nav a:hover { color: var(--primary); }
    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: .7rem;
      color: rgba(255,255,255,.55);
      font-size: .92rem;
    }
    .footer-contact-item i { color: var(--primary); width: 14px; text-align: center; }
    .footer-contact-item a { color: rgba(255,255,255,.55); }
    .footer-contact-item a:hover { color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: .86rem;
      color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.35); }
    .footer-bottom a:hover { color: var(--primary); }
    @media (max-width: 760px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* ───────────── SCROLL ANIMATIONS ───────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .45s ease, transform .45s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: none;
    }

    /* ───────────── DIVIDER ───────────── */
    .section-divider {
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border: none;
    }

    /* ───────────── PRO KOHO PRACUJEME (KLIENTI) ───────────── */
    .clients-section { background: var(--bg-dark); }
    .clients-section .section-label { color: var(--primary); }
    .clients-section .section-title { color: var(--white); }
    .clients-section .section-lead { color: rgba(255,255,255,.62); margin-bottom: 3rem; }
    .clients-header { margin-bottom: 3rem; }
    .clients-sectors {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .clients-sector {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 1.6rem;
      transition: var(--transition);
    }
    .clients-sector:hover {
      background: rgba(255,255,255,.07);
      border-color: rgba(140,191,58,.35);
    }
    .clients-sector-header {
      display: flex;
      align-items: center;
      gap: .65rem;
      margin-bottom: 1.1rem;
      font-family: var(--font-display);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--primary);
    }
    .clients-sector-header i { font-size: .95rem; }
    .client-logos {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .client-logo-item {
      display: inline-block;
      padding: .32rem .85rem;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      font-family: var(--font-display);
      font-size: .97rem;
      font-weight: 700;
      color: rgba(255,255,255,.8);
      letter-spacing: .01em;
      transition: var(--transition);
    }
    .client-logo-item:hover {
      background: rgba(140,191,58,.18);
      border-color: rgba(140,191,58,.5);
      color: var(--white);
    }
    .clients-note {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      background: rgba(140,191,58,.08);
      border: 1px solid rgba(140,191,58,.2);
      border-radius: var(--radius);
      padding: 1rem 1.4rem;
      color: rgba(255,255,255,.6);
      font-size: .92rem;
      line-height: 1.65;
    }
    .clients-note i { color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
    @media (max-width: 860px) { .clients-sectors { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .clients-sectors { grid-template-columns: 1fr; } }

    /* ───────────── KOMPLEXNÍ LIKVIDACE (DISPOSAL FOCUS) ───────────── */
    .disposal-section { background: var(--bg-tint); }
    .disposal-intro { max-width: 680px; margin-bottom: 3.5rem; }
    .disposal-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .disposal-feature {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.8rem;
      transition: var(--transition);
    }
    .disposal-feature:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .disposal-feature-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dk));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      box-shadow: 0 4px 16px rgba(43,128,62,.22);
    }
    .disposal-feature h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--text); }
    .disposal-feature p { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }
    @media (max-width: 860px) { .disposal-features { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .disposal-features { grid-template-columns: 1fr; } }

    /* ───────────── NÁŠ TÝM ───────────── */
    .team-people {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 3rem;
    }
    /* ── featured (první) kontakt ── */
    .team-card--primary {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      padding: 1.8rem 2rem;
      background: rgba(140,191,58,.08);
      border: 1px solid rgba(140,191,58,.32);
      border-left: 4px solid var(--primary);
      border-radius: var(--radius-lg);
      transition: var(--transition);
    }
    .team-card--primary:hover {
      background: rgba(140,191,58,.13);
      border-color: rgba(140,191,58,.55);
      border-left-color: var(--primary);
    }
    .team-card--primary .team-photo {
      width: 180px;
      height: 180px;
      border-radius: 16px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .team-card--primary .team-photo-placeholder i { font-size: 3rem; }
    .team-card--primary .team-info { gap: .3rem; }
    .team-card--primary .team-info h3 {
      font-size: 1.5rem;
      letter-spacing: -.02em;
    }
    .team-card--primary .team-role { font-size: .95rem; }
    .team-card--primary .team-phone {
      font-size: 1.15rem;
      margin-top: .5rem;
    }

    /* ── řada menších karet ── */
    .team-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .team-card {
      display: flex;
      align-items: center;
      gap: .9rem;
      padding: 1rem 1.2rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      transition: var(--transition);
      flex: 1 1 220px;
    }
    .team-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(140,191,58,.35);
    }
    .team-photo {
      width: 68px;
      height: 68px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; }
    .team-photo-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .team-photo-placeholder i { font-size: 1.9rem; }
    .team-card-1 .team-photo-placeholder { background: linear-gradient(160deg, #2b5c32, #1a3a22); }
    .team-card-1 .team-photo-placeholder i { color: #8cbf3a; }
    .team-card-2 .team-photo-placeholder { background: linear-gradient(160deg, #1e3a5a, #102040); }
    .team-card-2 .team-photo-placeholder i { color: #6aabdc; }
    .team-card-3 .team-photo-placeholder { background: linear-gradient(160deg, #4a3220, #2e1e10); }
    .team-card-3 .team-photo-placeholder i { color: #d4a060; }
    .team-card-4 .team-photo-placeholder { background: linear-gradient(160deg, #3a2450, #221430); }
    .team-card-4 .team-photo-placeholder i { color: #b080e0; }
    .team-info { display: flex; flex-direction: column; gap: .1rem; }
    .team-info h3 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
      margin: 0;
      line-height: 1.2;
    }
    .team-role { font-size: .8rem; color: rgba(255,255,255,.5); }
    .team-phone {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .92rem;
      font-weight: 600;
      color: var(--primary);
      margin-top: .3rem;
      transition: var(--transition);
      white-space: nowrap;
    }
    .team-phone:hover { color: #aad55a; }
    .team-phone i { font-size: .72rem; }

/* ───────────── ACTIVE NAV ───────────── */
  .nav-links a.active { color: var(--secondary); background: var(--bg-tint); }
