/* ═══════════════════════════════════════════════════════════════
   KIZZO v9 — CYBER NEON DESIGN SYSTEM
   Tron / IA dashboard / Gaming UI / Sci-fi
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ═══ NEON PALETTE ═══ */
  --neon:        #00D1FF;          /* primary cyan glow */
  --neon-2:      #06B6D4;          /* darker variant */
  --neon-3:      #67E8F9;          /* lighter variant */
  --neon-glow:   rgba(0,209,255,.45);
  --neon-soft:   rgba(0,209,255,.15);
  --neon-wash:   rgba(0,209,255,.06);

  --purple:      #8B5CF6;
  --purple-d:    #6D28D9;
  --purple-glow: rgba(139,92,246,.4);
  --magenta:     #EC4899;
  --lime:        #A3FF12;
  --mint:        #10F4A3;
  --gold:        #FCD34D;
  --crimson:     #F43F5E;

  /* ═══ BACKGROUNDS (deep space) ═══ */
  --bg-base:     #050817;          /* body — deepest space */
  --bg-elev-1:   #0A0E1F;          /* slightly elevated */
  --bg-elev-2:   #0F1428;          /* card surfaces */
  --bg-elev-3:   #141A33;          /* cards on cards */
  --bg-elev-4:   #1E2547;          /* highest elevation */

  /* ═══ Mapped to legacy variable names (so existing inline styles still work) ═══ */
  --o:    var(--neon);             /* primary accent (was orange) */
  --od:   var(--neon-2);
  --ol:   var(--neon-soft);        /* "light orange" → soft neon */
  --om:   rgba(0,209,255,.35);     /* "medium orange" */
  --ox:   rgba(0,209,255,.25);

  --navy:   #050817;
  --navy2:  #0A0E1F;
  --navy3:  #141A33;
  --navy4:  #1E2547;

  --cyan:   var(--neon);
  --cyan-l: rgba(0,209,255,.1);
  --green:  var(--mint);
  --green-l:rgba(16,244,163,.1);
  --yellow: var(--gold);
  --rose:   var(--crimson);

  --w:    var(--bg-elev-2);        /* card surface (was white) */
  --bg:   var(--bg-elev-1);
  --bg2:  var(--bg-elev-3);
  --bg3:  var(--bg-elev-4);

  /* ═══ TEXT ═══ */
  --t1:   #E2E8F0;                 /* primary on dark */
  --t2:   #94A3B8;                 /* secondary */
  --t3:   #64748B;                 /* tertiary */
  --t4:   #475569;                 /* quaternary */

  /* ═══ BORDERS ═══ */
  --bdr:    rgba(0,209,255,.16);
  --bdr-l:  rgba(0,209,255,.08);
  --bdr-h:  rgba(0,209,255,.55);   /* hover border */

  /* ═══ TYPE ═══ */
  --fh: 'Plus Jakarta Sans', system-ui, sans-serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fm: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

  /* ═══ RADII ═══ */
  --r:    20px;
  --r-sm: 14px;
  --r-xs: 10px;

  /* ═══ SHADOWS / GLOWS ═══ */
  --sh-1: 0 1px 2px rgba(0,0,0,.4), 0 4px 14px rgba(0,0,0,.3);
  --sh-2: 0 8px 32px rgba(0,0,0,.5), 0 4px 16px rgba(0,209,255,.08);
  --sh-3: 0 16px 56px rgba(0,0,0,.6), 0 0 80px rgba(0,209,255,.12);
  --sh-neon:    0 0 20px rgba(0,209,255,.35), 0 0 40px rgba(0,209,255,.18);
  --sh-neon-h:  0 0 32px rgba(0,209,255,.55), 0 0 64px rgba(0,209,255,.28);
  --sh-purple:  0 0 24px rgba(139,92,246,.35), 0 0 48px rgba(139,92,246,.18);

  /* ═══ LAYOUT ═══ */
  --max:   1180px;
  --nav-h: 68px;

  /* ═══ PREMIUM ANIMATIONS (2026-05-02 — patterns Linear/Stripe) ═══ */
  --kz-ease-premium:    cubic-bezier(0.16, 1, 0.3, 1);
  --kz-ease-soft:       cubic-bezier(0.4, 0, 0.2, 1);
  --kz-duration-fast:   200ms;
  --kz-duration-mid:    400ms;
  --kz-duration-reveal: 600ms;
  --kz-duration-ambient: 8s;
  --kz-glow-cyan:       0 0 24px rgba(0, 209, 255, 0.4);
  --kz-glow-mint:       0 0 24px rgba(16, 244, 163, 0.35);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  background: var(--bg-base);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  min-height: 100vh;
  position: relative;
}

/* Body background : deep gradient + technical grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,209,255,.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(139,92,246,.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 60%, rgba(236,72,153,.05), transparent 60%),
    linear-gradient(180deg, #050817 0%, #0A0E1F 100%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,209,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--neon); color: var(--bg-base); }

/* ── Reveal on scroll ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .06s; } .rv.d2 { transition-delay: .14s; }
.rv.d3 { transition-delay: .22s; } .rv.d4 { transition-delay: .3s; }
.rv.d5 { transition-delay: .38s; } .rv.d6 { transition-delay: .46s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════ NAV ═══════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(5,8,23,.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0,209,255,.1);
  transition: background .3s var(--kz-ease-premium),
              backdrop-filter .3s var(--kz-ease-premium),
              -webkit-backdrop-filter .3s var(--kz-ease-premium),
              box-shadow .3s var(--kz-ease-premium),
              border-color .3s var(--kz-ease-premium);
}
#nav.scrolled {
  background: rgba(5,8,23,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(0,209,255,.22);
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 0 32px rgba(0,209,255,.08);
}
.nav-inner { max-width: var(--max); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; gap: 24px; }
.logo {
  font-family: var(--fh); font-size: 22px; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: -.4px;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo em {
  color: var(--neon); font-style: normal;
  text-shadow: 0 0 12px rgba(0,209,255,.6);
}
.logo-text { display: inline; letter-spacing: -.4px; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--purple) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #050817; font-size: 16px; font-weight: 800;
  box-shadow: 0 0 18px rgba(0,209,255,.55), inset 0 0 8px rgba(255,255,255,.2);
}
.nav-links { display: none; list-style: none; gap: 2px; }
@media (min-width: 880px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--t2); text-decoration: none;
  padding: 8px 14px; border-radius: 10px;
  transition: color .15s, background .15s, text-shadow .15s;
}
.nav-links a:hover {
  color: var(--neon); background: var(--neon-wash);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
}
.nav-links a.active {
  color: var(--neon); background: var(--neon-wash);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
  box-shadow: inset 0 0 0 1px rgba(0,209,255,.25);
}
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.ham { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
@media (min-width: 880px) { .ham { display: none; } }

/* ─── Fix "cases sur cases" haut-droite : masquer le bouton "Réserver" en nav < 880px ───
   Le bouton est redondant avec le drawer (s'ouvre via hamburger) + le mobile-sticky-cta en bas.
   Évite la collision visuelle bouton + hamburger sur petit écran. (added 2026-05-08) */
@media (max-width: 879px) {
  .nav-ctas > .btn { display: none; }
  .nav-inner { gap: 12px; }
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--neon); border-radius: 2px; transition: .2s; box-shadow: 0 0 6px rgba(0,209,255,.6); }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 299;
  background: rgba(10,14,31,.96); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,209,255,.18);
  box-shadow: 0 16px 48px rgba(0,0,0,.6), 0 0 40px rgba(0,209,255,.1);
  transform: translateY(-110%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 14px 22px 22px;
}
.drawer.open { transform: none; }
.drawer a {
  display: block; font-size: 15px; font-weight: 500; color: var(--t1);
  padding: 14px 0; border-bottom: 1px solid rgba(0,209,255,.08); text-decoration: none;
  transition: color .15s;
}
.drawer a:hover, .drawer a.active { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.5); }
.drawer a:last-of-type { border-bottom: none; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fb); font-weight: 600; font-size: 14px;
  padding: 11px 22px; border-radius: 12px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s, background .18s, border-color .18s, color .18s;
  position: relative;
}

/* Primary neon — solid filled with intense glow */
.btn-o {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-2) 100%);
  color: #03101A;
  font-weight: 700;
  box-shadow: var(--sh-neon), inset 0 0 0 1px rgba(255,255,255,.25);
  letter-spacing: .01em;
}
.btn-o:hover {
  background: linear-gradient(135deg, var(--neon-3) 0%, var(--neon) 100%);
  transform: translateY(-1px);
  box-shadow: var(--sh-neon-h), inset 0 0 0 1px rgba(255,255,255,.35);
}

/* Ghost — outline with neon hover */
.btn-ghost {
  background: rgba(0,209,255,.04); color: var(--t1);
  border: 1px solid rgba(0,209,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--neon); color: var(--neon);
  background: rgba(0,209,255,.08);
  box-shadow: 0 0 20px rgba(0,209,255,.25);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
  transform: translateY(-1px);
}

/* White (for dark CTA bands) — still works on dark thanks to inversion */
.btn-white {
  background: #fff; color: #050817; font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,255,255,.15);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,255,255,.25), 0 0 32px rgba(0,209,255,.3);
}

/* Dark — for light backgrounds (rare in this theme) */
.btn-dark {
  background: var(--bg-elev-3); color: var(--t1);
  border: 1px solid var(--bdr);
}
.btn-dark:hover { background: var(--bg-elev-4); border-color: var(--neon); transform: translateY(-1px); }

.btn-link { background: none; padding: 0; color: var(--neon); font-weight: 600; }
.btn-link:hover { text-shadow: 0 0 8px rgba(0,209,255,.5); }
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: var(--r); }
.btn-sm { padding: 7px 14px; font-size: 12.5px; border-radius: 9px; }

/* ═══════════ CHIPS ═══════════ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  position: relative;
}
.chip-o {
  background: rgba(0,209,255,.1); color: var(--neon);
  border: 1px solid rgba(0,209,255,.4);
  box-shadow: 0 0 16px rgba(0,209,255,.2), inset 0 0 12px rgba(0,209,255,.06);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
}
.chip-c {
  background: rgba(139,92,246,.12); color: #C4B5FD;
  border: 1px solid rgba(139,92,246,.4);
  box-shadow: 0 0 16px rgba(139,92,246,.2);
  text-shadow: 0 0 8px rgba(139,92,246,.5);
}
.chip-g {
  background: rgba(16,244,163,.1); color: var(--mint);
  border: 1px solid rgba(16,244,163,.4);
  box-shadow: 0 0 16px rgba(16,244,163,.2);
}
.chip-w {
  background: rgba(0,209,255,.08); color: var(--neon);
  border: 1px solid rgba(0,209,255,.3);
  box-shadow: 0 0 16px rgba(0,209,255,.15);
  text-shadow: 0 0 8px rgba(0,209,255,.4);
}
.chip-pulse::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; animation: blink 2s infinite;
  box-shadow: 0 0 8px currentColor;
}
@keyframes blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(1.4); } }

/* ═══════════ LAYOUT ═══════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.sec { padding: 96px 0; position: relative; }
.sec-sm { padding: 64px 0; position: relative; }

/* Section variants — all dark, just different elevations */
.bg-off {
  background: linear-gradient(180deg, var(--bg-elev-1), var(--bg-base));
  position: relative;
}
.bg-off::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.3), transparent);
}
.bg-off2 {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
}
.bg-dark {
  background: linear-gradient(180deg, #030610, #060B1F 100%);
  position: relative;
  overflow: hidden;
}
.bg-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(139,92,246,.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(0,209,255,.12), transparent 60%);
  pointer-events: none;
}
.bg-grad {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elev-1) 100%);
}
.center { text-align: center; }

/* Tech section divider */
.sec + .sec::before, .sec + section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(80%, 600px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.4), transparent);
}

.eyebrow {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--neon); margin-bottom: 14px;
  text-shadow: 0 0 8px rgba(0,209,255,.5);
}
.h-section {
  font-family: var(--fh); font-size: clamp(26px,3.4vw,44px); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 16px;
}
.h-section-d {
  font-family: var(--fh); font-size: clamp(26px,3.4vw,44px); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 16px;
}
.lede { font-size: 17px; line-height: 1.7; color: var(--t2); max-width: 580px; }
.center .lede { margin: 0 auto; }
.lede-d { font-size: 17px; line-height: 1.7; color: rgba(226,232,240,.65); max-width: 580px; }

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ═══════════ PAGE HERO (sub-pages) ═══════════ */
.p-hero {
  background: linear-gradient(180deg, #030610 0%, #060B1F 100%);
  background-image:
    radial-gradient(ellipse 70% 100% at 80% 0%, rgba(0,209,255,.18), transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(139,92,246,.16), transparent 60%),
    linear-gradient(180deg, #030610 0%, #060B1F 100%);
  padding: 100px 0 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(0,209,255,.1);
}
.p-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,209,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.p-hero h1 {
  font-family: var(--fh); font-size: clamp(30px,4.2vw,52px); font-weight: 800;
  color: #fff; letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 18px; max-width: 760px;
  text-shadow: 0 0 30px rgba(0,209,255,.15);
}
.p-hero h1 span[style*="--o"] {
  text-shadow: 0 0 20px rgba(0,209,255,.6), 0 0 40px rgba(0,209,255,.3);
}
.p-hero p { font-size: 17px; line-height: 1.7; color: rgba(226,232,240,.7); max-width: 600px; }
.p-hero .breadcrumb { margin-bottom: 22px; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12.5px; color: rgba(148,163,184,.7); align-items: center; }
.breadcrumb a { color: rgba(0,209,255,.7); text-decoration: none; transition: color .15s, text-shadow .15s; }
.breadcrumb a:hover { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.5); }
.breadcrumb svg { color: rgba(0,209,255,.35); }

/* ═══════════ HOME HERO ═══════════ */
#hero {
  position: relative; overflow: hidden;
  padding: 64px 0 88px;
  background: transparent;
  min-height: 88vh;
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(8px); animation: orb-float 18s ease-in-out infinite; will-change: transform; z-index: 0; }
.orb-1 {
  width: 760px; height: 760px; top: -240px; right: -180px;
  background: radial-gradient(circle, rgba(0,209,255,.18) 0%, rgba(0,209,255,.04) 40%, transparent 65%);
}
.orb-2 {
  width: 560px; height: 560px; bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(139,92,246,.18) 0%, rgba(139,92,246,.04) 40%, transparent 65%);
  animation-delay: -9s;
}
@keyframes orb-float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  33%     { transform: translate3d(20px,-30px,0) scale(1.05); }
  66%     { transform: translate3d(-15px,15px,0) scale(.95); }
}

/* ═══════════ PREMIUM MESH ORBS (Linear/Stripe-style ambient drift) ═══════════ */
.kz-orb {
  position: absolute; pointer-events: none; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  filter: blur(140px); opacity: .3;
  will-change: transform;
}
.kz-orb-1 { background: var(--neon);   top: -200px; left: -100px;   animation: kz-orb-drift1 25s ease-in-out infinite; }
.kz-orb-2 { background: var(--mint);   bottom: -200px; right: -100px; animation: kz-orb-drift2 30s ease-in-out infinite; }
.kz-orb-3 { background: var(--purple); top: 30%; right: -200px;     animation: kz-orb-drift3 35s ease-in-out infinite; opacity: .22; }
@keyframes kz-orb-drift1 {
  0%,100% { transform: translate3d(0,0,0); }
  50%     { transform: translate3d(120px, 80px, 0); }
}
@keyframes kz-orb-drift2 {
  0%,100% { transform: translate3d(0,0,0); }
  50%     { transform: translate3d(-80px, -60px, 0); }
}
@keyframes kz-orb-drift3 {
  0%,100% { transform: translate3d(0,0,0); }
  50%     { transform: translate3d(-60px, 40px, 0); }
}
@media (max-width: 768px) {
  .kz-orb { width: 320px; height: 320px; filter: blur(90px); opacity: .2; }
  .kz-orb-3 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kz-orb { animation: none !important; }
}
[data-theme="dark-sober"] .kz-orb { display: none !important; }
[data-theme="light-neon"] .kz-orb { opacity: .18; filter: blur(120px); }

