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

    :root {
      --green:       #06542D;
      --green-dark:  #034b35;
      --green-deep:  #193226;
      --green-light: rgba(6,84,45,0.08);
      --lime:        #C7FF8C;
      --lime-dark:   #a8e070;
      --cream:       #FFFBF4;
      --white:       #ffffff;
      --gray-dark:   #222222;
      --gray:        #555555;
      --border:      #e8dfd4;
      --radius:      14px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--gray-dark);
      background: var(--cream);
      line-height: 1.6;
    }

    /* ─────────────── NAV ─────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255,251,244,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      /* Align the logo/menu with the 1200px content box: on wide screens the
         side padding grows to centre a 1200px band, matching .max-w/.hero-inner;
         on narrow screens it falls back to 6%. */
      padding: 0 max(6%, calc((100% - 1200px) / 2));
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo img { height: 36px; width: auto; display: block; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-dark);
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--green);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 8px;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--green-dark) !important; }

    .nav-contact-sep {
      width: 1px;
      height: 18px;
      background: var(--border);
    }

    .nav-phone {
      font-size: 0.88rem !important;
      font-weight: 600 !important;
      color: var(--gray-dark) !important;
      white-space: nowrap;
    }
    .nav-phone:hover { color: var(--green) !important; }

    .nav-hamburger { display: none; cursor: pointer; }

    /* ─────────────── HERO ─────────────── */
    .hero {
      background: var(--green-deep);
      color: var(--white);
      padding: 90px 6% 80px;
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('/img/hero-bg-l.webp');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.22;
    }

    @media (max-width: 768px) {
      .hero-bg {
        background-image: url('/img/hero-bg-m.webp');
        background-position: left 30%;
      }
    }

    .hero-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(199,255,140,0.15);
      border: 1px solid rgba(199,255,140,0.4);
      color: var(--lime);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--lime);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero h1 {
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--lime);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(199,255,140,0.7);
      max-width: 460px;
      margin-bottom: 28px;
      line-height: 1.75;
    }

    .hero-trust {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 0;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: rgba(199,255,140,0.65);
      font-weight: 500;
    }

    .hero-trust-item::before {
      content: '✓';
      background: var(--lime);
      color: var(--green-deep);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 900;
      flex-shrink: 0;
    }

    /* Hero Google reviews block */
    .hero-google {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(199,255,140,0.22);
      padding: 12px 18px;
      border-radius: 14px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .hero-google-logo {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
    }

    .hero-google-divider {
      width: 1px;
      height: 28px;
      background: rgba(199,255,140,0.22);
    }

    .hero-google-stars {
      display: flex;
      gap: 2px;
    }

    .hero-google-stars svg {
      width: 15px;
      height: 15px;
      fill: #FBBC05;
    }

    .hero-google-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .hero-google-rating {
      font-weight: 800;
      color: var(--white);
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-google-rating .rating-num {
      letter-spacing: -0.3px;
    }

    .hero-google-count {
      font-size: 0.72rem;
      color: rgba(199,255,140,0.7);
      margin-top: 2px;
      letter-spacing: 0.2px;
    }

    /* Hero form card */
    .hero-form {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .hero-form-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      width: 100%;
      box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    }

    .hfc-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--green-deep);
      margin-bottom: 4px;
    }

    .hfc-sub {
      font-size: 0.82rem;
      color: var(--gray);
      margin-bottom: 22px;
    }

    .hero-form-card .form-group {
      margin-bottom: 14px;
    }

    .hero-form-card .form-group label {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--gray-dark);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 4px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .hero-form-card .form-group label .req {
      color: var(--green);
      font-weight: 900;
    }

    .hero-form-card .form-group label .opt {
      color: var(--gray);
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0;
    }

    .input-wrap {
      position: relative;
      display: block;
    }

    .input-wrap .input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: #aaa499;
      pointer-events: none;
      transition: color 0.25s ease, transform 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .input-wrap .input-icon svg {
      width: 100%;
      height: 100%;
    }

    .input-wrap .input-check {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 900;
      opacity: 0;
      transition: transform 0.25s ease, opacity 0.25s ease;
      pointer-events: none;
    }

    .form-group.is-valid .input-check {
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }

    .hero-form-card .form-group input,
    .hero-form-card .form-group select {
      padding: 13px 14px 13px 42px;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      font-size: 0.9rem;
      font-family: inherit;
      color: var(--gray-dark);
      background: var(--white);
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      outline: none;
      width: 100%;
      appearance: none;
      -webkit-appearance: none;
    }

    .hero-form-card .form-group textarea {
      padding: 13px 14px 13px 42px;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      font-size: 0.9rem;
      font-family: inherit;
      line-height: 1.5;
      color: var(--gray-dark);
      background: var(--white);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
      outline: none;
      width: 100%;
      display: block;
      resize: vertical;
      min-height: 84px;
    }

    /* The icon sits at the vertical centre of single-line fields; on the
       message box it belongs next to the first line instead. */
    .form-group-message .input-wrap .input-icon {
      top: 20px;
      transform: none;
    }

    .form-group-message .input-wrap:focus-within .input-icon {
      transform: scale(1.1);
    }

    .hero-form-card .form-group input::placeholder,
    .hero-form-card .form-group textarea::placeholder {
      color: #b8b1a4;
    }

    .hero-form-card .form-group input:hover,
    .hero-form-card .form-group select:hover,
    .hero-form-card .form-group textarea:hover {
      border-color: rgba(6,84,45,0.35);
    }

    .hero-form-card .form-group input:focus,
    .hero-form-card .form-group select:focus,
    .hero-form-card .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(6,84,45,0.1);
      background: var(--white);
    }

    .input-wrap:focus-within .input-icon {
      color: var(--green);
      transform: translateY(-50%) scale(1.1);
    }

    /* Custom select arrow */
    .hero-form-card .form-group select {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 38px;
      cursor: pointer;
    }

    /* Validation states */
    .hero-form-card .form-group.has-error input,
    .hero-form-card .form-group.has-error select {
      border-color: #d94545;
      background: rgba(217,69,69,0.04);
      box-shadow: 0 0 0 4px rgba(217,69,69,0.08);
    }

    .hero-form-card .form-group.has-error .input-icon {
      color: #d94545;
    }

    .form-error {
      font-size: 0.74rem;
      color: #d94545;
      margin-top: 6px;
      font-weight: 600;
      display: none;
      align-items: center;
      gap: 5px;
    }

    .form-error::before {
      content: '⚠';
      font-size: 0.85rem;
    }

    .hero-form-card .form-group.has-error .form-error {
      display: flex;
      animation: shake 0.4s ease-in-out;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-3px); }
      40%, 80% { transform: translateX(3px); }
    }

    .hfc-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: var(--white);
      border: none;
      padding: 15px;
      border-radius: 11px;
      font-size: 0.96rem;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
      margin-top: 8px;
      box-shadow: 0 8px 22px rgba(6,84,45,0.28);
      letter-spacing: 0.3px;
      position: relative;
      overflow: hidden;
    }

    .hfc-submit::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transition: left 0.5s ease;
    }

    .hfc-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(6,84,45,0.38);
    }

    .hfc-submit:hover::before { left: 100%; }

    .hfc-submit:active { transform: translateY(0); }

    .hfc-submit.is-loading {
      pointer-events: none;
      opacity: 0.85;
    }

    .hfc-success {
      background: rgba(6,84,45,0.06);
      border: 1.5px solid var(--green);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      display: none;
    }

    .hfc-success.is-shown { display: block; animation: fadeIn 0.4s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hfc-success-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      margin: 0 auto 12px;
    }

    .hfc-success-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--green-deep);
      margin-bottom: 4px;
    }

    .hfc-success-text {
      font-size: 0.85rem;
      color: var(--gray);
    }

    .hfc-note {
      text-align: center;
      font-size: 0.73rem;
      color: var(--gray);
      margin-top: 10px;
    }

    /* ─────────────── STATS ─────────────── */
    .stats {
      background: var(--green);
      padding: 52px 6%;
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .stat-divider {
      border-right: 1px solid rgba(255,255,255,0.15);
    }

    .stat-divider:last-child { border-right: none; }

    .stat-value {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--lime);
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -1px;
    }

    .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ─────────────── SHARED SECTION ─────────────── */
    section { padding: 88px 6%; }

    .max-w { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
      display: block;
    }

    .section-title {
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.8px;
      margin-bottom: 14px;
      color: var(--black);
    }

    .section-sub {
      font-size: 1rem;
      color: var(--gray);
      max-width: 540px;
      line-height: 1.75;
    }

    /* ─────────────── COMPARISON ─────────────── */
    .comparison-section {
      background: var(--cream);
      padding: 88px 6%;
    }

    .comparison-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .comparison-header .section-sub { margin: 0 auto; }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .comparison-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 32px;
      border: 1.5px solid var(--border);
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .comparison-card.con {
      background: var(--white);
      border: 1.5px solid var(--border);
    }

    .comparison-card.pro {
      background: var(--green-deep);
      border: 1.5px solid var(--green-deep);
      color: var(--white);
      box-shadow: 0 24px 60px rgba(6,84,45,0.18);
    }

    .comparison-card.pro::before {
      content: 'Recommandé';
      position: absolute;
      top: -14px;
      right: 28px;
      background: var(--lime);
      color: var(--green-deep);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
    }

    .comp-card-label {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }

    .comparison-card.con .comp-card-label { color: #c44; }
    .comparison-card.pro .comp-card-label { color: var(--lime); }

    .comp-card-title {
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -0.5px;
      margin-bottom: 22px;
    }

    .comparison-card.pro .comp-card-title { color: var(--white); }

    .comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

    .comp-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      align-items: start;
      gap: 14px;
      font-size: 0.94rem;
      line-height: 1.5;
      min-height: 24px;
    }

    .comparison-card.con .comp-list li { color: var(--gray); }
    .comparison-card.pro .comp-list li { color: rgba(255,255,255,0.88); }

    .comp-list li::before {
      content: '';
      width: 24px;
      height: 24px;
      border-radius: 50%;
      flex-shrink: 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 12px 12px;
      align-self: start;
      margin-top: 1px;
    }

    .comparison-card.con .comp-list li::before {
      background-color: rgba(196,68,68,0.14);
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23c44' stroke-width='2.6' stroke-linecap='round'><line x1='3.5' y1='3.5' x2='10.5' y2='10.5'/><line x1='10.5' y1='3.5' x2='3.5' y2='10.5'/></svg>");
    }

    .comparison-card.pro .comp-list li::before {
      background-color: var(--lime);
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23193226' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='3,7.4 6,10 11,4.4'/></svg>");
    }

    /* ─────────────── FEATURES ─────────────── */
    .features { background: var(--cream); }

    .features-header {
      max-width: 720px;
      margin: 0 auto 56px;
      text-align: center;
    }
    .features-header .section-sub { margin: 0 auto; }

    .features-anim-wrap {
      width: 100%;
      height: 300px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      background: var(--cream);
    }
    .features-anim-wrap canvas {
      display: block;
      width: 100%;
      height: 100%;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    }

    .feature-card:hover {
      box-shadow: 0 8px 36px rgba(0,0,0,0.08);
      transform: translateY(-3px);
      border-color: rgba(6,84,45,0.25);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; color: var(--black); }
    .feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

    /* ─────────────── PRODUCT SPLIT ─────────────── */
    .product-section { background: var(--cream); }

    .product-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .product-split.reverse { direction: rtl; }
    .product-split.reverse > * { direction: ltr; }

    /* Stage container holds image + floating badges */
    .product-img-stage {
      position: relative;
    }

    .product-img-wrap {
      position: relative;
      border-radius: 24px;
      background: linear-gradient(135deg, #f7fcf0 0%, #e9f4d7 60%, #d8ecbb 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 56px 40px;
      overflow: hidden;
      border: 1px solid rgba(199,255,140,0.5);
      box-shadow: 0 24px 60px rgba(6,84,45,0.14);
      min-height: 460px;
    }

    .product-img-wrap::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,255,140,0.6), transparent 70%);
      filter: blur(20px);
      pointer-events: none;
    }

    .product-img-wrap::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(6,84,45,0.18), transparent 70%);
      filter: blur(24px);
      pointer-events: none;
    }

    .product-img-wrap img {
      max-width: 100%;
      max-height: 440px;
      object-fit: contain;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 28px 50px rgba(6,84,45,0.28));
    }

    /* Floating highlight badges */
    .product-badge {
      position: absolute;
      background: var(--white);
      border-radius: 14px;
      padding: 10px 14px;
      box-shadow: 0 14px 36px rgba(6,84,45,0.18);
      border: 1px solid rgba(6,84,45,0.06);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 3;
      animation: badge-float 4.5s ease-in-out infinite;
    }

    @keyframes badge-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .product-badge-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--green);
      color: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .product-badge-icon svg {
      width: 18px;
      height: 18px;
    }

    .product-badge-icon.alt {
      background: var(--lime);
      color: var(--green-deep);
    }

    .product-badge-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .product-badge-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--green-deep);
      white-space: nowrap;
      letter-spacing: -0.1px;
    }

    .product-badge-sub {
      font-size: 0.68rem;
      color: var(--gray);
      margin-top: 2px;
      font-weight: 500;
    }

    /* Badges positioned symmetrically at the 4 corners, sitting on the wrap */
    .product-badge.b-tl { top: 16px; left: 16px; }
    .product-badge.b-tr { top: 16px; right: 16px; }
    .product-badge.b-bl { bottom: 16px; left: 16px; }
    .product-badge.b-br { bottom: 16px; right: 16px; }

    .product-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

    .product-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--gray-dark);
    }

    .product-list li::before {
      content: '✓';
      background: var(--green);
      color: var(--white);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─────────────── HOW IT WORKS ─────────────── */
    .how { background: var(--cream); position: relative; overflow: hidden; }

    .how-header { text-align: center; max-width: 640px; margin: 0 auto; }
    .how-header .section-sub { margin: 0 auto; }

    .steps-flow {
      position: relative;
      margin-top: 96px;
      padding-top: 40px;
    }

    .steps-flow::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 18%;
      right: 18%;
      height: 3px;
      background-image: linear-gradient(90deg, rgba(6,84,45,0.45) 50%, transparent 50%);
      background-size: 14px 3px;
      background-repeat: repeat-x;
      z-index: 0;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
      z-index: 1;
    }

    .step {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 60px 28px 28px;
      position: relative;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .step:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(6,84,45,0.12);
      border-color: rgba(6,84,45,0.3);
    }

    .step-num {
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: var(--white);
      font-size: 1.9rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px rgba(6,84,45,0.28);
      border: 5px solid var(--cream);
      z-index: 2;
    }

    .step-num::after {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      border: 2px dashed rgba(6,84,45,0.18);
    }

    .step:hover .step-num {
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 16px 36px rgba(6,84,45,0.35);
    }

    .step-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      color: var(--green);
      background: var(--green-light);
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .step h3 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--gray-dark);
      letter-spacing: -0.2px;
    }

    .step p {
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.65;
    }

    .step-arrow {
      position: absolute;
      top: 0;
      right: -32px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--lime);
      color: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      font-weight: 900;
      box-shadow: 0 6px 18px rgba(199,255,140,0.5);
      z-index: 3;
      animation: arrow-nudge 2s ease-in-out infinite;
    }

    @keyframes arrow-nudge {
      0%, 100% { transform: translateY(-50%) translateX(0); }
      50% { transform: translateY(-50%) translateX(4px); }
    }

    .step:last-child .step-arrow { display: none; }

    .steps-finish {
      text-align: center;
      margin-top: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--green);
    }

    .steps-finish::before,
    .steps-finish::after {
      content: '';
      flex: 0 0 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(6,84,45,0.3), transparent);
    }

    .steps-finish-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 100px;
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.3px;
      box-shadow: 0 8px 24px rgba(6,84,45,0.2);
    }

    /* ─────────────── AUDIENCE ─────────────── */
    .audience {
      background: var(--green);
      position: relative;
      overflow: hidden;
    }

    .audience::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,255,140,0.18), transparent 70%);
      pointer-events: none;
    }

    .audience::after {
      content: '';
      position: absolute;
      bottom: -160px;
      left: -160px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,255,140,0.1), transparent 70%);
      pointer-events: none;
    }

    .audience .max-w { position: relative; z-index: 1; }

    .audience .section-label { color: var(--lime); }
    .audience .section-title { color: var(--white); }
    .audience .section-sub { color: rgba(255,255,255,0.78); }

    .audience-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .audience-header .section-sub { margin: 0 auto; }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 56px;
    }

    .audience-card {
      position: relative;
      background: linear-gradient(180deg, #f3faea 0%, #e9f4d7 100%);
      border-radius: 16px;
      padding: 28px 26px;
      border: 1px solid rgba(199,255,140,0.55);
      box-shadow: 0 14px 36px rgba(0,0,0,0.18);
      transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
      overflow: hidden;
    }

    .audience-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0.5;
      transition: opacity 0.25s;
    }

    .audience-card:hover {
      transform: translateY(-6px);
      background: linear-gradient(180deg, #f7fcf0 0%, #ecf6dd 100%);
      border-color: var(--lime);
      box-shadow: 0 24px 56px rgba(0,0,0,0.26);
    }

    .audience-card:hover::after { opacity: 1; }

    .audience-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--white);
      color: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 18px;
      transition: transform 0.25s, background 0.25s;
      box-shadow: 0 6px 14px rgba(6,84,45,0.12);
      border: 1px solid rgba(6,84,45,0.06);
    }

    .audience-card:hover .audience-icon {
      transform: rotate(-6deg) scale(1.05);
      background: var(--white);
      box-shadow: 0 8px 18px rgba(6,84,45,0.18);
    }

    .audience-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--green-deep);
      margin-bottom: 6px;
      letter-spacing: -0.2px;
    }

    .audience-desc {
      font-size: 0.86rem;
      color: var(--gray);
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .audience-tag {
      display: inline-block;
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--green);
      background: var(--green-light);
      padding: 4px 10px;
      border-radius: 100px;
      letter-spacing: 0.3px;
    }

    /* ─────────────── VS CONCURRENTS ─────────────── */
    .vs-section {
      background: var(--cream);
      padding: 88px 6%;
    }

    .vs-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .vs-header .section-sub { margin: 0 auto; }

    .vs-table-wrap {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      padding-top: 30px;
    }

    .vs-scroll {
      overflow-x: auto;
      background: var(--white);
      border-radius: 20px;
      border: 1.5px solid var(--border);
      box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    }

    .vs-floating-badge {
      position: absolute;
      top: -2px;
      left: 40%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--lime), #e0ffaa);
      color: var(--green-deep);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 9px 20px;
      border-radius: 100px;
      white-space: nowrap;
      z-index: 10;
      box-shadow: 0 6px 16px rgba(199,255,140,0.30), 0 0 0 4px var(--cream);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      animation: badge-bob 2.6s ease-in-out infinite;
    }

    .vs-floating-badge::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      width: 14px;
      height: 14px;
      background: var(--lime);
      transform: translateX(-50%) rotate(45deg);
      z-index: -1;
    }

    @keyframes badge-bob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-3px); }
    }

    .vs-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
    }

    .vs-table th,
    .vs-table td {
      padding: 18px 18px;
      text-align: center;
      font-size: 0.9rem;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    .vs-table tr:last-child td { border-bottom: none; }

    .vs-table thead th {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray);
      background: rgba(6,84,45,0.04);
      padding: 22px 18px;
    }

    .vs-table thead th.vs-becash-head {
      background: var(--green-deep);
      color: var(--white);
      font-size: 1rem;
      letter-spacing: -0.2px;
      text-transform: none;
    }

    /* Inline "Recommandé" tag inside the becash header — only used when the
       table scrolls horizontally (small screens), where the floating badge
       cannot track the becash column. Hidden on wide screens. */
    .vs-becash-tag { display: none; }

    .vs-table td.vs-criteria {
      text-align: left;
      font-weight: 600;
      color: var(--gray-dark);
      background: rgba(6,84,45,0.025);
      min-width: 220px;
    }

    .vs-table td.vs-becash-cell {
      background: rgba(6,84,45,0.06);
      font-weight: 700;
      color: var(--green-deep);
    }

    .vs-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 0.9rem;
      font-weight: 900;
    }

    .vs-icon.yes { background: var(--green); color: var(--white); }
    .vs-icon.no { background: rgba(196,68,68,0.12); color: #c44; }

    .vs-becash-cell .vs-icon.yes {
      background: var(--lime);
      color: var(--green-deep);
    }

    .vs-text {
      font-size: 0.85rem;
      font-weight: 600;
    }

    .vs-text.yes { color: var(--green); }
    .vs-text.partial { color: var(--gray); font-weight: 500; }
    .vs-text.no { color: #c44; }

    .vs-becash-cell .vs-text.yes { color: var(--green-deep); }

    .vs-disclaimer {
      text-align: center;
      font-size: 0.78rem;
      color: var(--gray);
      margin-top: 22px;
      font-style: italic;
    }

    /* ─────────────── SAV ─────────────── */
    .sav-section {
      background: var(--white);
      padding: 88px 6%;
    }

    .sav-section .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .sav-section .section-header .section-sub { margin: 0 auto; }

    .sav-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }

    .sav-card {
      position: relative;
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    }

    .sav-card:hover {
      box-shadow: 0 8px 36px rgba(0,0,0,0.08);
      transform: translateY(-3px);
      border-color: rgba(6,84,45,0.25);
    }

    .sav-card--becash {
      background: rgba(6,84,45,0.06);
      border: 1.5px solid var(--green);
      box-shadow: 0 12px 40px rgba(6,84,45,0.12);
    }

    .sav-badge {
      position: absolute;
      top: -14px;
      left: 28px;
      background: linear-gradient(135deg, var(--lime), #e0ffaa);
      color: var(--green-deep);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      box-shadow: 0 10px 26px rgba(199,255,140,0.55), 0 0 0 4px var(--white);
    }

    .sav-card__title {
      font-size: 1.25rem;
      font-weight: 900;
      letter-spacing: -0.4px;
      margin-bottom: 4px;
      color: var(--gray-dark);
    }

    .sav-card--becash .sav-card__title { color: var(--green-deep); }

    .sav-card__tagline {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--gray);
      margin-bottom: 14px;
    }

    .sav-card--becash .sav-card__tagline { color: var(--green); }

    .sav-card__text {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.7;
    }

    .sav-closing {
      text-align: center;
      max-width: 760px;
      margin: 48px auto 0;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green-deep);
      line-height: 1.6;
    }

    /* ─────────────── FAQ ─────────────── */
    .faq-section {
      background: var(--cream);
      padding: 88px 6%;
    }

    .faq-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
    }

    .faq-header .section-sub { margin: 0 auto; }

    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .faq-item[open] {
      border-color: var(--green);
      box-shadow: 0 8px 28px rgba(6,84,45,0.08);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gray-dark);
      transition: color 0.2s;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary:hover { color: var(--green); }

    .faq-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green-light);
      flex-shrink: 0;
      position: relative;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--green);
      border-radius: 2px;
      transition: background 0.3s ease;
    }

    .faq-icon::before {
      width: 12px;
      height: 2px;
      transform: translate(-50%, -50%);
    }

    .faq-icon::after {
      width: 2px;
      height: 12px;
      transform: translate(-50%, -50%);
    }

    .faq-item[open] .faq-icon {
      transform: rotate(135deg);
      background: var(--green);
    }

    .faq-item[open] .faq-icon::before,
    .faq-item[open] .faq-icon::after {
      background: var(--white);
    }

    .faq-answer {
      padding: 0 26px 24px;
      font-size: 0.94rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ─────────────── TRUST ─────────────── */
    .trust {
      background: var(--green-deep);
      color: var(--white);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px;
    }

    .trust-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: var(--radius);
      padding: 28px;
    }

    .trust-stars { color: var(--lime); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }

    .trust-quote {
      font-size: 0.93rem;
      color: rgba(255,251,244,0.7);
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }

    .trust-author { font-weight: 700; font-size: 0.88rem; color: var(--white); }
    .trust-role { font-size: 0.78rem; color: rgba(199,255,140,0.4); margin-top: 2px; }

    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 52px;
    }

    .trust-badge {
      background: rgba(199,255,140,0.08);
      border: 1px solid rgba(199,255,140,0.2);
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 0.82rem;
      color: rgba(199,255,140,0.8);
      font-weight: 600;
    }

    /* ─────────────── DEMO FORM ─────────────── */
    .demo-section {
      background: var(--cream);
    }

    .demo-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .demo-info h2 { margin-bottom: 14px; }
    .demo-info .section-sub { margin-bottom: 36px; }

    .demo-benefits { list-style: none; display: flex; flex-direction: column; gap: 16px; }

    .demo-benefits li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.95rem;
      color: var(--gray-dark);
      font-weight: 500;
    }

    .demo-benefit-icon {
      width: 40px;
      height: 40px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .demo-photo {
      margin-top: 40px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

    .demo-photo img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .demo-form-wrap {
      background: var(--white);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 40px rgba(0,0,0,0.07);
      border: 1px solid var(--border);
    }

    .form-title {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 4px;
    }

    .form-sub {
      font-size: 0.88rem;
      color: var(--gray);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* Business name (grows) + NPA (fixed, ~25%) side by side */
    .form-row-npa { grid-template-columns: 1fr 110px; }

    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

    .form-group label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--gray-dark);
      letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 0.93rem;
      font-family: inherit;
      color: var(--gray-dark);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(6,84,45,0.1);
    }

    .form-group textarea { resize: vertical; min-height: 90px; }

    .form-submit {
      width: 100%;
      background: var(--green);
      color: var(--white);
      border: none;
      padding: 16px;
      border-radius: 9px;
      font-size: 1rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

    .form-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--gray);
      margin-top: 10px;
    }

    .form-note a { color: var(--green); text-decoration: none; }

    /* ─────────────── FOOTER ─────────────── */
    footer {
      background: var(--green-deep);
      color: rgba(199,255,140,0.5);
      /* Align the footer content with the 1200px content box (same as nav). */
      padding: 40px max(6%, calc((100% - 1200px) / 2));
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 0.83rem;
    }

    .footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
    footer a { color: rgba(199,255,140,0.6); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--lime); }

    .footer-links { display: flex; gap: 24px; }

    /* ─────────────── RESPONSIVE ─────────────── */
    /* ─────────────── FINAL CTA ─────────────── */
    .final-cta {
      background: var(--green-deep);
      padding: 88px 6%;
    }

    .final-cta-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .final-cta .section-label { color: var(--lime); }
    .final-cta .section-title { color: var(--white); }
    .final-cta .section-sub { color: rgba(199,255,140,0.6); margin-bottom: 32px; }

    .btn-lime {
      display: inline-block;
      background: var(--lime);
      color: var(--green-deep);
      padding: 16px 32px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: 800;
      font-size: 0.98rem;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-lime:hover { background: var(--lime-dark); transform: translateY(-1px); }

    .final-cta-note {
      margin-top: 14px;
      font-size: 0.8rem;
      color: rgba(199,255,140,0.4);
    }

    .final-cta-img {
      display: flex;
      align-items: center;
      justify-content: center;
      /* No overflow:hidden — let the product image's lime glow spill past the
         frame instead of being clipped (footer CTA on both pages). */
    }

    .final-cta-img img {
      max-width: 100%;
      max-height: 420px;
      object-fit: contain;
      filter: drop-shadow(0 24px 60px rgba(199,255,140,0.15));
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* CTA reused as an under-hero band (class "final-cta hero-cta"). Sits
       directly below the dark hero, gives its floating product image more
       room, and lets the lime glow spill past the frame instead of being
       clipped by the container's overflow/border-radius. Shared by both the
       borne and caisse landing pages. */
    .hero-cta {
      padding-top: 64px;
    }

    .hero-cta .final-cta-inner {
      grid-template-columns: 1fr 1.35fr;
      gap: 48px;
    }

    .hero-cta .final-cta-img img {
      max-height: 600px;
      filter: drop-shadow(0 30px 70px rgba(199,255,140,0.22));
    }

    /* Tall variant (borne): ground the floor-standing kiosk on the section's
       bottom edge, fully visible, instead of floating centered with empty
       space below. The section grows to fit the whole image. */
    .hero-cta-tall {
      padding-bottom: 0;
    }

    .hero-cta-tall .final-cta-img {
      align-self: end;
    }

    .hero-cta-tall .final-cta-img img {
      max-height: 660px;
      animation: none;
    }

    /* ─────────────── RESPONSIVE ─────────────── */
    @media (max-width: 1000px) {
      .hero { padding: 60px 6% 60px; min-height: 0; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-form-card { padding: 24px; }
      .features-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
      .features-anim-wrap { height: 220px; }
      .product-split { grid-template-columns: 1fr; gap: 40px; }
      .product-split.reverse { direction: ltr; }
      .product-split.reverse .product-img-stage { order: -1; }
      .product-img-wrap { padding: 36px 24px; min-height: 380px; }
      .product-img-wrap img { max-height: 320px; }
      .product-badge { padding: 8px 12px; }
      .product-badge-icon { width: 30px; height: 30px; }
      .product-badge-icon svg { width: 16px; height: 16px; }
      .product-badge-title { font-size: 0.74rem; }
      .product-badge-sub { font-size: 0.62rem; }
      .product-badge.b-tl { left: 10px; top: 10px; }
      .product-badge.b-tr { right: 10px; top: 10px; }
      .product-badge.b-bl { left: 10px; bottom: 10px; }
      .product-badge.b-br { right: 10px; bottom: 10px; }
      .trust-grid { grid-template-columns: 1fr; }
      .final-cta-inner { grid-template-columns: 1fr; }
      .hero-cta .final-cta-inner { grid-template-columns: 1fr; }
      .hero-cta-tall { padding-bottom: 60px; }
      .final-cta-img { display: none; }
      .comparison-grid { grid-template-columns: 1fr; }
      .comparison-card.pro { transform: none; }
    }

    /* Below ~820px the vs-table (min-width 720px) overflows and scrolls
       horizontally. The floating badge is anchored to the wrap, not the
       scrolling table, so it would point at the wrong column while scrolling.
       Hide it and show the inline tag that travels with the becash column. */
    @media (max-width: 820px) {
      .vs-floating-badge { display: none; }
      .vs-table-wrap { padding-top: 0; }
      .vs-table thead th.vs-becash-head .vs-becash-tag {
        display: block;
        width: max-content;
        margin: 0 auto 6px;
        background: linear-gradient(135deg, var(--lime), #e0ffaa);
        color: var(--green-deep);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
      }
    }

    @media (max-width: 768px) {
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: 1fr; gap: 56px; }
      .steps-flow::before { display: none; }
      .step-arrow {
        top: auto;
        bottom: -42px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
        animation: arrow-nudge-v 2s ease-in-out infinite;
      }
      @keyframes arrow-nudge-v {
        0%, 100% { transform: translateX(50%) rotate(90deg) translateX(0); }
        50% { transform: translateX(50%) rotate(90deg) translateX(4px); }
      }
      .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .sav-grid { grid-template-columns: 1fr; }
      .faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
      .faq-answer { padding: 0 20px 20px; }
      .nav-links { display: none; }
      footer { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    @media (max-width: 520px) {
      .features-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .demo-form-wrap { padding: 24px; }
      /* Compact badges on very small screens (keep all 4 corners) */
      .product-badge { padding: 6px 9px; gap: 7px; border-radius: 10px; }
      .product-badge-icon { width: 26px; height: 26px; border-radius: 7px; }
      .product-badge-icon svg { width: 14px; height: 14px; }
      .product-badge-title { font-size: 0.66rem; }
      .product-badge .product-badge-sub { display: none; }
      .product-badge.b-tl { top: 8px; left: 8px; }
      .product-badge.b-tr { top: 8px; right: 8px; }
      .product-badge.b-bl { bottom: 8px; left: 8px; }
      .product-badge.b-br { bottom: 8px; right: 8px; }
    }
