﻿:root {
      --topbar-height: 38px;
      --header-height: 72px;
      --green-950: #0a1f0d;
      --green-900: #102a15;
      --green-800: #1a3c1f;
      --green-700: #2e5630;
      --green-600: #3f6f3d;
      --green-100: #e0eee9;
      --green-50: #f4f8f2;
      --lime: #bdce82;
      --lime-100: #f5fad2;
      --ink: #171717;
      --muted: #555f54;
      --line: #e5eadf;
      --paper: #ffffff;
      --soft: #fafbf7;
      --yellow: #fff7d1;
      --shadow: 0 24px 70px rgba(16, 42, 21, .14);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      position: relative;
      z-index: 70;
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 8px 18px;
      color: #fff;
      background: linear-gradient(90deg, var(--green-950), var(--green-700), var(--green-950));
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      animation: slide-down .65s cubic-bezier(.2, .7, .2, 1) both;
    }

    .topbar a {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 3px 12px;
      border: 1px solid var(--lime);
      border-radius: 999px;
      color: var(--lime-100);
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 60;
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid rgba(229, 234, 223, .9);
      backdrop-filter: blur(18px);
      animation: slide-down .7s cubic-bezier(.2, .7, .2, 1) .08s both;
    }

    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand img { width: 156px; height: auto; }

    .nav-links,
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-links a,
    .signin {
      color: var(--muted);
      font-size: 15px;
      font-weight: 500;
    }

    .nav-links a:hover,
    .signin:hover { color: var(--green-700); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 12px 20px;
      border: 0;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    }

    .btn:active { opacity: .88; }

    .btn-primary {
      color: #fff;
      background: var(--green-700);
      box-shadow: 0 16px 36px rgba(46, 86, 48, .22);
    }

    .btn-primary:hover { background: var(--green-900); }

    .btn-secondary {
      color: var(--green-950);
      background: var(--lime);
      box-shadow: 0 18px 42px rgba(189, 206, 130, .2);
    }

    .btn-ghost {
      color: var(--green-900);
      background: #fff;
      border: 1px solid var(--line);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: var(--green-900);
      cursor: pointer;
    }

    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
      display: block;
      width: 18px;
      height: 2px;
      margin: 0 auto;
      background: currentColor;
      content: "";
    }

    .menu-btn span::before { transform: translateY(-6px); }
    .menu-btn span::after { transform: translateY(4px); }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: #fff;
      padding: 16px 20px 22px;
    }

    .mobile-menu.open { display: block; }
    .mobile-menu a:not(.btn) { display: block; padding: 12px 0; font-weight: 600; color: var(--muted); }
    .mobile-menu .btn { display: flex; margin-top: 8px; width: 100%; justify-content: center; }

    .hero {
      position: relative;
      min-height: calc(100vh - var(--topbar-height) - var(--header-height));
      min-height: calc(100svh - var(--topbar-height) - var(--header-height));
      display: flex;
      align-items: center;
      padding: 40px 0 34px;
      overflow: hidden;
      background:
        linear-gradient(100deg, rgba(250, 251, 247, .92) 0%, rgba(250, 251, 247, .58) 34%, rgba(250, 251, 247, .12) 62%, rgba(250, 251, 247, 0) 100%),
        linear-gradient(to bottom, rgba(250, 251, 247, 0) 55%, rgba(250, 251, 247, .85) 100%),
        url('./hero-banner.jpg') center 30% / cover no-repeat,
        linear-gradient(135deg, rgba(250, 251, 247, .98) 0%, rgba(224, 238, 233, .95) 53%, rgba(245, 250, 210, .88) 100%);
    }

    .hero::before {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(16, 42, 21, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 21, .055) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 75%);
      animation: grid-drift 18s linear infinite;
      content: "";
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 620px) minmax(360px, 500px);
      gap: 46px;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .hero-copy {
      width: 100%;
      max-width: 620px;
      min-width: 0;
      justify-self: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      max-width: 100%;
      margin-bottom: 22px;
      padding: 8px 14px;
      border: 1px solid rgba(46, 86, 48, .16);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      color: var(--green-700);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.25;
      box-shadow: 0 8px 26px rgba(16, 42, 21, .06);
    }


    h1,
    h2,
    h3 {
      margin: 0;
      font-family: "Space Grotesk", Inter, sans-serif;
      letter-spacing: 0;
      line-height: 1.04;
    }

    h1 {
      max-width: 690px;
      color: var(--green-950);
      overflow-wrap: break-word;
    }

    h1 span,
    h2 span { color: var(--green-600); }

    h1 .hero-title-main,
    h1 .hero-title-sub {
      display: block;
      color: inherit;
    }

    h1 .hero-title-main {
      max-width: 720px;
      font-size: clamp(38px, 3.45vw, 48px);
      line-height: 1;
    }

    h1 .hero-title-line {
      display: block;
      color: inherit;
    }

    h1 .hero-title-sub {
      max-width: 640px;
      margin-top: 16px;
      color: var(--green-800);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(21px, 1.75vw, 25px);
      font-weight: 600;
      line-height: 1.22;
    }

    .lead {
      max-width: 560px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 18px;
      font-weight: 500;
      line-height: 1.5;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-trustline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      max-width: 590px;
      margin: 22px 0 0;
    }

    @media (max-width: 640px) {
      .hero-trustline {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
      }

      .hero-trust-pill {
        justify-content: center;
        width: 100%;
      }

      .hero-copy h1 {
        font-size: 30px;
        line-height: 1.1;
      }

      .hero-copy h1 .hero-title-main {
        font-size: 34px;
        line-height: 1.04;
      }

      .hero-copy h1 .hero-title-sub {
        margin-top: 12px;
        font-size: 21px;
        line-height: 1.28;
      }
    }

    .hero-trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      color: var(--green-700);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .01em;
    }

    .hero-trust-pill svg {
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: .9;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .media-chips {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      color: var(--green-900);
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 12px 28px rgba(10, 31, 13, .12);
      backdrop-filter: blur(12px);
    }

    .media-chips .chip {
      position: absolute;
      background: rgba(255, 255, 255, .92);
      border-color: rgba(255,255,255,.72);
    }

    .media-chips .chip:nth-child(1) { left: -22px; top: 32px; }
    .media-chips .chip:nth-child(2) { right: -22px; top: 44%; }
    .media-chips .chip:nth-child(3) { left: 24px; bottom: 94px; }

    .check {
      display: grid;
      width: 18px;
      height: 18px;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: #51bc51;
      font-size: 12px;
      line-height: 1;
    }

    .badge-icon {
      display: grid;
      width: 20px;
      height: 20px;
      place-items: center;
      border-radius: 6px;
      background: rgba(81, 188, 81, .14);
      color: var(--green-700);
      flex: 0 0 auto;
    }

    .badge-icon svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-media {
      position: relative;
      width: 100%;
      max-width: 520px;
      justify-self: center;
    }

    .image-frame {
      position: relative;
      overflow: hidden;
      min-height: 440px;
      border: 1px solid rgba(255,255,255,.8);
      border-radius: 8px;
      background: var(--green-100);
      box-shadow: var(--shadow);
    }

    .image-frame img {
      width: 100%;
      height: 100%;
      min-height: 440px;
      object-fit: cover;
      object-position: center;
    }

    .image-frame::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 31, 13, .34), transparent 58%);
      content: "";
    }


    .trust {
      border-block: 1px solid rgba(76, 121, 53, .18);
      background: var(--green-100);
      padding: 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    }

    .trust-list {
      display: flex;
      width: max-content;
      gap: 34px;
      padding: 18px 34px 18px 0;
      animation: trust-marquee 28s linear infinite;
      will-change: transform;
    }

    .trust-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-width: max-content;
      color: var(--green-900);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
    }

    .trust:hover .trust-list { animation-play-state: paused; }

    @keyframes trust-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    section { padding: 88px 0; }

    .section-head {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
    }

    .kicker {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--green-700);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    h2 {
      font-size: clamp(32px, 4vw, 52px);
      color: var(--green-950);
    }

    .section-head p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.62;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .card {
      position: relative;
      min-height: 254px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 10px 34px rgba(16, 42, 21, .06);
      transition: border-color .4s ease-in-out;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      box-shadow: 0 16px 48px rgba(16, 42, 21, .13);
      opacity: 0;
      transition: opacity .4s ease-in-out;
      pointer-events: none;
    }

    .card:hover { border-color: rgba(76, 121, 53, .3); }
    .card:hover::after { opacity: 1; }

    .card:nth-child(2),
    .card:nth-child(5) { background: var(--green-100); }
    .card:nth-child(4) { background: var(--yellow); }

    .icon {
      display: grid;
      width: 50px;
      height: 50px;
      margin-bottom: 20px;
      place-items: center;
      border-radius: 8px;
      background: rgba(46, 86, 48, .1);
      color: var(--green-700);
    }

    .icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 2;
    }

    .card h3 {
      margin-bottom: 11px;
      font-size: 21px;
      color: var(--green-950);
      line-height: 1.18;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.62;
    }

    .offer {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: radial-gradient(circle at 80% 15%, rgba(189, 206, 130, .18), transparent 32%),
                  linear-gradient(135deg, var(--green-950), var(--green-700) 54%, var(--green-950));
    }

    .offer::before,
    .offer::after {
      position: absolute;
      width: 620px;
      height: 620px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 50%;
      content: "";
    }

    .offer::before { top: -350px; right: -210px; }
    .offer::after { bottom: -390px; left: -220px; }

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

    .offer h2 { color: #fff; }
    .offer h2 span { color: var(--lime); }

    .offer p {
      margin: 18px auto 0;
      max-width: 680px;
      color: rgba(255,255,255,.74);
      font-size: 18px;
      line-height: 1.62;
    }

    .offer .btn { margin-top: 30px; }

    /* Countdown inside offer block */
    .offer-countdown {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin: 28px auto 0;
      padding: 14px 22px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 12px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(6px);
      width: fit-content;
    }

    .offer-cd-label {
      display: flex;
      flex-direction: column;
      gap: 1px;
      padding-right: 16px;
      border-right: 1px solid rgba(255,255,255,.18);
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--lime);
      line-height: 1.55;
      white-space: nowrap;
    }

    .offer-cd-boxes {
      display: flex;
      align-items: flex-end;
      gap: 6px;
    }

    .offer-cd-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      min-width: 50px;
      padding: 8px 6px 6px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 7px;
      background: rgba(255,255,255,.07);
    }

    .offer-cd-num {
      font-size: 24px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      color: #fff;
      line-height: 1;
    }

    .offer-cd-unit {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.6);
    }

    .offer-cd-sep {
      font-size: 20px;
      font-weight: 700;
      color: var(--lime);
      margin-bottom: 14px;
    }

    @media (max-width: 640px) {
      .offer-countdown { flex-direction: column; gap: 12px; }
      .offer-cd-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); padding-right: 0; padding-bottom: 10px; flex-direction: row; gap: 6px; }
      .offer-cd-box { min-width: 44px; }
      .offer-cd-num { font-size: 20px; }
    }

    .offer-note {
      margin-top: 12px;
      max-width: 620px;
      margin-inline: auto;
      color: rgba(255,255,255,.56);
      font-size: 12px;
      line-height: 1.45;
    }

    .offer-note strong { color: var(--lime); font-weight: 700; }

    .offer-note a {
      color: var(--lime);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .offer-note a:hover { color: #fff; }

    .process {
      background: var(--soft);
    }

    .process .section-head {
      margin-inline: auto;
      text-align: center;
    }

    .process-grid {
      display: grid;
      grid-template-columns: minmax(0, 860px);
      gap: 44px;
      align-items: start;
      justify-content: center;
    }

    .video-box {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--green-950);
      box-shadow: var(--shadow);
      aspect-ratio: 16 / 9;
    }

    .video-box iframe,
    .video-play {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-play {
      position: relative;
      padding: 0;
      overflow: hidden;
      background: var(--green-950);
      cursor: pointer;
    }

    .video-play img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .82;
      transition: transform .35s ease, opacity .35s ease;
    }

    .video-play::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,31,13,.46), rgba(10,31,13,.08));
      content: "";
    }

    .video-play:hover img {
      opacity: .95;
      transform: scale(1.03);
    }

    .video-play-icon {
      position: absolute;
      inset: 50% auto auto 50%;
      z-index: 1;
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: rgba(255,255,255,.94);
      box-shadow: 0 18px 44px rgba(10,31,13,.28);
      transform: translate(-50%, -50%);
    }

    .video-play-icon::before {
      position: absolute;
      top: 50%;
      left: 52%;
      border-block: 15px solid transparent;
      border-left: 24px solid var(--green-700);
      transform: translate(-42%, -50%);
      content: "";
    }

    .video-fallback {
      position: absolute;
      right: 16px;
      bottom: 14px;
      z-index: 2;
      color: rgba(255,255,255,.82);
      font-size: 13px;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .steps {
      display: grid;
      gap: 16px;
    }

    .step {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 18px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }

    .step-num {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 50%;
      background: var(--green-700);
      color: #fff;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 20px;
      font-weight: 700;
    }

    .step h3 { margin-bottom: 7px; font-size: 20px; }
    .step p { margin: 0; color: var(--muted); line-height: 1.58; }

    .cases-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .case-card {
      display: grid;
      grid-template-columns: minmax(340px, 42%) minmax(0, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 12px 38px rgba(16, 42, 21, .08);
    }

    .case-card:nth-child(even) {
      grid-template-columns: minmax(0, 1fr) minmax(340px, 42%);
    }

    .case-card:nth-child(even) .case-photo {
      grid-column: 2;
    }

    .case-card:nth-child(even) .case-body {
      grid-column: 1;
      grid-row: 1;
    }

    .case-photo {
      position: relative;
      min-height: 390px;
      overflow: hidden;
      background: var(--green-100);
    }

    .case-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .case-card:hover .case-photo img { transform: scale(1.05); }

    .case-photo::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,31,13,.7), transparent 64%);
      content: "";
    }

    .case-label {
      position: absolute;
      left: 22px;
      bottom: 22px;
      z-index: 1;
      color: #fff;
    }

    .case-label small {
      display: block;
      margin-bottom: 6px;
      color: var(--lime);
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .case-label strong {
      display: block;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 28px;
      line-height: 1.1;
    }

    .case-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 34px;
    }

    .case-route {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 17px;
      font-weight: 700;
    }

    .case-body p {
      margin: 0 0 20px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.62;
    }

    .case-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .case-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 7px 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--green-50);
      color: var(--green-950);
      font-size: 13px;
      font-weight: 600;
    }

    .case-list li::before {
      color: #51bc51;
      content: "✓";
    }

    .case-result {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      color: var(--ink);
      font-weight: 700;
      font-size: 15px;
      line-height: 1.45;
    }

    .powered {
      padding: 0 0 64px;
      background: #fff;
    }

    .powered-panel {
      display: grid;
      grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
      gap: 30px 36px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 16px 46px rgba(16, 42, 21, .08);
    }

    .powered-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 116px;
      padding: 24px;
      border: 1px solid rgba(40, 39, 127, .12);
      border-radius: 8px;
      background: rgba(40, 39, 127, .04);
    }

    .powered-logo img {
      width: min(100%, 250px);
      height: auto;
    }

    .powered-copy h2 {
      margin-top: 8px;
      font-size: clamp(28px, 3.2vw, 40px);
    }

    .powered-copy p {
      margin: 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.62;
    }

    .powered-copy strong {
      color: var(--green-950);
    }

    .powered-brand {
      color: #28277f;
      font-weight: 700;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .count-box {
      min-width: 78px;
      padding: 14px 10px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
    }

    .count-num {
      color: #fff;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .count-label {
      margin-top: 6px;
      color: rgba(255,255,255,.62);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* ─── Stats block ─── */
    .stats {
      padding: 88px 0;
      background: #fff;
      border-top: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      background: var(--line);
      box-shadow: 0 12px 40px rgba(16, 42, 21, .07);
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 48px 32px;
      background: #fff;
      text-align: center;
    }

    .stat-num {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: clamp(40px, 4.5vw, 60px);
      font-weight: 700;
      color: var(--green-700);
      line-height: 1;
    }

    .stat-label {
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      line-height: 1.45;
      max-width: 160px;
    }

    @media (max-width: 980px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }
      .stat-item {
        padding: 32px 20px;
      }
      .stat-label {
        font-size: 13px;
      }
    }

    .footer {
      padding: 44px 0 30px;
      color: rgba(255,255,255,.72);
      background: var(--green-950);
    }

    .footer-top,
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-top {
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer img {
      width: 148px;
      margin-bottom: 12px;
      filter: brightness(0) invert(1);
    }

    .footer p { max-width: 410px; margin: 0; font-size: 14px; line-height: 1.55; }
    .footer-bottom { padding-top: 22px; font-size: 14px; }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }

    .social-link {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50%;
      color: rgba(255,255,255,.78);
      background: rgba(255,255,255,.06);
      transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
    }

    .social-link:hover {
      color: #fff;
      border-color: rgba(255,255,255,.32);
      background: rgba(255,255,255,.12);
      transform: translateY(-1px);
    }

    .social-link svg {
      width: 19px;
      height: 19px;
      fill: currentColor;
      stroke: none;
    }

    .footer a:hover { color: #fff; }

    .sticky-offer {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 80;
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: calc(100% - 44px);
      padding: 12px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 8px;
      background: rgba(10, 31, 13, .94);
      color: #fff;
      box-shadow: 0 22px 60px rgba(10, 31, 13, .28);
      backdrop-filter: blur(18px);
      opacity: 1;
      transform: translateY(0);
    }

    .js .sticky-offer {
      pointer-events: none;
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity .55s cubic-bezier(.2, .7, .2, 1),
        transform .55s cubic-bezier(.2, .7, .2, 1);
    }

    .js .sticky-offer.is-visible {
      pointer-events: auto;
      opacity: 1;
      transform: translateY(0);
    }

    .sticky-offer-text {
      display: grid;
      gap: 2px;
      padding-left: 4px;
      min-width: 152px;
    }

    .sticky-offer-text strong {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 18px;
      line-height: 1;
    }

    .sticky-offer-text span {
      color: rgba(255,255,255,.68);
      font-size: 12px;
      font-weight: 600;
    }

    .sticky-offer .btn {
      min-height: 42px;
      padding: 10px 16px;
      white-space: nowrap;
    }

    .fade {
      opacity: 1;
      transform: none;
    }

    .js .fade {
      opacity: 0;
      transform: translateY(22px) scale(.985);
      transition:
        opacity .72s cubic-bezier(.2, .7, .2, 1),
        transform .72s cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .js .fade.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-media.visible .media-chips .chip {
      animation: chip-pop .72s cubic-bezier(.18, .9, .28, 1.18) both;
    }

    .js .media-chips .chip {
      opacity: 0;
    }

    /* ─── Summary card entrance animation ─── */
    .js .summary-card > * {
      opacity: 0;
      transform: translateY(16px);
      transition:
        opacity .42s cubic-bezier(.2, .7, .2, 1),
        transform .42s cubic-bezier(.18, .9, .28, 1.1);
    }

    .hero-media.visible .summary-card > * {
      opacity: 1;
      transform: none;
    }

    .hero-media.visible .summary-card > *:nth-child(1) { transition-delay: .40s; }
    .hero-media.visible .summary-card > *:nth-child(2) { transition-delay: .48s; }
    .hero-media.visible .summary-card > *:nth-child(3) { transition-delay: .56s; }
    .hero-media.visible .summary-card > *:nth-child(4) { transition-delay: .64s; }
    .hero-media.visible .summary-card > *:nth-child(5) { transition-delay: .72s; }
    .hero-media.visible .summary-card > *:nth-child(6) { transition-delay: .80s; }

    .hero-media.visible .media-chips .chip:nth-child(1) { animation-delay: .35s; }
    .hero-media.visible .media-chips .chip:nth-child(2) { animation-delay: .55s; }
    .hero-media.visible .media-chips .chip:nth-child(3) { animation-delay: .75s; }

    @keyframes slide-down {
      from {
        opacity: 0;
        transform: translateY(-14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes grid-drift {
      from { background-position: 0 0; }
      to { background-position: 46px 46px; }
    }

    @keyframes chip-pop {
      0% {
        opacity: 0;
        transform: translateY(18px) scale(.92);
      }
      68% {
        opacity: 1;
        transform: translateY(-3px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes sticky-offer-in {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── Summary Card (hero) ─── */
    .summary-card {
      position: relative;
      width: 100%;
      padding: 26px 28px 24px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #E9E9E9;
      box-shadow: var(--shadow);
    }

    .sc-title {
      margin: 0 0 20px;
      font-size: 24px;
      font-weight: 700;
      color: #1A1A1A;
      line-height: 1.2;
    }

    .sc-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .sc-thumb {
      flex-shrink: 0;
      width: 120px;
      height: 120px;
      border-radius: 10px;
      overflow: hidden;
      background: var(--green-100);
    }

    .sc-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sc-item-info {
      flex: 1;
      min-width: 0;
    }

    .sc-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 8px;
    }

    .sc-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 2px 9px;
      border-radius: 999px;
      background: #F6F6F6;
      color: #555;
      font-size: 11px;
      font-weight: 600;
      white-space: nowrap;
    }

    .sc-chip--check { color: var(--green-700); }
    .sc-chip--check svg { flex-shrink: 0; }

    .sc-name {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
      color: #1A1A1A;
    }

    .sc-fav {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid #E9E9E9;
      border-radius: 8px;
      background: #fff;
      color: #9a9a9a;
      cursor: pointer;
      transition: color .18s, border-color .18s;
    }

    .sc-fav:hover { color: var(--green-700); border-color: var(--green-700); }

    .sc-rows {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid #E9E9E9;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sc-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .sc-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      color: #555;
    }

    .sc-info { flex-shrink: 0; color: #b0b0b0; }

    .sc-val {
      font-size: 14px;
      font-weight: 600;
      color: #1A1A1A;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .sc-route {
      display: flex;
      gap: 24px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid #E9E9E9;
    }

    .sc-route-col {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }

    .sc-route-tag {
      font-size: 11px;
      font-weight: 600;
      color: #999;
    }

    .sc-place {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #1A1A1A;
    }

    .sc-flag { font-size: 17px; line-height: 1; flex-shrink: 0; }

    .sc-total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid #E9E9E9;
    }

    .sc-total-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      font-weight: 700;
      color: #1A1A1A;
    }

    .sc-total-val {
      font-size: 20px;
      font-weight: 700;
      color: #1A1A1A;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .sc-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 18px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid #E9E9E9;
    }

    .sc-feature {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: #444;
    }

    .sc-feature svg { flex-shrink: 0; color: var(--green-700); }

    /* Live dot pulsing badge */
    .live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #51bc51;
      flex-shrink: 0;
      animation: live-pulse 2s ease-in-out infinite;
    }

    @keyframes live-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(81, 188, 81, .5); }
      50% { box-shadow: 0 0 0 5px rgba(81, 188, 81, 0); }
    }

    /* Chips row below the listing gallery (not overlaid) */
    .hero-media .media-chips {
      position: static;
      inset: auto;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      padding: 10px 0 0;
      pointer-events: auto;
    }

    .hero-media .media-chips .chip {
      position: static;
    }

    /* Used tag chip variant */
    .chip--tag {
      background: rgba(255, 247, 209, .96);
      border-color: rgba(180, 140, 30, .25);
      color: #7a5800;
    }

    /* ─── Hero title accent (inline green) ─── */
    .hero-title-accent {
      display: inline;
    }

    /* ─── Compact trust row ─── */
    .hero-trust-inline {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 18px;
      margin-top: 20px;
    }

    .hti {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 13.5px;
      font-weight: 500;
    }

    .hti svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      stroke: var(--green-600);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─── Hero note below CTA ─── */
    .hero-note {
      margin: 10px 0 0;
      max-width: 540px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
    }

    .hero-note strong {
      color: var(--green-700);
      font-weight: 700;
    }

    .hero-note a {
      color: var(--green-700);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ─── Hero Countdown (card box layout) ─── */
    .hero-countdown {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
      padding: 13px 18px;
      border: 1px solid rgba(46, 86, 48, .18);
      border-radius: 10px;
      background: rgba(255, 255, 255, .62);
      backdrop-filter: blur(8px);
      max-width: fit-content;
    }

    .hero-countdown-label {
      display: flex;
      flex-direction: column;
      gap: 1px;
      padding-right: 14px;
      border-right: 1px solid rgba(46, 86, 48, .14);
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--green-800);
      line-height: 1.55;
    }

    .hero-count-boxes {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-count-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 48px;
      padding: 7px 6px 5px;
      border: 1px solid rgba(46, 86, 48, .14);
      border-radius: 6px;
      background: rgba(255, 255, 255, .8);
    }

    .hero-count-num {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--green-950);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .hero-count-label {
      margin-top: 3px;
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-count-sep {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--green-600);
      line-height: 1;
      margin-bottom: 10px;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .js .fade,
      .media-chips .chip,
      .js .summary-card > * {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav-actions { display: none; }

      .menu-btn { display: inline-grid; place-items: center; }

      .hero-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: calc(100vh - var(--topbar-height) - var(--header-height));
        min-height: calc(100svh - var(--topbar-height) - var(--header-height));
        padding-top: 56px;
      }

      .hero-copy {
        max-width: 720px;
        text-align: center;
      }

      h1 {
        max-width: 720px;
        margin-inline: auto;
        font-size: clamp(34px, 5.5vw, 44px);
      }

      .lead { margin-inline: auto; }

      .hero-trustline {
        justify-content: center;
        margin-inline: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .image-frame,
      .image-frame img { min-height: 420px; }

      .media-chips .chip:nth-child(1) { left: 18px; top: 20px; }
      .media-chips .chip:nth-child(2) { right: 18px; top: 48%; }
      .media-chips .chip:nth-child(3) { left: 18px; bottom: 74px; }

      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-card,
      .case-card:nth-child(even) {
        grid-template-columns: 1fr;
      }

      .case-card:nth-child(even) .case-photo,
      .case-card:nth-child(even) .case-body {
        grid-column: auto;
        grid-row: auto;
      }

      .case-photo {
        min-height: 340px;
      }

      .powered-panel {
        grid-template-columns: 1fr;
      }

      .video-box { position: relative; top: auto; }

      .hero-trust-inline { justify-content: center; }
      .hero-countdown { margin-inline: auto; }
      .hero-note { text-align: center; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, 1180px); }

      .topbar {
        display: none;
      }

      .site-header {
        position: sticky;
        top: 0;
      }

      .nav { height: 66px; }
      .brand img { width: 132px; }

      .hero {
        min-height: calc(100vh - var(--topbar-height) - var(--header-height));
        min-height: calc(100svh - var(--topbar-height) - var(--header-height));
        padding: 42px 0 44px;
      }
      .hero-copy {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
      }
      .eyebrow {
        justify-content: center;
        white-space: normal;
      }
      h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.08;
      }

      .hero-trustline {
        grid-template-columns: 1fr;
        max-width: 360px;
      }

      .lead {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        overflow-wrap: break-word;
      }

      .hero-actions,
      .hero-actions .btn { width: 100%; }

      .image-frame,
      .image-frame img { min-height: 330px; }

      .media-chips .chip {
        position: static;
        width: fit-content;
      }

      .media-chips {
        inset: auto 12px 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      section { padding: 64px 0; }

      .powered {
        padding: 0 0 48px;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .case-photo {
        min-height: 280px;
      }

      .case-label strong {
        font-size: 23px;
      }

      .case-body {
        padding: 22px;
      }

      .powered-panel {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .step { grid-template-columns: 1fr; }

      .countdown {
        display: flex;
        gap: 8px;
      }

      .count-box {
        flex: 1;
        min-width: 0;
        padding: 10px 6px;
      }

      .count-num { font-size: 24px; }

      .count-label { font-size: 9px; }

      .footer-top,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .sticky-offer {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: space-between;
      }

      .sticky-offer-text {
        min-width: 0;
      }

      .sticky-offer .btn {
        padding-inline: 12px;
      }

      .offer::before,
      .offer::after { display: none; }

      .hero-countdown { margin-top: 18px; padding: 11px 14px; gap: 10px; max-width: 100%; }
      .hero-countdown-label { font-size: 8.5px; padding-right: 10px; }
      .hero-count-box { min-width: 40px; padding: 6px 5px 4px; }
      .hero-count-num { font-size: 17px; }
      .hero-count-sep { font-size: 15px; margin-bottom: 10px; }
      .hero-trust-inline { gap: 5px 14px; }
      .hti { font-size: 12.5px; }
      .hero-note { font-size: 11.5px; }

      .summary-card { padding: 20px 18px; }
      .sc-title { font-size: 21px; margin-bottom: 16px; }
      .sc-thumb { width: 92px; height: 92px; }
      .sc-name { font-size: 14px; }
      .sc-route { flex-direction: column; gap: 14px; }
      .sc-features { grid-template-columns: 1fr; gap: 9px; }
    }

    /* ===================== Language switcher ===================== */
    .lang-switch { position: relative; }

    .lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
      cursor: pointer;
      transition: border-color .18s ease, background .18s ease;
    }
    .lang-btn:hover { border-color: var(--green-600); background: var(--green-50); }
    .lang-btn > svg:first-child { color: var(--green-700); flex-shrink: 0; }
    .lang-chev { transition: transform .2s ease; }
    .lang-switch.open .lang-chev { transform: rotate(180deg); }
    .lang-code { letter-spacing: .03em; }

    .lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      z-index: 120;
      min-width: 178px;
      margin: 0;
      padding: 6px;
      list-style: none;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 18px 44px rgba(16, 42, 21, .16);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity .16s ease, transform .16s ease, visibility .16s;
    }
    .lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

    .lang-menu li {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 9px 10px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: background .14s ease;
    }
    .lang-menu li:hover { background: var(--green-50); }
    .lang-menu li.is-active { background: var(--green-50); color: var(--green-700); font-weight: 700; }
    .lang-flag { font-size: 16px; line-height: 1; }

    /* Mobile variant — lives inside the mobile menu */
    .lang-switch--mobile { width: 100%; margin: 4px 0; }
    .lang-switch--mobile .lang-btn { width: 100%; justify-content: space-between; padding: 12px 16px; border-radius: 12px; font-size: 15px; }
    .lang-switch--mobile .lang-menu { position: static; min-width: 0; width: 100%; margin-top: 6px; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
    .lang-switch--mobile.open .lang-menu { display: block; }

    /* ===================== RTL (Arabic) ===================== */
    [dir="rtl"] body,
    [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
    [dir="rtl"] .sc-name, [dir="rtl"] .case-label strong {
      font-family: "Noto Sans Arabic", "Inter", system-ui, -apple-system, sans-serif;
    }
    [dir="rtl"] .hero-copy,
    [dir="rtl"] .lead,
    [dir="rtl"] .hero-note,
    [dir="rtl"] .card,
    [dir="rtl"] .case-body,
    [dir="rtl"] .powered-copy,
    [dir="rtl"] .offer-note { text-align: right; }
    [dir="rtl"] .lang-menu { right: auto; left: 0; }
    [dir="rtl"] .case-list { padding-right: 0; }