.hero-grid { display: grid; gap: 56px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,209,255,.08); border: 1px solid rgba(0,209,255,.4);
  color: var(--neon); font-size: 12.5px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(0,209,255,.2), inset 0 0 12px rgba(0,209,255,.05);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
  font-family: var(--fm);
  letter-spacing: .04em;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: var(--neon);
  border-radius: 50%; animation: blink 2s infinite;
  box-shadow: 0 0 10px var(--neon);
}
.hero h1 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(32px,4.5vw,58px); line-height: 1.05; letter-spacing: -.03em;
  color: #fff; margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(0,209,255,.1);
}
.hero h1 em, .hero-h1-gradient {
  font-style: normal; position: relative;
  background: linear-gradient(90deg, var(--neon) 0%, var(--mint) 50%, var(--neon) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: kz-gradient-flow 8s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(0,209,255,.4));
}
@keyframes kz-gradient-flow {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
/* compat anciennes refs à shimmer */
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 em, .hero-h1-gradient { animation: none; background-position: 0% 50%; }
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  border-radius: 3px;
  box-shadow: 0 0 12px var(--neon);
}
.hero-p { font-size: 18px; line-height: 1.65; color: var(--t2); max-width: 480px; margin-bottom: 30px; }
.hero-acts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t3); flex-wrap: wrap; font-family: var(--fm); }
.hero-note svg { color: var(--mint); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(16,244,163,.6)); }
.hero-note span + span::before { content: '·'; margin: 0 6px; color: var(--neon); }

.hero-social {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--bdr);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.hero-stars {
  display: flex; gap: 1px; color: var(--gold); font-size: 14px;
  filter: drop-shadow(0 0 6px rgba(252,211,77,.5));
}
.hero-social-txt { font-size: 12.5px; color: var(--t2); }
.hero-social-txt strong { color: #fff; font-weight: 700; }
.hero-avas { display: flex; }
.hero-ava {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg-elev-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; box-shadow: 0 0 12px rgba(0,209,255,.2);
  margin-left: -8px;
}
.hero-ava:first-child { margin-left: 0; }

/* ═══════════ PHONE WIDGET ═══════════ */
.phone-shell { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; width: 460px; height: 460px;
  background:
    radial-gradient(circle, rgba(0,209,255,.32) 0%, rgba(0,209,255,.08) 30%, transparent 65%),
    radial-gradient(circle at 70% 30%, rgba(139,92,246,.22), transparent 50%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; animation: pulse-glow 4s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes pulse-glow {
  0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.06); }
}
.phone-frame {
  width: 248px; background: #050817; border-radius: 46px; padding: 13px;
  box-shadow:
    0 0 0 1px rgba(0,209,255,.25),
    0 0 40px rgba(0,209,255,.4),
    0 0 80px rgba(0,209,255,.2),
    inset 0 0 0 2px rgba(255,255,255,.04);
  position: relative; z-index: 1;
  animation: kz-phone-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes kz-phone-float {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(0, -10px, 0) rotate(.5deg); }
}
/* Compat : ancien nom "float" gardé pour ne rien casser ailleurs */
@keyframes float {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%     { transform: translate3d(0, -10px, 0) rotate(.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-frame { animation: none !important; }
}
.phone-pill { height: 24px; display: flex; justify-content: center; align-items: center; }
.phone-pill-dot { width: 62px; height: 6px; background: #1E2D42; border-radius: 100px; }
.phone-body { background: #060B1F; border-radius: 32px; overflow: hidden; border: 1px solid rgba(0,209,255,.15); }
.phone-inner { padding: 14px 11px; display: flex; flex-direction: column; gap: 9px; }
.pw-row { display: flex; justify-content: space-between; align-items: center; }
.pw-title { font-family: var(--fh); font-size: 11.5px; font-weight: 700; color: #fff; }
.pw-sub { font-size: 8px; color: rgba(255,255,255,.4); font-family: var(--fm); }
.pw-tag {
  font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--neon); margin-bottom: 5px;
  text-shadow: 0 0 6px rgba(0,209,255,.5);
  font-family: var(--fm);
}
.subj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.subj-btn {
  padding: 7px 3px; border-radius: 8px;
  border: 1px solid rgba(0,209,255,.12); background: rgba(0,209,255,.03);
  text-align: center; cursor: pointer; transition: all .15s;
}
.subj-btn:hover { background: rgba(0,209,255,.08); border-color: rgba(0,209,255,.3); }
.subj-btn.on {
  background: rgba(0,209,255,.18); border-color: var(--neon);
  box-shadow: inset 0 0 10px rgba(0,209,255,.2), 0 0 8px rgba(0,209,255,.3);
}
.si { font-size: 13px; display: block; }
.sl { font-size: 7.5px; color: rgba(255,255,255,.4); display: block; margin-top: 2px; font-family: var(--fm); }
.subj-btn.on .sl { color: var(--neon); text-shadow: 0 0 4px rgba(0,209,255,.5); }
.ph-slider { width: 100%; height: 3px; border-radius: 100px; background: rgba(0,209,255,.12); -webkit-appearance: none; appearance: none; outline: none; cursor: pointer; }
.ph-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--neon); cursor: pointer;
  box-shadow: 0 0 0 3px rgba(0,209,255,.2), 0 0 12px rgba(0,209,255,.6);
}
.slider-row { display: flex; flex-direction: column; gap: 5px; }
.slider-labs { display: flex; justify-content: space-between; }
.sl-l { font-size: 7.5px; color: rgba(255,255,255,.5); font-family: var(--fm); }
.sl-r { font-size: 8px; color: var(--neon); font-weight: 700; font-family: var(--fm); text-shadow: 0 0 4px rgba(0,209,255,.5); }
.time-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.time-btn {
  border-radius: 6px; padding: 5px 2px; text-align: center;
  border: 1px solid rgba(0,209,255,.12); background: rgba(0,209,255,.03);
  cursor: pointer; transition: .15s;
}
.time-btn:hover { background: rgba(0,209,255,.08); }
.time-btn.on {
  background: rgba(0,209,255,.18); border-color: var(--neon);
  box-shadow: inset 0 0 10px rgba(0,209,255,.2), 0 0 8px rgba(0,209,255,.3);
}
.tv { font-family: var(--fh); font-size: 11.5px; font-weight: 700; color: #fff; display: block; }
.tl { font-size: 7px; color: rgba(255,255,255,.4); display: block; font-family: var(--fm); }
.time-btn.on .tl { color: var(--neon); }
.ph-preview {
  background: rgba(0,209,255,.08); border-radius: 8px;
  border: 1px solid rgba(0,209,255,.3); padding: 9px;
  box-shadow: inset 0 0 12px rgba(0,209,255,.06);
}
.ph-preview-txt { font-size: 9px; color: rgba(255,255,255,.85); line-height: 1.55; }
.ph-preview-txt strong { color: var(--neon); font-weight: 700; text-shadow: 0 0 6px rgba(0,209,255,.5); }
.ph-save {
  width: 100%; padding: 9px; border-radius: 8px;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  color: #03101A; border: none; cursor: pointer;
  font-family: var(--fh); font-size: 9.5px; font-weight: 800; transition: .18s;
  box-shadow: 0 0 14px rgba(0,209,255,.5), inset 0 0 0 1px rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .08em;
}
.ph-save:hover { box-shadow: 0 0 22px rgba(0,209,255,.7), inset 0 0 0 1px rgba(255,255,255,.4); }

/* ════════════════════════════════════════════════════════════════════
   ████████  PHONE MOCKUP — DASHBOARD PARENT (v3)  ████████
   Reproduit fidèlement l'écran "Bonjour Marie" de l'app Kizzo.
   Phone agrandi à 300px de large pour des proportions iOS pro.
   Couleurs orange (#FF7A45) cohérentes avec le design réel.
════════════════════════════════════════════════════════════════════ */

/* Téléphone agrandi pour respirer */
.phone-frame {
  width: 308px !important;
  border-radius: 50px !important;
  padding: 10px !important;
  --ds-orange:   #FF8246;
  --ds-orange-2: #F26A1F;
  --ds-bg:       #0E1827;
  --ds-card:     #19243B;
  --ds-card-2:   #1E2B45;
  --ds-card-bd:  rgba(255,255,255,.07);
  --ds-text:     #F2F5FA;
  --ds-muted:    #8C97AE;
  --ds-warn:     #FF5A5F;
}

.phone-body {
  background: var(--ds-bg) !important;
  border: 1px solid rgba(255,255,255,.05) !important;
  border-radius: 40px !important;
}
.phone-inner {
  padding: 10px 13px 8px !important;
  gap: 11px !important;
}

/* ─── Status bar iOS ─── */
.ds-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 8px 0; color: var(--ds-text); font-family: var(--fm);
}
.ds-time { font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
.ds-icons { display: flex; align-items: center; gap: 5px; color: var(--ds-text); }
.ds-bars { display: inline-flex; align-items: flex-end; gap: 1.5px; height: 9px; }
.ds-bars i { width: 2.2px; background: currentColor; border-radius: 1px; height: 2.5px; }
.ds-bars i:nth-child(2) { height: 4.5px; }
.ds-bars i:nth-child(3) { height: 6.5px; }
.ds-bars i:nth-child(4) { height: 9px; }
.ds-bat {
  display: inline-block; width: 19px; height: 9px;
  border: 1px solid currentColor; border-radius: 2.5px;
  position: relative; padding: 1px;
}
.ds-bat::after {
  content: ''; position: absolute; right: -3px; top: 2.5px;
  width: 1.5px; height: 4px;
  background: currentColor; border-radius: 0 1px 1px 0;
}
.ds-bat i {
  display: block; width: 85%; height: 100%; background: currentColor; border-radius: 1px;
}

/* ─── Header (Bonjour Marie + bell) ─── */
.ds-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 4px 0;
}
.ds-hello {
  font-family: var(--fh); font-size: 18px; font-weight: 800;
  color: var(--ds-text); letter-spacing: -.02em; line-height: 1.1;
}
.ds-date {
  font-family: var(--fm); font-size: 10px; color: var(--ds-muted);
  margin-top: 3px; font-weight: 500;
}
.ds-bell {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.05); color: var(--ds-text);
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: .18s;
}
.ds-bell:hover { background: rgba(255,130,70,.15); color: var(--ds-orange); }
.ds-bell svg { width: 15px; height: 15px; }
.ds-bell-dot {
  position: absolute; top: 7px; right: 7px; width: 7px; height: 7px;
  background: var(--ds-orange); border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ds-bg), 0 0 6px rgba(255,130,70,.6);
}

/* ─── Cartes enfants ─── */
.ds-card {
  background: linear-gradient(180deg, var(--ds-card-2), var(--ds-card));
  border: 1px solid var(--ds-card-bd);
  border-radius: 18px; padding: 14px;
  display: flex; flex-direction: column; gap: 11px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 4px 12px rgba(0,0,0,.18);
}
.ds-card-alert {
  border-color: rgba(255,90,95,.35);
  box-shadow:
    0 0 0 1px rgba(255,90,95,.18) inset,
    0 4px 18px rgba(255,90,95,.12),
    0 1px 0 rgba(255,255,255,.04) inset;
}

/* Top : avatar + name + pill */
.ds-card-top { display: flex; align-items: center; gap: 11px; }
.ds-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 15px; font-weight: 800; color: #fff;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 2px 6px rgba(0,0,0,.25);
}
.ds-av-blue  { background: linear-gradient(135deg, #5290FF, #2657D8); }
.ds-av-pink  { background: linear-gradient(135deg, #FF7AAB, #D6386F); }
.ds-card-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.ds-card-name {
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  color: var(--ds-text); line-height: 1.1;
}
.ds-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--fm); font-size: 9.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 100px;
  letter-spacing: .01em; align-self: flex-start;
}
.ds-pill-warn {
  background: rgba(255,90,95,.14); color: var(--ds-warn);
  border: 1px solid rgba(255,90,95,.25);
}
.ds-pill-warn::before {
  content: ''; width: 5px; height: 5px; background: var(--ds-warn);
  border-radius: 50%; box-shadow: 0 0 5px var(--ds-warn);
}
.ds-pill-ok {
  background: rgba(140,151,174,.12); color: var(--ds-muted);
  border: 1px solid rgba(140,151,174,.18);
}
.ds-pill-ok::before {
  content: ''; width: 5px; height: 5px; background: var(--ds-muted);
  border-radius: 50%;
}

/* Message d'alerte */
.ds-card-msg {
  font-family: var(--fm); font-size: 10.5px; color: rgba(242,245,250,.72);
  line-height: 1.5; margin: 0;
}

/* CTA filled (orange) */
.ds-btn-fill {
  width: 100%; padding: 11px; border: none; border-radius: 12px;
  background: linear-gradient(180deg, var(--ds-orange), var(--ds-orange-2));
  color: #fff; font-family: var(--fh); font-size: 11.5px; font-weight: 800;
  letter-spacing: .01em; cursor: pointer; transition: .2s;
  box-shadow: 0 6px 14px rgba(255,130,70,.32), inset 0 1px 0 rgba(255,255,255,.18);
}
.ds-btn-fill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,130,70,.45), inset 0 1px 0 rgba(255,255,255,.22);
}

/* Bloc temps écran (Emma) */
.ds-time-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--fm); margin-top: 1px;
}
.ds-time-lab { font-size: 10.5px; color: var(--ds-muted); font-weight: 500; }
.ds-time-val { font-size: 12px; font-weight: 700; color: var(--ds-text); }

.ds-prog {
  height: 6px; background: rgba(140,151,174,.18); border-radius: 100px;
  overflow: hidden; position: relative;
}
.ds-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ds-orange-2), var(--ds-orange));
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(255,130,70,.45);
}

.ds-card-acts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px;
}
.ds-btn-out {
  padding: 9px 10px; border-radius: 11px; cursor: pointer; transition: .18s;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--ds-text); font-family: var(--fm);
  font-size: 11px; font-weight: 600;
}
.ds-btn-out:hover {
  background: rgba(255,130,70,.10);
  border-color: rgba(255,130,70,.4);
  color: var(--ds-orange);
}

/* ─── Bottom nav ─── */
.ds-nav {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 4px;
  padding: 10px 8px 4px;
  border-top: 1px solid var(--ds-card-bd);
}
.ds-nav-btn {
  background: transparent; border: none; cursor: pointer;
  padding: 7px 0; border-radius: 10px;
  display: flex; justify-content: center; align-items: center;
  color: var(--ds-muted); transition: .18s;
}
.ds-nav-btn svg { width: 17px; height: 17px; }
.ds-nav-btn:hover { color: var(--ds-text); }
.ds-nav-btn.on {
  color: var(--ds-orange);
  background: rgba(255,130,70,.12);
}

