    /* ── Cookie banner ───────────────────────────────────────── */
    #cookie-banner {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: #1E293B;
      color: #CBD5E1;
      padding: 16px 24px;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      font-family: Inter, sans-serif;
      font-size: 14px;
      border-top: 1px solid #334155;
    }
    #cookie-banner p { flex: 1; min-width: 200px; line-height: 1.5; }
    #cookie-banner a { color: #2DD4BF; text-decoration: underline; }
    .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-btn {
      padding: 8px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      font-family: Inter, sans-serif;
    }
    .cookie-btn-accept { background: #0D9488; color: #fff; }
    .cookie-btn-decline { background: #334155; color: #94A3B8; }

    /* ── Reset & Tokens ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --teal-50: #F0FDFA;
      --teal-100: #CCFBF1;
      --teal-200: #99F6E4;
      --teal-400: #2DD4BF;
      --teal-500: #14B8A6;
      --teal-600: #0D9488;
      --teal-700: #0F766E;
      --teal-800: #115E59;
      --teal-900: #134E4A;

      --slate-50: #F8FAFC;
      --slate-100: #F1F5F9;
      --slate-200: #E2E8F0;
      --slate-300: #CBD5E1;
      --slate-400: #94A3B8;
      --slate-500: #64748B;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-800: #1E293B;
      --slate-900: #0F172A;

      --amber-400: #FBBF24;
      --amber-500: #F59E0B;
      --rose-400: #FB7185;
      --rose-500: #F43F5E;

      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 9999px;

      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--slate-800);
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Animations ───────────────────────────────────────────── */
    @keyframes spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

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

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

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.3); }
      50% { box-shadow: 0 0 0 12px rgba(13, 148, 136, 0); }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    /* ── Nav ──────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--slate-100);
      transition: box-shadow 0.3s;
    }

    .nav.scrolled { box-shadow: var(--shadow-md); }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -0.5px;
      color: var(--slate-900);
    }

    .nav-logo-icon {
      width: 36px; height: 36px;
      background: var(--teal-600);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg { width: 20px; height: 20px; }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--slate-600);
      transition: color 0.2s;
    }

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

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
    .nav-dropdown > a svg { width: 12px; height: 12px; transition: transform 0.2s; }
    .nav-dropdown:hover > a svg { transform: rotate(180deg); }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid var(--slate-200);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      min-width: 200px;
      padding: 8px;
      padding-top: 16px;
      margin-top: 4px;
      z-index: 200;
    }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 14px; font-weight: 500;
      color: var(--slate-700);
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-menu a:hover { background: var(--teal-50); color: var(--teal-600); }
    .dropdown-menu a span { font-size: 18px; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--teal-600);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-full);
      border: none;
      transition: background 0.2s, transform 0.15s;
    }

    .nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }

    .mobile-toggle {
      display: none;
      background: none; border: none;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
    }

    .mobile-toggle svg { width: 24px; height: 24px; color: var(--slate-700); }

    /* ── Hero ─────────────────────────────────────────────────── */
    .hero {
      position: relative;
      padding: 140px 0 80px;
      overflow: hidden;
      background: linear-gradient(160deg, #fff 0%, var(--teal-50) 50%, #fff 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px 6px 8px;
      background: var(--teal-100);
      border: 1px solid var(--teal-200);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-800);
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--teal-500);
      border-radius: 50%;
      animation: pulse-glow 2s infinite;
    }

    .hero h1 {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--slate-900);
      margin-bottom: 20px;
      animation: fadeUp 0.6s ease 0.1s both;
    }

    .hero h1 span { color: var(--teal-600); }

    .hero-sub {
      font-size: 18px;
      line-height: 1.7;
      color: var(--slate-500);
      max-width: 480px;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s ease 0.3s both;
    }

    .hero-reassurance {
      margin-top: 16px;
      font-size: 13px;
      color: var(--slate-400);
      font-weight: 500;
      animation: fadeUp 0.6s ease 0.4s both;
    }

    .trust-badges {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--slate-500);
    }

    .trust-badge svg {
      width: 16px;
      height: 16px;
      color: var(--teal-500);
    }

    .mid-cta {
      text-align: center;
      padding: 48px 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: var(--teal-600);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      border-radius: var(--radius-full);
      border: none;
      transition: all 0.2s;
      box-shadow: 0 4px 14px rgba(13,148,136,0.3);
    }

    .btn-primary:hover {
      background: var(--teal-700);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13,148,136,0.35);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 32px;
      background: #fff;
      color: var(--slate-700);
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--radius-full);
      border: 1px solid var(--slate-200);
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--teal-300);
      color: var(--teal-700);
      transform: translateY(-1px);
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      animation: fadeUp 0.8s ease 0.3s both;
    }

    .phone-mockup {
      width: 280px;
      background: var(--slate-900);
      border-radius: 36px;
      padding: 12px;
      box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.08);
      animation: float 6s ease-in-out infinite;
    }

    .phone-screen {
      background: #fff;
      border-radius: 26px;
      overflow: hidden;
      aspect-ratio: 9/16.5;
      position: relative;
    }

    .phone-header {
      background: var(--teal-600);
      padding: 40px 20px 16px;
      color: #fff;
    }

    .phone-header-name {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .phone-header-sub {
      font-size: 11px;
      opacity: 0.75;
    }

    .phone-body { padding: 16px; }

    .phone-scan-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--teal-600);
      color: #fff;
      border-radius: var(--radius-md);
      margin-bottom: 14px;
    }

    .phone-scan-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.15);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }

    .phone-scan-text { font-size: 13px; font-weight: 600; }
    .phone-scan-sub { font-size: 10px; opacity: 0.75; margin-top: 1px; }

    .phone-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .phone-stat {
      background: var(--slate-50);
      border-radius: var(--radius-sm);
      padding: 12px;
    }

    .phone-stat-value { font-size: 20px; font-weight: 800; color: var(--slate-900); }
    .phone-stat-label { font-size: 10px; color: var(--slate-500); margin-top: 2px; }

    .phone-stat--teal .phone-stat-value { color: var(--teal-600); }
    .phone-stat--amber .phone-stat-value { color: var(--amber-500); }
    .phone-stat--rose .phone-stat-value { color: var(--rose-500); }

    /* ── Demo multi-screen ───────────────────────────────────── */
    .demo-screens { position: absolute; inset: 0; }

    .demo-screen {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      background: #fff;
      opacity: 0;
      transform: translateX(28px);
      transition: opacity 0.32s ease, transform 0.32s ease;
      pointer-events: none;
    }
    .demo-screen.active  { opacity: 1; transform: translateX(0); pointer-events: auto; }
    .demo-screen.exit    { opacity: 0; transform: translateX(-28px); transition: opacity 0.28s ease, transform 0.28s ease; }

    .phone-scan-btn.clicking { animation: btnPulse 0.32s ease; }
    @keyframes btnPulse {
      0%  { transform: scale(1);    opacity: 1; }
      45% { transform: scale(0.94); opacity: 0.8; }
      100%{ transform: scale(1);    opacity: 1; }
    }

    /* Screen 2 — QR scanner */
    .qr-body {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: #0f172a; gap: 14px;
    }
    .qr-viewfinder {
      width: 150px; height: 150px;
      position: relative; border-radius: 4px; overflow: hidden;
    }
    .qr-corner { position: absolute; width: 18px; height: 18px; border-color: var(--teal-400); border-style: solid; }
    .qrc-tl { top:0;    left:0;  border-width: 3px 0 0 3px; border-radius: 3px 0 0 0; }
    .qrc-tr { top:0;    right:0; border-width: 3px 3px 0 0; border-radius: 0 3px 0 0; }
    .qrc-bl { bottom:0; left:0;  border-width: 0 0 3px 3px; border-radius: 0 0 0 3px; }
    .qrc-br { bottom:0; right:0; border-width: 0 3px 3px 0; border-radius: 0 0 3px 0; }

    .qr-svg { display: block; opacity: 0.55; }

    .qr-scan-line {
      position: absolute; left: 6px; right: 6px; height: 2px;
      background: var(--teal-400);
      box-shadow: 0 0 8px var(--teal-400);
      animation: qrSweep 1.1s ease-in-out infinite;
    }
    @keyframes qrSweep {
      0%  { top: 6px; }
      50% { top: calc(100% - 8px); }
      100%{ top: 6px; }
    }
    .scan-status { color: var(--teal-400); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }

    /* Screen 3 — Fiche client */
    .client-avatar-sm {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.2);
      color: #fff; font-weight: 700; font-size: 14px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .client-pts-badge {
      background: var(--teal-50); border-radius: 10px;
      padding: 10px 14px; text-align: center;
    }
    .demo-pts-val {
      font-size: 28px; font-weight: 800; color: var(--teal-600); line-height: 1;
      transition: color 0.2s, transform 0.2s;
      display: inline-block;
    }
    .demo-pts-val.flash { animation: ptsFlash 0.45s ease; }
    @keyframes ptsFlash {
      0%  { color: var(--teal-600); transform: scale(1); }
      50% { color: #16a34a;         transform: scale(1.18); }
      100%{ color: var(--teal-600); transform: scale(1); }
    }
    .demo-add-btn {
      width: 100%; background: var(--teal-600); color: #fff;
      border: none; border-radius: 10px; padding: 11px;
      font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer;
    }
    .demo-amount-row {
      background: var(--slate-50); border-radius: 10px;
      padding: 10px 14px; text-align: center;
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .demo-amount-row.visible { opacity: 1; transform: translateY(0); }
    .demo-amount-big { font-size: 26px; font-weight: 800; color: var(--slate-900); }
    .demo-success-toast {
      text-align: center; font-size: 12px; font-weight: 600; color: #16a34a;
      opacity: 0; transition: opacity 0.3s;
    }
    .demo-success-toast.visible { opacity: 1; }

    /* ── Social proof bar ────────────────────────────────────── */
    .social-proof {
      padding: 40px 0;
      border-bottom: 1px solid var(--slate-100);
    }

    .proof-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .proof-value {
      font-size: 28px;
      font-weight: 800;
      color: var(--slate-900);
      letter-spacing: -1px;
    }

    .proof-label {
      font-size: 13px;
      color: var(--slate-500);
      font-weight: 500;
    }

    /* ── Features ─────────────────────────────────────────────── */
    .features {
      padding: 96px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--teal-50);
      border: 1px solid var(--teal-100);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-700);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.15;
      color: var(--slate-900);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 18px;
      color: var(--slate-500);
      max-width: 560px;
      line-height: 1.7;
    }

    .section-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 64px;
    }

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

    .feature-card {
      background: #fff;
      border: 1px solid var(--slate-100);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      border-color: var(--teal-200);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .feature-icon {
      width: 48px; height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }

    .feature-icon--teal { background: var(--teal-100); color: var(--teal-700); }
    .feature-icon--amber { background: #FEF3C7; color: #B45309; }
    .feature-icon--rose { background: #FFE4E6; color: #BE123C; }
    .feature-icon--indigo { background: #E0E7FF; color: #4338CA; }
    .feature-icon--emerald { background: #D1FAE5; color: #065F46; }
    .feature-icon--violet { background: #EDE9FE; color: #6D28D9; }

    .feature-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--slate-900);
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }

    .feature-desc {
      font-size: 14px;
      color: var(--slate-500);
      line-height: 1.65;
    }

    /* ── How it works ─────────────────────────────────────────── */
    .how {
      padding: 96px 0;
      background: var(--slate-50);
    }

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

    .step {
      text-align: center;
      position: relative;
    }

    /* Bulles : gris au repos, teal quand active */
    .step-number {
      width: 56px; height: 56px;
      background: var(--slate-200);
      color: var(--slate-500);
      font-size: 22px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 2;
      transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    }

    /* Flèches entre les étapes */
    .step-arrow {
      position: absolute;
      top: 140px;
      right: -16px;
      transform: translateX(50%);
      z-index: 3;
      color: var(--slate-300);
      transition: color 0.4s ease;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    }
    /* Masquer les anciens connecteurs */
    .step-line { display: none; }
    .step-line-fill { display: none; }

    /* Flèches animées */
    @keyframes arrowPulse1 {
      0%,5%    { color: var(--slate-300); }
      10%,30%  { color: var(--teal-500); }
      35%,100% { color: var(--slate-300); }
    }
    @keyframes arrowPulse2 {
      0%,35%   { color: var(--slate-300); }
      40%,60%  { color: var(--teal-500); }
      65%,100% { color: var(--slate-300); }
    }
    #howStep1 .step-arrow { animation: arrowPulse1 6s ease infinite; }
    #howStep2 .step-arrow { animation: arrowPulse2 6s ease infinite; }

    /* Animation CSS pure : cycle 6s, chaque étape active 2s */
    @keyframes stepPulse1 {
      0%,5%    { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
      10%,30%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.25); }
      35%,100% { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
    }
    @keyframes stepPulse2 {
      0%,35%   { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
      40%,60%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.25); }
      65%,100% { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
    }
    @keyframes stepPulse3 {
      0%,65%   { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
      70%,90%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.25); }
      95%,100% { background: var(--slate-200); color: var(--slate-500); transform: scale(1); box-shadow: none; }
    }

    #howStep1 .step-number { animation: stepPulse1 6s ease infinite; }
    #howStep2 .step-number { animation: stepPulse2 6s ease infinite; }
    #howStep3 .step-number { animation: stepPulse3 6s ease infinite; }

    /* Titres animés */
    @keyframes titlePulse1 {
      0%,5%    { color: var(--slate-500); }
      10%,30%  { color: var(--teal-700); }
      35%,100% { color: var(--slate-500); }
    }
    @keyframes titlePulse2 {
      0%,35%   { color: var(--slate-500); }
      40%,60%  { color: var(--teal-700); }
      65%,100% { color: var(--slate-500); }
    }
    @keyframes titlePulse3 {
      0%,65%   { color: var(--slate-500); }
      70%,90%  { color: var(--teal-700); }
      95%,100% { color: var(--slate-500); }
    }

    #howStep1 .step-title { animation: titlePulse1 6s ease infinite; }
    #howStep2 .step-title { animation: titlePulse2 6s ease infinite; }
    #howStep3 .step-title { animation: titlePulse3 6s ease infinite; }

    /* (anciennes lignes supprimées, remplacées par flèches SVG) */

    .step-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--slate-500);
      margin-bottom: 8px;
      letter-spacing: -0.3px;
      transition: color 0.3s, font-weight 0.3s;
    }

    .step-desc {
      font-size: 15px;
      color: var(--slate-500);
      line-height: 1.6;
      max-width: 280px;
      margin: 0 auto;
    }

    /* ── Mini-phones dans les étapes ─────────────────────────── */
    .step-phone {
      width: 160px;
      background: var(--slate-900);
      border-radius: 22px;
      padding: 8px;
      margin: 0 auto 18px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      opacity: 0.45;
      transform: scale(0.92);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    }
    .step-phone-inner {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 9/16;
      display: flex;
      flex-direction: column;
    }
    .sp-header {
      background: var(--teal-600);
      padding: 22px 12px 10px;
      color: #fff;
    }
    .sp-header-title { font-size: 10px; font-weight: 700; }
    .sp-header-sub { font-size: 7px; opacity: 0.7; margin-top: 1px; }
    .sp-body { padding: 10px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

    /* Screen 1 : Création compte */
    .sp-input {
      background: var(--slate-100);
      border-radius: 6px;
      padding: 7px 8px;
      font-size: 7px;
      color: var(--slate-400);
      text-align: left;
    }
    .sp-input.filled { color: var(--slate-700); font-weight: 600; }
    .sp-logo-placeholder {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--slate-100);
      margin: 4px auto;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--slate-300);
      border: 2px dashed var(--slate-300);
    }
    .sp-btn {
      background: var(--teal-600);
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 7px;
      font-size: 7px;
      font-weight: 700;
      text-align: center;
      margin-top: auto;
    }

    /* Screen 2 : Config barème */
    .sp-slider-track {
      height: 4px;
      background: var(--slate-200);
      border-radius: 2px;
      position: relative;
      margin: 4px 0;
    }
    .sp-slider-fill {
      height: 100%;
      background: var(--teal-500);
      border-radius: 2px;
      width: 60%;
    }
    .sp-slider-thumb {
      width: 12px; height: 12px;
      background: var(--teal-600);
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      position: absolute;
      top: -4px;
      left: 56%;
    }
    .sp-config-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 7px; color: var(--slate-600);
    }
    .sp-config-val { font-weight: 800; color: var(--teal-600); font-size: 9px; }
    .sp-rule-card {
      background: var(--teal-50);
      border-radius: 6px;
      padding: 6px 8px;
      font-size: 7px;
      color: var(--teal-700);
      text-align: center;
      font-weight: 600;
    }

    /* Screen 3 : Scan */
    .sp-scan-area {
      flex: 1;
      background: #0f172a;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 0 0 8px 8px;
    }
    .sp-viewfinder {
      width: 70px; height: 70px;
      position: relative;
      border-radius: 3px;
      overflow: hidden;
    }
    .sp-vf-corner {
      position: absolute; width: 10px; height: 10px;
      border-color: var(--teal-400); border-style: solid;
    }
    .sp-vf-tl { top:0;left:0; border-width:2px 0 0 2px; }
    .sp-vf-tr { top:0;right:0; border-width:2px 2px 0 0; }
    .sp-vf-bl { bottom:0;left:0; border-width:0 0 2px 2px; }
    .sp-vf-br { bottom:0;right:0; border-width:0 2px 2px 0; }
    .sp-scan-line {
      position: absolute; left:4px; right:4px; height:2px;
      background: var(--teal-400);
      box-shadow: 0 0 6px var(--teal-400);
      animation: qrSweep 1.1s ease-in-out infinite;
    }
    .sp-qr-grid {
      width: 50px; height: 50px;
      display: grid;
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(7,1fr);
      gap: 1px;
      margin: auto;
    }
    .sp-qr-cell { background: rgba(255,255,255,0.35); border-radius: 1px; }
    .sp-qr-cell.dark { background: rgba(255,255,255,0.75); }
    .sp-scan-label { font-size: 7px; color: var(--teal-400); font-weight: 500; }
    .sp-toast {
      background: rgba(16,185,129,0.15);
      color: var(--teal-400);
      font-size: 7px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
    }

    /* Animation : phone s'allume avec son étape */
    @keyframes phonePulse1 {
      0%,5%    { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
      10%,30%  { opacity: 1;    transform: scale(1);    box-shadow: 0 12px 32px rgba(13,148,136,0.2); }
      35%,100% { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    }
    @keyframes phonePulse2 {
      0%,35%   { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
      40%,60%  { opacity: 1;    transform: scale(1);    box-shadow: 0 12px 32px rgba(13,148,136,0.2); }
      65%,100% { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    }
    @keyframes phonePulse3 {
      0%,65%   { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
      70%,90%  { opacity: 1;    transform: scale(1);    box-shadow: 0 12px 32px rgba(13,148,136,0.2); }
      95%,100% { opacity: 0.45; transform: scale(0.92); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    }

    #howStep1 .step-phone { animation: phonePulse1 6s ease infinite; }
    #howStep2 .step-phone { animation: phonePulse2 6s ease infinite; }
    #howStep3 .step-phone { animation: phonePulse3 6s ease infinite; }

    /* ── Pricing ──────────────────────────────────────────────── */
    .pricing {
      padding: 96px 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 800px;
      margin: 0 auto;
    }

    .pricing-card {
      background: #fff;
      border: 2px solid var(--slate-100);
      border-radius: var(--radius-xl);
      padding: 40px 32px;
      position: relative;
      transition: all 0.3s;
    }

    .pricing-card:hover {
      border-color: var(--slate-200);
      box-shadow: var(--shadow-lg);
    }

    .pricing-card--pro {
      border-color: var(--teal-600);
      background: linear-gradient(180deg, var(--teal-50) 0%, #fff 40%);
    }

    .pricing-card--pro:hover {
      border-color: var(--teal-500);
    }

    .pricing-popular {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      padding: 4px 16px;
      background: var(--teal-600);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      border-radius: var(--radius-full);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .pricing-name {
      font-size: 22px;
      font-weight: 700;
      color: var(--slate-900);
      margin-bottom: 4px;
    }

    .pricing-desc {
      font-size: 14px;
      color: var(--slate-500);
      margin-bottom: 24px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }

    .pricing-amount {
      font-size: 48px;
      font-weight: 900;
      color: var(--slate-900);
      letter-spacing: -2px;
      line-height: 1;
    }

    .pricing-period {
      font-size: 16px;
      color: var(--slate-400);
      font-weight: 500;
    }

    .pricing-trial {
      font-size: 13px;
      color: var(--teal-600);
      font-weight: 600;
      margin-bottom: 28px;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      font-size: 14px;
      color: var(--slate-700);
    }

    .pricing-features li svg {
      width: 18px; height: 18px;
      color: var(--teal-500);
      flex-shrink: 0;
    }

    .pricing-btn {
      display: block;
      width: 100%;
      padding: 14px;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      border-radius: var(--radius-md);
      border: none;
      transition: all 0.2s;
    }

    .pricing-btn--outline {
      background: #fff;
      color: var(--slate-700);
      border: 2px solid var(--slate-200);
    }

    .pricing-btn--outline:hover {
      border-color: var(--teal-400);
      color: var(--teal-700);
    }

    .pricing-btn--fill {
      background: var(--teal-600);
      color: #fff;
    }

    .pricing-btn--fill:hover {
      background: var(--teal-700);
      transform: translateY(-1px);
    }

    /* ── Testimonials carousel ───────────────────────────────── */
    .testimonials {
      padding: 96px 0;
      background: var(--slate-50);
      overflow: hidden;
    }

    .carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 48px;
    }

    .carousel-viewport {
      overflow: hidden;
      flex: 1;
      border-radius: var(--radius-lg);
    }

    .carousel-track {
      display: flex;
      gap: 24px;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .testimonial-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 28px;
      border: 1px solid var(--slate-100);
      flex: 0 0 calc(33.333% - 16px);
      box-sizing: border-box;
      transition: box-shadow 0.3s;
    }

    .testimonial-card:hover { box-shadow: var(--shadow-md); }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 16px;
    }

    .testimonial-stars svg {
      width: 16px; height: 16px;
      color: var(--amber-400);
      fill: var(--amber-400);
    }

    .testimonial-text {
      font-size: 15px;
      color: var(--slate-700);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--teal-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
      color: var(--teal-700);
      flex-shrink: 0;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--slate-900);
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--slate-400);
    }

    .carousel-btn {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--slate-200);
      background: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      box-shadow: var(--shadow-sm);
      color: var(--slate-600);
    }

    .carousel-btn:hover { border-color: var(--teal-400); color: var(--teal-600); box-shadow: var(--shadow-md); }
    .carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
    .carousel-btn svg { width: 18px; height: 18px; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }

    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--slate-300);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.25s;
    }

    .carousel-dot.active {
      background: var(--teal-600);
      transform: scale(1.25);
    }

    @media (max-width: 960px) {
      .testimonial-card { flex: 0 0 calc(50% - 12px); }
    }

    @media (max-width: 640px) {
      .testimonial-card { flex: 0 0 100%; }
      .carousel-btn { display: none; }
    }

    /* ── FAQ ──────────────────────────────────────────────────── */
    .faq {
      padding: 96px 0;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--slate-100);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 20px 0;
      background: none;
      border: none;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      color: var(--slate-900);
      cursor: pointer;
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--teal-600); }

    .faq-chevron {
      width: 20px; height: 20px;
      color: var(--slate-400);
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
    }

    .faq-answer-inner {
      padding-bottom: 20px;
      font-size: 15px;
      color: var(--slate-500);
      line-height: 1.7;
    }

    /* ── CTA Banner ──────────────────────────────────────────── */
    .cta-banner {
      padding: 96px 0;
      background: var(--slate-900);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-banner h2 {
      font-size: 40px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      position: relative;
    }

    .cta-banner p {
      font-size: 18px;
      color: var(--slate-400);
      margin-bottom: 32px;
      position: relative;
    }

    .cta-banner .btn-primary {
      position: relative;
      font-size: 17px;
      padding: 18px 36px;
    }

    /* ── Footer ───────────────────────────────────────────────── */
    .footer {
      padding: 56px 0 32px;
      border-top: 1px solid var(--slate-100);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 180px 130px 1fr 160px;
      gap: 32px 48px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 16px;
      color: var(--slate-800);
    }

    .footer-tagline {
      margin-top: 12px;
      font-size: 13px;
      color: var(--slate-400);
      line-height: 1.5;
    }

    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--slate-400);
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-col a {
      font-size: 13px;
      color: var(--slate-500);
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--teal-600); }

    .footer-sectors {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      column-gap: 24px;
      row-gap: 9px;
    }

    .footer-copy {
      margin-top: 40px;
      text-align: center;
      font-size: 12px;
      color: var(--slate-400);
      padding-top: 24px;
      border-top: 1px solid var(--slate-100);
    }

    /* ── Responsive ───────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
      .hero h1 { font-size: 42px; }
      .hero-sub { margin: 0 auto 32px; }
      .hero-actions { justify-content: center; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: 1fr; gap: 40px; }
      .step:not(:last-child)::after { display: none; }
      .step-phone { width: 140px; }
      .step-line { display: none; }
      .step-arrow { display: none; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .mobile-toggle { display: flex; }
      .hero { padding: 120px 0 60px; }
      .hero h1 { font-size: 34px; letter-spacing: -1px; }
      .hero-sub { font-size: 16px; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .phone-mockup { width: 240px; }
      .features-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 30px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .proof-inner { gap: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-sectors { columns: 1; }
      .footer-col:first-child { grid-column: 1 / -1; }
      .cta-banner h2 { font-size: 28px; }
    }

    /* ── Contact form ─────────────────────────────────────────── */
    .contact-form-group {
      margin-bottom: 16px;
    }
    .contact-form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--slate-700);
      margin-bottom: 6px;
    }
    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--slate-200);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-family: inherit;
      color: var(--slate-800);
      background: #fff;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .contact-form-group input:focus,
    .contact-form-group select:focus,
    .contact-form-group textarea:focus {
      border-color: var(--teal-500);
      box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
    }
    .contact-form-group textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }
    .contact-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px 24px;
      background: var(--teal-600);
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      font-size: 15px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }
    .contact-submit:hover:not(:disabled) { background: var(--teal-700); transform: translateY(-1px); }
    .contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    .contact-success {
      display: none;
      text-align: center;
      padding: 32px 16px;
    }
    .contact-success-icon {
      width: 56px; height: 56px;
      background: var(--teal-100);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .contact-success-icon svg { width: 28px; height: 28px; color: var(--teal-600); }
    .contact-success h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
    .contact-success p  { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

    .contact-error-msg {
      display: none;
      background: #FEF2F2;
      border: 1px solid #FECACA;
      color: #DC2626;
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 13px;
      margin-bottom: 16px;
    }

    /* ── Legal Modals ─────────────────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      align-items: flex-end;
      justify-content: center;
      padding: 0;
    }
    @media (min-width: 640px) {
      .modal-overlay { align-items: center; padding: 24px; }
    }
    .modal-overlay.open { display: flex; }

    .modal-box {
      background: #fff;
      width: 100%;
      max-width: 720px;
      max-height: 90vh;
      border-radius: 20px 20px 0 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      animation: slideUp 0.25s ease;
    }
    @media (min-width: 640px) {
      .modal-box { border-radius: 20px; }
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px 16px;
      border-bottom: 1px solid var(--slate-100);
      flex-shrink: 0;
    }
    .modal-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--slate-900);
    }
    .modal-close {
      background: var(--slate-100);
      border: none;
      width: 32px; height: 32px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--slate-500);
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .modal-close:hover { background: var(--slate-200); }
    .modal-close svg { width: 16px; height: 16px; }

    .modal-body {
      overflow-y: auto;
      padding: 24px;
      flex: 1;
    }

    .legal-section {
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--slate-100);
    }
    .legal-section:last-child { border-bottom: none; margin-bottom: 0; }

    .legal-h2 {
      font-size: 15px;
      font-weight: 700;
      color: var(--slate-900);
      margin-bottom: 8px;
    }
    .legal-p {
      font-size: 14px;
      color: var(--slate-600);
      line-height: 1.7;
      white-space: pre-line;
    }
    .legal-updated {
      font-size: 12px;
      color: var(--slate-400);
      margin-top: 16px;
    }

    /* ── Mobile menu ──────────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--slate-100);
      padding: 16px 24px 24px;
      z-index: 99;
      box-shadow: var(--shadow-lg);
    }

    .mobile-menu.open { display: block; }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--slate-700);
      border-bottom: 1px solid var(--slate-50);
    }

    .mobile-menu a:last-child { border-bottom: none; }

    /* ══════════════════════════════════════════════════════════════
       DARK THEME — appliqué globalement
    ══════════════════════════════════════════════════════════════ */
    body {
      background: #030a09;
      color: #e2e8f0;
    }

    /* Nav */
    .nav {
      background: rgba(3,10,9,0.92);
      border-bottom-color: rgba(255,255,255,0.07);
    }
    .nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }
    .nav-logo { color: #fff; }
    .nav-links a { color: rgba(255,255,255,0.6); }
    .nav-links a:hover, .nav-links a.active { color: var(--teal-400); }
    .dropdown-menu {
      background: #0d1f1c;
      border-color: rgba(255,255,255,0.09);
      box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }
    .dropdown-menu a { color: rgba(255,255,255,0.75); }
    .dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--teal-400); }
    .mobile-toggle svg { color: rgba(255,255,255,0.7); }

    /* Hero */
    .hero { background: linear-gradient(160deg, #030a09 0%, #071a16 55%, #030a09 100%); }
    .hero::before { background: radial-gradient(circle, rgba(13,148,136,0.1) 0%, transparent 70%); }
    .hero h1 { color: #fff; }
    .hero-sub { color: rgba(255,255,255,0.52); }
    .hero-badge { background: rgba(13,148,136,0.14); border-color: rgba(13,148,136,0.3); color: var(--teal-400); }
    .hero-badge-dot { background: var(--teal-400); }
    .hero-reassurance { color: rgba(255,255,255,0.35); }
    .trust-badge { color: rgba(255,255,255,0.4); }
    .trust-badge svg { color: var(--teal-400); }

    /* Buttons */
    .btn-secondary {
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.75);
      border-color: rgba(255,255,255,0.12);
    }
    .btn-secondary:hover {
      background: rgba(13,148,136,0.08);
      border-color: var(--teal-500);
      color: var(--teal-400);
    }

    /* Social proof */
    .social-proof { border-bottom-color: rgba(255,255,255,0.06); }
    .proof-value { color: #fff; }
    .proof-label { color: rgba(255,255,255,0.4); }

    /* Sections headings */
    .section-label { background: rgba(13,148,136,0.14); border-color: rgba(13,148,136,0.25); color: var(--teal-400); }
    .section-title { color: #fff; }
    .section-sub { color: rgba(255,255,255,0.48); }

    /* Features */
    .features { background: #030a09; }
    .feature-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
    .feature-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(13,148,136,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
    .feature-title { color: #fff; }
    .feature-desc { color: rgba(255,255,255,0.48); }
    .feature-icon--teal { background: rgba(13,148,136,0.18); color: var(--teal-400); }
    .feature-icon--amber { background: rgba(245,158,11,0.15); color: #FCD34D; }
    .feature-icon--rose { background: rgba(244,63,94,0.15); color: #FDA4AF; }
    .feature-icon--indigo { background: rgba(99,102,241,0.15); color: #A5B4FC; }
    .feature-icon--emerald { background: rgba(16,185,129,0.15); color: #6EE7B7; }
    .feature-icon--violet { background: rgba(139,92,246,0.15); color: #C4B5FD; }

    /* How it works */
    .how { background: #051510; }
    .step-desc { color: rgba(255,255,255,0.42); }
    @keyframes stepPulse1 {
      0%,5%    { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
      10%,30%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.22); }
      35%,100% { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
    }
    @keyframes stepPulse2 {
      0%,35%   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
      40%,60%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.22); }
      65%,100% { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
    }
    @keyframes stepPulse3 {
      0%,65%   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
      70%,90%  { background: var(--teal-600); color: #fff; transform: scale(1.18); box-shadow: 0 0 0 10px rgba(13,148,136,0.22); }
      95%,100% { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transform: scale(1); box-shadow: none; }
    }
    @keyframes titlePulse1 {
      0%,5%    { color: rgba(255,255,255,0.4); }
      10%,30%  { color: var(--teal-400); }
      35%,100% { color: rgba(255,255,255,0.4); }
    }
    @keyframes titlePulse2 {
      0%,35%   { color: rgba(255,255,255,0.4); }
      40%,60%  { color: var(--teal-400); }
      65%,100% { color: rgba(255,255,255,0.4); }
    }
    @keyframes titlePulse3 {
      0%,65%   { color: rgba(255,255,255,0.4); }
      70%,90%  { color: var(--teal-400); }
      95%,100% { color: rgba(255,255,255,0.4); }
    }
    .step-title { color: rgba(255,255,255,0.4); }
    .step-phone-inner { background: #0f1e1c; }
    .sp-input { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
    .sp-input.filled { color: rgba(255,255,255,0.8); }
    .sp-logo-placeholder { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.2); }
    .sp-slider-track { background: rgba(255,255,255,0.1); }
    .sp-config-row { color: rgba(255,255,255,0.5); }
    .sp-rule-card { background: rgba(13,148,136,0.18); color: var(--teal-400); }
    .sp-header-title { color: #fff; }
    /* Phone mockup — halo lumineux */
    .hero-visual { position: relative; }
    .hero-visual::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 420px; height: 520px;
      background: radial-gradient(ellipse at center,
        rgba(13,148,136,0.28) 0%,
        rgba(13,148,136,0.12) 35%,
        transparent 70%);
      filter: blur(32px);
      pointer-events: none;
      z-index: 0;
    }
    .phone-mockup {
      background: #1a3530;
      border: 1px solid rgba(13,148,136,0.35);
      box-shadow:
        0 0 0 1px rgba(13,148,136,0.12),
        0 0 60px rgba(13,148,136,0.22),
        0 24px 64px rgba(0,0,0,0.7);
      position: relative;
      z-index: 1;
    }
    .phone-screen { background: #1e3f3a; }
    .phone-stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
    .phone-stat-value { color: #fff; }
    .phone-stat-label { color: rgba(255,255,255,0.45); }
    .demo-screen { background: #1e3f3a; }
    .demo-amount-row { background: rgba(255,255,255,0.07); }
    .demo-amount-big { color: #fff; }
    .client-pts-badge { background: rgba(13,148,136,0.18); }
    /* step mini-phones */
    .step-phone { background: #1a3530; border: 1px solid rgba(13,148,136,0.25); }
    .step-phone-inner { background: #1e3f3a; }

    /* Pricing */
    .pricing { background: #030a09; }
    .pricing-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
    .pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.14); }
    .pricing-card--pro { background: linear-gradient(180deg, rgba(13,148,136,0.14) 0%, rgba(3,10,9,0) 40%); border-color: var(--teal-600); }
    .pricing-card--pro:hover { border-color: var(--teal-500); }
    .pricing-name { color: #fff; }
    .pricing-desc { color: rgba(255,255,255,0.45); }
    .pricing-amount { color: #fff; }
    .pricing-period { color: rgba(255,255,255,0.35); }
    .pricing-features li { color: rgba(255,255,255,0.65); }
    .pricing-btn--outline { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.12); }
    .pricing-btn--outline:hover { border-color: var(--teal-400); color: var(--teal-400); background: rgba(13,148,136,0.08); }

    /* Testimonials */
    .testimonials { background: #051510; }
    .testimonial-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
    .testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
    .testimonial-text { color: rgba(255,255,255,0.6); }
    .testimonial-name { color: #fff; }
    .testimonial-role { color: rgba(255,255,255,0.35); }
    .carousel-btn { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
    .carousel-btn:hover { background: rgba(13,148,136,0.1); border-color: var(--teal-400); color: var(--teal-400); }
    .carousel-dot { background: rgba(255,255,255,0.18); }
    .carousel-dot.active { background: var(--teal-500); }

    /* FAQ */
    .faq { background: #030a09; }
    .faq-item { border-bottom-color: rgba(255,255,255,0.07); }
    .faq-question { color: rgba(255,255,255,0.88); }
    .faq-question:hover { color: var(--teal-400); }
    .faq-chevron { color: rgba(255,255,255,0.3); }
    .faq-answer-inner { color: rgba(255,255,255,0.48); }

    /* CTA Banner */
    .cta-banner { background: #051c17; }
    .cta-banner::before { background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%); }
    .cta-banner p { color: rgba(255,255,255,0.5); }

    /* Footer */
    .footer { border-top-color: rgba(255,255,255,0.07); background: #020807; }
    .footer-brand { color: #fff; }
    .footer-tagline { color: rgba(255,255,255,0.38); }
    .footer-col-title { color: rgba(255,255,255,0.3); }
    .footer-col a { color: rgba(255,255,255,0.42); }
    .footer-col a:hover { color: var(--teal-400); }
    .footer-copy { color: rgba(255,255,255,0.22); border-top-color: rgba(255,255,255,0.06); }

    /* Mobile menu */
    .mobile-menu { background: #0a1b17; border-bottom-color: rgba(255,255,255,0.08); }
    .mobile-menu a { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.06); }

    /* Modal */
    .modal-box { background: #0d1f1c; }
    .modal-header { border-bottom-color: rgba(255,255,255,0.08); }
    .modal-title { color: #fff; }
    .modal-close { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
    .modal-close:hover { background: rgba(255,255,255,0.14); }
    .legal-section { border-bottom-color: rgba(255,255,255,0.07); }
    .legal-h2 { color: #fff; }
    .legal-p { color: rgba(255,255,255,0.52); }
    .legal-updated { color: rgba(255,255,255,0.28); }

    /* Contact form */
    .contact-form-group label { color: rgba(255,255,255,0.68); }
    .contact-form-group input,
    .contact-form-group select,
    .contact-form-group textarea {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.1);
      color: #fff;
    }
    .contact-form-group input:focus,
    .contact-form-group select:focus,
    .contact-form-group textarea:focus {
      border-color: var(--teal-500);
      box-shadow: 0 0 0 3px rgba(13,148,136,0.18);
    }
    .contact-success h3 { color: #fff; }
    .contact-success p { color: rgba(255,255,255,0.52); }
    .contact-success-icon { background: rgba(13,148,136,0.18); }
    .contact-error-msg { background: rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.25); color: #FCA5A5; }
