    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:      #1a7a4a;
      --green-dark: #125c37;
      --green-lt:   #f0faf5;
      --white:      #ffffff;
      --nav-h:      72px;
      --font-d:     Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
      --font-b:     Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); -webkit-font-smoothing: antialiased; }
    a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

    /* ═══ NAV ═══ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 200; height: var(--nav-h);
      background: transparent; border-bottom: 1px solid rgba(255,255,255,0.20);
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    .nav.solid {
      background: #fff; border-bottom-color: rgba(0,0,0,0.09);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .nav__inner {
      width: 100%; padding: 0 40px; height: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
  .nav__logo {
  gap: 6px;
  
  
}

.nav__logo-mark {
  width: 26px;
  height: 26px;
}

.nav__logo-mark svg {
  width: 13px;
  height: 13px;
}

.nav__logo-name {
  font-size: 16px;
}
.nav__logo-img {
  max-height: 25px;
  width: auto;
  transition: filter .3s ease;
}
/* Initial state - white logo */
.nav:not(.solid) .nav__logo-img {
  filter: brightness(0) invert(1);
}

/* After scroll - original logo */
.nav.solid .nav__logo-img {
  filter: none;
}
    .nav__logo-name em { font-style: normal; color: #4dd98a; transition: color 0.35s; }
    .nav.solid .nav__logo-name { color: #111; }
    .nav.solid .nav__logo-name em { color: var(--green); }
    .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: rgba(255,255,255,0.90); text-decoration: none;
      padding: 8px 13px; border-radius: 6px;
      transition: background 0.18s, color 0.18s; white-space: nowrap;
    }
    .nav__links a:hover { background: rgba(255,255,255,0.12); color: #fff; }
    .nav__links a[aria-current="page"] { color: #fff; font-weight: 700; }
    .nav.solid .nav__links a { color: #444; }
    .nav.solid .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav.solid .nav__links a[aria-current="page"] { color: var(--green); }
    .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: #fff;
      text-decoration: none; padding: 8px 16px;
      background: #2fa06a;
      border: 1.5px solid #2fa06a; border-radius: 6px;
      transition: border-color 0.18s, background 0.18s, color 0.35s; white-space: nowrap;
    }
    .nav__tel svg { width: 14px; height: 14px; flex-shrink: 0; }
    .nav__tel:hover { background: #268a5a; border-color: #268a5a; }
    .nav.solid .nav__tel { color: #111; background: transparent; border-color: #ddd; }
    .nav.solid .nav__tel:hover { border-color: var(--green); background: #f0faf5; color: var(--green); }
    .btn-book {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff;
      font-family: var(--font-b); font-size: 14px; font-weight: 700;
      padding: 10px 22px; border-radius: 4px;
      text-decoration: none; border: 1.5px solid var(--green); cursor: pointer;
      min-height: 44px; white-space: nowrap;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
    }
    .btn-book svg { flex-shrink: 0; }
    .btn-book:hover { background: var(--green-dark); border-color: var(--green-dark); }
    .nav.solid .btn-book {
      background: var(--green); border-color: var(--green); color: #fff;
    }
    .nav.solid .btn-book:hover { background: var(--green-dark); border-color: var(--green-dark); }
    .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; margin-left: auto;
    }
    .nav__burger span {
      display: block; width: 22px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform 0.28s, opacity 0.28s, background 0.35s;
    }
    .nav.solid .nav__burger span { background: #333; }
    .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;
    }
    .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;
    }
    /* Tablet and Mobile */
@media (max-width: 1024px) {
   .nav__tel {
    display: none;
  }
}

    /* ═══ NAV MEGA DROPDOWN ═══ */
    .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: rgba(255,255,255,0.90); text-decoration: none;
      padding: 8px 13px; border-radius: 6px;
      background: none; border: none; cursor: pointer;
      font-family: var(--font-b);
      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; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle,
    .nav__item-drop:focus-within .nav__drop-toggle { background: rgba(255,255,255,0.12); color: #fff; }
    .nav.solid .nav__drop-toggle { color: #444; }
    .nav.solid .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;
      transition: background 0.15s, color 0.15s; white-space: nowrap;
      background: transparent;
    }
    .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__mega-footer {
      margin-top: 20px; padding-top: 18px;
      border-top: 1px solid #eee;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .nav__mega-footer-text { font-size: 13px; color: #888; }
    .nav__mega-footer-cta {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--green); color: #fff;
      font-size: 13px; font-weight: 700; padding: 9px 20px; border-radius: 6px;
      text-decoration: none; transition: background 0.18s;
    }
    .nav__mega-footer-cta:hover { background: var(--green-dark); }
    /* drawer repairs sub-list */
    .drawer-repairs-sub { list-style: none; padding-left: 12px; }
    .drawer-repairs-sub li a {
      display: block; font-size: 14px; font-weight: 400; color: #555;
      padding: 10px 0; border-bottom: 1px solid #f5f5f5; text-decoration: none;
    }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    .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-b); text-align: left;
    }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; }
    .drawer-repairs-sub.open { display: block; }
    @media (max-width: 1100px) { .nav__mega { display: none !important; } }

    /* ═══ HERO ═══ */
    .hero {
      position: relative; width: 100%; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    @media (max-width:1366px){ .hero{ min-height:780px; } }
    @media (max-width:1024px){ .hero{ min-height:700px; } }
    .hero__bg { position: absolute; inset: 0; z-index: 0; }
    .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: brightness(0.75); }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(10,14,12,0.58) 0%, rgba(10,14,12,0.34) 42%, rgba(10,14,12,0.10) 72%, transparent 100%); }
    .hero__content { position: relative; z-index: 2; width: 100%; padding: calc(var(--nav-h) + 64px) 40px 120px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    /* Simplified single-column hero layout */
    .hero__inner-v2 { display: flex; flex-direction: column; align-items: flex-start; max-width: 820px; }
    .hero__badges-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
    .gr-badge-v2 { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; margin-bottom: 0; opacity: 0.92; transition: opacity .18s; }
    .gr-badge-v2:hover { opacity: 1; }
    .hero__urgency-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #0d3321; background: #4dd98a; padding: 7px 14px; border-radius: 20px; white-space: nowrap; }
    .hero__urgency-badge svg { flex-shrink: 0; }
    .gr-stars-v2 { display: inline-flex; align-items: center; gap: 1px; font-size: 12px; line-height: 1; }
    .gr-star { color: #F5C451; }
    .gr-star-partial { position: relative; display: inline-block; }
    .gr-star-bg { color: rgba(255,255,255,0.25); }
    .gr-star-fg { position: absolute; top: 0; left: 0; width: 88%; overflow: hidden; white-space: nowrap; color: #F5C451; }
    .gr-score-v2 { font-size: 11.5px; font-weight: 800; color: #fff; }
    .gr-label-v2 { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }
    .gr-divider-v2 { width: 1px; height: 13px; background: rgba(255,255,255,0.18); margin: 0 1px; }
    .gr-g-v2 { width: 14px; height: 14px; flex-shrink: 0; }
    .hero__h1-v2 { font-family: var(--font-d); font-size: clamp(30px, 4vw, 48px); font-weight: 600; color: #fff; line-height: 1.12; letter-spacing: -1px; margin: 0 0 28px; text-align: left; }
    .hero__checkbar { display: flex; align-items: stretch; width: 100%; max-width: 560px; background: rgba(255,255,255,0.16); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1.5px solid rgba(77,217,138,0.65); border-radius: 10px; padding: 6px; gap: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
    .hero__checkbar-input { flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: #fff; font-size: 15px; padding: 12px 14px; }
    .hero__checkbar-input::placeholder { color: rgba(255,255,255,0.65); }
    .hero__checkbar-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 22px; border: none; border-radius: 7px; cursor: pointer; white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,0.22); transition: background 0.18s, transform 0.18s, box-shadow 0.18s; }
    .hero__checkbar-btn:hover { background: #125c37; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.28); }
    .hero__checkbar-btn svg { flex-shrink: 0; }
    .hero__checkbar-btn-search { display: none; }
    .hero__card-result { margin-top: 12px; font-size: 13px; font-weight: 600; display: none; }
    .hero__statline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 140px; }
    .hero__stat-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: #fff; white-space: nowrap; line-height: 1.6; }
    .hero__stat-item svg { width: 14px; height: 14px; color: #4dd98a; flex-shrink: 0; }
    /* The statline's 140px top margin is tuned for tall desktop viewports;
       on shorter laptop screens (where the hero is vertically centered
       inside a fixed min-height box) it pushes the last row of stats low
       enough to sit right at or past the fold. Nudge it up a bit here. */
    @media (max-width: 1366px) and (min-width: 641px) { .hero__statline { margin-top: 90px; } }
    @media (max-width: 640px) {
      .hero__statline { flex-direction: column; align-items: flex-start; gap: 8px; }
      .hero__stat-item { display: flex; white-space: normal; }
      .hero__checkbar-btn-text, .hero__checkbar-btn-arrow { display: none; }
      .hero__checkbar-btn-search { display: inline-flex; }
      .hero__checkbar-btn { padding: 0; width: 46px; height: 46px; justify-content: center; flex-shrink: 0; }
      .hero { align-items: stretch; }
      .hero__content { display: flex; flex-direction: column; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 24px; }
      .hero__inner-v2 { flex: 1; max-width: 100%; transform: translateY(-18px); }
      .hero__top-group { margin-top: auto; margin-bottom: 44px; }
      .hero__statline { margin-top: 0; margin-bottom: auto; }
    }
    .card-divider { border: none; border-top: 1px solid #e5e7eb; margin: 18px 0 14px; }
    .card-usps { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .card-usp { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: #374151; }
    .card-usp-icon { width: 18px; height: 18px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .card-usp-icon svg { width: 10px; height: 10px; stroke: #16a34a; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .hero__sub { font-size: 17px; color: rgba(255,255,255,0.80); line-height: 1.6; margin-bottom: 10px; }
    .hero__search { display: flex; align-items: stretch; background: #fff; border-radius: 8px; overflow: hidden; max-width: 520px; box-shadow: 0 4px 24px rgba(0,0,0,0.25); border: 2px solid transparent; transition: border-color 0.2s; }
    .hero__search:focus-within { border-color: var(--green); }
    .search__icon-wrap { display: flex; align-items: center; padding: 0 14px 0 16px; flex-shrink: 0; }
    .search__icon-wrap svg { width: 20px; height: 20px; stroke: #999; stroke-width: 2; fill: none; }
    .search__input { flex: 1; border: none; outline: none; font-family: var(--font-b); font-size: 16px; font-weight: 400; color: #333; padding: 17px 10px 17px 0; background: transparent; min-width: 0; }
    .search__input::placeholder { color: #aaa; }
    .search__btn { display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: #fff; font-family: var(--font-b); font-size: 15px; font-weight: 700; padding: 0 28px; border: none; cursor: pointer; white-space: nowrap; min-height: 56px; transition: background 0.18s; border-radius: 0; flex-shrink: 0; }
    .search__btn:hover { background: var(--green-dark); }

    @media (max-width: 1100px) {
      .btn-book, .nav__tel, .nav__links { display: none; }
      .nav__burger { display: flex; }
    }

    /* ═══ TRUST BAR ═══ */
    .hero__trustbar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: rgba(0,0,0,0.50); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.08); }
    @media (max-width:900px){ .hero__trustbar{ position:relative; margin-top:30px; } .hero__content{ padding-bottom:40px; } }
    .trustbar__row { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: stretch; }
    .tb-item { flex: 1; display: flex; align-items: center; gap: 13px; padding: 16px 20px 16px 0; border-right: 1px solid rgba(255,255,255,0.09); }
    .tb-item:first-child { padding-left: 0; }
    .tb-item:last-child  { border-right: none; }
    .tb-icon { width: 36px; height: 36px; background: rgba(26,122,74,0.22); border: 1px solid rgba(26,122,74,0.38); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .tb-icon svg { width: 17px; height: 17px; stroke: #4dd98a; stroke-width: 1.9; fill: none; }
    .tb-lbl  { display: block; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
    .tb-val  { display: block; font-size: 14px; font-weight: 700; color: #fff; }

    /* ═══ WE FIX IT ALL ═══ */
    .fixall { background: #f4f8fb; padding: 88px 32px 96px; }
    .fixall__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
    .fixall__cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid rgba(26,122,74,0.30); color: var(--green); font-size: 13.5px; font-weight: 700; padding: 9px 20px; border-radius: 999px; text-decoration: none; margin-bottom: 28px; transition: background 0.18s, border-color 0.18s; }
    .fixall__cta::before { content: ""; width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
    .fixall__cta:hover { background: #f0faf5; border-color: var(--green); }
    .fixall__h2 { font-family: var(--font-d); font-weight: 800; font-size: clamp(28px, 3vw, 40px); color: #111; letter-spacing: -1px; margin-bottom: 44px; }
    .fixall__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; text-align: left; }
    .fixall__card { display: flex; flex-direction: column; background: #fff; border-radius: 18px; overflow: hidden; text-decoration: none; border: 1px solid rgba(15,30,25,0.06); box-shadow: 0 6px 20px rgba(15,30,25,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
    .fixall__card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,30,25,0.10); border-color: rgba(26,122,74,0.25); }
    .fixall__img { width: 100%; aspect-ratio: 16 / 9; background: #f4f8fb; }
    .fixall__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .fixall__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px 18px; }
    .fixall__title { font-size: 15.5px; font-weight: 700; color: #161616; line-height: 1.35; }
    .fixall__arrow { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: rgba(26,122,74,0.10); color: var(--green); border-radius: 50%; font-size: 15px; font-weight: 700; flex-shrink: 0; transition: background 0.18s, color 0.18s; }
    .fixall__card:hover .fixall__arrow { background: var(--green); color: #fff; }

    .reviews-carousel { overflow: hidden; margin-top: 52px; }
    .reviews-track { display: flex; gap: 24px; width: max-content; animation: reviewScroll 60s linear infinite; }
    .review-card { width: 360px; flex-shrink: 0; }
    .review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; font-weight: 700; }
    @keyframes reviewScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .reviews-track:hover { animation-play-state: paused; }
    @media (max-width:768px) { .review-card { width: 300px; } }

    /* ═══ SHARED SECTION UTILITIES ═══ */
    .section-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); background: rgba(26,122,74,0.08); border: 1px solid rgba(26,122,74,0.18); padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
    .section-h2 { font-family: var(--font-d); font-weight: 800; font-size: clamp(28px, 3vw, 42px); color: #0f1e19; letter-spacing: -1px; line-height: 1.08; margin-bottom: 12px; }
    .section-h1 { font-family: var(--font-d); font-size: 16px; color: #556b62; line-height: 1.6; margin-bottom: 16px; }

    /* ═══ TRANSPARENT PRICING ═══ */
    .pricing { background: #fff; padding: 96px 32px 104px; border-top: 1px solid #edf2ef; }
    .pricing__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
    .pricing__sub { font-size: 16px; color: #556b62; line-height: 1.6; margin-bottom: 52px; }
.pricing__feat-title {
  margin-top: 4px;
}
    /* Feature cards row */
    .pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 28px;
    }
    .pricing__feat {
      background: #f8fbf9;
      border: 1px solid rgba(15,30,25,0.06);
      border-radius: 18px;
      padding: 40px 28px 34px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .pricing__feat--total {
      background: #f0faf5;
      border-color: rgba(26,122,74,0.18);
    }
    .pricing__feat-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(26,122,74,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .pricing__feat-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--green);
      fill: none;
      stroke-width: 1.8;
    }
    .pricing__feat-amount {
      font-family: var(--font-d);
      font-size: 30px;
      font-weight: 800;
      color: #0f1e19;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .pricing__feat--total .pricing__feat-amount { color: var(--green); }
    .pricing__feat-vat {
      font-size: 12px;
      font-weight: 600;
      color: #8a9e96;
      margin-bottom: 12px;
    }
    .pricing__feat-title {
      font-size: 16px;
      font-weight: 700;
      color: #0f1e19;
      margin-bottom: 6px;
    }
    .pricing__feat-desc {
      font-size: 13.5px;
      color: #556b62;
      line-height: 1.55;
    }

    /* CTA bar */
    .pricing__cta-bar {
      background: linear-gradient(120deg, #0f2a1e 0%, #1a7a4a 100%);
      border-radius: 20px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 24px;
      text-align: left;
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .pricing__cta-bar::before {
      content: "";
      position: absolute;
      top: -100px; right: -80px;
      width: 280px; height: 280px;
      border-radius: 50%;
      border: 50px solid rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .pricing__cta-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .pricing__cta-icon svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      fill: none;
      stroke-width: 1.8;
    }
    .pricing__cta-text {
      flex: 1;
      position: relative;
      z-index: 1;
      min-width: 0;
    }
    .pricing__cta-title {
      font-size: 19px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .pricing__cta-desc {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }
    .pricing__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--green);
      font-size: 14.5px;
      font-weight: 700;
      padding: 14px 26px;
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .pricing__cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

    /* Trust strip */
    .pricing__trust {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #f0faf5;
      border: 1px solid rgba(26,122,74,0.14);
      border-radius: 14px;
      padding: 18px 24px;
      text-align: left;
    }
    .pricing__trust-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(26,122,74,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pricing__trust-icon svg {
      width: 17px;
      height: 17px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2;
    }
    .pricing__trust-title {
      font-size: 14.5px;
      font-weight: 700;
      color: #0f1e19;
      margin-bottom: 2px;
    }
    .pricing__trust-desc {
      font-size: 13px;
      color: #556b62;
    }

    @media (max-width: 900px) {
      .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
      .pricing__cta-bar { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px 24px; gap: 16px; }
      .pricing__cta-btn { width: 100%; justify-content: center; }
    }
    /* ═══ REVIEWS ═══ */
    .reviews { background:  #f4f8f5; padding: 56px 32px 64px; border-top: 1px solid #edf2ef; }
    .reviews__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
    .reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; margin-top: 52px; margin-bottom: 40px; }
    .review-card { background: #fff; border-radius: 20px; border: 1px solid rgba(15,30,25,0.06); box-shadow: 0 4px 20px rgba(15,30,25,0.05); padding: 32px 28px 26px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.22s ease, box-shadow 0.22s ease; }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,30,25,0.10); }
    .review-card__top { display: flex; align-items: center; gap: 14px; }
    .review-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #0f2a1e, #1a7a4a); color: #fff; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 0; }
    .review-card__name { display: block; font-size: 15px; font-weight: 700; color: #0f1e19; }
    .review-card__loc { display: block; font-size: 12px; color: #8a9e96; margin-top: 2px; font-weight: 500; }
    .review-card__body { font-size: 14.5px; color: #3d5248; line-height: 1.7; flex: 1; font-style: italic; }
    .review-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #edf2ef; }
    .review-card__verified { font-size: 11.5px; font-weight: 600; color: var(--green); letter-spacing: 0.02em; }
    .review-stars { display: flex; gap: 2px; }
    .review-stars svg { width: 16px; height: 16px; fill: #f59e0b; }
    .reviews__aggregate { display: flex; justify-content: center; }
    .reviews__tp-badge { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid rgba(15,30,25,0.08); border-radius: 999px; padding: 12px 28px; box-shadow: 0 2px 12px rgba(15,30,25,0.05); }
    .tp-stars { display: flex; gap: 3px; }
    .tp-stars svg { width: 18px; height: 18px; fill: #00b67a; }
    .tp-score { font-size: 14px; color: #3d5248; font-weight: 500; }
    .tp-score strong { color: #0f1e19; font-weight: 700; }
.rating-tp-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
/* ── Reviews Section ── */
.reviews {
  font-family: var(--font-d);
}
.reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}
 
/* Hide original eyebrow/h2 if you don't want them above the card */
.reviews .section-eyebrow,
.reviews .section-h2 {
  display: none;
}
 
/* ── Split layout: left text | right photo ── */
.reviews-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #ffffff;
  border: none;
  min-height: 340px;
}

.reviews-left {
  background: #f5f3ee;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
}

/* ── Review cards section (below split) ── */
.reviews-heading {
  font-size: 36px;
  font-weight: 800;
  color: #2f4638;
  line-height: 1.15;
  margin: 0;
  text-align: center;
  width: 100%;
}

.reviews-sub {
  font-size: 14px;
  color: #5f665f;
  line-height: 1.55;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* ── Trustpilot rating row ── */
.tp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tp-stars {
  display: flex;
  gap: 2px;
}
.tp-star {
  width: 22px;
  height: 22px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.tp-star svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}
.tp-star.half {
  background: linear-gradient(to right, #00b67a 60%, #ddd 60%);
}
.tp-rating-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.tp-count {
  font-size: 13px;
  color: #888;
}
.tp-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.tp-logo-star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-logo-star svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}
 
/* ── Review cards carousel + arrows ── */
.hero-quote-wrap {
  position: relative;
  margin-top: 6px;
  width: 100%;
}

.hero-quote-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  min-height: 140px;
}

.quote-mark {
  font-size: 40px;
  color: #2a7a4b;
  line-height: 1;
  font-family: var(--font-b);
  margin-bottom: 4px;
}

.hero-quote-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 12px;
}

.hero-stars {
  color: #2a7a4b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.hero-author {
  font-size: 14px;
  color: #444;
  margin: 0;
}
.hero-author strong {
  font-weight: 700;
  color: #1a1a1a;
}
.hero-author span {
  color: #999;
  font-weight: 400;
  margin-left: 6px;
}

/* Dot indicators */
.dot-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.dot.active {
  background: #2a7a4b;
}
 
/* Arrow buttons */
.arrow-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #555;
  z-index: 2;
  transition: border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.arrow-btn:hover {
  border-color: #2a7a4b;
  color: #2a7a4b;
}
.arrow-prev {
  left: -18px;
}
.arrow-next {
  right: -18px;
}
@media (max-width: 900px) {
  .arrow-prev { left: -12px; }
  .arrow-next { right: -12px; }
}

/* ── RIGHT PANEL: Photo ── */
.reviews-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  filter: brightness(0.97);
}

/* ── CTA BAR ── */
.reviews-cta-bar {
  background: #125c37;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
 
.cta-bar__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
}
.cta-bar__right {
  display: flex;
  justify-content: flex-end;
}
 
.cta-bar__left h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}
.cta-bar__left p {
  color: #a0bfa0;
  font-size: 13px;
  margin: 0;
}
 
.find-btn {
  background: #3a6b3c;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.find-btn:hover {
  background: #2e5530;
}
 .find-btn__icon { display: inline-flex; width: 16px; height: 16px; }

@media (max-width: 768px) {
  .find-btn { padding: 14px 22px; width: 100%; }
}
/* ── Trust badges ── */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a0bfa0;
  font-size: 12px;
  padding: 4px 24px 4px 0;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: #7aaa7a;
  fill: none;
  flex-shrink: 0;
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
  .cta-bar__main {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .reviews-split {
    grid-template-columns: 1fr;
  }
  .reviews-left {
    padding: 28px 20px;
  }
  .reviews-photo {
    min-height: 220px;
    order: -1;
  }
  .arrow-prev { left: -14px; }
  .arrow-next { right: -14px; }
  .trust-badges {
    padding: 12px 20px;
    gap: 10px;
  }
  .trust-item--hide-mobile {
    display: none;
  }
}
    /* ══════════════════════════════════════════════════
       NEW SECTION 1: EXPERTISE ACROSS ALL MAJOR BRANDS
       ══════════════════════════════════════════════════ */
    .brands {
      background: #fff;
      padding: 56px 32px 64px;
      border-top: 1px solid #edf2ef;
      overflow: hidden;
      position: relative;
    }

    .brands::before {
      content: "";
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 900px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(26,122,74,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .brands__inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .brands__sub {
      font-size: 16px;
      color: #556b62;
      line-height: 1.6;
      max-width: 560px;
      margin: 0 auto 60px;
    }
    .brand-cell__logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 40px;
      transition: transform 0.3s ease;
    }
    .brands__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(15,30,25,0.06);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(15,30,25,0.05);
    }

    .brand-cell {
      background: #fff;
      display: flex;
      align-items: center;
      text-decoration: none;
      color: inherit;
      justify-content: center;
      padding: 22px 20px;
      position: relative;
      transition: background 0.22s ease;
      cursor: pointer;
    }

    .brand-cell__logo img {
      max-width: 100px;
      max-height: 32px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(30%) opacity(0.75);
      transition: filter 0.25s ease;
    }
    .brand-cell:hover .brand-cell__logo img {
      filter: grayscale(0%) opacity(1);
    }

    .brand-cell__logo--text {
      font-size: 20px;
      font-weight: 800;
      color: rgba(15,30,25,0.38);
      letter-spacing: -0.5px;
      transition: color 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 32px;
    }
    .brand-cell:hover .brand-cell__logo--text { color: var(--green); }
    .brands__view-all { text-align: center; margin-top: 40px; }
    .brands__view-sub { font-size: 13.5px; color: #6b7280; margin-bottom: 18px; }
    .brands__view-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background: var(--green);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: background .18s, transform .15s, box-shadow .18s;
      box-shadow: 0 6px 24px rgba(26,122,74,0.32);
    }
    .brands__view-btn:hover { background: #125c37; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,122,74,0.42); }
    .brands__view-count {
      background: rgba(255,255,255,0.18);
      padding: 2px 9px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0;
    }


    /* ══════════════════════════════════════════════════
       NEW SECTION 2: OUR 4-STEP REPAIR PROCESS
       ══════════════════════════════════════════════════ */
    .how-work {
      background: #f4f8fb;
      padding: 96px 32px 104px;
      border-top: 1px solid #edf2ef;
    }
    .how-work__inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .how-work__sub {
      font-size: 16px;
      color: #556b62;
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto 56px;
    }
    .how-work__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: left;
    }

    .hw-card {
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid rgba(15,30,25,0.07);
      box-shadow: 0 4px 24px rgba(15,30,25,0.06);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .hw-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(15,30,25,0.11);
    }

    .hw-card__visual {
      background: #edf5f0;
      padding: 28px 24px 20px;
      min-height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hw-card__visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 70% 20%, rgba(26,122,74,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .hw-mockup {
      background: #fff;
      border-radius: 12px;
      border: 1px solid rgba(15,30,25,0.09);
      box-shadow: 0 6px 24px rgba(15,30,25,0.10);
      padding: 16px;
      width: 100%;
      max-width: 200px;
      position: relative;
      z-index: 1;
    }
    .hw-mockup__label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: #8a9e96;
      margin-bottom: 10px;
      display: block;
    }
    .hw-mockup__field {
      background: #f4f8fb;
      border: 1.5px solid rgba(26,122,74,0.25);
      border-radius: 8px;
      padding: 9px 11px;
      font-size: 13px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    .hw-mockup__btn {
      background: #1a7a4a;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 9px 14px;
      border-radius: 7px;
      text-align: center;
      margin-top: 4px;
    }
    .hw-mockup__row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
    }
    .hw-mockup__check {
      width: 17px;
      height: 17px;
      background: rgba(26,122,74,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hw-mockup__check svg {
      width: 9px;
      height: 9px;
      stroke: #1a7a4a;
      stroke-width: 3;
      fill: none;
    }
    .hw-mockup__text {
      font-size: 12px;
      color: #3d5248;
      font-weight: 500;
      line-height: 1.3;
    }
    .hw-mockup__text strong { color: #0f1e19; font-weight: 700; }
    .hw-mockup__badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(26,122,74,0.10);
      border: 1px solid rgba(26,122,74,0.22);
      color: #1a7a4a;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 8px;
    }
    .hw-mockup__badge-dot {
      width: 6px;
      height: 6px;
      background: #1a7a4a;
      border-radius: 50%;
    }
    .hw-mockup__divider {
      height: 1px;
      background: #edf2ef;
      margin: 9px 0;
    }
    .hw-mockup__avatar-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 8px;
    }
    .hw-mockup__avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0f2a1e, #1a7a4a);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hw-mockup__avatar-name { font-size: 12px; font-weight: 700; color: #0f1e19; }
    .hw-mockup__avatar-role { font-size: 10.5px; color: #8a9e96; }
    .hw-mockup__stars {
      color: #f59e0b;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .hw-mockup__repair-bar {
      height: 5px;
      background: #edf2ef;
      border-radius: 4px;
      overflow: hidden;
      margin: 4px 0 8px;
    }
    .hw-mockup__repair-fill {
      height: 100%;
      background: #1a7a4a;
      border-radius: 4px;
      width: 75%;
    }

    .hw-card__body {
      padding: 22px 22px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hw-card__step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background: rgba(26,122,74,0.10);
      border: 1.5px solid rgba(26,122,74,0.22);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 800;
      color: #1a7a4a;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
      flex-shrink: 0;
    }
    .hw-card__title {
      font-family: var(--font-b);
      font-size: 19px;
      font-weight: 800;
      color: #0f1e19;
      line-height: 1.2;
      letter-spacing: -0.4px;
    }
    .hw-card__desc {
      font-size: 14px;
      color: #556b62;
      line-height: 1.65;
    }

    @media (max-width: 1080px) {
      .how-work__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    }
    @media (max-width: 640px) {
      .how-work { padding: 64px 20px 72px; }
      .how-work__grid { grid-template-columns: 1fr; gap: 16px; }
      .hw-card__visual { min-height: 160px; }
    }
/* ═════════ FAQ SECTION ═════════ */

.faq-section{
  background:#f6f8f7;
  padding:60px 32px;
}

.faq-container{
  max-width:1200px;
  margin:auto;
}

.faq-left{
  text-align:center;
  margin-bottom:48px;
}

.faq-eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--green);
  margin-bottom:20px;
}

.faq-left h2{
  font-family:var(--font-d);
  font-size:clamp(40px,5vw,62px);
  line-height:0.95;
  color:#111;
  margin-bottom:20px;
}


.faq-left p{
  color:#65736d;
  font-size:15px;
  line-height:1.7;
  max-width:520px;
  margin:0 auto;
}

.faq-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}

.faq-item{
  background:#fff;
  border-radius:12px;
  border:1px solid #ececec;
  overflow:hidden;
  transition:.25s ease;
}

.faq-item:hover{
  border-color:rgba(26,122,74,.25);
}

.faq-question{
  width:100%;
  border:none;
  background:#fff;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 24px;
  font-size:14.5px;
  font-weight:600;
  line-height:1.4;
  color:#111;
  text-align:left;
}

.faq-question span{
  font-size:22px;
  color:#222;
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 24px;
  color:#59665f;
  line-height:1.7;
  font-size:13.5px;
}

.faq-item.active .faq-answer{
  max-height:300px;
  padding:0 30px 28px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

@media(max-width:991px){
  .faq-right{
    grid-template-columns:1fr;
  }
  .faq-left h2{
    font-size:32px;
  }
}

@media(max-width:767px){

  .faq-section{
    padding:44px 24px;
  }

  .faq-question{
    font-size:13.5px;
    padding:18px 20px;
  }

  .faq-answer{
    font-size:13px;
    padding:0 20px;
  }

  .faq-item.active .faq-answer{
    padding:0 20px 22px;
  }

  .faq-left h2{
    font-size:28px;
  }
}
    /* ══════════════════════════════════════════════════
       BENEFITS OF CHOOSING ECO REPAIRS SECTION
       ══════════════════════════════════════════════════ */
  

/* ═══ BENEFITS NEW SECTION ═══ */
.benefits-new {
  background: #ffffff;
  padding: 56px 32px 64px;
  border-top: 1px solid #edf2ef;
}
 
.benefits-new__inner {
  max-width: 1200px;
  margin: 0 auto;
}
 
/* Header */
.benefits-new__header {
  text-align: center;
  margin-bottom: 64px;
}
 
.benefits-new__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1a7a4a;
  margin-bottom: 16px;
}
 
.benefits-new__heading {
  font-family: var(--font-b);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #111111;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
 
.benefits-new__sub {
  font-size: 16px;
  color: #556b62;
  line-height: 1.65;
}
 
/* Cards Grid — 5 across desktop, wraps responsively */
.benefits-new__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 56px;
}
 
.benefits-new__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
 
/* Illustration */
.benefits-new__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 160px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.benefits-new__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* "Genuine Spare Parts" artwork has less internal padding baked into the
   source PNG than its sibling icons, so it renders visibly larger inside
   the same fixed-size wrapper — inset it slightly to match. */
.benefits-new__img-wrap img[src*="benefit-5"] {
  width: 82%;
  height: 82%;
  margin: auto;
}
 
.benefits-new__card-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: #0f1e19;
  line-height: 1.3;
  margin-bottom: 6px;
}
 
.benefits-new__card-desc {
  font-size: 13.5px;
  color: #556b62;
  line-height: 1.6;
}
 
/* CTA Row */
.benefits-new__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
 
.benefits-new__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a7a4a;
  color: #ffffff;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  min-height: 50px;
  transition: background 0.18s;
}
 
.benefits-new__btn-primary:hover {
  background: #125c37;
}
 
.benefits-new__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f1e19;
  font-family:var(--font-b);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(15,30,25,0.18);
  text-decoration: none;
  min-height: 50px;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
 
.benefits-new__btn-secondary:hover {
  border-color: #1a7a4a;
  background: #f0faf5;
  color: #1a7a4a;
}
 
/* ── Responsive ── */
 
/* 9 items on a 5-col grid: row 1 = 5, row 2 = 4 (centred) */
/* We use auto-placement but centre the last row manually */
.benefits-new__grid {
  justify-items: center;
}
 
/* Tablet: 3 columns */
@media (max-width: 1024px) {
  .benefits-new__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
  }
}
 
/* Small tablet: 2 columns */
@media (max-width: 640px) {
  .benefits-new {
    padding: 40px 20px 48px;
  }
 
  .benefits-new__header {
    margin-bottom: 48px;
  }
 
  .benefits-new__sub br {
    display: none;
  }
 
  .benefits-new__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
 
  .benefits-new__img-wrap {
    max-width: 120px;
  }
 
  .benefits-new__cta-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
 
  .benefits-new__btn-primary,
  .benefits-new__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
 
/* Mobile: single column for very small screens */
@media (max-width: 360px) {
  .benefits-new__grid {
    grid-template-columns: 1fr;
  }
}

.nav__logo-img {
  display: block;
  height: 34px;
  width: auto;
}
@media (max-width: 900px) {
  .nav__logo-img { height: 13px; }
}
    @media (max-width: 1100px) {
      .nav__links, .nav__tel { display: none; }
      .nav__burger { display: flex; }
      .nav__inner { padding: 0 32px 0 16px; }
     
     .hero__overlay { background: linear-gradient(to bottom, rgba(10,14,12,0.58) 0%, rgba(10,14,12,0.38) 50%, rgba(10,14,12,0.18) 100%); }
      .trustbar__row { flex-wrap: wrap; padding: 0 20px; }
      .tb-item { flex: 1 1 calc(50% - 20px); border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 10px; }
      .tb-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
      .tb-item:nth-last-child(-n+2) { border-bottom: none; }
      .fixall { padding: 64px 20px 72px; }
      .fixall__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .pricing { padding: 64px 20px 72px; }
      .pricing__card { padding: 36px 24px 32px; border-radius: 18px; }
      .pricing__cols { flex-direction: column; gap: 32px; margin-bottom: 36px; }
      .pricing__col { padding: 0; width: 100%; border-left: none !important; }
   
      .reviews { padding: 40px 20px 48px; }
      .reviews__grid { grid-template-columns: 1fr; gap: 18px; }
      .brands { padding: 40px 20px 48px; }
      .brands__grid { grid-template-columns: repeat(2, 1fr); }
      .brand-cell { padding: 18px 14px; }
      .process { padding: 64px 20px 72px; }
      .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .process__steps::before { display: none; }
      .process__step { align-items: flex-start; text-align: left; padding: 0; }
      .process__cta { flex-direction: column; gap: 12px; text-align: center; }
    }

    @media (max-width: 560px) {
      .hero__h1-v2 { font-size: 26px; line-height: 1.18; letter-spacing: -0.5px; margin-bottom: 20px; }
      .hero__statline { margin-top: 0; }
      .hero__search { max-width: 100%; }
      .search__btn { font-size: 14px; padding: 0 18px; }
      .tb-item { flex: 1 1 100%; border-right: none; }
      .tb-item:nth-child(odd) { border-right: none; }
      .tb-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
      .tb-item:last-child { border-bottom: none; }
      .fixall__h2 { font-size: 26px; margin-bottom: 32px; }
      .pricing__num { font-size: 52px; }
      .reviews__tp-badge { flex-direction: column; gap: 8px; padding: 14px 20px; }
      .brands__grid { grid-template-columns: repeat(2, 1fr); }
      .brand-cell { padding: 16px 12px; }
      .brand-wordmark { font-size: 17px; }
      .process__steps { grid-template-columns: 1fr; }
    }
@media (max-width: 900px) {
  .hero__search {
    max-width: 100%;
    border-radius: 10px;
    border: 2.5px solid var(--green);
    box-shadow: none;
  }
  .search__input {
    font-size: 15px;
    padding: 16px 10px 16px 0;
  }
  .search__btn {
    border-radius: 0 8px 8px 0;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0;
    width: 56px;
    flex-shrink: 0;
  }
  .search__btn::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
/* ═══ HOW IT WORKS + FIX IT ALL COMBINED ═══ */
.how-fix {
  background: #fff;
  padding: 56px 32px 64px;
  border-top: 1px solid #edf2ef;
}
.how-fix__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Eyebrow */
.how-fix__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green);
  margin-bottom: 14px;
}

/* Steps top section */
.how-fix__steps-wrap {
  text-align: center;
  margin-bottom: 64px;
}

/* "Our Service Partners" — shown on all viewports, before the 4-step process */
.service-partners { display: block; text-align: center; margin-bottom: 64px; }
.service-partners .how-fix__title { font-size: clamp(26px, 2.6vw, 36px); }
.service-partners__logos { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: nowrap; margin-top: 36px; }
.service-partners__logos img { height: 22px; width: auto; max-width: 78px; object-fit: contain; flex-shrink: 1; }
.service-partners__logo--mono { filter: brightness(0); opacity: 0.88; }
.service-partners__more { font-size: 12.5px; font-weight: 700; color: var(--green); text-decoration: none; white-space: nowrap; }
.service-partners__more:hover { text-decoration: underline; }
.how-fix__title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.how-fix__title-accent {
  color: var(--green);
}
.how-fix__subtitle {
  font-size: 15px;
  color: #556b62;
  line-height: 1.6;
  margin-bottom: 48px;
}
.how-fix__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.how-fix__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.how-fix__step-connector {
  width: 60px;
  height: 1px;
  background: #d0e8db;
  margin-top: 36px;
  flex-shrink: 0;
  position: relative;
}
.how-fix__step-connector::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #d0e8db;
  border-right: 1.5px solid #d0e8db;
  transform: rotate(45deg);
}
.how-fix__step-icon {
  position: relative;
  width: 220px;
  height: 220px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.how-fix__step:hover .how-fix__step-icon {
  transform: translateY(-4px);
}
.how-fix__step-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}
/* eco-friendly.png's artwork fills its canvas edge-to-edge with far less
   padding than the other 3 step icons, so at a shared container size it
   reads as visibly larger — scale it down to match. */
.how-fix__step-icon img[src*="eco-friendly"] {
  width: 160px;
  height: 160px;
}
.how-fix__step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  box-shadow: 0 3px 8px rgba(15,30,25,0.18);
}
.how-fix__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f1e19;
  margin-bottom: 6px;
  line-height: 1.3;
}
.how-fix__step-desc {
  font-size: 13px;
  color: #556b62;
  line-height: 1.6;
}

/* Divider */
.how-fix__divider {
  height: 1px;
  background: #edf2ef;
  margin-bottom: 64px;
}

/* Bottom split */
.how-fix__bottom {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.how-fix__bottom-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.how-fix__bottom-title em {
  font-style: normal;
  color: var(--green);
}
.how-fix__bottom-desc {
  font-size: 14.5px;
  color: #556b62;
  line-height: 1.75;
  margin-bottom: 28px;
}
.how-fix__bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s;
}
.how-fix__bottom-cta:hover { background: var(--green-dark); }

/* Appliance grid */
.how-fix__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how-fix__bottom-right {
  min-width: 0;
  overflow: visible;
}
.how-fix__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px 20px;
  background: #f8fbf9;
  border: 1px solid rgba(15,30,25,0.07);
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.how-fix__card:hover {
  box-shadow: 0 8px 28px rgba(15,30,25,0.10);
  border-color: rgba(26,122,74,0.25);
  transform: translateY(-3px);
}
.how-fix__card-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-fix__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how-fix__card span {
  font-size: 12.5px;
  font-weight: 600;
  color: #0f1e19;
  line-height: 1.3;
}


/* Inner white card */
.how-fix__step {
background: #f4f8f5;
  border-radius: 18px;
  padding: 20px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.how-fix__step-connector {
  width: 30px;
}

/* Responsive */
@media (max-width: 1080px) {
  .how-fix__bottom {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-fix__bottom-left {
    position: static;
  }
}
@media (max-width: 768px) {
  .how-fix__steps-wrap { display: none; }
  .service-partners { display: block; margin-bottom: 32px; }
  .service-partners .how-fix__title { font-size: 22px; }
  .how-fix { padding-top: 32px; }
  .how-fix__divider { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .how-fix__step { flex: 1 1 100%; }
  .how-fix__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .how-fix__bottom-title { font-size: 28px; }
  .service-partners__logos { gap: 14px; }
  .service-partners__logos img { max-width: 62px; }
}
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ═══════════════════════════════════════════════
       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__brand-logo-text { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
    .footer__brand-logo-text em { font-style: normal; color: #4dd98a; }
    .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; }

    /* Nav columns */
    .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; }

    /* Contact */
    .footer__contact-row {
      display: flex; align-items: center; 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; }

    /* Bottom */
    .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; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