/* Floating cards around phone */
.phone-stat {
  position: absolute;
  background: linear-gradient(135deg, rgba(20,25,58,.9), rgba(15,20,40,.85));
  border-radius: 14px; padding: 12px 14px;
  border: 1px solid rgba(0,209,255,.3);
  box-shadow: 0 0 32px rgba(0,209,255,.2), 0 12px 28px rgba(0,0,0,.5);
  display: flex; gap: 10px; align-items: center; z-index: 2;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.phone-stat-1 { top: 14%; left: -8%; animation-delay: .4s; }
.phone-stat-2 { bottom: 18%; right: -12%; animation-delay: .8s; }
.phone-stat-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  background: rgba(0,209,255,.12); border: 1px solid rgba(0,209,255,.3);
  box-shadow: inset 0 0 8px rgba(0,209,255,.15);
}
.phone-stat strong { display: block; font-family: var(--fm); font-size: 14px; color: var(--neon); font-weight: 700; text-shadow: 0 0 6px rgba(0,209,255,.4); }
.phone-stat span { font-size: 11px; color: var(--t3); }
@media (max-width: 920px) { .phone-stat-1, .phone-stat-2 { display: none; } }

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
  background: linear-gradient(180deg, #030610, #060B1F);
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(0,209,255,.18);
  border-bottom: 1px solid rgba(0,209,255,.18);
  position: relative;
}
.trust-bar::before, .trust-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(90deg, #060B1F, transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(-90deg, #060B1F, transparent); }
.trust-track { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.trust-bar:hover .trust-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 0 38px;
  border-right: 1px solid rgba(0,209,255,.12); white-space: nowrap;
}
.trust-item strong {
  font-family: var(--fm); font-size: 15px; color: var(--neon); font-weight: 700;
  text-shadow: 0 0 10px rgba(0,209,255,.4);
  letter-spacing: .02em;
}
.trust-item span { font-size: 11.5px; color: var(--t3); }

/* ═══════════ PROBLEM CARDS ═══════════ */
.prob-grid { display: grid; gap: 20px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .prob-grid { grid-template-columns: repeat(3,1fr); } }
.prob-card {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: var(--r); padding: 32px 28px;
  border: 1px solid rgba(0,209,255,.12);
  transition: transform .25s, border-color .25s;
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.prob-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0,209,255,.12), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.prob-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,209,255,.5);
  box-shadow: 0 0 32px rgba(0,209,255,.2);
}
.prob-card:hover::before { opacity: 1; }
.prob-ico {
  font-size: 34px; margin-bottom: 16px; display: block; position: relative;
  filter: drop-shadow(0 0 10px rgba(0,209,255,.3));
}
.prob-card h3 { font-family: var(--fh); font-size: 17px; color: #fff; font-weight: 700; margin-bottom: 10px; position: relative; }
.prob-card p { font-size: 14px; color: rgba(226,232,240,.6); line-height: 1.7; position: relative; }
.prob-hook {
  margin-top: 44px; padding: 26px 30px;
  background: rgba(0,209,255,.05); border-radius: var(--r);
  border: 1px solid rgba(0,209,255,.3); text-align: center;
  box-shadow: inset 0 0 32px rgba(0,209,255,.06), 0 0 24px rgba(0,209,255,.1);
}
.prob-hook p { font-family: var(--fh); font-size: 17px; color: #fff; font-weight: 700; margin: 0; text-shadow: 0 0 12px rgba(0,209,255,.3); }

/* ═══════════ STEPS ═══════════ */
.steps-grid { display: grid; gap: 22px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4,1fr); } }
.step {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: var(--r); padding: 36px 28px;
  border: 1px solid rgba(0,209,255,.14);
  position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(8px);
}
.step:hover {
  transform: translateY(-4px); border-color: var(--neon);
  box-shadow: 0 0 40px rgba(0,209,255,.25), inset 0 0 24px rgba(0,209,255,.05);
}
.step::before {
  content: attr(data-n); position: absolute; top: -12px; right: 14px;
  font-family: var(--fm); font-weight: 800; font-size: 88px;
  color: rgba(0,209,255,.08); line-height: 1; pointer-events: none;
}
.step-emoji { font-size: 36px; margin-bottom: 18px; display: block; filter: drop-shadow(0 0 12px rgba(0,209,255,.3)); }
.step h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ═══════════ FEATURES ═══════════ */
.feat-grid { display: grid; gap: 22px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3,1fr); } }
.feat-card {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: var(--r); padding: 32px 28px;
  border: 1px solid rgba(0,209,255,.14);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover {
  transform: translateY(-4px); border-color: var(--neon);
  box-shadow: 0 0 36px rgba(0,209,255,.22);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,209,255,.1); border: 1px solid rgba(0,209,255,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
  box-shadow: inset 0 0 12px rgba(0,209,255,.1), 0 0 16px rgba(0,209,255,.15);
}
.feat-icon.cyan {
  background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.3);
  box-shadow: inset 0 0 12px rgba(139,92,246,.1), 0 0 16px rgba(139,92,246,.15);
}
.feat-icon.green {
  background: rgba(16,244,163,.1); border-color: rgba(16,244,163,.3);
  box-shadow: inset 0 0 12px rgba(16,244,163,.1), 0 0 16px rgba(16,244,163,.15);
}
.feat-card h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feat-card p { font-size: 14.5px; color: var(--t2); line-height: 1.7; flex-grow: 1; }
.feat-card .feat-link {
  margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--neon);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  text-shadow: 0 0 8px rgba(0,209,255,.4);
}
.feat-card .feat-link:hover { gap: 9px; }

.feat-span {
  background: linear-gradient(135deg, rgba(20,25,58,.7) 0%, rgba(30,37,71,.5) 100%);
  border: 1px solid rgba(0,209,255,.2);
  border-radius: var(--r); padding: 48px; margin-top: 24px;
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(0,209,255,.1), inset 0 0 80px rgba(0,209,255,.04);
}
@media (min-width: 900px) { .feat-span { grid-template-columns: 1fr 1fr; padding: 56px; } }
.feat-span::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 460px; height: 460px;
  background:
    radial-gradient(circle, rgba(0,209,255,.22) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(139,92,246,.14), transparent 50%);
  pointer-events: none; filter: blur(2px);
}
.feat-span h3 { font-family: var(--fh); font-size: clamp(22px,2.8vw,32px); color: #fff; font-weight: 800; margin-bottom: 14px; line-height: 1.15; letter-spacing: -.02em; }
.feat-span p { color: rgba(226,232,240,.7); font-size: 15.5px; line-height: 1.75; margin-bottom: 20px; }
.feat-span ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-span li { color: rgba(226,232,240,.85); font-size: 14px; display: flex; gap: 9px; align-items: flex-start; }
.feat-span li::before { content: '✓'; color: var(--neon); font-weight: 800; flex-shrink: 0; text-shadow: 0 0 6px rgba(0,209,255,.5); }
.feat-span-img {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(0,209,255,.18); border-radius: 18px;
  padding: 32px; min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: inset 0 0 32px rgba(0,209,255,.05);
}

/* ═══════════ STATS ═══════════ */
.stats-grid { display: grid; gap: 24px; margin-top: 48px; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat { text-align: center; padding: 20px 14px; }
.stat-num {
  font-family: var(--fm); font-size: clamp(32px,4.5vw,52px); font-weight: 700;
  color: var(--neon); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(0,209,255,.4), 0 0 48px rgba(0,209,255,.15);
}
.stat-num-d { color: var(--neon); }
.stat-lab { font-size: 13.5px; color: var(--t2); line-height: 1.5; }
.stat-lab-d { color: rgba(226,232,240,.6); }

/* ═══════════ TESTIMONIALS ═══════════ */
.testi-grid { display: grid; gap: 22px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: var(--r); padding: 30px 28px;
  border: 1px solid rgba(0,209,255,.14);
  box-shadow: var(--sh-1);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0,209,255,.18), 0 12px 32px rgba(0,0,0,.5);
  border-color: var(--neon);
}
.testi-stars {
  color: var(--gold); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(252,211,77,.5));
}
.testi-txt { font-size: 14.5px; color: rgba(226,232,240,.85); line-height: 1.75; margin-bottom: 20px; flex-grow: 1; }
.testi-who { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid rgba(0,209,255,.08); }
.testi-ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  border: 1px solid rgba(0,209,255,.3);
  box-shadow: 0 0 12px rgba(0,209,255,.15);
}
.testi-who strong { display: block; font-size: 13.5px; color: #fff; font-weight: 700; }
.testi-who span { font-size: 11.5px; color: var(--t3); }

/* ═══════════ PRICING ═══════════ */
.price-grid { display: grid; gap: 24px; max-width: 840px; margin: 56px auto 0; grid-template-columns: 1fr; }
@media (min-width: 720px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: linear-gradient(180deg, rgba(20,25,58,.6), rgba(10,14,31,.5));
  border-radius: var(--r); padding: 40px 36px;
  border: 1px solid rgba(0,209,255,.16); position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  backdrop-filter: blur(8px);
}
.price-card:hover {
  transform: translateY(-4px); border-color: var(--neon);
  box-shadow: 0 0 40px rgba(0,209,255,.2);
}
.price-card.pro {
  background: linear-gradient(180deg, rgba(0,209,255,.08), rgba(139,92,246,.06));
  border-color: var(--neon);
  box-shadow: 0 0 60px rgba(0,209,255,.3), inset 0 0 80px rgba(0,209,255,.04);
}
.price-card.pro::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(0,209,255,.6), rgba(139,92,246,.4), rgba(236,72,153,.3));
  z-index: -1; opacity: .6; filter: blur(8px);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon), var(--purple));
  color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 18px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 0 24px rgba(0,209,255,.5), 0 4px 14px rgba(139,92,246,.3);
  letter-spacing: .04em;
}
.price-name { font-family: var(--fh); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.price-card.pro .price-name { color: var(--neon); text-shadow: 0 0 12px rgba(0,209,255,.5); }
.price-desc { font-size: 13.5px; color: var(--t2); line-height: 1.6; margin-bottom: 24px; }
.price-card.pro .price-desc { color: rgba(226,232,240,.7); }
.price-val {
  font-family: var(--fm); font-size: 54px; font-weight: 700; color: #fff;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 6px;
  text-shadow: 0 0 24px rgba(0,209,255,.2);
}
.price-card.pro .price-val { color: var(--neon); text-shadow: 0 0 24px rgba(0,209,255,.55), 0 0 48px rgba(0,209,255,.2); }
.price-val sup { font-size: inherit; font-weight: inherit; vertical-align: baseline; margin: 0; display: inline; }
.price-val sub { font-size: 16px; font-weight: 500; color: var(--t3); vertical-align: baseline; }
.price-card.pro .price-val sub { color: rgba(0,209,255,.5); }
.price-period { font-size: 12.5px; color: var(--mint); font-weight: 600; margin-bottom: 24px; display: block; text-shadow: 0 0 6px rgba(16,244,163,.4); font-family: var(--fm); }
.price-cta { width: 100%; margin-bottom: 26px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(226,232,240,.8); }
.price-card.pro .price-list li { color: rgba(226,232,240,.9); }
.price-list li::before { content: '✓'; font-weight: 800; color: var(--mint); min-width: 14px; flex-shrink: 0; margin-top: 1px; text-shadow: 0 0 6px rgba(16,244,163,.5); }
.price-list li.off::before { content: '×'; color: var(--t4); text-shadow: none; }
.price-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--t3); }

/* ═══════════ COMPARE ═══════════ */
.cmp-wrap {
  margin-top: 56px; border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(0,209,255,.18);
  box-shadow: 0 0 32px rgba(0,209,255,.08);
  background: rgba(10,14,31,.6); backdrop-filter: blur(8px);
}
.cmp-head { display: grid; grid-template-columns: 1.4fr 1fr 1fr; background: linear-gradient(180deg, #060B1F, #030610); border-bottom: 1px solid rgba(0,209,255,.2); }
.ch0 { padding: 18px 22px; border-right: 1px solid rgba(0,209,255,.1); }
.ch1, .ch2 { padding: 18px 22px; font-family: var(--fh); font-size: 13px; font-weight: 700; }
.ch1 { color: rgba(226,232,240,.5); border-right: 1px solid rgba(0,209,255,.1); }
.ch2 { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.4); }
.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-top: 1px solid rgba(0,209,255,.06); transition: background .15s; }
.cmp-row:hover { background: rgba(0,209,255,.04); }
.cr0 { padding: 16px 22px; font-size: 13.5px; font-weight: 600; color: #fff; border-right: 1px solid rgba(0,209,255,.06); }
.cr1 { padding: 16px 22px; font-size: 13px; color: var(--t3); border-right: 1px solid rgba(0,209,255,.06); }
.cr2 { padding: 16px 22px; font-size: 13px; color: var(--mint); font-weight: 500; text-shadow: 0 0 6px rgba(16,244,163,.3); }

/* ═══════════ FAQ ═══════════ */
.faq-stack { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: 16px; border: 1px solid rgba(0,209,255,.14);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}
.faq-item:hover { border-color: rgba(0,209,255,.3); }
.faq-item.open {
  border-color: var(--neon);
  box-shadow: 0 0 32px rgba(0,209,255,.18), inset 0 0 24px rgba(0,209,255,.04);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left;
  font-family: var(--fh); font-size: 15px; font-weight: 700; color: #fff;
  transition: color .15s;
}
.faq-item.open .faq-q { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.5); }
.faq-q .ico { flex-shrink: 0; transition: transform .25s; color: rgba(0,209,255,.5); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); color: var(--neon); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s; font-size: 14.5px; color: var(--t2); line-height: 1.8; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 480px; padding: 0 24px 22px; }

/* ═══════════ BLOG ═══════════ */
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.blog-cat-btn {
  font-size: 12.5px; font-weight: 600; padding: 7px 16px; border-radius: 100px;
  cursor: pointer; border: 1px solid rgba(0,209,255,.2);
  background: rgba(0,209,255,.04); color: var(--t2);
  transition: all .15s; font-family: var(--fb);
  backdrop-filter: blur(6px);
}
.blog-cat-btn:hover { color: var(--neon); border-color: rgba(0,209,255,.5); background: rgba(0,209,255,.08); }
.blog-cat-btn.on {
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  border-color: var(--neon); color: #03101A;
  box-shadow: 0 0 16px rgba(0,209,255,.4);
}

