    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green:      #1a7a4a;
      --green-dark: #0d4a2a;
      --green-lt:   #f0faf5;
      --accent:     #4dd98a;
      --text:       #111827;
      --text-2:     #4b5563;
      --text-3:     #9ca3af;
      --white:      #fff;
      --gray-50:    #f9fafb;
      --gray-100:   #f3f4f6;
      --gray-200:   #e5e7eb;
      --nav-h:      72px;
      --font:       Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── TOPBAR ── */
    .topbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 9px 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .topbar__left { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #444; white-space: nowrap; }
    .topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
    .topbar__center { font-size: 12.5px; color: #555; display: flex; align-items: center; gap: 6px; }
    .topbar__center svg { width: 11px; height: 11px; fill: var(--green); flex-shrink: 0; }
    .topbar__tel { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: #222; padding: 5px 14px; border: 1px solid #ddd; border-radius: 5px; text-decoration: none; white-space: nowrap; transition: border-color 0.15s, color 0.15s; }
    .topbar__tel svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
    .topbar__tel:hover { border-color: var(--green); color: var(--green); }
    @media (max-width: 768px) { .topbar { display: none; } }

    /* ── NAV ── */
    .nav { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.09); position: fixed; top: 0; left: 0; right: 0; z-index: 200; box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-h); }
    .nav__inner { width: 100%; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo img { max-height: 25px; height: auto; width: auto; display: block; }
    .nav__links { display: flex; align-items: center; list-style: none; flex: 1; justify-content: flex-start; gap: 10px; margin-left: 24px; }
    .nav__links a { font-size: 14.5px; font-weight: 500; color: #444; text-decoration: none; padding: 8px 13px; border-radius: 6px; transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav__links li.nav__active a { color: var(--green); font-weight: 700; border-bottom: 2px solid var(--green); border-radius: 0; padding-bottom: 6px; }
    .nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .nav__tel { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #111; text-decoration: none; padding: 8px 16px; border: 1.5px solid #ddd; border-radius: 6px; transition: border-color 0.18s, background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__tel svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }
    .nav__tel:hover { border-color: var(--green); background: var(--green-lt); color: var(--green); }
    .btn-book { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; min-height: 44px; white-space: nowrap; transition: background 0.18s; }
    .btn-book:hover { background: var(--green-dark); }
    .nav__item-drop { position: static; list-style: none; }
    .nav__drop-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: #444; padding: 8px 13px; border-radius: 6px; background: none; border: none; cursor: pointer; font-family: var(--font); transition: background 0.18s, color 0.18s; white-space: nowrap; }
    .nav__drop-toggle svg { width: 14px; height: 14px; transition: transform 0.22s; flex-shrink: 0; stroke: currentColor; fill: none; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle { background: #f3f3f3; color: #111; }
    .nav__mega { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-top: 2px solid var(--green); box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 190; padding: 28px 40px 32px; }
    .nav__item-drop.open .nav__mega { display: block; }
    .nav__mega-inner { padding: 0 40px; }
    .nav__mega-heading { font-size: 10.5px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
    .nav__mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
    .nav__mega a.nav__mega-link { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: #333 !important; text-decoration: none; padding: 11px 14px; border-radius: 6px; white-space: nowrap; background: transparent; transition: background 0.15s, color 0.15s; }
    .nav__mega a.nav__mega-link:hover { background: #f0faf5 !important; color: var(--green) !important; }
    .nav__mega a.nav__mega-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.40; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav__mega a.nav__mega-link:hover svg { opacity: 1; }
    .nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
    .nav__burger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.28s, opacity 0.28s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); z-index: 199; padding: 8px 24px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
    .nav__drawer.open { display: block; }
    .nav__drawer ul { list-style: none; }
    .nav__drawer ul li a { display: block; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
    .nav__drawer ul li a:hover { color: var(--green); }
    .drawer-tel { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--green); padding: 16px 0 4px; text-decoration: none; }
    .drawer-repairs-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font); text-align: left; }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; list-style: none; padding-left: 12px; }
    .drawer-repairs-sub.open { display: block; }
    .drawer-repairs-sub li a { font-size: 14px; font-weight: 400; color: #555; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    @media (max-width: 1024px) { .nav__tel { display: none; } }
    @media (max-width: 1100px) { .nav__links, .btn-book { display: none; } .nav__burger { display: flex; } .nav__mega { display: none !important; } .nav__logo img { height: 13px; } .nav__inner { padding: 0 32px 0 16px; } }

    /* ── HERO ── */
    .hero { background: #fff; overflow: hidden; border-bottom: 1px solid var(--gray-200); }
    .hero__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; align-items: stretch; }
    .hero__content { padding: 60px 52px 60px 40px; display: flex; flex-direction: column; justify-content: center; }
    .hero__eyebrow { display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); background: var(--green-lt); border: 1px solid rgba(26,122,74,0.18); padding: 5px 12px; border-radius: 4px; margin-bottom: 18px; }
    .hero__h1 { font-size: clamp(28px, 3.4vw, 50px); font-weight: 900; color: var(--text); line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 18px; }
    .hero__h1 em { font-style: normal; color: var(--green); }
    .hero__desc { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; max-width: 460px; }
    .hero__certs { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
    .hero__cert { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .hero__cert-badge { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 8px 14px; display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 90px; }
    .hero__cert-badge .cert-logo { font-size: 13px; font-weight: 900; color: var(--green); letter-spacing: -0.3px; }
    .hero__cert-badge .cert-logo span { color: #1e40af; }
    .hero__cert-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); }
    @media (max-width: 480px) {
      .hero__certs { flex-wrap: nowrap; gap: 8px; }
      .hero__cert-badge { padding: 6px 4px; min-width: 0; width: 100%; }
      .hero__cert-badge .cert-logo { font-size: 11px; white-space: nowrap; }
      .hero__cert-label { font-size: 9px; }
    }

    /* ── ENGINEERS PAGE HERO (full-bleed photo background, text overlaid) ── */
    .eng-hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
    .eng-hero__bg { position: absolute; inset: 0; z-index: 0; }
    .eng-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; filter: brightness(0.7); }
    .eng-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(10,14,12,0.72) 0%, rgba(10,14,12,0.48) 45%, rgba(10,14,12,0.20) 80%); }
    .eng-hero__content { position: relative; z-index: 2; max-width: 700px; padding: 64px 40px; }
    .eng-hero__h1 { font-size: clamp(28px, 3.4vw, 50px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 18px; }
    .eng-hero__h1 em { font-style: normal; color: var(--accent); }
    .eng-hero__desc { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 480px; }
    @media (max-width: 700px) { .eng-hero { min-height: 420px; } .eng-hero__content { padding: 48px 24px; } .eng-hero__overlay { background: linear-gradient(to bottom, rgba(10,14,12,0.45) 0%, rgba(10,14,12,0.78) 75%); } }
    .hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .btn-hero-green { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 14.5px; font-weight: 700; padding: 13px 24px; border-radius: 8px; transition: background 0.18s; white-space: nowrap; }
    .btn-hero-green:hover { background: var(--green-dark); }
    .btn-hero-tel { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); font-size: 14.5px; font-weight: 700; padding: 12px 24px; border-radius: 8px; border: 2px solid var(--gray-200); transition: border-color 0.18s, color 0.18s; white-space: nowrap; }
    .btn-hero-tel svg { width: 15px; height: 15px; stroke: currentColor; fill: none; flex-shrink: 0; }
    .btn-hero-tel:hover { border-color: var(--green); color: var(--green); }
    .hero__img-side { position: relative; overflow: hidden; background: #fff; }
    .hero__img-side img, .hero__img-side video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center center; }
    .hero__img-side::after { content: ''; position: absolute; inset: 0; right: auto; width: 6%; background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%); z-index: 1; pointer-events: none; }
    .hero__guarantee { position: absolute; bottom: 28px; right: 24px; width: 108px; height: 108px; background: var(--green); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
    .hero__guarantee strong { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
    .hero__guarantee span { font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.5; }
    .hero__video-toggle {
      position: absolute; bottom: 20px; left: 20px; z-index: 2;
      width: 40px; height: 40px; border-radius: 50%; border: none;
      background: rgba(13,31,20,0.55); color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
    }
    .hero__video-toggle:hover { background: rgba(13,31,20,0.78); }
    .hero__video-toggle svg { width: 16px; height: 16px; fill: currentColor; }
    @media (max-width: 900px) {
      .hero__inner { grid-template-columns: 1fr; min-height: auto; }
      .hero__content { padding: 24px 24px 12px; }
      .hero__img-side { min-height: 300px; }
      .hero__img-side img, .hero__img-side video { position: relative; height: 300px; }
      .hero__img-side::after { display: none; }
    }
    @media (max-width: 480px) {
      .hero__ctas { flex-wrap: nowrap; gap: 8px; }
      .btn-hero-green, .btn-hero-tel { padding: 11px 14px; font-size: 13px; }
    }

    /* ── SHARED SECTION HEAD (mission title, values title) ── */
    .mission__title { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 18px; text-align: center; }
    .mission__title em { font-style: normal; color: var(--green); }
    .mission__text { font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 760px; margin: 0 auto; text-align: center; }
    .values__head { text-align: center; margin-bottom: 40px; }
    .values__title { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 10px; }
    .values__title em { font-style: normal; color: var(--green); }
    .values__title-line { width: 40px; height: 3px; background: var(--green); border-radius: 2px; margin: 0 auto; }

    /* ── ABOUT INTRO (paragraphs under hero) ── */
    .about-intro { background: #fff; padding: 48px 24px 0; }
    .about-intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
    .about-intro__inner p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
    .about-intro__inner p:last-child { margin-bottom: 0; }

    /* ── WHO WE ARE & WHAT WE DO ── */
    .who-we-are { background: #fff; padding: 64px 24px 84px; }
    .who-we-are__inner { max-width: 1100px; margin: 0 auto; }
    .who-we-are__head { margin-bottom: 36px; }
    .who-we-are__lead { font-size: 14.5px; font-weight: 700; color: var(--text); text-align: center; margin: 0 0 20px; }
    .video-card { max-width: 760px; margin: 0 auto 40px; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 44px rgba(15,30,25,0.14); border: 1px solid var(--gray-200); background: #000; }
    .video-card video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; background: #000; }
    .mission__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .who-we-are__grid { grid-template-columns: repeat(4, 1fr); }
    .mission__card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 24px; display: flex; align-items: flex-start; gap: 18px; transition: box-shadow 0.2s, border-color 0.2s; }
    .mission__card:hover { box-shadow: 0 8px 28px rgba(15,30,25,0.09); border-color: rgba(26,122,74,0.25); }
    .mission__card-icon { width: 40px; height: 40px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .mission__card-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; }
    .mission__card-body h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
    .mission__card-body p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
    @media (max-width: 1024px) { .who-we-are__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .mission__cards { grid-template-columns: 1fr; gap: 14px; } }
    @media (max-width: 480px) { .who-we-are { padding: 48px 16px 56px; } }

    /* ── EXPERT ENGINEERS ── */
    .engineers-about { background: var(--gray-50); padding: 84px 24px; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .engineers-about__inner { max-width: 1000px; margin: 0 auto; }
    .engineers-about__head { margin-bottom: 32px; }
    .cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 44px; }
    .cert-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px 22px; display: flex; align-items: center; gap: 14px; transition: box-shadow 0.2s, border-color 0.2s; }
    .cert-item:hover { box-shadow: 0 8px 24px rgba(15,30,25,0.08); border-color: rgba(26,122,74,0.25); }
    .cert-item__icon { width: 36px; height: 36px; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.20); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .cert-item__icon svg { width: 17px; height: 17px; stroke: var(--green); fill: none; stroke-width: 2.2; }
    .cert-item span { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
    .mfr-approved { text-align: center; }
    .mfr-approved > p { font-size: 14.5px; color: var(--text-2); line-height: 1.7; max-width: 720px; margin: 0 auto 24px; }
    .mfr-approved__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; }
    @media (max-width: 640px) { .cert-grid { grid-template-columns: 1fr; } .engineers-about { padding: 56px 16px; } }

    /* ── OUR COMMITMENT ── */
    .commitment-about { background: #133d22; padding: 72px 24px; }
    .commitment-about__inner { max-width: 700px; margin: 0 auto; text-align: center; }
    .commitment-about__inner h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 900; color: #fff; letter-spacing: -0.6px; margin-bottom: 16px; }
    .commitment-about__inner > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 10px; }
    .commitment-about__tagline { font-size: 18px; font-weight: 800; color: var(--accent); margin: 18px 0; line-height: 1.5; }
    @media (max-width: 480px) { .commitment-about { padding: 52px 20px; } }

    /* ── WHY CHOOSE ── */
    .why-choose-about { background: #fff; padding: 84px 24px; }
    .why-choose-about__inner { max-width: 900px; margin: 0 auto; }
    .why-choose-about__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
    .why-choose-about__item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-2); font-weight: 500; line-height: 1.5; }
    .why-choose-about__icon { width: 24px; height: 24px; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.20); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .why-choose-about__icon svg { width: 12px; height: 12px; stroke: var(--green); fill: none; stroke-width: 2.5; }
    @media (max-width: 700px) { .why-choose-about__grid { grid-template-columns: 1fr; } }
    @media (max-width: 480px) { .why-choose-about { padding: 56px 16px; } }

    /* ── CLOSING STATEMENT ── */
    .about-closing { background: var(--gray-50); padding: 64px 24px; border-top: 1px solid var(--gray-200); }
    .about-closing__inner { max-width: 760px; margin: 0 auto; text-align: center; }
    .about-closing__inner h2 { font-size: clamp(21px, 2.4vw, 30px); font-weight: 900; color: var(--text); letter-spacing: -0.5px; margin-bottom: 14px; }
    .about-closing__inner p { font-size: 15px; color: var(--text-2); line-height: 1.75; }
    @media (max-width: 480px) { .about-closing { padding: 48px 16px; } }

    /* ── BRANDS ── */
    .brands { background: var(--gray-50); padding: 64px 24px; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .brands__inner { max-width: 1100px; margin: 0 auto; }
    .brands__head { text-align: center; margin-bottom: 40px; }
    .brands__title { font-size: clamp(22px, 2.5vw, 34px); font-weight: 900; color: var(--text); letter-spacing: -0.6px; margin-bottom: 10px; }
    .brands__title em { font-style: normal; color: var(--green); }
    .brands__sub { font-size: 14.5px; color: var(--text-2); max-width: 600px; margin: 0 auto; }
    .brands__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; }
    .brand-item { padding: 10px 22px; border-right: 1px solid var(--gray-200); display: flex; align-items: center; }
    .brand-item:last-child { border-right: none; }
    .brand-name { font-size: clamp(13px, 1.5vw, 18px); font-weight: 900; color: #2d2d2d; letter-spacing: -0.3px; white-space: nowrap; filter: grayscale(100%) opacity(0.5); transition: filter 0.25s; }
    .brand-item:hover .brand-name { filter: grayscale(0%) opacity(1); }
    .brand-name--more { color: var(--green); font-weight: 700; text-decoration: none; filter: none; }
    .brand-item:hover .brand-name--more { filter: none; text-decoration: underline; }
    .brand-logo-img { height: 26px; width: auto; max-width: 110px; object-fit: contain; }
    /* Blomberg's local file and Whirlpool's Wikimedia SVG both have far more
       transparent padding baked into the source than the other logos, so at
       a shared height they render visibly smaller — scale them up to match. */
    .brand-logo-img[alt="Blomberg"] { height: 46px; }
    .brand-logo-img[alt="Whirlpool"] { height: 40px; }
    @media (max-width: 600px) { .brand-item { padding: 7px 12px; } .brand-item:nth-child(9n) { border-right: none; } }

    /* ── REVIEWS ── */
    .reviews { background: #fff; padding: 84px 24px; border-top: 1px solid var(--gray-200); }
    .reviews__inner { max-width: 1200px; margin: 0 auto; }
    .reviews__head { text-align: center; margin-bottom: 48px; }
    .reviews__title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 8px; }
    .reviews__title em { font-style: normal; color: var(--green); }
    .reviews__title-line { width: 40px; height: 3px; background: var(--green); border-radius: 2px; margin: 0 auto; }
    .reviews__carousel { position: relative; display: flex; align-items: center; gap: 16px; }
    .reviews__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.18s, border-color 0.18s; }
    .reviews__arrow svg { width: 18px; height: 18px; stroke: var(--text-2); fill: none; stroke-width: 2; }
    .reviews__arrow:hover { background: var(--green-lt); border-color: var(--green); }
    .reviews__arrow:hover svg { stroke: var(--green); }
    .reviews__arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
    .reviews__outer { overflow: hidden; flex: 1; }
    .reviews__track { display: flex; gap: 20px; transition: transform 0.42s cubic-bezier(0.25,0.1,0.25,1); }
    .review-card { flex-shrink: 0; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
    .review-card__top { display: flex; align-items: center; gap: 12px; }
    .review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0; }
    .review-card__meta { flex: 1; min-width: 0; }
    .review-card__name { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .review-card__loc { font-size: 12px; color: var(--text-3); }
    .review-card__stars { display: flex; gap: 2px; }
    .review-card__stars svg { width: 13px; height: 13px; fill: #f59e0b; }
    .review-card__text { font-size: 13.5px; color: var(--text-2); line-height: 1.65; flex: 1; }
    .review-card__verified { display: flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; color: var(--green); }
    .review-card__verified svg { width: 13px; height: 13px; stroke: var(--green); fill: none; }
    @media (max-width: 480px) { .reviews { padding: 56px 16px; } }

    /* ── FAQ ── */
    .faq-about { background: var(--gray-50); padding: 84px 24px; border-top: 1px solid var(--gray-200); }
    .faq-about__inner { max-width: 1100px; margin: 0 auto; }
    .faq-about__head { text-align: center; margin-bottom: 44px; }
    .faq-about__title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 6px; }
    .faq-about__title em { font-style: normal; color: var(--green); }
    .faq-about__title-line { width: 40px; height: 3px; background: var(--green); border-radius: 2px; margin: 0 auto; }
    .faq-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
    .faq__item { border-bottom: 1px solid var(--gray-200); }
    .faq__col .faq__item:first-child, .faq-about__col .faq__item:first-child { border-top: 1px solid var(--gray-200); }
    .faq__q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 0; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); text-align: left; gap: 16px; font-family: var(--font); transition: color 0.15s; }
    .faq__q:hover { color: var(--green); }
    .faq__icon { width: 26px; height: 26px; border: 1.5px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.18s, border-color 0.18s; }
    .faq__icon svg { width: 11px; height: 11px; stroke: var(--text-2); fill: none; stroke-width: 2.5; transition: transform 0.25s, stroke 0.18s; }
    .faq__item.open .faq__icon { background: var(--green); border-color: var(--green); }
    .faq__item.open .faq__icon svg { stroke: #fff; transform: rotate(45deg); }
    .faq__a { display: none; padding: 0 0 18px; font-size: 15px; color: var(--text-2); line-height: 1.7; }
    .faq__item.open .faq__a { display: block; }
    @media (max-width: 768px) { .faq-about__grid { grid-template-columns: 1fr; gap: 0; } .faq-about__col:last-child .faq__item:first-child { border-top: none; } }
    @media (max-width: 480px) { .faq-about { padding: 56px 16px; } }

    /* ── CTA BANNER ── */
    .cta-about { background: #0d3321; overflow: hidden; }
    .cta-about__inner { max-width: 1200px; margin: 0 auto; padding: 52px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; flex-wrap: wrap; }
    .cta-about__leaves { position: absolute; left: -20px; bottom: -20px; width: 180px; height: 180px; opacity: 0.10; pointer-events: none; }
    .cta-about__left { position: relative; z-index: 1; }
    .cta-about__left h2 { font-size: clamp(20px, 2.6vw, 34px); font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 6px; }
    .cta-about__left p { font-size: 14.5px; color: rgba(255,255,255,0.60); }
    .cta-about__btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-cta-white { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: #fff; font-size: 14.5px; font-weight: 700; padding: 14px 26px; border-radius: 50px; transition: background 0.18s; text-decoration: none; white-space: nowrap; }
    .btn-cta-white svg { width: 15px; height: 15px; stroke: #fff; fill: none; flex-shrink: 0; }
    .btn-cta-white:hover { background: #155c35; }
    .btn-cta-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255,255,255,0.06); color: #fff; font-size: 14px; font-weight: 700; padding: 13px 26px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.30); transition: border-color 0.18s, background 0.18s; text-decoration: none; white-space: nowrap; }
    .btn-cta-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
    /* Trust strip below CTA */
    .cta-about__strip { border-top: 1px solid rgba(255,255,255,0.08); }
    .cta-about__strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; flex-wrap: wrap; }
    .cta-about__strip-item { display: flex; align-items: center; gap: 7px; padding: 16px 28px 16px 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,0.08); }
    .cta-about__strip-item:last-child { border-right: none; }
    .cta-about__strip-item svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; flex-shrink: 0; }
    .cta-about__strip-item span { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.60); white-space: nowrap; }
    @media (max-width: 768px) { .cta-about__inner { flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 24px; } .cta-about__strip-inner { padding: 0 24px; } }

    /* ── FOOTER ── */
    .footer { background: #0d1f14; padding: 56px 24px 28px; }
    .footer__inner { max-width: 1200px; margin: 0 auto; }
    .footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer__brand-logo { margin-bottom: 12px; }
    .footer__brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(0.75); }
    .footer__desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
    .footer__socials { display: flex; gap: 10px; }
    .footer__social { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.50); text-decoration: none; transition: background 0.15s, color 0.15s; }
    .footer__social svg { width: 14px; height: 14px; }
    .footer__social:hover { background: rgba(77,217,138,0.15); color: #4dd98a; }
    .footer__col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
    .footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col-links a { font-size: 14px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
    .footer__col-links a:hover { color: #fff; }
    .footer__col-links a.active { color: #4dd98a; }
    .footer__contact-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; }
    .footer__contact-row svg { width: 14px; height: 14px; stroke: #4dd98a; fill: none; flex-shrink: 0; margin-top: 3px; }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer__copy { font-size: 12.5px; color: rgba(255,255,255,0.25); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: 12.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
    .footer__legal a:hover { color: rgba(255,255,255,0.70); }
    @media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
    @media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; gap: 20px; } .footer__bottom { flex-direction: column; align-items: flex-start; } .footer__col-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; } }
    /* Reviews carousel — touch scroll on mobile (arrows always visible) */
    @media (max-width: 768px) {
      .reviews__carousel { gap: 8px; }
      .reviews__arrow { width: 32px; height: 32px; flex-shrink: 0; }
      .reviews__arrow svg { width: 14px; height: 14px; }
      .reviews__outer { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
      .reviews__outer::-webkit-scrollbar { display: none; }
      .reviews__track { flex-wrap: nowrap; }
      .review-card { scroll-snap-align: start; flex-shrink: 0; width: 100%; min-width: 0; }
    }
    /* CTA strip — 2×2 grid on mobile */
    @media (max-width: 560px) {
      .cta-about__strip-inner { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
      .cta-about__strip-item { padding: 14px 16px; margin-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: center; }
      .cta-about__strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
      .cta-about__strip-item:nth-last-child(-n+2) { border-bottom: none; }
      .cta-about__strip-item span { white-space: normal; font-size: 12px; }
    }
