
  html, body { background: var(--white); }
  .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

  /* ============================================================
     HERO — boxed dark-mode layout with looping background video
     ============================================================ */
  .hero-wrap {
    padding: 16px 24px 0;
    margin: 0;
    position: relative;
    z-index: 50;
  }
  .hero {
    position: relative;
    isolation: isolate;
    border-radius: var(--radius-2xl);
    min-height: 0;
    padding: 56px 56px 48px;
    background: #0c1116;
  }
  /* Clipping wrapper for the video + overlay only. Lives behind .hero-content,
     so the search dropdown (a child of .hero-content) can overflow the rounded
     box when results render. */
  .hero-bg-clip {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
  }
  /* Video plate — fills the clip, scaled wider than viewport so the YouTube chrome
     (none with controls=0, but YouTube still pads slightly) is hidden by overflow. */
  .hero-video {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    /* 16:9 — but we always want full coverage inside the box. */
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78%;
    border: 0;
    pointer-events: none;
  }
  /* Dim + gradient overlay so the text reads on any frame. */
  .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(105deg, rgba(7, 12, 17, .75) 0%, rgba(7, 12, 17, .55) 45%, rgba(7, 12, 17, .25) 100%),
      radial-gradient(ellipse 1000px 450px at 0% 100%, rgba(56, 173, 78, .18), transparent 60%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0;
    text-align: left;
    color: #fff;
  }
  .hero h1 {
    font-size: var(--fs-display);     /* v1.2.91: was 52px → 60px via token (--fs-display bumped in v1.2.90) */
    font-weight: 800;
    color: #fff;
    letter-spacing: -.028em;
    line-height: 1.05;
    margin: 0 0 14px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
  }
  .hero h1 em {
    font-style: normal;
    color: #6ee787;
  }
  .hero-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
    max-width: 720px;
    margin: 0 0 26px;
  }

  /* AJAX Smart Search */
  .hero-search-wrap {
    position: relative;
    max-width: 640px;
    margin: 0;
  }
  .hero-search-bar {
    display: flex; align-items: center;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    box-shadow: 0 18px 50px -10px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
    transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
    overflow: hidden;
  }
  .hero-search-bar:focus-within {
    border-color: var(--green-200);
    box-shadow: 0 22px 54px -10px rgba(56, 173, 78, .35), 0 0 0 4px rgba(56, 173, 78, .12);
  }
  .hero-search-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--slate-400);
  }
  .hero-search-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .hero-search-input {
    flex: 1; min-width: 0;
    height: 56px;
    padding: 0 8px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--slate-900);
    outline: none;
  }
  .hero-search-input::placeholder { color: var(--slate-400); }
  .hero-search-go {
    height: 44px;
    margin-right: 6px;
    padding: 0 22px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s var(--ease), transform .15s var(--ease);
  }
  .hero-search-go:hover { background: var(--green-dark); transform: translateY(-1px); }
  .hero-search-go svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

  /* Search dropdown (AJAX results) */
  .hero-search-dropdown {
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -10px rgba(15,23,42,.18), 0 0 0 1px rgba(15,23,42,.04);
    overflow: hidden;
    max-height: 460px;
    overflow-y: auto;
    z-index: 10;
    text-align: left;
  }
  .hero-search-dropdown[hidden] { display: none; }
  /* Scope all dropdown internals to .hero-search-dropdown so they win
     specificity against the shared header.css .dd-* rules used by the
     account-menu dropdown. */
  .hero-search-dropdown .dd-section { padding: 8px 0; border-bottom: 1px solid var(--slate-100); }
  .hero-search-dropdown .dd-section:last-child { border-bottom: none; }
  .hero-search-dropdown .dd-section-label {
    padding: 8px 16px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--slate-500);
    text-transform: uppercase;
  }
  .hero-search-dropdown .dd-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    transition: background .12s var(--ease);
    cursor: pointer;
  }
  .hero-search-dropdown .dd-item:hover { background: var(--slate-50); }
  .hero-search-dropdown .dd-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-100);
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--slate-500);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero-search-dropdown .dd-icon.is-product {
    border-radius: var(--radius-md);
    border-color: var(--slate-200);
  }
  .hero-search-dropdown .dd-icon img { width: 100%; height: 100%; object-fit: cover; }
  .hero-search-dropdown .dd-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
  .hero-search-dropdown .dd-meta { flex: 1; min-width: 0; }
  .hero-search-dropdown .dd-name {
    font-size: 14px; font-weight: 600;
    color: var(--slate-900);
    display: flex; align-items: center; gap: 6px;
  }
  .hero-search-dropdown .dd-name mark {
    background: var(--amber-50);
    color: var(--slate-900);
    font-weight: 700;
    padding: 0 2px;
    border-radius: 2px;
  }
  .hero-search-dropdown .dd-sub { font-size: 12px; color: var(--slate-500); margin-top: 2px; }
  .hero-search-dropdown .dd-tag {
    font-size: 11px; font-weight: 600;
    color: var(--slate-500);
    background: var(--slate-100);
    padding: 2px 8px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .hero-search-dropdown .dd-empty {
    padding: 28px 16px;
    text-align: center;
    color: var(--slate-500);
    font-size: 13px;
  }
  .hero-search-dropdown .dd-empty strong { display: block; color: var(--slate-700); margin-bottom: 4px; font-weight: 600; }

  /* Quick categories — frosted-glass dark pills with arrow */
  .hero-cats {
    display: flex; flex-wrap: wrap; justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
  }
  .hero-cat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    transition: all .15s var(--ease);
  }
  .hero-cat:hover {
    border-color: rgba(110, 231, 135, .55);
    color: #fff;
    background: rgba(56, 173, 78, .22);
  }
  .hero-cat svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none;
    stroke-width: 2;
    transition: transform .15s var(--ease);
  }
  .hero-cat:hover svg { transform: translateX(3px); }

  /* Hero trust signals */
  .hero-trust {
    display: flex; justify-content: flex-start; align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
  }
  .hero-trust strong { color: #fff; font-weight: 700; }

  @media (max-width: 1024px) {
    .hero { padding: 48px 40px 44px; }
    .hero h1 { font-size: var(--fs-7xl); }  /* v1.2.91: 44 → 50 via token */
  }
  @media (max-width: 768px) {
    .hero-wrap { padding: 12px 16px 0; }
    .hero { padding: 40px 22px 38px; border-radius: var(--radius-xl); }
    .hero h1 { font-size: 36px; }   /* v1.2.91: 32 → 36 to match new mobile heading floor */
    .hero-lead { font-size: 14.5px; margin-bottom: 22px; }
    .hero-search-icon { width: 48px; height: 48px; }
    .hero-search-input { height: 48px; font-size: 15px; }
    .hero-search-go { height: 40px; padding: 0 16px; }
    .hero-trust { gap: 10px; margin-top: 18px; padding-top: 16px; }
  }

  /* ============================================================
     SECTION HEAD (shared)
     ============================================================ */
  .home-section { padding: 48px 0; }
  .home-section.tight { padding: 32px 0; }
  .section-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.02em;
    line-height: 1.15;
  }
  .section-head p {
    font-size: 15px;
    color: var(--slate-600);
    margin-top: 6px;
    max-width: 520px;
  }
  .section-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    transition: color .15s var(--ease);
    flex-shrink: 0;
  }
  .section-link:hover { color: var(--green); }
  .section-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .15s var(--ease); }
  .section-link:hover svg { transform: translateX(2px); }

  /* ============================================================
     SECTION TABS (above carousels)
     ============================================================ */
  .section-tabs {
    display: flex; gap: 4px;
    margin-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .section-tabs::-webkit-scrollbar { display: none; }
  .section-tab {
    display: inline-flex; align-items: center; gap: 8px;
    height: 38px;
    padding: 0 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px; font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s var(--ease);
  }
  .section-tab:hover { border-color: var(--slate-300); color: var(--slate-900); }
  .section-tab.is-active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: var(--white);
  }
  .section-tab .tab-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--slate-400);
    font-feature-settings: 'tnum';
  }
  .section-tab.is-active .tab-num { color: var(--slate-300); }

  /* ============================================================
     CAROUSEL
     ============================================================ */
  .carousel-wrap { position: relative; }
  .carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 0;
    /* Inside-padding so hover lift + shadow aren't clipped by overflow */
    padding: 24px 8px 28px;
    margin: -24px -8px 0;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar { display: none; }
  .carousel[hidden] { display: none; }
  .carousel > * { scroll-snap-align: start; flex: 0 0 auto; }

  .carousel-arrow {
    position: absolute;
    top: 38%;
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    box-shadow: 0 6px 20px -4px rgba(15,23,42,.15);
    color: var(--slate-700);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .15s var(--ease);
    z-index: 5;
  }
  .carousel-arrow:hover {
    border-color: var(--green-200);
    color: var(--green-dark);
    transform: translateY(-50%) scale(1.05);
  }
  .carousel-arrow.prev { left: -22px; transform: translateY(-50%); }
  .carousel-arrow.next { right: -22px; transform: translateY(-50%); }
  .carousel-arrow:disabled { opacity: .35; pointer-events: none; }
  .carousel-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  @media (max-width: 768px) {
    .carousel-arrow { display: none; }
  }

  /* ============================================================
     COMPANY CARD (carousel variant)
     ============================================================ */
  .co-card {
    width: 300px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .co-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .co-card-head {
    display: flex; align-items: center; gap: 12px;
  }
  .co-card-logo {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .co-card-logo img { width: 100%; height: 100%; object-fit: cover; }
  .co-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
  }
  .co-card-cat {
    font-size: 12px;
    color: var(--slate-500);
    margin-top: 2px;
  }
  .co-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 14px;
    background: var(--slate-50);
    border-radius: var(--radius-md);
  }
  .co-card-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .co-card-stat-val {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 2px;
    font-feature-settings: 'tnum';
  }
  .co-card-stat-val img.fb-mark { width: 14px; height: 14px; }
  .co-card-stat-val svg.star { width: 13px; height: 13px; fill: var(--amber-400); }
  .co-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px;
    color: var(--slate-500);
  }
  .co-card-foot .reviews { display: inline-flex; align-items: center; gap: 4px; }
  .co-card-foot .reviews svg { width: 12px; height: 12px; fill: var(--amber-400); }

  /* ============================================================
     PRODUCT CARD (carousel variant) — uses 1:1 image, vendor stack
     ============================================================ */
  .pr-card {
    width: 280px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
  }
  .pr-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .pr-card-image {
    aspect-ratio: 1 / 1;
    background: var(--slate-100);
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    margin: 10px 10px 0;
  }
  .pr-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s var(--ease-out);
  }
  .pr-card:hover .pr-card-image img { transform: scale(1.05); }
  .pr-cat-badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    background: rgba(255,255,255,.95);
    border-radius: 999px;
    font-size: 10px; font-weight: 700;
    color: var(--slate-700);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .pr-card-body {
    padding: 14px 16px 12px;
    display: flex; flex-direction: column; gap: 6px;
    flex: 1;
  }
  .pr-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pr-card-meta {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px;
    color: var(--slate-500);
    margin-top: auto;
    padding-top: 4px;
  }
  .pr-card-stars { display: inline-flex; gap: 1px; }
  .pr-card-stars svg { width: 12px; height: 12px; fill: var(--amber-400); }
  .pr-card-stars svg.is-empty { fill: var(--slate-200); }
  .pr-card-rating { font-weight: 700; color: var(--slate-900); }
  .pr-card-divider { color: var(--slate-300); }
  .pr-card-foot {
    padding: 10px 16px;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    display: flex; align-items: center; justify-content: space-between;
  }
  .pr-foot-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .vendor-stack { display: inline-flex; align-items: center; }
  .vendor-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--white);
    margin-left: -6px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(15,23,42,.06);
    display: inline-flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .vendor-stack > .vendor-avatar:first-child { margin-left: 0; }
  .vendor-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .vendor-avatar.is-overflow {
    background: var(--green);
    color: var(--white);
    font-size: 10px; font-weight: 700;
  }

  /* ============================================================
     COMPLAINT CARD (carousel variant)
     ============================================================ */
  .cp-card {
    width: 360px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
  }
  .cp-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .cp-card-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cp-card-meta {
    font-size: 12px;
    color: var(--slate-500);
  }
  .cp-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cp-card-context {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid var(--slate-100);
    font-size: 12px;
    color: var(--slate-500);
  }
  .cp-vendor-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px 4px 4px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 12px;
  }
  .cp-vendor-chip .va {
    width: 18px; height: 18px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    flex-shrink: 0;
  }
  .cp-vendor-chip .va img { width: 100%; height: 100%; object-fit: cover; }
  .cp-card-context .meta-dot {
    width: 3px; height: 3px;
    background: var(--slate-300);
    border-radius: 50%;
  }

  /* ============================================================
     "HOW IT WORKS" — 3-step explainer
     ============================================================ */
  .how-section {
    background: var(--slate-50);
    margin: 0;
  }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }
  .how-step {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .how-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px; font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .how-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.005em;
  }
  .how-step-text {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
  }
  .how-step-text b { color: var(--slate-900); font-weight: 600; }

  /* ============================================================
     CTA — for businesses
     ============================================================ */
  .cta-business-section { padding: 24px 0; }
  .cta-business {
    background: var(--slate-900);
    border-radius: var(--radius-2xl);
    padding: 48px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-business::before {
    content: '';
    position: absolute;
    top: -100px; right: -80px;
    width: 360px; height: 360px;
    background-image: url('https://fairbusiness.mpulse.ge/wp-content/uploads/2024/11/Icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .08;
    transform: rotate(-12deg);
    pointer-events: none;
    filter: brightness(0) invert(1);
  }
  .cta-business-content { position: relative; z-index: 1; }
  .cta-business-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 11px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .cta-business h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 540px;
  }
  .cta-business p {
    font-size: 15px;
    color: var(--slate-300);
    line-height: 1.55;
    max-width: 520px;
  }
  .cta-business-actions {
    display: flex; gap: 10px;
    align-items: center;
    position: relative; z-index: 1;
    flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 48px;
    padding: 0 22px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px; font-weight: 600;
    transition: all .15s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
  }
  .cta-btn.is-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px -2px rgba(56,173,78,.30);
  }
  .cta-btn.is-primary:hover { background: var(--green-hover); }
  .cta-btn.is-ghost {
    background: rgba(255,255,255,.05);
    color: var(--white);
    border-color: rgba(255,255,255,.18);
  }
  .cta-btn.is-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); }
  .cta-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  @media (max-width: 768px) {
    .cta-business { grid-template-columns: 1fr; padding: 32px 24px; }
    .cta-business h2 { font-size: 24px; }
  }

  /* ============================================================
     STATS BLOCK
     ============================================================ */
  .stats-section { background: var(--white); padding: 0; border-top: 0; border-bottom: 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  @media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
  .stat-cell {
    text-align: center;
    padding: 12px 24px;
    border-right: 1px solid var(--slate-100);
  }
  .stat-cell:last-child { border-right: none; }
  @media (max-width: 800px) {
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--slate-100); padding-bottom: 24px; }
    .stat-cell:nth-child(n+3) { padding-top: 24px; }
  }
  .stat-cell-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -.02em;
    font-feature-settings: 'tnum';
    line-height: 1;
  }
  .stat-cell-label {
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 8px;
  }

  /* ============================================================
     FINAL CTA — sign up
     ============================================================ */
  .cta-final-section { padding: 48px 0 64px; }
  .cta-final {
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-2xl);
    padding: 56px 32px;
    text-align: center;
  }
  .cta-final h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .cta-final p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 auto 24px;
  }
  .cta-final-btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 48px;
    padding: 0 28px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px -2px rgba(56,173,78,.30);
    transition: background .15s var(--ease);
  }
  .cta-final-btn:hover { background: var(--green-hover); }
  .cta-final-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* ============================================================
     HEADER SEARCH HIDE/REVEAL ON HOMEPAGE
     ----------------------------------------------------------------
     Default on homepage: header search is HIDDEN (no JS needed for
     initial state — pure CSS). When the user scrolls and the hero
     search has left the viewport, JS adds `scrolled-past-hero` to
     body and the header search smoothly reveals.
     ============================================================ */
  body.home-page .site-header .header-search {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  body.home-page.scrolled-past-hero .site-header .header-search {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
  }
  @media (max-width: 768px) {
    .home-section { padding: 32px 0; }
    .section-head h2 { font-size: 24px; }
    .stat-cell-num { font-size: 30px; }
    .cta-final h2 { font-size: 24px; }

    /* ──────────────────────────────────────────────────
       EDGE-TO-EDGE CAROUSELS — mobile only.

       Pattern (matches the Zoomer mobile browsing model):
         - section title + subtitle + "browse all" link stay inside
           .container (16px padding on each side)
         - carousels, section-tabs, and the how-it-works strip BREAK
           OUT of the container — they span the full viewport so
           the first card aligns with the title (16px from the edge)
           and the last card cuts off at the right screen edge.

       Why: previously every scroller lived inside .container with
       padding: 0 16px, so cards could never reach either screen
       edge. On a 390px viewport you saw exactly one card + a tiny
       sliver — no clear "scroll for more" affordance and 32px of
       wasted side margin per row. With the negative-margin escape
       below, cards now scroll through the full viewport width and
       the trailing card visibly cuts off, signalling more content.

       Affected sections:
         ① companies / products / complaints carousels (.carousel)
         ② filter pill tabs above each carousel (.section-tabs)
         ③ hero category pills (.hero-cats) — was wrap, now scroll
         ④ "how it works" 3-card grid — was stacked column, now scroll
       ────────────────────────────────────────────────── */

    /* ① carousels — keep vertical 24/28 padding so hover shadows
          aren't clipped, override only the horizontal escape. */
    .home-section .carousel-wrap {
      margin-left: -16px;
      margin-right: -16px;
    }
    .home-section .carousel {
      padding: 24px 16px 28px;
      margin: 0;
      scroll-padding-left: 16px;
    }

    /* ② filter-pill tabs — already overflow-x:auto on desktop, just
          escape the container so trailing pills aren't clipped. */
    .home-section .section-tabs {
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
    }

    /* ③ hero category pills — desktop wraps to 2 rows; mobile scrolls
          a single row edge-to-edge. */
    .hero-cats {
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .hero-cats::-webkit-scrollbar { display: none; }
    .hero-cat { flex: 0 0 auto; white-space: nowrap; }

    /* ④ "How it works" — desktop is grid-template-columns: repeat(3,1fr).
          The existing mobile override at line 679 collapses it to 1fr
          (stacked vertical), which makes the user scroll past 3 long
          cards. Switch to a horizontal scroll: same content, much less
          vertical real estate, matches the carousel pattern. */
    .how-grid {
      display: flex;
      grid-template-columns: none;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .how-grid::-webkit-scrollbar { display: none; }
    .how-step {
      flex: 0 0 80vw;
      max-width: 320px;
      scroll-snap-align: start;
    }
  }