.blog-grid { display: grid; gap: 28px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card {
  background: linear-gradient(180deg, rgba(20,25,58,.5), rgba(10,14,31,.4));
  border-radius: var(--r); border: 1px solid rgba(0,209,255,.14);
  overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  backdrop-filter: blur(8px);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0,209,255,.22), 0 16px 40px rgba(0,0,0,.4);
  border-color: var(--neon);
}
.blog-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.blog-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,8,23,.3) 100%);
  pointer-events: none;
}
/* Cyber-tinted gradients pour les vignettes */
.blog-thumb-1 { background: linear-gradient(135deg, #0F1428 0%, #1E2547 50%, #00D1FF 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #0F1428 0%, #1E1B4B 50%, #8B5CF6 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #0F1428 0%, #064E3B 50%, #10F4A3 100%); }
.blog-thumb-4 { background: linear-gradient(135deg, #0F1428 0%, #4A2A0F 50%, #FBBF24 100%); }
.blog-thumb-5 { background: linear-gradient(135deg, #0F1428 0%, #3B0764 50%, #C084FC 100%); }
.blog-thumb-6 { background: linear-gradient(135deg, #0F1428 0%, #831843 50%, #EC4899 100%); }

.blog-thumb-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(5,8,23,.85); color: var(--neon);
  font-size: 10.5px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
  border: 1px solid rgba(0,209,255,.4);
  box-shadow: 0 0 12px rgba(0,209,255,.3);
  backdrop-filter: blur(6px);
  z-index: 1;
  font-family: var(--fm);
}
.blog-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 14px; flex-grow: 1; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--t3); align-items: center; font-family: var(--fm); }
.blog-meta-dot { width: 3px; height: 3px; background: var(--neon); border-radius: 50%; box-shadow: 0 0 4px var(--neon); }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--neon); margin-top: 14px;
  text-decoration: none; text-shadow: 0 0 8px rgba(0,209,255,.4);
}
.blog-read:hover { gap: 9px; }

.blog-featured {
  grid-column: 1/-1; display: grid; grid-template-columns: 1fr; gap: 0;
  background: linear-gradient(180deg, rgba(20,25,58,.6), rgba(10,14,31,.5));
  border-radius: var(--r); border: 1px solid rgba(0,209,255,.2);
  overflow: hidden; text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  backdrop-filter: blur(8px);
}
@media (min-width: 760px) { .blog-featured { grid-template-columns: 1fr 1fr; } }
.blog-featured:hover {
  transform: translateY(-5px); border-color: var(--neon);
  box-shadow: 0 0 50px rgba(0,209,255,.25), 0 20px 56px rgba(0,0,0,.5);
}
.blog-featured .blog-thumb { height: 100%; min-height: 300px; }
.blog-featured .blog-body { padding: 44px; }
.blog-featured h3 { font-size: 24px; }
.blog-featured p { font-size: 15px; }

.blog-tag {
  display: inline-block; background: rgba(0,209,255,.1); color: var(--neon);
  font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 100px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid rgba(0,209,255,.3);
  text-shadow: 0 0 8px rgba(0,209,255,.4);
  font-family: var(--fm);
}

/* ═══════════ ARTICLE ═══════════ */
.art-hero {
  background: linear-gradient(180deg, #030610, #060B1F);
  padding: 80px 0 56px; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(0,209,255,.12);
}
.art-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 70% 50%, rgba(0,209,255,.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(139,92,246,.12), transparent 60%);
  pointer-events: none;
}
.art-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,209,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.art-tag-line { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; position: relative; }
.art-tag {
  display: inline-block; background: rgba(0,209,255,.1); color: var(--neon);
  font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .08em;
  border: 1px solid rgba(0,209,255,.4);
  box-shadow: 0 0 16px rgba(0,209,255,.2);
  text-shadow: 0 0 8px rgba(0,209,255,.5);
  font-family: var(--fm);
}
.art-date { font-size: 13px; color: var(--t3); font-family: var(--fm); }
.art-hero h1 {
  font-family: var(--fh); color: #fff; max-width: 820px;
  font-size: clamp(26px,4.4vw,50px); font-weight: 800; margin-bottom: 20px;
  letter-spacing: -.025em; line-height: 1.08;
  text-shadow: 0 0 40px rgba(0,209,255,.15);
  position: relative;
}
.art-hero-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; position: relative; }
.art-hero-meta span { font-size: 13px; color: var(--t2); display: flex; align-items: center; gap: 6px; font-family: var(--fm); }

.art-body-wrap { max-width: 780px; margin: 0 auto; padding: 64px 28px 96px; position: relative; z-index: 1; }
.art-body p { font-size: 16.5px; color: rgba(226,232,240,.85); line-height: 1.85; margin-bottom: 22px; }
.art-body h2 { font-family: var(--fh); font-size: 28px; color: #fff; font-weight: 800; margin: 48px 0 16px; letter-spacing: -.015em; line-height: 1.2; text-shadow: 0 0 24px rgba(0,209,255,.1); }
.art-body h3 { font-family: var(--fh); font-size: 21px; color: #fff; font-weight: 700; margin: 36px 0 12px; }
.art-body ul, .art-body ol { padding-left: 24px; margin-bottom: 22px; }
.art-body ul li, .art-body ol li { font-size: 15.5px; color: rgba(226,232,240,.8); line-height: 1.85; margin-bottom: 9px; }
.art-body strong { color: #fff; font-weight: 600; }
.art-body a { color: var(--neon); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; text-shadow: 0 0 8px rgba(0,209,255,.4); }
.art-body a:hover { color: var(--neon-3); }
.art-body img { border-radius: 14px; margin: 28px 0; border: 1px solid rgba(0,209,255,.15); box-shadow: 0 0 32px rgba(0,209,255,.1); }
.art-body blockquote {
  border-left: 3px solid var(--neon); padding-left: 20px; margin: 28px 0;
  font-style: italic; color: #fff; font-size: 18px; line-height: 1.7;
  filter: drop-shadow(0 0 12px rgba(0,209,255,.2));
}

/* Callouts — fonds plus opaques pour garantir le contraste sur TOUS les thèmes (dark + light) */
.callout {
  background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(139,92,246,.08));
  border-left: 4px solid var(--purple);
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 30px 0;
  box-shadow: 0 0 24px rgba(139,92,246,.1), inset 0 0 32px rgba(139,92,246,.04);
}
.callout p { margin: 0; color: rgba(226,232,240,.95); font-size: 14.5px; line-height: 1.7; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.callout p strong { color: #fff; }
.callout.warm {
  background: linear-gradient(135deg, rgba(0,209,255,.18), rgba(0,209,255,.08));
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(0,209,255,.12), inset 0 0 32px rgba(0,209,255,.04);
}
.callout.warm p { color: rgba(226,232,240,.95); }
.callout.green {
  background: linear-gradient(135deg, rgba(16,185,129,.22), rgba(16,244,163,.1));
  border-color: var(--mint);
  box-shadow: 0 0 24px rgba(16,244,163,.12), inset 0 0 32px rgba(16,244,163,.04);
}
.callout.green p { color: rgba(226,232,240,.95); }

.art-back { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--t2); cursor: pointer; margin-bottom: 36px; text-decoration: none; transition: color .15s; }
.art-back:hover { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.4); }
.art-cta {
  background: linear-gradient(135deg, rgba(20,25,58,.7), rgba(10,14,31,.6));
  border: 1px solid rgba(0,209,255,.3);
  border-radius: 24px; padding: 40px 36px; text-align: center; margin-top: 56px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,209,255,.15), inset 0 0 60px rgba(0,209,255,.03);
  backdrop-filter: blur(12px);
}
.art-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,209,255,.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(139,92,246,.12), transparent 60%);
  pointer-events: none;
}
.art-cta h3 { font-family: var(--fh); font-size: 24px; color: #fff; font-weight: 800; margin-bottom: 12px; position: relative; }
.art-cta p { color: rgba(226,232,240,.7); font-size: 14.5px; margin-bottom: 22px; line-height: 1.6; position: relative; }
.art-cta .btn { position: relative; }

.art-author {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,209,255,.12);
  border-bottom: 1px solid rgba(0,209,255,.12);
  margin: 44px 0;
}
.art-author-ava {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,209,255,.08);
  border: 1px solid rgba(0,209,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,209,255,.2);
}
.art-author strong { display: block; font-size: 14.5px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.art-author span { font-size: 13px; color: var(--t3); }

.art-toc {
  background: rgba(20,25,58,.5);
  border-radius: 14px; padding: 22px 26px; margin: 0 0 36px;
  border: 1px solid rgba(0,209,255,.18);
  box-shadow: 0 0 24px rgba(0,209,255,.06);
  backdrop-filter: blur(8px);
}
.art-toc-title {
  font-family: var(--fm); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--neon); margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(0,209,255,.4);
}
.art-toc ul { list-style: none; padding: 0; margin: 0; }
.art-toc li { padding: 6px 0; }
.art-toc a { font-size: 14px; color: var(--t1); text-decoration: none; transition: color .15s, text-shadow .15s; }
.art-toc a:hover { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.4); }

.art-related {
  margin-top: 60px; padding-top: 48px;
  border-top: 1px solid rgba(0,209,255,.12);
}
.art-related h3 { font-family: var(--fh); font-size: 21px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.art-related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 600px) { .art-related-grid { grid-template-columns: 1fr; } }
.art-related-card {
  background: rgba(20,25,58,.5); border-radius: 14px; padding: 22px;
  text-decoration: none; border: 1px solid rgba(0,209,255,.14);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  backdrop-filter: blur(6px);
}
.art-related-card:hover {
  border-color: var(--neon); transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,209,255,.18);
}
.art-related-card span { font-size: 10.5px; font-weight: 700; color: var(--neon); text-transform: uppercase; letter-spacing: .08em; text-shadow: 0 0 6px rgba(0,209,255,.4); font-family: var(--fm); }
.art-related-card h4 { font-family: var(--fh); font-size: 14.5px; font-weight: 700; color: #fff; margin-top: 6px; line-height: 1.4; }

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  background: linear-gradient(180deg, #030610, #060B1F);
  padding: 104px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(0,209,255,.15);
  border-bottom: 1px solid rgba(0,209,255,.15);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,209,255,.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(139,92,246,.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(236,72,153,.08), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,209,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.cta-inner h2 {
  font-family: var(--fh); font-size: clamp(28px,4.2vw,48px); font-weight: 800;
  color: #fff; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.08;
  text-shadow: 0 0 40px rgba(0,209,255,.2);
}
.cta-inner h2 em {
  color: var(--neon); font-style: normal;
  text-shadow: 0 0 24px rgba(0,209,255,.5), 0 0 48px rgba(0,209,255,.3);
}
.cta-inner p { font-size: 17px; color: rgba(226,232,240,.7); margin-bottom: 32px; line-height: 1.65; }
.cta-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: linear-gradient(180deg, #030610, #010205);
  padding: 64px 0 28px;
  color: rgba(226,232,240,.5);
  border-top: 1px solid rgba(0,209,255,.18);
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.5), transparent);
  filter: blur(1px);
}
.foot-top { display: grid; grid-template-columns: 1fr; gap: 44px; margin-bottom: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(0,209,255,.08); }
@media (min-width: 760px) { .foot-top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.foot-logo { font-family: var(--fh); font-size: 22px; font-weight: 800; color: #fff; text-decoration: none; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.foot-logo em { color: var(--neon); font-style: normal; text-shadow: 0 0 10px rgba(0,209,255,.5); }
.foot-desc { font-size: 13.5px; line-height: 1.7; color: rgba(226,232,240,.5); max-width: 240px; margin-bottom: 18px; }
.foot-newsletter input {
  width: 100%; max-width: 240px; padding: 11px 14px;
  background: rgba(0,209,255,.04);
  border: 1px solid rgba(0,209,255,.2);
  border-radius: 10px; color: #fff; font-size: 13px; outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.foot-newsletter input:focus {
  border-color: var(--neon); background: rgba(0,209,255,.08);
  box-shadow: 0 0 12px rgba(0,209,255,.25);
}
.foot-newsletter input::placeholder { color: rgba(226,232,240,.4); }
.foot-newsletter button { margin-top: 10px; }
footer h5 { font-family: var(--fm); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--neon); margin-bottom: 16px; text-shadow: 0 0 6px rgba(0,209,255,.4); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl { font-size: 13.5px; color: rgba(226,232,240,.55); text-decoration: none; transition: color .15s, text-shadow .15s; display: block; }
.fl:hover { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.4); }
.foot-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(226,232,240,.4); align-items: center; font-family: var(--fm); }
.foot-socials { display: flex; gap: 8px; }
.foot-soc {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,209,255,.04);
  border: 1px solid rgba(0,209,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(226,232,240,.6); transition: .2s; text-decoration: none;
}
.foot-soc:hover {
  background: rgba(0,209,255,.12); border-color: var(--neon);
  color: var(--neon); transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0,209,255,.4);
}

/* ═══════════ CONTACT ═══════════ */
.cform-grid { display: grid; gap: 48px; grid-template-columns: 1fr; margin-top: 56px; }
@media (min-width: 880px) { .cform-grid { grid-template-columns: 1fr 1.4fr; gap: 56px; } }
.cinfo h3 { font-family: var(--fh); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cinfo p { font-size: 14.5px; color: var(--t2); line-height: 1.75; margin-bottom: 30px; }
.cinfo-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; padding: 18px;
  background: rgba(20,25,58,.5);
  border-radius: 14px;
  border: 1px solid rgba(0,209,255,.14);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  backdrop-filter: blur(6px);
}
.cinfo-item:hover {
  border-color: var(--neon); transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,209,255,.18);
}
.cinfo-item .ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; filter: drop-shadow(0 0 8px rgba(0,209,255,.3)); }
.cinfo-item strong { display: block; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.cinfo-item em { font-size: 13.5px; color: var(--t2); font-style: normal; }
.cform-box {
  background: linear-gradient(180deg, rgba(20,25,58,.6), rgba(10,14,31,.5));
  border-radius: var(--r); padding: 40px;
  border: 1px solid rgba(0,209,255,.18);
  box-shadow: 0 0 40px rgba(0,209,255,.1);
  backdrop-filter: blur(8px);
}
.cform-box h3 { font-family: var(--fh); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 24px; }

/* ═══════════ FORMS ═══════════ */
.ff { margin-bottom: 18px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
@media (max-width: 600px) { .ff-row { grid-template-columns: 1fr; } }
.ff label { display: block; font-size: 12px; font-weight: 700; color: var(--t1); margin-bottom: 7px; letter-spacing: .04em; font-family: var(--fm); text-transform: uppercase; }
.req { color: var(--neon); text-shadow: 0 0 6px rgba(0,209,255,.5); }
.fw { position: relative; }
.ficon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 14px; pointer-events: none; }
.fi, .fs, .ft {
  width: 100%; padding: 12px 14px 12px 38px;
  border: 1px solid rgba(0,209,255,.2); border-radius: 11px;
  font-family: var(--fb); font-size: 14px; color: var(--t1);
  background: rgba(0,209,255,.03); outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.ft { padding: 12px 14px; min-height: 120px; resize: vertical; line-height: 1.6; }
.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--neon); background: rgba(0,209,255,.06);
  box-shadow: 0 0 0 3px rgba(0,209,255,.12), 0 0 16px rgba(0,209,255,.2);
}
.fi.e, .fs.e, .ft.e { border-color: var(--crimson); }
.fi::placeholder, .ft::placeholder { color: rgba(148,163,184,.5); }
.ferr { font-size: 11.5px; color: var(--crimson); margin-top: 5px; display: none; text-shadow: 0 0 6px rgba(244,63,94,.4); font-family: var(--fm); }
.ferr.v { display: block; }
.fcheck { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.fcheck input { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--neon); cursor: pointer; }
.fcheck label { font-size: 12.5px; color: var(--t2); line-height: 1.55; cursor: pointer; }
.fcheck label a { color: var(--neon); text-decoration: underline; }

/* Shake animation pour signaler erreur RGPD */
.fcheck.shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
  background: rgba(220,38,38,.1);
  border-radius: 8px;
  padding: 8px;
  margin-left: -8px;
}
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
.ferr.v {
  animation: errPop .3s ease;
  font-weight: 600;
}
@keyframes errPop {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fsubmit-btn {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  color: #03101A; font-family: var(--fh); font-size: 15px; font-weight: 800;
  border: none; border-radius: 14px; cursor: pointer;
  box-shadow: 0 0 24px rgba(0,209,255,.5), inset 0 0 0 1px rgba(255,255,255,.3);
  transition: .2s; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-transform: uppercase;
}
.fsubmit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(0,209,255,.7), inset 0 0 0 1px rgba(255,255,255,.4);
}
.fsubmit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.fsubmit-btn.loading .ftxt { display: none; }
.fsubmit-btn.loading .fspin { display: block; }
.fnote { text-align: center; font-size: 11.5px; color: var(--t3); margin-top: 12px; font-family: var(--fm); }
.fspin { display: none; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,.25); border-top-color: #03101A; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fsuccess { display: none; padding: 48px 32px; text-align: center; }
.fsuccess.v { display: block; }
.fsuccess-ico {
  width: 72px; height: 72px; background: rgba(16,244,163,.1);
  border: 1px solid rgba(16,244,163,.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 22px;
  animation: pop .5s ease;
  box-shadow: 0 0 32px rgba(16,244,163,.4);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.fsuccess h2 { font-family: var(--fh); font-size: 26px; color: #fff !important; font-weight: 800; margin-bottom: 10px; }
.fsuccess p { font-size: 15px; color: rgba(255,255,255,.88) !important; line-height: 1.7; margin-bottom: 22px; }
.fsuccess-detail { background: rgba(0,209,255,.08); border: 1px solid rgba(0,209,255,.25); border-radius: 12px; padding: 18px 20px; font-size: 14px; color: #fff !important; margin-bottom: 24px; text-align: left; line-height: 1.95; }
.fsuccess-detail strong { color: var(--mint); font-weight: 700; text-shadow: 0 0 6px rgba(16,244,163,.4); }
/* Light theme adapt — form-card reste dark donc texte reste clair */
[data-theme="light-neon"] .fsuccess h2 { color: #fff !important; }
[data-theme="light-neon"] .fsuccess p { color: rgba(255,255,255,.85) !important; }
[data-theme="light-neon"] .fsuccess-detail { color: #fff !important; }
[data-theme="dark-sober"] .fsuccess h2,
[data-theme="dark-sober"] .fsuccess p,
[data-theme="dark-sober"] .fsuccess-detail { text-shadow: none !important; }
[data-theme="dark-sober"] .fsuccess-ico { box-shadow: none !important; }

/* ═══════════ OVERLAY ═══════════ */
#overlay {
  position: fixed; inset: 0; z-index: 9999;
  background-color: #030610;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,209,255,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(139,92,246,.18), transparent 60%),
    linear-gradient(140deg, #030610 0%, #060B1F 50%, #030610 100%);
  /* Force la viewport totale même avec URL bar mobile */
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow-y: auto; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; align-items: center; padding-bottom: 60px;
}
#overlay.open { transform: none; }
.ov-bar {
  position: sticky; top: 0; width: 100%; height: 60px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px;
  background: rgba(3,6,16,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,209,255,.18); z-index: 801; flex-shrink: 0;
}
.ov-back {
  display: flex; align-items: center; gap: 7px;
  background: rgba(0,209,255,.08); border: 1px solid rgba(0,209,255,.3);
  color: var(--neon); font-family: var(--fb); font-weight: 600; font-size: 13px;
  padding: 8px 16px; border-radius: 100px; cursor: pointer; transition: .15s;
  text-shadow: 0 0 6px rgba(0,209,255,.4);
}
.ov-back:hover { background: rgba(0,209,255,.16); box-shadow: 0 0 16px rgba(0,209,255,.3); }
.ov-logo { font-family: var(--fh); font-size: 18px; font-weight: 800; color: #fff; }
.ov-logo em { color: var(--neon); font-style: normal; text-shadow: 0 0 8px rgba(0,209,255,.5); }
.form-card {
  background: linear-gradient(180deg, rgba(20,25,58,.85), rgba(10,14,31,.95));
  border: 1px solid rgba(0,209,255,.25);
  border-radius: 26px; width: calc(100% - 40px); max-width: 520px; margin: 24px 0;
  box-shadow: 0 0 60px rgba(0,209,255,.2), 0 24px 72px rgba(0,0,0,.6);
  overflow: hidden; backdrop-filter: blur(20px);
}
.fc-head {
  background: linear-gradient(135deg, rgba(0,209,255,.1), rgba(139,92,246,.1));
  padding: 28px 32px 22px;
  border-bottom: 1px solid rgba(0,209,255,.18);
  position: relative; overflow: hidden;
}
.fc-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,209,255,.15), transparent 60%);
  pointer-events: none;
}
.fc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,209,255,.15); border: 1px solid rgba(0,209,255,.4);
  color: var(--neon);
  font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px; position: relative;
  text-shadow: 0 0 6px rgba(0,209,255,.4);
  font-family: var(--fm);
}
.fc-badge::before { content: '🚀'; }
.fc-title { font-family: var(--fh); font-size: 24px; color: #fff; font-weight: 800; margin-bottom: 6px; position: relative; }
.fc-title em { color: var(--neon); font-style: normal; text-shadow: 0 0 12px rgba(0,209,255,.5); }
.fc-sub { font-size: 13.5px; color: rgba(226,232,240,.7); line-height: 1.6; position: relative; }
.fc-perks { display: flex; border-bottom: 1px solid rgba(0,209,255,.15); }
.fc-perk { flex: 1; padding: 14px; text-align: center; border-right: 1px solid rgba(0,209,255,.1); }
.fc-perk:last-child { border-right: none; }
.fc-perk .pi { font-size: 18px; display: block; filter: drop-shadow(0 0 6px rgba(0,209,255,.3)); }
.fc-perk .pt { font-size: 10.5px; font-weight: 600; color: var(--t2); display: block; margin-top: 3px; }
.fform { padding: 24px 32px 28px; }

/* ═══════════ LEGAL ═══════════ */
.legal-body { max-width: 780px; margin: 0 auto; padding: 64px 28px 96px; position: relative; z-index: 1; }
.legal-body h2 { font-family: var(--fh); font-size: 24px; color: #fff; font-weight: 800; margin: 48px 0 14px; letter-spacing: -.015em; text-shadow: 0 0 16px rgba(0,209,255,.1); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--fh); font-size: 18px; color: #fff; font-weight: 700; margin: 28px 0 10px; }
.legal-body p, .legal-body li { font-size: 15.5px; color: rgba(226,232,240,.8); line-height: 1.85; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 24px; }
.legal-body strong { color: #fff; font-weight: 600; }
.legal-body a { color: var(--neon); text-shadow: 0 0 6px rgba(0,209,255,.4); }

.legal-toc {
  background: rgba(20,25,58,.5);
  border: 1px solid rgba(0,209,255,.18);
  border-radius: 14px; padding: 22px 26px; margin-bottom: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(0,209,255,.06);
}
.legal-toc h4 { font-family: var(--fm); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--neon); margin-bottom: 12px; text-shadow: 0 0 6px rgba(0,209,255,.4); }
.legal-toc ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 24px; }
@media (max-width: 600px) { .legal-toc ul { columns: 1; } }
.legal-toc li { padding: 5px 0; break-inside: avoid; }
.legal-toc a { font-size: 13.5px; color: var(--t1); text-decoration: none; transition: color .15s, text-shadow .15s; }
.legal-toc a:hover { color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.4); }

/* ═══════════ MOBILE TWEAKS ═══════════ */
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .sec { padding: 64px 0; }
  .nav-inner { padding: 0 18px; }
  .fform { padding: 20px 22px 24px; }
  .fc-head { padding: 22px 22px 18px; }
  .cform-box { padding: 28px 24px; }
  .feat-span { padding: 32px 24px; }
  .art-cta { padding: 28px 22px; }

  /* ── Signup overlay : assure que le bouton est visible (safe area iOS) ── */
  #overlay {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
  }
  .form-card {
    width: calc(100% - 24px);
    margin: 12px 0 40px;
  }
  .fc-head { padding: 18px 20px 14px; }
  .fc-perks { padding: 8px 0; }
  .fc-perk { padding: 8px 6px; }
  .fc-perk .pi { font-size: 16px; }
  .fc-perk .pt { font-size: 9.5px; }
  .fform {
    padding: 18px 20px 28px;
  }
  .ff { margin-bottom: 14px; }
  .ff-row { margin-bottom: 14px; gap: 10px; }
  .ff label { font-size: 11.5px; margin-bottom: 5px; }
  .fi, .fs, .ft { padding: 11px 12px 11px 36px; font-size: 14px; }
  /* BOUTON FIXE EN BAS DE L'ÉCRAN — toujours visible et impossible à manquer */
  #overlay.open .fsubmit-btn {
    position: fixed !important;
    bottom: 12px !important;
    left: 16px !important;
    right: 16px !important;
    width: calc(100% - 32px) !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    z-index: 10000 !important;
    font-size: 16px !important;
    padding: 18px 12px !important;
    box-shadow: 0 12px 36px rgba(0,209,255,.6), 0 0 0 2px rgba(0,209,255,.3), 0 -16px 32px rgba(5,8,23,.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  /* Espace en bas du formulaire pour pas que le contenu soit caché par le bouton fixe */
  #overlay.open .fform {
    padding-bottom: 100px !important;
  }
  .fcheck {
    margin: 14px 0 4px;
  }
  .fcheck label {
    font-size: 11.5px;
    line-height: 1.5;
  }
  /* Labels bien visibles en mobile */
  .ff label {
    color: #fff !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
  }

  /* Nav : compact pour que tout tienne */
  .nav-ctas { gap: 8px; }
  .nav-ctas .btn-o {
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
  }
  .logo { font-size: 19px; }
  .logo-mark { width: 26px; height: 26px; font-size: 14px; }
}

/* iPhone SE et autres petits écrans : raccourcir le bouton nav */
@media (max-width: 380px) {
  .nav-ctas .btn-o {
    font-size: 0;
    padding: 8px 12px;
  }
  .nav-ctas .btn-o::after {
    content: "S'inscrire";
    font-size: 12px;
    font-weight: 700;
  }
}

/* ── Encore plus petit (iPhone SE, vieux téléphones) ── */
@media (max-width: 380px) {
  .fsubmit-btn { font-size: 13px; padding: 13px 8px; }
  .fc-perks { font-size: 10px; }
  .fc-perk { padding: 10px 6px; }
}

/* ═══════════ HARDCODED FIXES ═══════════
   Override hardcoded #fff backgrounds in inline HTML
   that we couldn't easily reach via variables alone */
[style*="background:#fff"]:not([class]),
[style*="background: #fff"]:not([class]),
[style*="background:#ffffff"]:not([class]) {
  background: var(--w) !important;
  border-color: var(--bdr) !important;
}

/* ════════════════════════════════════════════════════════════════════
   ████████  HERO ENRICHMENT  ████████
   Éléments tech animés injectés dans .p-hero et #hero
   pour combler les zones vides à droite/haut.
════════════════════════════════════════════════════════════════════ */

.hero-fx-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.p-hero, #hero { position: relative; }
.p-hero > .wrap, #hero > .wrap { position: relative; z-index: 2; }

/* Floating tech badge cards in heros */
.hero-fx-card {
  position: absolute;
  background: rgba(20, 25, 58, .65);
  border: 1px solid rgba(0,209,255,.28);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 24px rgba(0,209,255,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  animation: heroFloat 6s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-fx-card .fx-ico {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0,209,255,.25), rgba(139,92,246,.18));
  border: 1px solid rgba(0,209,255,.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-fx-card .fx-txt strong {
  display: block;
  font-family: var(--fh);
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.hero-fx-card .fx-txt span {
  font-size: 10.5px;
  color: var(--neon-3);
  font-family: var(--fm);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Pulsing live dot */
.hero-fx-card .fx-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.3); }
}

/* Tech grid panel — like a HUD on right side */
.hero-fx-hud {
  position: absolute;
  background: linear-gradient(135deg, rgba(20,25,58,.7), rgba(10,14,31,.85));
  border: 1px solid rgba(0,209,255,.22);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 60px rgba(0,209,255,.08);
  font-family: var(--fm);
  min-width: 220px;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-fx-hud-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,209,255,.14);
}
.hero-fx-hud-head .fx-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-fx-hud-head .fx-dots { display: flex; gap: 4px; }
.hero-fx-hud-head .fx-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hero-fx-hud-head .fx-dots span:first-child { background: var(--crimson); }
.hero-fx-hud-head .fx-dots span:nth-child(2) { background: var(--gold); }
.hero-fx-hud-head .fx-dots span:nth-child(3) { background: var(--mint); }

.hero-fx-hud-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  padding: 5px 0;
  color: rgba(226,232,240,.7);
}
.hero-fx-hud-row .fx-key { color: var(--t3); letter-spacing: .03em; }
.hero-fx-hud-row .fx-val { color: var(--neon-3); font-weight: 600; }
.hero-fx-hud-row .fx-val.ok   { color: var(--mint); }
.hero-fx-hud-row .fx-val.warn { color: var(--gold); }

/* Code line / terminal effect */
.hero-fx-code {
  position: absolute;
  background: rgba(5,8,23,.85);
  border: 1px solid rgba(0,209,255,.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--fm);
  font-size: 12px;
  color: rgba(226,232,240,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 32px rgba(0,209,255,.1);
  min-width: 240px;
  line-height: 1.7;
}
.hero-fx-code .fx-prompt { color: var(--neon); }
.hero-fx-code .fx-str    { color: var(--mint); }
.hero-fx-code .fx-fn     { color: var(--purple); }
.hero-fx-code .fx-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--neon);
  vertical-align: middle;
  animation: caretBlink 1s steps(1) infinite;
  margin-left: 2px;
}
@keyframes caretBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* SVG connector lines */
.hero-fx-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-fx-lines path {
  fill: none;
  stroke: rgba(0,209,255,.35);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  animation: dashFlow 2s linear infinite;
}
.hero-fx-lines path.purple {
  stroke: rgba(139,92,246,.4);
  animation-direction: reverse;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -100; }
}

/* Particle dots in hero */
.hero-fx-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-fx-particles .p {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  opacity: .55;
  animation: particleDrift 12s linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  10%  { opacity: .8; transform: scale(1); }
  90%  { opacity: .6; }
  100% { transform: translate(100px, -120px) scale(.4); opacity: 0; }
}

/* Big radial halos behind hero text — softer than orbs */
.hero-fx-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  animation: haloPulse 8s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.08); }
}

/* PAGE HERO right side panel responsive */
@media (max-width: 900px) {
  .hero-fx-card,
  .hero-fx-hud,
  .hero-fx-code,
  .hero-fx-lines { display: none !important; }
  .hero-fx-halo { opacity: .3 !important; }
}

/* ════════════════════════════════════════════════════════════════════
   ████████  THEME SWITCHER WIDGET  ████████
   Sélecteur flottant en bas à droite — 3 modes + auto
════════════════════════════════════════════════════════════════════ */

#theme-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(10,14,31,.8);
  border: 1px solid rgba(0,209,255,.3);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(0,0,0,.5), 0 0 24px rgba(0,209,255,.15);
  font-family: var(--fb);
  transition: transform .25s, opacity .25s;
}
#theme-switcher.collapsed {
  transform: translateY(0);
}
#theme-switcher.collapsed .ts-options { display: none; }
#theme-switcher.collapsed .ts-toggle::after { content: ''; }

.ts-toggle {
  background: none;
  border: none;
  color: var(--neon);
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
}
.ts-toggle:hover { background: rgba(0,209,255,.1); }
.ts-toggle::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: livePulse 2s infinite;
}

.ts-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ts-opt {
  background: none;
  border: 1px solid transparent;
  color: var(--t1);
  font-family: var(--fb);
  font-size: 12.5px;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s, border-color .15s, color .15s;
  min-width: 180px;
}
.ts-opt:hover {
  background: rgba(0,209,255,.08);
  border-color: rgba(0,209,255,.25);
}
.ts-opt.active {
  background: rgba(0,209,255,.14);
  border-color: rgba(0,209,255,.55);
  color: var(--neon);
  box-shadow: 0 0 16px rgba(0,209,255,.18);
}
.ts-opt .ts-emoji { font-size: 16px; }
.ts-opt .ts-label { font-weight: 600; flex-grow: 1; }

@media (max-width: 600px) {
  #theme-switcher { bottom: 14px; right: 14px; }
  .ts-opt { min-width: 160px; }
}

/* ════════════════════════════════════════════════════════════════════
   ████████  THEME : DARK SOBER  ████████
   Dark mais TRÈS sobre, style Linear/Vercel — surfaces plates,
   zéro halo, zéro particule, zéro grille. Juste l'accent cyan.
════════════════════════════════════════════════════════════════════ */

/* On supprime toute la mise en scène ambient */
[data-theme="dark-sober"] body::after { display: none !important; }
[data-theme="dark-sober"] body::before {
  background: #0A0E14 !important;
}
[data-theme="dark-sober"] body { background: #0A0E14 !important; }

[data-theme="dark-sober"] {
  --neon-glow: rgba(0,209,255,.15);
  --bg-base:   #0A0E14;
  --bg-elev-1: #0F141C;
  --bg-elev-2: #141A24;
  --bg-elev-3: #1A2230;
  --bdr:    rgba(255,255,255,.08);
  --bdr-l:  rgba(255,255,255,.05);
  --bdr-h:  rgba(0,209,255,.5);
  --sh-neon:    0 2px 8px rgba(0,209,255,.15);
  --sh-neon-h:  0 4px 16px rgba(0,209,255,.25);
}

/* Toutes les cards : surfaces plates, sans glassmorphism */
[data-theme="dark-sober"] .feat-card,
[data-theme="dark-sober"] .testi,
[data-theme="dark-sober"] .price-card,
[data-theme="dark-sober"] .step,
[data-theme="dark-sober"] .blog-card,
[data-theme="dark-sober"] .faq-item,
[data-theme="dark-sober"] .prob-card,
[data-theme="dark-sober"] .cinfo-item,
[data-theme="dark-sober"] .cform-box {
  background: #141A24 !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
[data-theme="dark-sober"] .feat-card:hover,
[data-theme="dark-sober"] .step:hover,
[data-theme="dark-sober"] .price-card:hover,
[data-theme="dark-sober"] .blog-card:hover,
[data-theme="dark-sober"] .testi:hover,
[data-theme="dark-sober"] .prob-card:hover {
  border-color: rgba(0,209,255,.3) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  transform: translateY(-2px) !important;
}

/* Suppression totale de tout effet glow/text-shadow */
[data-theme="dark-sober"] *,
[data-theme="dark-sober"] *::before,
[data-theme="dark-sober"] *::after {
  text-shadow: none !important;
}
[data-theme="dark-sober"] .chip,
[data-theme="dark-sober"] .price-badge,
[data-theme="dark-sober"] .hero-badge {
  box-shadow: none !important;
}
[data-theme="dark-sober"] .price-card.pro {
  background: #141A24 !important;
  border: 1px solid rgba(0,209,255,.5) !important;
  box-shadow: 0 0 0 1px rgba(0,209,255,.15) !important;
}

/* Sections sombres restent sombres mais plus sobres */
[data-theme="dark-sober"] .bg-dark,
[data-theme="dark-sober"] .p-hero,
[data-theme="dark-sober"] .cta-band,
[data-theme="dark-sober"] .art-hero,
[data-theme="dark-sober"] footer,
[data-theme="dark-sober"] .art-cta {
  background: #0F141C !important;
}
[data-theme="dark-sober"] .p-hero::before,
[data-theme="dark-sober"] .cta-band::before,
[data-theme="dark-sober"] .cta-band::after,
[data-theme="dark-sober"] .art-hero::before {
  display: none !important;
}
[data-theme="dark-sober"] .bg-off,
[data-theme="dark-sober"] .bg-off2 {
  background: #0F141C !important;
}

/* Trust bar */
[data-theme="dark-sober"] .trust-bar {
  background: #141A24 !important;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* On retire TOUS les éléments d'enrichissement hero */
[data-theme="dark-sober"] .hero-fx-particles,
[data-theme="dark-sober"] .hero-fx-halo,
[data-theme="dark-sober"] .hero-fx-lines,
[data-theme="dark-sober"] .orb,
[data-theme="dark-sober"] .orb-1,
[data-theme="dark-sober"] .orb-2 { display: none !important; }

/* On garde juste les cartes flottantes mais en version flat */
[data-theme="dark-sober"] .hero-fx-card {
  background: #141A24 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  backdrop-filter: none !important;
  animation: none !important;
}
[data-theme="dark-sober"] .hero-fx-card .fx-pulse {
  box-shadow: none !important;
}
[data-theme="dark-sober"] .hero-fx-hud {
  background: #141A24 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
  backdrop-filter: none !important;
  animation: none !important;
}
[data-theme="dark-sober"] .hero-fx-code {
  background: #0A0E14 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.3) !important;
}

/* Buttons en dark sober : plus minimaux */
[data-theme="dark-sober"] .btn-o {
  background: #00D1FF !important;
  color: #0A0E14 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-weight: 700 !important;
}
[data-theme="dark-sober"] .btn-o:hover {
  background: #67E8F9 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,209,255,.3) !important;
}

/* Phone widget reste mais sans glow */
[data-theme="dark-sober"] .phone-glow { display: none !important; }
[data-theme="dark-sober"] .phone-frame {
  box-shadow: 0 12px 40px rgba(0,0,0,.5) !important;
  animation: none !important;
}

/* Nav reste discret */
[data-theme="dark-sober"] #nav {
  background: rgba(10,14,20,.85) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
[data-theme="dark-sober"] #nav.scrolled {
  background: rgba(10,14,20,.95) !important;
  box-shadow: 0 1px 0 rgba(0,209,255,.1) !important;
}

/* ════════════════════════════════════════════════════════════════════
   ████████  THEME : LIGHT NEON  ████████
   Fond blanc Stripe-like + accents cyan glowy
════════════════════════════════════════════════════════════════════ */

[data-theme="light-neon"] {
  --neon:        #0099CC;       /* cyan plus saturé pour contraste sur blanc */
  --neon-2:      #006D94;
  --neon-3:      #00B8E0;
  --neon-glow:   rgba(0,153,204,.25);
  --neon-soft:   rgba(0,153,204,.08);
  --neon-wash:   rgba(0,153,204,.04);

  --bg-base:     #ffffff;
  --bg-elev-1:   #F8FAFC;
  --bg-elev-2:   #ffffff;
  --bg-elev-3:   #F1F5F9;
  --bg-elev-4:   #E2E8F0;

  --o:    var(--neon);
  --od:   var(--neon-2);
  --ol:   var(--neon-soft);
  --om:   rgba(0,153,204,.3);

  --navy:   #0B1629;
  --navy2:  #132038;
  --navy3:  #1A2D4A;

  --w:    #ffffff;
  --bg:   #F8FAFC;
  --bg2:  #F1F5F9;
  --bg3:  #E2E8F0;

  --t1:   #0B1629;
  --t2:   #475569;
  --t3:   #94A3B8;
  --t4:   #CBD5E1;

  --bdr:    #E2E8F0;
  --bdr-l:  #EEF2F7;
  --bdr-h:  rgba(0,153,204,.5);

  --sh-1: 0 1px 2px rgba(11,22,41,.04), 0 2px 8px rgba(11,22,41,.04);
  --sh-2: 0 4px 12px rgba(11,22,41,.06), 0 12px 32px rgba(11,22,41,.06);
  --sh-3: 0 8px 24px rgba(11,22,41,.10), 0 24px 56px rgba(11,22,41,.08);
  --sh-neon:    0 4px 18px rgba(0,153,204,.32);
  --sh-neon-h:  0 8px 28px rgba(0,153,204,.45);
}
[data-theme="light-neon"] body { background: #ffffff; color: #0B1629; }
[data-theme="light-neon"] body::before {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0,153,204,.05), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(139,92,246,.04), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #FAFCFE 100%) !important;
}
[data-theme="light-neon"] body::after { display: none !important; }

[data-theme="light-neon"] #nav {
  background: rgba(255,255,255,.85) !important;
  border-bottom: 1px solid rgba(226,232,240,.6) !important;
  box-shadow: none !important;
}
[data-theme="light-neon"] .logo,
[data-theme="light-neon"] .nav-links a {
  color: #0B1629 !important;
  text-shadow: none !important;
}
[data-theme="light-neon"] .nav-links a.active {
  background: rgba(0,153,204,.08);
  color: #0099CC !important;
}

[data-theme="light-neon"] .feat-card,
[data-theme="light-neon"] .testi,
[data-theme="light-neon"] .price-card,
[data-theme="light-neon"] .step,
[data-theme="light-neon"] .blog-card,
[data-theme="light-neon"] .faq-item,
[data-theme="light-neon"] .cinfo-item,
[data-theme="light-neon"] .cform-box {
  background: #ffffff !important;
  border-color: #E2E8F0 !important;
  backdrop-filter: none !important;
  box-shadow: 0 1px 2px rgba(11,22,41,.04), 0 2px 8px rgba(11,22,41,.04) !important;
}
[data-theme="light-neon"] .feat-card:hover,
[data-theme="light-neon"] .step:hover,
[data-theme="light-neon"] .price-card:hover,
[data-theme="light-neon"] .blog-card:hover {
  border-color: #0099CC !important;
  box-shadow: 0 8px 28px rgba(0,153,204,.18) !important;
  transform: translateY(-4px);
}
[data-theme="light-neon"] .feat-icon {
  background: rgba(0,153,204,.08) !important;
  color: #0099CC !important;
}
[data-theme="light-neon"] .h-section,
[data-theme="light-neon"] .hero-h1,
[data-theme="light-neon"] .hero h1,
[data-theme="light-neon"] .feat-card h3,
[data-theme="light-neon"] .step h3,
[data-theme="light-neon"] .testi-txt,
[data-theme="light-neon"] .blog-card h3,
[data-theme="light-neon"] .faq-q,
[data-theme="light-neon"] .price-name {
  color: #0B1629 !important;
  text-shadow: none !important;
}
[data-theme="light-neon"] .lede,
[data-theme="light-neon"] .hero-p,
[data-theme="light-neon"] .feat-card p,
[data-theme="light-neon"] .step p,
[data-theme="light-neon"] .blog-card p {
  color: #475569 !important;
}
[data-theme="light-neon"] .chip {
  text-shadow: none !important;
  box-shadow: none !important;
}
[data-theme="light-neon"] .chip-c { background: rgba(0,153,204,.08); color: #0099CC; border: 1px solid rgba(0,153,204,.2); }
[data-theme="light-neon"] .chip-o { background: rgba(0,153,204,.08); color: #0099CC; border: 1px solid rgba(0,153,204,.2); }
[data-theme="light-neon"] .chip-g { background: rgba(16,185,129,.08); color: #10B981; border: 1px solid rgba(16,185,129,.2); }

[data-theme="light-neon"] .btn-o {
  background: #0099CC !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,153,204,.4) !important;
  text-shadow: none !important;
  border: none !important;
}
[data-theme="light-neon"] .btn-o:hover {
  background: #006D94 !important;
  box-shadow: 0 8px 28px rgba(0,153,204,.55) !important;
  transform: translateY(-1px);
}
[data-theme="light-neon"] .btn-ghost {
  background: #fff !important;
  color: #0B1629 !important;
  border: 1.5px solid #E2E8F0 !important;
}
[data-theme="light-neon"] .btn-ghost:hover {
  border-color: #0099CC !important;
  background: rgba(0,153,204,.04) !important;
}
[data-theme="light-neon"] .btn-white {
  background: #0099CC !important;
  color: #fff !important;
}

/* Sections sombres restent sombres en Light theme */
[data-theme="light-neon"] .bg-dark,
[data-theme="light-neon"] .p-hero,
[data-theme="light-neon"] .cta-band,
[data-theme="light-neon"] .art-hero,
[data-theme="light-neon"] footer,
[data-theme="light-neon"] .art-cta {
  background: linear-gradient(135deg, #0B1629 0%, #1A2D4A 100%) !important;
}
[data-theme="light-neon"] .p-hero h1,
[data-theme="light-neon"] .art-hero h1,
[data-theme="light-neon"] .cta-inner h2,
[data-theme="light-neon"] .h-section-d,
[data-theme="light-neon"] .dh,
[data-theme="light-neon"] .prob-card h3,
[data-theme="light-neon"] .feat-span h3 {
  color: #fff !important;
  text-shadow: none !important;
}
[data-theme="light-neon"] .p-hero h1 span[style],
[data-theme="light-neon"] .art-hero h1 span[style],
[data-theme="light-neon"] .cta-inner em,
[data-theme="light-neon"] .hero h1 em {
  color: #00B8E0 !important;
}
[data-theme="light-neon"] .bg-off,
[data-theme="light-neon"] .bg-off2 {
  background: #F8FAFC !important;
}

/* Hero FX en light : on garde mais plus subtil */
[data-theme="light-neon"] .hero-fx-card {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(0,153,204,.25) !important;
  box-shadow: 0 8px 24px rgba(11,22,41,.08) !important;
}
[data-theme="light-neon"] .hero-fx-card .fx-txt strong { color: #0B1629 !important; }
[data-theme="light-neon"] .hero-fx-card .fx-txt span { color: #0099CC !important; }
[data-theme="light-neon"] .hero-fx-hud {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(0,153,204,.2) !important;
  box-shadow: 0 12px 32px rgba(11,22,41,.08) !important;
}
[data-theme="light-neon"] .hero-fx-hud-head .fx-title { color: #0099CC !important; }
[data-theme="light-neon"] .hero-fx-hud-row .fx-key { color: #94A3B8 !important; }
[data-theme="light-neon"] .hero-fx-hud-row .fx-val { color: #0B1629 !important; }
[data-theme="light-neon"] .hero-fx-code {
  background: #0B1629 !important;
  color: rgba(255,255,255,.9) !important;
  border-color: rgba(0,153,204,.3) !important;
}
[data-theme="light-neon"] .hero-fx-particles { display: none; }
[data-theme="light-neon"] .hero-fx-lines path { stroke: rgba(0,153,204,.3); }
[data-theme="light-neon"] .hero-fx-halo { opacity: .3; }

/* Trust bar in light */
[data-theme="light-neon"] .trust-bar {
  background: linear-gradient(135deg, #0B1629 0%, #1A2D4A 100%) !important;
}

/* Hardcoded color overrides for inline styles */
[data-theme="light-neon"] [style*="color:#fff"] {
  /* leave white in dark sections */
}
[data-theme="light-neon"] .step h3,
[data-theme="light-neon"] .feat-card h3,
[data-theme="light-neon"] .blog-card h3 {
  color: #0B1629 !important;
}
[data-theme="light-neon"] strong[style*="color:#fff"]:not(.p-hero strong):not(.cta-band strong):not(footer strong) {
  /* Inline white strongs in light cards become navy */
}
[data-theme="light-neon"] .step strong[style*="color:#fff"],
[data-theme="light-neon"] .feat-card strong[style*="color:#fff"],
[data-theme="light-neon"] .price-card:not(.pro) strong[style*="color:#fff"] {
  color: #0B1629 !important;
}

[data-theme="light-neon"] .price-card.pro {
  background: linear-gradient(135deg, #0B1629 0%, #1A2D4A 100%) !important;
  border-color: #0099CC !important;
  box-shadow: 0 24px 64px rgba(0,153,204,.25) !important;
}
[data-theme="light-neon"] .price-card.pro .price-name { color: #fff !important; }
[data-theme="light-neon"] .price-card.pro .price-val { color: #00B8E0 !important; }
[data-theme="light-neon"] .price-card.pro .price-list li { color: rgba(255,255,255,.8) !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-name { color: #0B1629 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-val { color: #0099CC !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-desc { color: #475569 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-list li { color: #334155 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-list li strong { color: #0B1629 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-list li.off { color: #94A3B8 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-period { color: #10B981 !important; }
[data-theme="light-neon"] .price-card:not(.pro) .price-val sub { color: #64748B !important; }
/* Dark Sober price-list lisibility */
[data-theme="dark-sober"] .price-card .price-list li { color: rgba(226,232,240,.85) !important; }
[data-theme="dark-sober"] .price-card .price-list li strong { color: #fff !important; }

[data-theme="light-neon"] .testi { background: #fff !important; }
[data-theme="light-neon"] .testi-txt { color: #0B1629 !important; }
[data-theme="light-neon"] .testi-who strong { color: #0B1629 !important; }
[data-theme="light-neon"] .testi-who span { color: #94A3B8 !important; }

[data-theme="light-neon"] .cmp-wrap {
  background: #fff !important;
  border-color: #E2E8F0 !important;
}
[data-theme="light-neon"] .cmp-row { border-top-color: #EEF2F7 !important; }
[data-theme="light-neon"] .cr0 { color: #0B1629 !important; }
[data-theme="light-neon"] .cr1 { color: #94A3B8 !important; }
[data-theme="light-neon"] .cr2 { color: #10B981 !important; }

[data-theme="light-neon"] .faq-item { background: #fff !important; }
[data-theme="light-neon"] .faq-q { color: #0B1629 !important; }
[data-theme="light-neon"] .faq-a { color: #475569 !important; }

[data-theme="light-neon"] .legal-body h2,
[data-theme="light-neon"] .legal-body h3 { color: #0B1629 !important; text-shadow: none !important; }
[data-theme="light-neon"] .legal-body p,
[data-theme="light-neon"] .legal-body li { color: #475569 !important; }
[data-theme="light-neon"] .legal-body a { color: #0099CC !important; text-shadow: none !important; }
[data-theme="light-neon"] .legal-body strong { color: #0B1629 !important; }
[data-theme="light-neon"] .legal-toc {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  box-shadow: none !important;
}
[data-theme="light-neon"] .legal-toc h4 { color: #0099CC !important; text-shadow: none !important; }
[data-theme="light-neon"] .legal-toc a { color: #0B1629 !important; }
[data-theme="light-neon"] .legal-toc a:hover { color: #0099CC !important; text-shadow: none !important; }

[data-theme="light-neon"] .art-body { color: #0B1629 !important; }
[data-theme="light-neon"] .art-body h2,
[data-theme="light-neon"] .art-body h3 { color: #0B1629 !important; text-shadow: none !important; }
[data-theme="light-neon"] .art-body p { color: #0B1629 !important; }
[data-theme="light-neon"] .art-body ul li,
[data-theme="light-neon"] .art-body ol li { color: #475569 !important; }
[data-theme="light-neon"] .art-toc { background: #F8FAFC !important; border-color: #E2E8F0 !important; box-shadow: none !important; }
[data-theme="light-neon"] .art-toc-title { color: #0099CC !important; text-shadow: none !important; }
[data-theme="light-neon"] .art-toc a { color: #0B1629 !important; }
[data-theme="light-neon"] .art-related h3 { color: #0B1629 !important; }
[data-theme="light-neon"] .art-related-card { background: #F8FAFC !important; border-color: #E2E8F0 !important; }
[data-theme="light-neon"] .art-related-card h4 { color: #0B1629 !important; }
[data-theme="light-neon"] .art-author strong { color: #0B1629 !important; }

[data-theme="light-neon"] .cinfo h3 { color: #0B1629 !important; }
[data-theme="light-neon"] .cinfo p { color: #475569 !important; }
[data-theme="light-neon"] .cinfo-item strong { color: #0B1629 !important; }
[data-theme="light-neon"] .cinfo-item em { color: #475569 !important; }
[data-theme="light-neon"] .cform-box { background: #fff !important; }
[data-theme="light-neon"] .cform-box h3 { color: #0B1629 !important; }
[data-theme="light-neon"] .ff label { color: #0B1629 !important; }
[data-theme="light-neon"] .fi, [data-theme="light-neon"] .fs, [data-theme="light-neon"] .ft {
  background: #F8FAFC !important;
  color: #0B1629 !important;
  border-color: #E2E8F0 !important;
}
[data-theme="light-neon"] .fi:focus,
[data-theme="light-neon"] .fs:focus,
[data-theme="light-neon"] .ft:focus {
  background: #fff !important;
  border-color: #0099CC !important;
  box-shadow: 0 0 0 3px rgba(0,153,204,.1) !important;
}

/* Theme switcher widget on light */
[data-theme="light-neon"] #theme-switcher {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(0,153,204,.25) !important;
  box-shadow: 0 12px 36px rgba(11,22,41,.12) !important;
}
[data-theme="light-neon"] .ts-toggle { color: #0099CC !important; }
[data-theme="light-neon"] .ts-opt { color: #0B1629 !important; }
[data-theme="light-neon"] .ts-opt.active {
  background: rgba(0,153,204,.1) !important;
  color: #0099CC !important;
  border-color: rgba(0,153,204,.4) !important;
  box-shadow: 0 0 12px rgba(0,153,204,.15) !important;
}

/* ════════════════════════════════════════════════════════════════════
   ████████  THEME : AUTO  ████████
   Suit prefers-color-scheme du système
════════════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: light) {
  [data-theme="auto"] {
    /* mêmes overrides que light-neon */
  }
}

/* Smooth transitions when switching themes */
html { transition: background-color .35s; }
body, body::before { transition: background .35s, background-color .35s; }
.feat-card, .testi, .price-card, .step, .blog-card, .faq-item, .prob-card,
.btn, .chip, .nav-links a, .legal-toc, .cinfo-item, .cform-box, .fi, .fs, .ft {
  transition: background-color .25s, border-color .25s, color .25s, box-shadow .25s, transform .18s !important;
}

/* ════════════════════════════════════════════════════════════════════
   ████████  SIGNUP OVERLAY — FIX MOBILE & THEMES  ████████
   La form-card a TOUJOURS un fond sombre (gradient bleu nuit).
   Il faut donc forcer les textes à rester clairs, quel que soit le thème
   (light-neon, dark-sober, auto). Sinon labels invisibles sur mobile.

   Layout demandé :
     L1 : Prénom | Nom (sur la même ligne, même en mobile)
     L2 : Email
     L3 : Téléphone
     L4 : Classe de l'enfant
════════════════════════════════════════════════════════════════════ */

/* Prénom + Nom toujours sur la même ligne dans le form-card,
   y compris en mobile (override la règle .ff-row { 1fr } < 600px) */
.form-card .ff-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

/* Textes intérieurs du form-card : toujours clairs */
.form-card .ff label,
[data-theme="light-neon"] .form-card .ff label,
[data-theme="dark-sober"] .form-card .ff label,
[data-theme="auto"] .form-card .ff label {
  color: #fff !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  text-shadow: 0 0 1px rgba(0,0,0,.3);
}
.form-card .fc-perk .pt,
[data-theme="light-neon"] .form-card .fc-perk .pt {
  color: rgba(226,232,240,.92) !important;
}
.form-card .fnote,
[data-theme="light-neon"] .form-card .fnote {
  color: rgba(226,232,240,.7) !important;
}
.form-card .fcheck label,
[data-theme="light-neon"] .form-card .fcheck label {
  color: rgba(226,232,240,.85) !important;
}
.form-card .fc-sub,
[data-theme="light-neon"] .form-card .fc-sub {
  color: rgba(226,232,240,.78) !important;
}
/* Champs : fond sombre cohérent avec la card */
.form-card .fi,
.form-card .fs,
.form-card .ft,
[data-theme="light-neon"] .form-card .fi,
[data-theme="light-neon"] .form-card .fs,
[data-theme="light-neon"] .form-card .ft {
  background: rgba(10,14,31,.7) !important;
  color: #fff !important;
  border-color: rgba(0,209,255,.25) !important;
}
[data-theme="light-neon"] .form-card .fi:focus,
[data-theme="light-neon"] .form-card .fs:focus,
[data-theme="light-neon"] .form-card .ft:focus {
  background: rgba(10,14,31,.9) !important;
  border-color: var(--neon) !important;
  box-shadow: 0 0 0 3px rgba(0,209,255,.18) !important;
}
.form-card .fi::placeholder,
.form-card .ft::placeholder {
  color: rgba(148,163,184,.6) !important;
}

/* ════════════════════════════════════════════════════════════════════
   ████████  SIGNUP OVERLAY — MOBILE LAYOUT (97% des users)  ████████
   Header compact, questions visibles, CTA fixé en bas avec safe area
════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Plus d'espace en bas pour le CTA fixe + safe area iOS */
  #overlay {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)) !important;
  }
  /* Card pleine largeur, marges minces — flex-shrink: 0 sinon le flex column de #overlay
     écrase la hauteur de la card et tronque les champs en bas.
     backdrop-filter: none → sinon crée un containing block qui rend
     position:fixed du bouton CTA relatif à la card (et le bouton sort du viewport). */
  #overlay .form-card {
    width: calc(100% - 16px) !important;
    margin: 10px auto 24px !important;
    border-radius: 20px !important;
    flex-shrink: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
  }
  /* Header compact : titre plus petit, perks resserrés */
  #overlay .fc-head {
    padding: 16px 18px 12px !important;
  }
  #overlay .fc-badge {
    font-size: 10.5px !important;
    padding: 4px 10px !important;
    margin-bottom: 10px !important;
  }
  #overlay .fc-title {
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }
  #overlay .fc-sub {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
  #overlay .fc-perks { padding: 6px 0 !important; }
  #overlay .fc-perk { padding: 8px 4px !important; }
  #overlay .fc-perk .pi { font-size: 15px !important; }
  #overlay .fc-perk .pt {
    font-size: 10px !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
  }
  /* Form : padding bas large pour ne pas être masqué par le CTA fixe */
  #overlay .fform {
    padding: 16px 18px 20px !important;
  }
  #overlay.open .fform {
    padding-bottom: 110px !important;
  }
  /* Espacements champs */
  #overlay .ff { margin-bottom: 12px !important; }
  #overlay .ff-row { margin-bottom: 12px !important; gap: 10px !important; }
  /* Labels : toujours visibles, taille lisible */
  #overlay .ff label {
    font-size: 12px !important;
    margin-bottom: 6px !important;
    color: #fff !important;
    font-weight: 700 !important;
    opacity: 1 !important;
  }
  /* Inputs : touch-target 44px+ */
  #overlay .fi,
  #overlay .fs,
  #overlay .ft {
    padding: 13px 12px 13px 38px !important;
    font-size: 16px !important; /* 16px = pas de zoom auto iOS */
    min-height: 46px !important;
  }
  /* CTA fixé tout en bas — sticky, toujours visible */
  #overlay.open .fsubmit-btn {
    position: fixed !important;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    z-index: 10000 !important;
    font-size: 15px !important;
    padding: 16px 12px !important;
    border-radius: 16px !important;
    box-shadow:
      0 14px 40px rgba(0,209,255,.55),
      0 0 0 2px rgba(0,209,255,.35),
      0 -20px 40px rgba(3,6,16,.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  /* Note sous CTA, centrée et visible */
  #overlay .fnote {
    font-size: 11px !important;
    margin-top: 10px !important;
    line-height: 1.5 !important;
  }
  /* RGPD lisible */
  #overlay .fcheck { margin: 12px 0 4px !important; }
  #overlay .fcheck label {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

/* iPhone SE / petits écrans : encore plus compact */
@media (max-width: 380px) {
  #overlay .fc-title { font-size: 18px !important; }
  #overlay .fc-sub { font-size: 12px !important; }
  #overlay .fc-perk .pt { font-size: 9.5px !important; }
  #overlay.open .fsubmit-btn {
    font-size: 14px !important;
    padding: 14px 8px !important;
  }
}

/* ═══════════════════════════════════════════════
   FIX CONTRASTE LIGHT-NEON
   Les callouts et autres composants avaient du texte light sur fond light.
   Override systématique pour garantir la lisibilité en mode light.
   ═══════════════════════════════════════════════ */

/* Callouts en mode LIGHT — fond clair lisible + texte sombre (spécificité forte pour battre le base CSS) */
html[data-theme="light-neon"] .callout {
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE) !important;
  border-left: 4px solid #8B5CF6 !important;
  box-shadow: 0 2px 8px rgba(139,92,246,.08) !important;
}
html[data-theme="light-neon"] .callout p {
  color: #1E293B !important;
  text-shadow: none !important;
}
html[data-theme="light-neon"] .callout p strong {
  color: #0B1629 !important;
}
html[data-theme="light-neon"] .callout p em {
  color: #0099CC !important;
  font-style: italic;
}
html[data-theme="light-neon"] .callout p a {
  color: #0099CC !important;
}

html[data-theme="light-neon"] .callout.warm {
  background: linear-gradient(135deg, #ECFEFF, #CFFAFE) !important;
  border-left-color: #0891B2 !important;
}
html[data-theme="light-neon"] .callout.warm p { color: #0F172A !important; text-shadow: none !important; }
html[data-theme="light-neon"] .callout.warm p strong { color: #0B1629 !important; }

html[data-theme="light-neon"] .callout.green {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5) !important;
  border-left-color: #059669 !important;
}
html[data-theme="light-neon"] .callout.green p { color: #064E3B !important; text-shadow: none !important; font-weight: 500 !important; }
html[data-theme="light-neon"] .callout.green p strong { color: #022C22 !important; font-weight: 800 !important; }

/* Article body : assurer la lisibilité du contenu long-form en light */
[data-theme="light-neon"] .art-body p,
[data-theme="light-neon"] .art-body li,
[data-theme="light-neon"] .art-body h2,
[data-theme="light-neon"] .art-body h3 {
  color: #1E293B !important;
}
[data-theme="light-neon"] .art-body h2,
[data-theme="light-neon"] .art-body h3 {
  color: #0B1629 !important;
}
[data-theme="light-neon"] .art-body strong { color: #0B1629 !important; }
[data-theme="light-neon"] .art-body em {
  color: #0099CC !important;
  font-style: italic;
}
[data-theme="light-neon"] .art-body a {
  color: #0099CC !important;
  text-decoration: underline;
  text-decoration-color: rgba(0,153,204,.3);
  text-underline-offset: 2px;
}
[data-theme="light-neon"] .art-body a:hover {
  color: #007AA0 !important;
  text-decoration-color: rgba(0,153,204,.6);
}
[data-theme="light-neon"] .art-body blockquote {
  color: #0B1629 !important;
  border-left-color: #00B8E0 !important;
  filter: none !important;
}
[data-theme="light-neon"] .art-lede {
  color: #334155 !important;
}

/* FAQ : questions et réponses lisibles en light */
[data-theme="light-neon"] .faq-q {
  color: #0B1629 !important;
}
[data-theme="light-neon"] .faq-a {
  color: #1E293B !important;
}
[data-theme="light-neon"] .faq-a a {
  color: #0099CC !important;
}

/* Tables (comparatifs) en light : forcer le texte sombre */
[data-theme="light-neon"] table tbody td {
  color: #334155 !important;
}
[data-theme="light-neon"] table tbody td[style*="color:#fff"] {
  color: #0B1629 !important;
}

/* ═══════════════════════════════════════════════════════════
   Sticky mobile CTA — visible mobile uniquement, après hero
   ═══════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90;
  display: none; padding: 14px 24px; border-radius: 14px;
  background: linear-gradient(135deg, var(--neon), var(--mint));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #03101A; font-family: var(--fh); font-weight: 800; font-size: 15px;
  text-align: center; border: 1px solid rgba(0,209,255,.55); cursor: pointer;
  box-shadow:
    0 8px 32px rgba(0,209,255,.45),
    0 0 24px rgba(16,244,163,.2),
    0 2px 8px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.25);
  transform: translateY(120%); opacity: 0;
  transition: transform .4s var(--kz-ease-premium), opacity .3s var(--kz-ease-premium), box-shadow .3s var(--kz-ease-premium);
  text-decoration: none; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: .01em;
}
.mobile-sticky-cta.visible { transform: translate3d(0,0,0); opacity: 1; }
.mobile-sticky-cta:active { box-shadow: 0 4px 16px rgba(0,209,255,.55), inset 0 0 0 1px rgba(255,255,255,.35); transform: translate3d(0,2px,0); }
@media (max-width: 767px) { .mobile-sticky-cta { display: flex; } }
@media (min-width: 768px) { .mobile-sticky-cta { display: none !important; } }
/* Cacher quand l'overlay est ouvert */
body.form-open .mobile-sticky-cta { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   Trust bar fixe (5 stats clés, non défilantes)
   ═══════════════════════════════════════════════════════════ */
.trust-static {
  padding: 28px 0;
  border-top: 1px solid var(--bdr-l);
  border-bottom: 1px solid var(--bdr-l);
  background: linear-gradient(180deg, transparent, rgba(0,209,255,.03));
}
.trust-static-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ts-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
}
.ts-ico { font-size: 24px; margin-bottom: 4px; }
.ts-item strong {
  font-family: var(--fh); font-size: 13.5px; font-weight: 700; color: var(--t1);
}
.ts-item .ts-sub { font-size: 11.5px; color: var(--t3); }
@media (max-width: 768px) {
  .trust-static-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-item:last-child { grid-column: 1 / -1; }
}

/* === Pause animations hors-viewport (gain INP + batterie mobile) === */
.pause-anim,
.pause-anim *,
.pause-anim::before,
.pause-anim::after {
  animation-play-state: paused !important;
}
body.all-anim-paused *,
body.all-anim-paused *::before,
body.all-anim-paused *::after {
  animation-play-state: paused !important;
}

/* ═══════════════════════════════════════════════════════════
   KZ-REVEAL — scroll-reveal premium (stagger + scale)
   Coexiste avec .rv legacy : rv ne change pas, kz-reveal cible
   les éléments non couverts (.feature-card, .universe-card, etc.)
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .kz-reveal-init {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.98);
    transition:
      opacity var(--kz-duration-reveal) var(--kz-ease-premium),
      transform var(--kz-duration-reveal) var(--kz-ease-premium);
    will-change: opacity, transform;
  }
  .kz-reveal-init.kz-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   PATTERN 8 — Hover lift + cyan border-glow premium
   Surcharge légère, ne casse pas les hovers existants
   ═══════════════════════════════════════════════════════════ */
.universe-card {
  transition: transform .3s var(--kz-ease-premium), box-shadow .3s var(--kz-ease-premium), border-color .3s;
}
.feature-card:hover,
.feat-card:hover,
.prob-card:hover,
.step:hover,
.testi:hover,
.universe-card:hover,
.blog-card:hover {
  transform: translate3d(0, -4px, 0);
}
/* Glow cyan supplémentaire sur les cards (sans casser les box-shadows existantes spécifiques) */
.universe-card:hover {
  box-shadow: 0 12px 32px rgba(0,209,255,.18), 0 0 0 1px rgba(0,209,255,.3);
}

/* Light theme : glow réduit pour ne pas écraser le fond clair */
[data-theme="light-neon"] .feature-card:hover,
[data-theme="light-neon"] .feat-card:hover,
[data-theme="light-neon"] .prob-card:hover,
[data-theme="light-neon"] .step:hover,
[data-theme="light-neon"] .testi:hover,
[data-theme="light-neon"] .universe-card:hover,
[data-theme="light-neon"] .blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,209,255,.12), 0 0 0 1px rgba(0,209,255,.2);
}

/* ═══════════════════════════════════════════════════════════
   PATTERN 4 — Trust strip carrousel (badges RÉELS, pas fake presse)
   Décision : honnêteté brand → on liste les vraies forces (RGPD, EU,
   programme officiel) en boucle infinie CSS pure plutôt que des
   logos presse fictifs. Le hover révèle le label complet.
   ═══════════════════════════════════════════════════════════ */
.kz-press-strip {
  overflow: hidden; padding: 28px 0;
  border-bottom: 1px solid var(--bdr-l);
  background: linear-gradient(180deg, transparent, rgba(0,209,255,.025));
  position: relative;
}
/* Si la strip suit directement la trust-static, on neutralise la double bordure */
.trust-static + .kz-press-strip { border-top: 0; margin-top: -1px; }
.kz-press-strip::before,
.kz-press-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 96px;
  z-index: 2; pointer-events: none;
}
.kz-press-strip::before { left: 0;  background: linear-gradient(90deg, var(--bg-base), transparent); }
.kz-press-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg-base), transparent); }
[data-theme="light-neon"] .kz-press-strip::before { background: linear-gradient(90deg, #fff, transparent); }
[data-theme="light-neon"] .kz-press-strip::after  { background: linear-gradient(-90deg, #fff, transparent); }
.kz-press-track {
  display: flex; gap: 56px; align-items: center;
  animation: kz-press-scroll 36s linear infinite;
  width: max-content;
  will-change: transform;
}
.kz-press-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-weight: 700; font-size: 15px;
  color: var(--t2); white-space: nowrap; opacity: .72;
  transition: opacity .3s, color .3s, text-shadow .3s;
  letter-spacing: .01em;
}
.kz-press-logo .kz-press-emoji { font-size: 18px; line-height: 1; }
.kz-press-logo:hover { opacity: 1; color: var(--neon); text-shadow: 0 0 8px rgba(0,209,255,.45); }
.kz-press-strip:hover .kz-press-track { animation-play-state: paused; }
@keyframes kz-press-scroll {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .kz-press-track { animation: none; }
}
@media (max-width: 768px) {
  .kz-press-strip { padding: 20px 0; }
  .kz-press-track { gap: 40px; animation-duration: 28s; }
  .kz-press-logo { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO FX V2 — Halo pulsant + particules + scan beam + floating badges
   Stack visuel premium dark cyber, inspiré Linear/Stripe/HextaAI
   ═══════════════════════════════════════════════════════════ */

/* Halo cyan pulsant autour du phone (Wow factor #1) */
.kz-phone-halo {
  position: absolute; pointer-events: none;
  inset: -40px; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(0,209,255,.35) 0%, rgba(16,244,163,.18) 35%, transparent 70%);
  filter: blur(40px);
  animation: kz-halo-pulse 4s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes kz-halo-pulse {
  0%, 100% { opacity: .55; transform: scale(.95); }
  50%      { opacity: .85; transform: scale(1.05); }
}

/* Scan beam vertical qui glisse sur le phone (effet "X-Ray IA") */
.kz-scan-beam {
  position: absolute; pointer-events: none;
  top: 0; bottom: 0; left: 0; right: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
}
.kz-scan-beam::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 8px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,.6), rgba(16,244,163,.5), rgba(0,209,255,.6), transparent);
  filter: blur(2px);
  animation: kz-scan-vertical 6s ease-in-out infinite;
}
@keyframes kz-scan-vertical {
  0%, 100% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(800px); opacity: 1; }
  60% { opacity: 0; }
}

/* Particules flottantes (étoiles cyan/mint) */
.kz-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.kz-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon), 0 0 16px rgba(0,209,255,.5);
  animation: kz-particle-float 14s linear infinite;
  will-change: transform, opacity;
}
.kz-particle.mint { background: var(--mint); box-shadow: 0 0 8px var(--mint), 0 0 16px rgba(16,244,163,.5); }
.kz-particle:nth-child(1)  { left: 8%;  top: 20%; animation-delay: 0s;   animation-duration: 18s; }
.kz-particle:nth-child(2)  { left: 22%; top: 80%; animation-delay: -2s;  animation-duration: 14s; }
.kz-particle:nth-child(3)  { left: 35%; top: 35%; animation-delay: -5s;  animation-duration: 16s; }
.kz-particle:nth-child(4)  { left: 55%; top: 65%; animation-delay: -8s;  animation-duration: 13s; }
.kz-particle:nth-child(5)  { left: 70%; top: 25%; animation-delay: -3s;  animation-duration: 17s; }
.kz-particle:nth-child(6)  { left: 88%; top: 50%; animation-delay: -10s; animation-duration: 15s; }
.kz-particle:nth-child(7)  { left: 15%; top: 50%; animation-delay: -7s;  animation-duration: 19s; }
.kz-particle:nth-child(8)  { left: 45%; top: 15%; animation-delay: -1s;  animation-duration: 14s; }
.kz-particle:nth-child(9)  { left: 78%; top: 75%; animation-delay: -6s;  animation-duration: 16s; }
.kz-particle:nth-child(10) { left: 92%; top: 30%; animation-delay: -4s;  animation-duration: 18s; }
.kz-particle:nth-child(11) { left: 5%;  top: 70%; animation-delay: -9s;  animation-duration: 15s; }
.kz-particle:nth-child(12) { left: 60%; top: 45%; animation-delay: -11s; animation-duration: 17s; }

@keyframes kz-particle-float {
  0%   { transform: translate3d(0, 0, 0)    scale(.6); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate3d(20px, -60px, 0) scale(1); opacity: .9; }
  90%  { opacity: 1; }
  100% { transform: translate3d(40px, -120px, 0) scale(.6); opacity: 0; }
}

/* Cards flottantes additionnelles autour du mockup phone */
.kz-floating-card {
  position: absolute; z-index: 6;
  background: linear-gradient(135deg, rgba(15,20,40,.92), rgba(20,25,58,.88));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,209,255,.28);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 24px rgba(0,209,255,.15);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fb);
  animation: kz-card-float 7s ease-in-out infinite;
  will-change: transform;
}
.kz-floating-card .fc-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,209,255,.18), rgba(16,244,163,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.kz-floating-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--fh);
  line-height: 1.2;
}
.kz-floating-card span {
  display: block;
  color: var(--neon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.kz-floating-card.fc-top-right    { top: 8%;   right: -20px; animation-delay: 0s; }
.kz-floating-card.fc-mid-left     { top: 42%;  left: -32px;  animation-delay: 2.3s; }
.kz-floating-card.fc-bottom-right { bottom: 12%;right: -16px; animation-delay: 4.6s; }
.kz-floating-card .fc-pulse {
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: kz-pulse-dot 2s ease-in-out infinite;
}

@keyframes kz-card-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%      { transform: translateY(-8px) translateX(3px); }
  66%      { transform: translateY(4px) translateX(-3px); }
}
@keyframes kz-pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.6); opacity: .5; }
}

/* Connecteurs SVG-like : lignes pointillées entre cards et phone */
.kz-connector {
  position: absolute; pointer-events: none;
  z-index: 4;
  border: 1.5px dashed rgba(0,209,255,.32);
  border-radius: 12px;
  animation: kz-connector-fade 4s ease-in-out infinite;
}
.kz-connector.cn-1 { top: 16%; right: 30px; width: 50px; height: 30px; border-bottom: none; border-left: none; }
.kz-connector.cn-2 { bottom: 20%; left: 30px; width: 40px; height: 25px; border-top: none; border-right: none; }
@keyframes kz-connector-fade {
  0%, 100% { opacity: .25; }
  50%      { opacity: .65; }
}

/* Mobile : on simplifie pour pas surcharger */
@media (max-width: 900px) {
  .kz-phone-halo,
  .kz-scan-beam,
  .kz-particles,
  .kz-floating-card,
  .kz-connector { display: none !important; }
}

/* Reduced motion : tout calme */
@media (prefers-reduced-motion: reduce) {
  .kz-phone-halo,
  .kz-scan-beam::before,
  .kz-particle,
  .kz-floating-card,
  .kz-floating-card .fc-pulse,
  .kz-connector { animation: none !important; }
  .kz-phone-halo, .kz-scan-beam, .kz-particles { opacity: .3; }
}

/* Light theme : couleurs adaptées */
[data-theme="light-neon"] .kz-floating-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
  border-color: rgba(0,184,224,.4) !important;
  color: #0B1629 !important;
}
[data-theme="light-neon"] .kz-floating-card strong { color: #0B1629 !important; }
[data-theme="light-neon"] .kz-floating-card span { color: #00B8E0 !important; }
[data-theme="dark-sober"] .kz-particle,
[data-theme="dark-sober"] .kz-phone-halo,
[data-theme="dark-sober"] .kz-scan-beam { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   SPRINT 1 — Animations vivantes niveau 1 (tilt 3D + magnetic + parallax)
   ═══════════════════════════════════════════════════════════ */

/* Card 3D Tilt — perspective + rotation X/Y selon position cursor */
.feature-card,
.universe-card,
.testi,
.blog-card,
.prob-card,
.step,
.profil-card,
.pro-card,
.feat-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--kz-tilt-x, 0deg)) rotateY(var(--kz-tilt-y, 0deg)) translateZ(0);
  transition: transform .3s var(--kz-ease-premium), border-color .3s, box-shadow .3s;
  will-change: transform;
}
.feature-card:hover,
.universe-card:hover,
.testi:hover,
.blog-card:hover,
.prob-card:hover,
.step:hover,
.profil-card:hover,
.pro-card:hover,
.feat-card:hover {
  z-index: 2;
}
.feature-card::after,
.universe-card::after,
.testi::after,
.blog-card::after,
.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--kz-tilt-mx, 50%) var(--kz-tilt-my, 50%), rgba(0, 209, 255, .12), transparent 40%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 1;
}
.feature-card:hover::after,
.universe-card:hover::after,
.testi:hover::after,
.blog-card:hover::after,
.feat-card:hover::after {
  opacity: 1;
}

/* Magnetic CTA — le curseur "attire" le bouton */
.btn.btn-o,
.btn.btn-white,
.kz-magnetic {
  transform: translate3d(var(--kz-mag-x, 0), var(--kz-mag-y, 0), 0) scale(var(--kz-mag-s, 1));
  transition: transform .25s var(--kz-ease-premium), background .2s, box-shadow .2s;
  will-change: transform;
}

/* Parallax couches qui bougent à différentes vitesses au scroll */
.kz-parallax-layer {
  transform: translate3d(0, var(--kz-px, 0), 0);
  will-change: transform;
}
.kz-parallax-slow { --kz-px-mult: 0.15; }
.kz-parallax-mid  { --kz-px-mult: 0.3; }
.kz-parallax-fast { --kz-px-mult: 0.5; }

/* Image reveal scan beam (extension du hero scan) */
.kz-img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.kz-img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,209,255,.12) 50%, transparent 100%);
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 2;
  transition: transform 1.2s var(--kz-ease-premium);
}
.kz-img-reveal.kz-revealed::before {
  transform: translateY(100%);
}

/* Animation CSS complexe : cycle photo → quiz → déblocage (équivalent Lottie sans lib) */
.kz-flow-anim {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/10;
  margin: 0 auto;
  background: linear-gradient(135deg, #0F1428, #1E2547);
  border-radius: 22px;
  border: 1px solid rgba(0,209,255,.22);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kz-flow-step {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  animation: kz-flow-cycle 12s ease-in-out infinite;
}
.kz-flow-step .fs-emoji {
  font-size: 56px;
  filter: drop-shadow(0 4px 12px rgba(0,209,255,.4));
  animation: kz-flow-bounce 2s ease-in-out infinite;
}
.kz-flow-step .fs-label {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.kz-flow-step .fs-sub {
  font-size: 13px;
  color: var(--neon);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.kz-flow-step:nth-child(1) { animation-delay: 0s;    }
.kz-flow-step:nth-child(2) { animation-delay: 4s;    }
.kz-flow-step:nth-child(3) { animation-delay: 8s;    }

@keyframes kz-flow-cycle {
  0%, 30%   { opacity: 1; transform: scale(1); }
  33%, 100% { opacity: 0; transform: scale(.96); }
}
@keyframes kz-flow-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Progress bar dans flow anim */
.kz-flow-progress {
  position: absolute;
  bottom: 16px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.kz-flow-progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--neon), var(--mint));
  transform-origin: left;
  animation: kz-flow-progress-anim 12s linear infinite;
}
@keyframes kz-flow-progress-anim {
  0%   { transform: scaleX(0); }
  33%  { transform: scaleX(.33); }
  66%  { transform: scaleX(.66); }
  100% { transform: scaleX(1); }
}

/* Reduced motion : tout calme */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .universe-card,
  .testi,
  .blog-card,
  .prob-card,
  .step,
  .profil-card,
  .pro-card,
  .feat-card { transform: none !important; transition: border-color .15s, box-shadow .15s !important; }
  .btn.btn-o,
  .btn.btn-white,
  .kz-magnetic { transform: none !important; }
  .kz-parallax-layer { transform: none !important; }
  .kz-flow-step { animation: none !important; opacity: 1; }
  .kz-flow-step:nth-child(2),
  .kz-flow-step:nth-child(3) { display: none !important; }
  .kz-flow-progress::after { animation: none !important; }
}

/* Mobile <768 : désactiver tilt/parallax pour perf */
@media (max-width: 768px) {
  .feature-card,
  .universe-card,
  .testi,
  .blog-card,
  .prob-card,
  .step,
  .profil-card,
  .pro-card,
  .feat-card { transform: none !important; }
  .btn.btn-o,
  .btn.btn-white,
  .kz-magnetic { transform: none !important; }
  .kz-parallax-layer { transform: none !important; }
}
