/* =============================================================
   FaceHOOK — Polices Centra (auto-hébergées, woff2)
   No2 = display (titres/logo) · No1 = texte (corps)
   ============================================================= */
@font-face {
  font-family: 'Centra No2'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/CentraNo2-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Centra No2'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('assets/fonts/CentraNo2-Extrabold.woff2') format('woff2');
}
@font-face {
  font-family: 'Centra No1'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('assets/fonts/CentraNo1-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Centra No1'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/CentraNo1-Book.woff2') format('woff2');
}
@font-face {
  font-family: 'Centra No1'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/CentraNo1-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Centra No1'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/CentraNo1-Bold.woff2') format('woff2');
}

/* =============================================================
   FaceHOOK — Styles partagés (index.html + school.html)
   THÈME CLAIR — blanc lumineux + bleu Facebook (inspiré des bureaux)
   Mobile-first. Breakpoints : 375 / 768 / 1280
   ============================================================= */

/* =============================================================
   0. DESIGN TOKENS — système de couleurs centralisé FaceHOOK
   Architecture thémable (dark par défaut, light prêt).
   Aucune couleur ne doit être définie hors de ce système.
   ============================================================= */

/* ---- Échelle de marque brute (NE PAS utiliser directement) ---- */
:root {
  --c-night:      #01040D;
  --c-deep:       #020817;
  --c-navy-1:     #04122E;
  --c-navy-2:     #08214D;
  --c-surface:    #0C1322;
  --c-surface-2:  #111A2D;
  --c-blue:       #1877F2;  /* Facebook */
  --c-blue-600:   #2563EB;  /* premium */
  --c-blue-500:   #3B82F6;  /* lumineux */
  --c-blue-400:   #60A5FA;
  --c-blue-300:   #93C5FD;
  --c-cyan:       #06B6D4;  /* turquoise */
  --c-emerald:    #10B981;  /* vert émeraude */
  --c-emerald-300:#34D399;
  --c-gold:       #F4B740;  /* étoiles / notes (exception contrôlée) */
  --c-danger:     #EF4444;
  --c-white:      #FFFFFF;

  /* dimensions / typographie (non chromatique) */
  --radius:    16px;
  --radius-sm: 10px;
  --header-h:  70px;
  --maxw:      1200px;
  --font-title: 'Centra No2', 'Syne', sans-serif;
  --font-body:  'Centra No1', 'DM Sans', system-ui, sans-serif;
}

/* ---- Tokens sémantiques — THÈME SOMBRE (défaut) ---- */
:root,
[data-theme="dark"] {
  /* Backgrounds */
  --background-primary:   var(--c-night);
  --background-secondary: var(--c-deep);
  --background-elevated:  #071228;
  /* Surfaces (cartes / panneaux) */
  --surface-primary:   var(--c-surface);
  --surface-secondary: var(--c-surface-2);
  --surface-glass:     rgba(255,255,255,0.05);
  /* Bordures */
  --border-primary:   rgba(255,255,255,0.08);
  --border-secondary: rgba(255,255,255,0.12);
  --border-brand:     rgba(59,130,246,0.25);
  /* Texte */
  --text-primary:   var(--c-white);
  --text-secondary: #E6EDF7;
  --text-muted:     #9AAAC2;
  /* Marque & accents */
  --brand-primary:   var(--c-blue);
  --brand-secondary: var(--c-blue-600);
  --accent-blue:     var(--c-blue-500);
  --accent-cyan:     var(--c-cyan);
  --accent-green:    var(--c-emerald);
  --accent-star:     var(--c-gold);
  --danger:          var(--c-danger);
  /* Glow */
  --glow-primary:   rgba(37,99,235,0.18);
  --glow-secondary: rgba(16,185,129,0.16);
  /* Dégradés */
  --grad:       linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-500) 100%);
  --grad-cta:   linear-gradient(135deg, var(--c-blue-600) 0%, var(--c-cyan) 130%);
  --grad-green: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-emerald-300) 120%);

  /* ===== Alias hérités (mappés sur les tokens, rétro-compatibilité) ===== */
  --bg:          var(--background-primary);
  --bg-2:        var(--background-secondary);
  --bg-3:        var(--background-elevated);
  --card:        var(--surface-primary);
  --navy:        var(--c-navy-1);
  --navy-2:      var(--c-navy-2);
  --blue:        var(--brand-primary);
  --blue-dark:   var(--brand-secondary);
  --blue-light:  var(--accent-blue);
  --blue-pale:   var(--c-blue-300);
  --green:       var(--accent-green);
  --green-light: var(--c-emerald-300);
  --violet:      var(--brand-secondary);   /* violet supprimé → bleu premium */
  --gold:        var(--accent-star);
  --dark:        var(--background-primary);
  --dark-2:      var(--surface-primary);
  --text-light:  var(--text-secondary);
  --muted-light: var(--text-muted);
  --border-light:var(--border-primary);
  --ink:         var(--text-primary);
  --text:        var(--text-secondary);
  --muted:       var(--text-muted);
  --border:        var(--border-primary);
  --border-strong: var(--border-secondary);
  --border-active: var(--brand-primary);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.30);
  --shadow:      0 14px 40px -16px rgba(0,0,0,0.50);
  --shadow-blue: 0 16px 40px -14px var(--glow-primary);
}

/* ---- Tokens sémantiques — THÈME CLAIR (prêt pour activation future) ---- */
[data-theme="light"] {
  --background-primary:   #FFFFFF;
  --background-secondary: #F4F7FB;
  --background-elevated:  #EAF1FC;
  --surface-primary:   #FFFFFF;
  --surface-secondary: #F4F7FB;
  --surface-glass:     rgba(10,37,64,0.04);
  --border-primary:   #E2E8F0;
  --border-secondary: #CBD8E8;
  --border-brand:     rgba(24,119,242,0.25);
  --text-primary:   #0A2540;
  --text-secondary: #334155;
  --text-muted:     #64748B;
  --glow-primary:   rgba(37,99,235,0.12);
  --glow-secondary: rgba(16,185,129,0.10);
  --shadow-sm:   0 2px 10px rgba(10,37,64,0.05);
  --shadow:      0 14px 40px -16px rgba(10,37,64,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--background-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.12; margin: 0; color: var(--ink); }

::selection { background: rgba(24,119,242,0.18); color: var(--ink); }

/* -------------------------------------------------------------
   0b. CANVAS GLOBAL — un seul environnement continu, sombre & premium
   Palette : navy quasi-noir + 3 auroras (2 bleues dominantes, 1 verte).
   ------------------------------------------------------------- */
#bg-universe {
  position: fixed; inset: 0; z-index: -3; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(1500px 1000px at 50% -10%, #020817 0%, transparent 60%),
    linear-gradient(180deg, #01040D 0%, #000510 55%, #01040D 100%);
}
/* Auroras : très larges, douces, mouvement quasi imperceptible.
   Blur réduit (perf) : un grand rayon coûte très cher en GPU. */
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.aurora--b1 {
  width: clamp(680px, 76vw, 1200px); height: clamp(680px, 76vw, 1200px);
  top: -20%; left: -14%; background: rgba(24,119,242,0.10);
  animation: auroraA 60s ease-in-out infinite alternate;
}
.aurora--b2 {
  width: clamp(620px, 68vw, 1080px); height: clamp(620px, 68vw, 1080px);
  top: 30%; right: -18%; background: rgba(37,99,235,0.08);
  animation: auroraB 74s ease-in-out infinite alternate;
}
.aurora--g1 {
  width: clamp(560px, 60vw, 960px); height: clamp(560px, 60vw, 960px);
  bottom: -18%; left: 22%; background: rgba(16,185,129,0.04);
  animation: auroraC 82s ease-in-out infinite alternate;
}
/* Translate seulement (pas de scale) : déplacer une texture floutée déjà
   rasterisée est gratuit pour le GPU ; l'animer en scale la re-rasterise. */
@keyframes auroraA { from { transform: translate3d(0,0,0); } to { transform: translate3d(5%,4%,0); } }
@keyframes auroraB { from { transform: translate3d(0,0,0); } to { transform: translate3d(-5%,4%,0); } }
@keyframes auroraC { from { transform: translate3d(0,0,0); } to { transform: translate3d(4%,-4%,0); } }

/* Courants de lumière — STATIQUES (peints une seule fois) pour la perf.
   Ils gardent l'ambiance sans coût d'animation par frame. */
.flow { position: absolute; left: 0; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.flow--1 { top: 14%;  left: 8%;  width: 40vw; height: 200px; background: radial-gradient(ellipse, rgba(24,119,242,0.10), transparent 70%); }
.flow--2 { top: 50%;  right: 6%; left: auto; width: 36vw; height: 190px; background: radial-gradient(ellipse, rgba(37,99,235,0.08), transparent 70%); }
.flow--3 { top: 82%;  left: 26%; width: 38vw; height: 200px; background: radial-gradient(ellipse, rgba(16,185,129,0.05), transparent 70%); }

/* Particules ambiantes (légères) — densité « respire » via --pd (JS) */
.uni-particles { position: absolute; inset: 0; opacity: var(--pd, 0.8); transition: opacity 1.2s ease; }
.uni-particles span {
  position: absolute; border-radius: 50%; background: #3B82F6;
  animation: partDrift linear infinite;
}
@keyframes partDrift {
  0%   { transform: translateY(0); opacity: 0; }
  12%  { opacity: var(--o, 0.06); }
  88%  { opacity: var(--o, 0.06); }
  100% { transform: translateY(-120px); opacity: 0; }
}

/* Teinte évolutive au scroll — voile émeraude SOMBRE dont l'opacité
   (--tint, pilotée en JS) culmine au cœur du site : bleu → émeraude → bleu.
   Couleurs volontairement sombres pour garder le fond sombre. */
.uni-tint {
  position: absolute; inset: 0; pointer-events: none;
  opacity: var(--tint, 0);
  /* Promu sur sa propre couche : les changements d'opacité (pilotés au scroll)
     sont composités par le GPU, sans repaint du dégradé plein écran. */
  will-change: opacity; transform: translateZ(0);
  background:
    radial-gradient(1300px 900px at 50% 32%, rgba(6,78,59,0.55), transparent 64%),
    linear-gradient(180deg, rgba(5,40,34,0) 0%, rgba(5,44,37,0.45) 100%);
}

/* Réactif à la souris — décalage léger par couche (profondeur 3D).
   Limité aux auroras (déjà promues, donc translate quasi gratuit) + voile :
   on ne déplace PAS les .flow floutés pour éviter des repaints coûteux. */
#bg-universe .aurora,
.uni-tint { transition: translate 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.aurora--b1 { translate: calc(var(--mx, 0) * 22px) calc(var(--my, 0) * 18px); }
.aurora--b2 { translate: calc(var(--mx, 0) * -18px) calc(var(--my, 0) * -14px); }
.aurora--g1 { translate: calc(var(--mx, 0) * 14px) calc(var(--my, 0) * -10px); }
.uni-tint { translate: calc(var(--mx, 0) * 10px) calc(var(--my, 0) * 8px); }

/* Quand Vanta FOG est actif, on masque les couches décoratives du canvas */
#bg-universe.vanta-on .aurora,
#bg-universe.vanta-on .flow,
#bg-universe.vanta-on .uni-particles { display: none; }
#bg-universe canvas { display: block; }
/* Voile sombre par-dessus le fog → garde le fond sombre et lisible */
#bg-universe.vanta-on::after {
  z-index: 2; opacity: 1; mix-blend-mode: normal; background-image: none;
  background: linear-gradient(180deg, rgba(1,4,13,0.52) 0%, rgba(1,4,13,0.60) 100%);
}

/* -------------------------------------------------------------
   2. Layout
   ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 760px; }

.section { position: relative; padding-block: 76px; }
.section--top0 { padding-top: 36px; }
.section > .container { position: relative; z-index: 1; }

/* --- Sections CLAIRES --- */
.section--light { background: #fff; }

/* --- Sections SOMBRES : transparentes sur le canvas continu --- */
/* Aucun séparateur, aucun halo de section : tout vit dans le même environnement */
.section--dark { background: transparent; color: var(--text-light); overflow: hidden; }
.section--dark::before { content: none; display: none; }
/* Titres / textes sur sombre */
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: var(--muted-light); }

/* Cartes glass sur sombre */
.section--dark .card,
.section--dark .phase {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  border-color: var(--border-light);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.9);
}
.section--dark .card:hover {
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.25), 0 30px 64px -26px rgba(24,119,242,0.5);
}

/* Cartes parcours : passage en blanc au survol */
.section--dark .phase {
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.section--dark .phase:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 30px 64px -26px rgba(24,119,242,0.5);
  transform: translateY(-4px);
}
.section--dark .phase:hover .phase__title { color: var(--ink); }
.section--dark .phase:hover .phase__list li { color: var(--text); }
.section--dark .phase:hover .phase__num { color: var(--blue); opacity: 0.14; }
.section--dark .card__title,
.section--dark .phase__title,
.section--dark .price { color: #fff; }
.section--dark .card p,
.section--dark .phase__list li { color: var(--muted-light); }
.section--dark .card__icon { color: var(--blue-light); background: rgba(24,119,242,0.16); border-color: rgba(59,130,246,0.32); }
.section--dark .price-old { color: var(--muted-light); }

/* Badges sur sombre */
.section--dark .badge--blue  { background: rgba(24,119,242,0.2);  color: #A9CEFF; border-color: rgba(59,130,246,0.45); }
.section--dark .badge--green { background: rgba(16,185,129,0.18);  color: #6EE7B7; border-color: rgba(16,185,129,0.45); }

/* Témoignages sur sombre */
.section--dark .testimonial__text { color: var(--text-light); }
.section--dark .testimonial__author strong { color: #fff; }
.section--dark .testimonial__author small { color: var(--muted-light); }
.section--dark .testimonial__stars { color: var(--gold); }

/* Liens & "perks" sur sombre */
.section--dark .link-arrow { color: var(--blue-light); }
.section--dark .private__perk { color: #A9CEFF; }

.section__head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 48px; }
.section__title { font-weight: 800; color: var(--ink); font-size: clamp(1.7rem, 5vw, 2.5rem); letter-spacing: -0.02em; }
.section__title--left { text-align: left; }
.section__lead { margin-top: 16px; color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.15rem); font-weight: 400; }
.section__cta { text-align: center; margin-top: 44px; }

/* -------------------------------------------------------------
   3. Boutons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 12px 22px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; letter-spacing: -0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background-color .25s ease, border-color .25s ease, color .2s ease, filter .25s ease;
  white-space: nowrap; line-height: 1; -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
/* La flèche de fin avance légèrement au survol */
.btn:hover svg:last-child { transform: translateX(3px); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px -8px rgba(24,119,242,0.55), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 16px 36px -10px rgba(24,119,242,0.8), inset 0 1px 0 rgba(255,255,255,0.22); }

.btn--gradient { background: var(--grad); color: #fff; box-shadow: 0 8px 22px -8px rgba(24,119,242,0.6), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--gradient:hover { box-shadow: 0 16px 38px -10px rgba(24,119,242,0.9), inset 0 1px 0 rgba(255,255,255,0.3); filter: brightness(1.06); }

/* Bouton vert (croissance / consultation) */
.btn--green { background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #fff; box-shadow: 0 8px 22px -8px rgba(16,185,129,0.6), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--green:hover { box-shadow: 0 16px 38px -10px rgba(16,185,129,0.9), inset 0 1px 0 rgba(255,255,255,0.3); filter: brightness(1.06); }

/* Bouton verre (sur fond sombre) */
.btn--glass { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }
.btn--glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.42); box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 14px 30px -14px rgba(0,0,0,0.6); }

.btn--white { background: #fff; color: var(--blue); box-shadow: 0 8px 22px -10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn--white:hover { box-shadow: 0 16px 38px -12px rgba(0,0,0,0.4); filter: brightness(1.02); }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: rgba(24,119,242,0.08); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* Bouton bordure dégradée (sur fond clair) */
.btn--outline-gradient {
  background: #fff; color: var(--ink); border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--grad);
  background-origin: border-box; background-clip: padding-box, border-box;
  box-shadow: var(--shadow-sm);
}
.btn--outline-gradient:hover { box-shadow: var(--shadow-blue); }

.btn--whatsapp { background: var(--green); color: #fff; box-shadow: 0 8px 22px -8px rgba(16,185,129,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn--whatsapp:hover { background: #059669; box-shadow: 0 16px 36px -12px rgba(16,185,129,0.8), inset 0 1px 0 rgba(255,255,255,0.28); filter: brightness(1.04); }

.btn--lg { padding: 14px 26px; font-size: 0.98rem; }
.btn--tall { height: 52px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* Mobile : boutons plus compacts */
@media (max-width: 600px) {
  .btn { padding: 10px 18px; font-size: 0.86rem; gap: 8px; }
  .btn--lg { padding: 12px 20px; font-size: 0.9rem; }
  .btn svg { width: 16px; height: 16px; }
}

/* -------------------------------------------------------------
   4. Header
   ------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(2,8,23,0.72);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--border-primary);
  box-shadow: 0 8px 28px -12px rgba(0,0,0,0.55);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Logo : badge "fh" + texte */
.logo { display: inline-flex; align-items: center; gap: 10px; }
/* Logo image officiel (FACEHOOK) — version blanche sur fond sombre.
   Tailles adaptées à la position : header compact, footer un peu plus présent. */
.logo__img { height: 19px; width: auto; display: block; }
@media (min-width: 768px) { .logo__img { height: 21px; } }
.logo__badge {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 4px 12px -2px rgba(24,119,242,0.5);
}
.logo__text { font-family: var(--font-title); font-weight: 800; font-size: 1.375rem; line-height: 1; }
/* Sur le hero (header transparent) : logo blanc */
.logo__face { color: #fff; }
.logo__hook { color: var(--accent-blue); }
/* Au scroll (header sombre translucide) : on garde un texte clair lisible */
.header.scrolled .logo__face { color: #fff; }
.header.scrolled .logo__hook { color: var(--accent-blue); }

.nav { display: none; align-items: center; gap: 28px; }
.nav__link { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; transition: color .2s ease; }
.nav__link:hover, .nav__link--active { color: #fff; }
.header.scrolled .nav__link { color: rgba(255,255,255,0.85); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link--active { color: var(--accent-blue); }

.header__cta { display: none; padding: 10px 20px; font-size: 0.875rem; }

/* Icônes réseaux sociaux (header) */
.nav__social { display: none; align-items: center; gap: 6px; }
.nav__soc {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav__soc svg { width: 18px; height: 18px; }
.nav__soc:hover { color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
[data-theme="light"] .nav__soc { color: #475569; }
[data-theme="light"] .nav__soc:hover { color: var(--brand-primary); background: rgba(10,37,64,0.06); }

/* Icônes réseaux sociaux (menu mobile) */
.mobile-menu__social { display: flex; justify-content: center; gap: 14px; margin-top: 8px; }
.mm__soc {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.mm__soc svg { width: 22px; height: 22px; }
.mm__soc:hover { color: var(--accent-blue); transform: translateY(-2px); }
[data-theme="light"] .mm__soc { color: #0A2540; background: rgba(10,37,64,0.05); border-color: rgba(10,37,64,0.12); }

/* Hamburger */
.hamburger { display: inline-flex; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: 0; padding: 0; cursor: pointer; }
.hamburger span { display: block; height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease, background-color .3s ease; }
.header.scrolled .hamburger span { background: #fff; }
.hamburger.active span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile plein écran (clair) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(37,99,235,0.16), transparent 60%),
    rgba(3,7,16,0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__link {
  font-family: var(--font-title); font-weight: 700; font-size: 1.5rem; color: #fff;
  letter-spacing: -0.01em; transition: color .2s ease;
}
.mobile-menu__link:hover, .mobile-menu__link:active { color: var(--accent-blue); }
.mobile-menu__cta { margin-top: 12px; }

/* Bouton « retour en haut » (fixe, bas-droite) */
.back-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: var(--grad);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 34px -12px rgba(24,119,242,0.8);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.9);
  transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-top:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 40px -10px rgba(24,119,242,0.95); }
.back-top:active { transform: translateY(0) scale(0.96); }

/* -------------------------------------------------------------
   5. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  text-align: center;
  background: var(--dark);
}
/* Hero accueil : image de fond floutée + assombrie */
.hero--home {
  min-height: 100vh; min-height: 100svh;
  justify-content: center; padding: calc(var(--header-h) + 20px) 0 96px;
  background: var(--background-primary);
}
.hero--home::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-bg.webp?v=6') center center / cover no-repeat;
  filter: blur(6px) brightness(0.82);
  transform: scale(1.08);
}
/* voile sombre léger pour la lisibilité du contenu */
.hero--home::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(1,4,13,0.55) 0%, rgba(1,4,13,0.28) 40%, rgba(1,4,13,0.35) 68%, rgba(1,4,13,0.8) 100%);
}

/* Hero content on photo */
.hero__inner--home { align-items: center; max-width: 860px; margin-inline: auto; }

/* Hero 2 colonnes : texte à gauche, widgets à droite */
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; width: 100%; min-width: 0; }
/* min-width:0 -> empêche un enfant non-sécable (badge) de forcer l'élargissement
   de la colonne et de provoquer un débordement horizontal sur mobile */
.hero__col-left { position: relative; z-index: 2; min-width: 0; max-width: 100%; }
.hero__col-right { display: none; }
/* Cartes en flux dans la colonne droite (au lieu de flotter en absolu) */
.hero__col-right .hero__review-card,
.hero__col-right .hero__growth-card {
  position: relative; display: block; inset: auto;
  width: 100%; max-width: 360px; margin: 0 auto;
  animation: none; opacity: 1; /* .fade-up met opacity:0 ; on la rétablit ici */
}
/* Dès la tablette / version web : contenu texte aligné à gauche */
@media (min-width: 768px) {
  .hero__col-left.hero__inner { align-items: flex-start; text-align: left; max-width: none; margin-inline: 0; }
  .hero__col-left .hero__badge-bar { justify-content: flex-start; align-self: flex-start; margin-inline: 0; }
  .hero__col-left .hero__cta { justify-content: flex-start; }
  .hero__col-left .hero__stats { justify-content: flex-start; }
}
@media (min-width: 992px) {
  .hero__grid { grid-template-columns: 1.06fr 0.94fr; gap: 48px; }
  .hero__col-left.hero__inner { align-items: flex-start; text-align: left; max-width: none; margin-inline: 0; }
  .hero__col-left .hero__badge-bar { justify-content: flex-start; align-self: flex-start; margin-inline: 0; }
  .hero__col-left .hero__cta { justify-content: flex-start; }
  .hero__col-left .hero__stats { justify-content: flex-start; }
  .hero__col-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; }
  .hero__col-right .hero__review-card,
  .hero__col-right .hero__growth-card { margin: 0; }
}

/* Glassmorphic badge */
.hero__badge-bar { margin-bottom: 28px; display: flex; justify-content: center; }
.hero__gbadge {
  position: relative;
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 7px 11px;
  max-width: 100%;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background:
    linear-gradient(rgba(8,14,28,0.72), rgba(8,14,28,0.72)) padding-box,
    linear-gradient(120deg, rgba(24,119,242,0.85), rgba(6,182,212,0.7), rgba(52,211,153,0.75)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 9px 20px; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: heroBadgeIn .8s ease both;
}
/* Halo dégradé diffus derrière le badge */
.hero__gbadge::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: linear-gradient(120deg, rgba(24,119,242,0.45), rgba(6,182,212,0.35), rgba(52,211,153,0.4));
  filter: blur(14px); opacity: 0.55;
}
.hero__gbadge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
  box-shadow: 0 0 8px rgba(52,211,153,0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
.hero__gbadge-item { white-space: nowrap; }
.hero__gbadge-sep {
  width: 4px; height: 4px; border-radius: 50%; flex: none;
  background: linear-gradient(180deg, #60A5FA, #1877F2);
  box-shadow: 0 0 6px rgba(24,119,242,0.6);
}
/* Mobile : badge resserré pour tenir sur une ligne sans déborder */
@media (max-width: 480px) {
  .hero__gbadge { font-size: 0.6rem; letter-spacing: 0.05em; gap: 6px 8px; padding: 8px 14px; }
  .hero__gbadge-dot { width: 7px; height: 7px; }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Staggered sub-lines */
.hero__lines { margin-bottom: 16px; }
.hero__line {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem); color: rgba(255,255,255,0.85);
  margin: 0; line-height: 1.6; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero__lines .fade-up:nth-child(1) { animation-delay: 0.2s; }
.hero__lines .fade-up:nth-child(2) { animation-delay: 0.35s; }
.hero__lines .fade-up:nth-child(3) { animation-delay: 0.5s; }

/* Carte flottante : outil Review (glassmorphique ultra-moderne) */
.hero__review-card {
  position: absolute; bottom: 116px; right: 24px; z-index: 4;
  width: 280px; padding: 18px 18px 20px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 22px; color: #fff;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.12);
  animation: studioFloat 6s ease-in-out infinite alternate;
  display: none;
}
@keyframes studioFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
/* Ligne de scan qui balaie la carte */
.rev__scan {
  position: absolute; left: 0; right: 0; top: 0; height: 38%; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(59,130,246,0.18), transparent);
  border-bottom: 1px solid rgba(96,165,250,0.5);
  filter: blur(2px); opacity: 0.8;
  animation: revScan 3.2s ease-in-out infinite;
}
@keyframes revScan {
  0% { transform: translateY(-40%); opacity: 0; }
  20% { opacity: 0.9; }
  80% { opacity: 0.9; }
  100% { transform: translateY(280%); opacity: 0; }
}
/* halo bleu doux dans la carte */
.rev__glow {
  position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; z-index: 0;
  background: radial-gradient(circle, rgba(37,99,235,0.45), transparent 70%);
  filter: blur(36px); pointer-events: none;
}
.hero__review-card > *:not(.rev__scan):not(.rev__glow) { position: relative; z-index: 1; }

.rev__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rev__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-title); font-weight: 700; font-size: 0.85rem; color: #fff; }
.rev__brand-ic {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.25); color: #93C5FD;
}
.rev__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6EE7B7; background: rgba(16,185,129,0.12);
  border: 1px solid rgba(52,211,153,0.4); padding: 4px 9px; border-radius: 999px;
}
.rev__live i { width: 6px; height: 6px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; animation: revPulse 1.4s ease-in-out infinite; }
@keyframes revPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* Jauge circulaire animée */
.rev__gauge { position: relative; width: 116px; height: 116px; margin: 4px auto 12px; }
.rev__svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.rev__track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 9; }
.rev__prog {
  fill: none; stroke: url(#revGrad); stroke-width: 9; stroke-linecap: round;
  stroke: #3B82F6;
  stroke-dasharray: 327; stroke-dashoffset: 327;
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.7));
  transition: stroke-dashoffset 1.6s cubic-bezier(.2,.8,.2,1);
}
.rev__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; }
.rev__score { font-family: var(--font-title); font-weight: 800; font-size: 2rem; line-height: 1; color: #fff; }
.rev__score-lbl { font-size: 0.66rem; color: var(--muted-light); margin-top: 2px; }

/* Verdict d'éligibilité */
.rev__verdict {
  display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
  font-size: 0.74rem; font-weight: 600; color: #6EE7B7;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(52,211,153,0.3);
  padding: 8px 10px; border-radius: 10px; margin-bottom: 16px;
  opacity: 0; transform: translateY(6px); transition: opacity .5s ease, transform .5s ease;
}
.rev__verdict.show { opacity: 1; transform: translateY(0); }
.rev__verdict svg { flex-shrink: 0; color: #34D399; }

/* Barres d'analyse animées */
.rev__bars { display: grid; gap: 11px; margin-bottom: 18px; }
.rev__bar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.rev__bar-top em { font-style: normal; font-size: 0.72rem; color: var(--muted-light); }
.rev__bar-top b { font-size: 0.72rem; font-weight: 700; color: #93C5FD; }
.rev__bar i {
  display: block; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden;
}
.rev__bar i::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 0;
  border-radius: 999px; background: linear-gradient(90deg, #2563EB, #3B82F6, #06B6D4);
  transition: width 1.1s cubic-bezier(.2,.8,.2,1);
}
.rev__bar.go i::after { width: var(--w); }

.rev__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  font-size: 0.84rem; font-weight: 600; color: #fff;
  background: var(--grad); padding: 12px; border-radius: 12px;
  box-shadow: 0 10px 26px -10px rgba(24,119,242,0.8);
  transition: gap .2s ease, box-shadow .25s ease, transform .2s ease;
}
.rev__btn:hover { gap: 12px; transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(24,119,242,0.95); }

/* ---- Carte flottante gauche : croissance en direct ---- */
.hero__growth-card {
  position: absolute; bottom: 116px; left: 24px; z-index: 4;
  width: 270px; padding: 18px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 22px; color: #fff;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.12);
  animation: studioFloat 6.6s ease-in-out infinite alternate;
  animation-delay: -2s;
  display: none;
}
.grow__glow {
  position: absolute; top: -40px; left: -40px; width: 160px; height: 160px; z-index: 0;
  background: radial-gradient(circle, rgba(6,182,212,0.4), transparent 70%);
  filter: blur(36px); pointer-events: none;
}
.hero__growth-card > *:not(.grow__glow) { position: relative; z-index: 1; }
.grow__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.grow__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-title); font-weight: 700; font-size: 0.85rem; color: #fff; }
.grow__brand-ic {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(6,182,212,0.25); color: #67E8F9;
}
.grow__metric { margin-bottom: 10px; }
.grow__delta { display: block; font-family: var(--font-title); font-weight: 800; font-size: 1.9rem; line-height: 1; background: linear-gradient(135deg, #3B82F6, #06B6D4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grow__metric-lbl { display: block; font-size: 0.7rem; color: var(--muted-light); margin-top: 4px; }
.grow__chart { height: 72px; margin: 6px 0 14px; }
.grow__chart svg { width: 100%; height: 100%; display: block; }
.grow__line { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s ease; filter: drop-shadow(0 0 5px rgba(96,165,250,0.6)); }
.grow__area { opacity: 0; transition: opacity 1.2s ease .3s; }
.hero__growth-card.is-drawn .grow__line { stroke-dashoffset: 0; }
.hero__growth-card.is-drawn .grow__area { opacity: 1; }
.grow__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.grow__chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600; color: #6EE7B7;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(52,211,153,0.3);
  padding: 5px 9px; border-radius: 999px;
}
.grow__chip svg { color: #34D399; }

/* =========================================================
   Carte fusionnée (Review + Croissance) — un seul tableau de bord
   ========================================================= */
.hero__panel {
  width: 100%; max-width: 380px;
  padding: 20px 20px 22px;
  /* fond sombre opaque pour une bonne lisibilité + anneau dégradé premium */
  background:
    linear-gradient(165deg, rgba(13,21,38,0.97), rgba(6,11,22,0.98)) padding-box,
    linear-gradient(140deg, rgba(96,165,250,0.55), rgba(6,182,212,0.4) 45%, rgba(52,211,153,0.45)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px -20px rgba(37,99,235,0.5);
}

/* Haut : jauge + bloc latéral (verdict, revenu, courbe) */
.hp__top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.hp__top .rev__gauge { width: 104px; height: 104px; margin: 0; flex: none; }
.hp__top .rev__score { font-size: 1.75rem; }
.hp__side { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }

/* Verdict : compact, aligné à gauche dans le bloc latéral */
.hp__side .rev__verdict {
  margin: 0; justify-content: flex-start; text-align: left;
  font-size: 0.72rem; padding: 7px 10px;
}
/* Révélation du verdict (override > .hp__side .rev__verdict pour la spécificité) */
.hp__side .rev__verdict.show { opacity: 1; transform: translateY(0); }

/* Bloc croissance imbriqué : on neutralise toute la « chrome » de carte */
.hero__panel .hp__growth.hero__growth-card {
  position: static; display: block; width: auto; max-width: none;
  margin: 0; padding: 0; overflow: visible;
  background: none; border: none; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  animation: none; opacity: 1;
}
.hp__growth .grow__delta { font-size: 1.5rem; }
.hp__growth .grow__metric-lbl { font-size: 0.66rem; margin-top: 2px; }
.hp__growth .grow__chart { height: 44px; margin: 8px 0 0; }

/* Légère séparation visuelle au-dessus des barres */
.hero__panel .rev__bars { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 380px) {
  .hp__top { gap: 12px; }
  .hp__top .rev__gauge { width: 92px; height: 92px; }
  .hp__top .rev__score { font-size: 1.55rem; }
  .hp__growth .grow__delta { font-size: 1.35rem; }
}

/* Hero School : même ambiance, sans photo */
.hero--school { min-height: 66vh; }
.hero--school::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(37,99,235,0.42), transparent 60%),
    radial-gradient(800px 480px at 50% 0%, rgba(24,119,242,0.32), transparent 62%),
    repeating-linear-gradient(0deg, rgba(59,130,246,0.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(59,130,246,0.05) 0 1px, transparent 1px 46px);
}

.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* Aurora lumineuse animée (hero) */
.hero__aurora {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
/* Constellation sociale : canvas réseau de points reliés (derrière le contenu) */
.hero__net {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* fondu haut/bas pour se fondre dans le header et le bandeau d'activité */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
}
.hero__aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(55px);
  opacity: 0;
  animation: auroraFloat linear infinite;
}
@keyframes auroraFloat {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.8); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.2); }
}

/* Pastille dorée (façon "Accès immédiat & gratuit") */
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  background: rgba(244,183,64,0.08); border: 1px solid rgba(244,183,64,0.4);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 24px;
}
.hero__pill .bolt { display: inline-flex; filter: drop-shadow(0 0 6px rgba(244,183,64,0.8)); }
.hero__pill .bolt svg { width: 15px; height: 15px; }

.hero__title { font-weight: 800; color: #fff; font-size: clamp(2.5rem, 11vw, 4.25rem); letter-spacing: -0.03em; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
/* Titre « vision » sur 3 lignes : taille adaptée pour rester dans le hero */
.hero__title--vision { font-size: clamp(1.85rem, 6.4vw, 3.4rem); line-height: 1.16; margin-bottom: 24px; }

/* Titre machine à écrire : pleine taille H1 (une phrase à la fois),
   hauteur réservée pour éviter tout saut de mise en page. */
.hero__title--type {
  font-size: clamp(2.5rem, 11vw, 4.25rem);
  line-height: 1.08;
  min-height: 2.35em; /* réserve ~2 lignes (mobile) sans saut de layout */
}
@media (min-width: 992px) { .hero__title--type { min-height: 2.3em; } }
.type-line { display: inline; }
.type-text { display: inline; }
.type-caret {
  display: inline-block;
  width: 3px; height: 0.92em;
  margin-left: 4px; border-radius: 2px;
  background: linear-gradient(180deg, #60A5FA, #1877F2);
  box-shadow: 0 0 12px rgba(24,119,242,0.55);
  vertical-align: -0.08em;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { animation: none; } }
/* "vues" en pastille bleue (comme le logo) */
.hero__title .hl {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 0.02em 0.22em; border-radius: 0.26em;
  box-shadow: 0 8px 26px -8px rgba(24,119,242,0.9);
}
/* Mot accentué en bleu (ex : "futur") */
.hero__title .accent-blue { color: var(--blue-light); }

.hero__subtitle { font-weight: 400; font-size: clamp(1rem, 2.4vw, 1.2rem); color: #fff; max-width: 600px; margin: 0 0 30px; text-shadow: 0 2px 18px rgba(0,0,0,0.5); }

/* Mobile : boutons centrés qui épousent leur contenu (plus pleine largeur) */
.hero__cta { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hero__cta .btn { width: auto; }

/* Stats hero */
.hero__stats { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat__num { font-family: var(--font-title); font-weight: 800; font-size: 1.75rem; color: #fff; }
.hero-stat__label { font-size: 0.8rem; color: var(--muted-light); }
.hero-stat__sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Badge sur le hero (School) */
.hero .badge { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.32); }

/* Animation d'entrée hero */
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .08s; }
.fade-up:nth-child(3) { animation-delay: .16s; }
.fade-up:nth-child(4) { animation-delay: .24s; }
.fade-up:nth-child(5) { animation-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------
   6. Cartes & grilles
   ------------------------------------------------------------- */
.grid { display: grid; gap: 22px; grid-template-columns: 1fr; }

.card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: var(--shadow); }

.card__icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue); background: var(--bg-3); border: 1px solid var(--border);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { color: var(--ink); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }

/* Bordure supérieure dégradée au hover (promesse) */
.card--top::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); border-radius: var(--radius) var(--radius) 0 0; opacity: 0; transition: opacity .25s ease; }
.card--top:hover::before { opacity: 1; }

/* Cartes formation */
.card--formation { display: flex; flex-direction: column; }
.card--formation .card__title { margin-top: 4px; }
.card--formation p { margin-bottom: 20px; }
.card--formation .btn { margin-top: auto; }

.card__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price { font-family: var(--font-title); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.price small { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }

/* Badges */
.badge { display: inline-block; width: fit-content; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.badge--blue  { background: rgba(24,119,242,0.1); color: var(--blue-dark); border: 1px solid rgba(24,119,242,0.25); }
.badge--green { background: rgba(16,185,129,0.1);  color: #059669; border: 1px solid rgba(16,185,129,0.28); }

/* -------------------------------------------------------------
   6b. Services — premium category cards
   ------------------------------------------------------------- */
.srv-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}

.srv-card {
  position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  color: #fff;
  padding: 40px 28px 36px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease, border-color .4s ease;
}
.srv-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55);
}

.srv-card__glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  filter: blur(100px); opacity: 0.18; pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
  top: -80px; right: -80px;
}
.srv-card:hover .srv-card__glow { opacity: 0.32; transform: scale(1.15); }
.srv-card--growth  .srv-card__glow { background: #1877F2; }
.srv-card--manage  .srv-card__glow { background: #2563EB; }
.srv-card--secure  .srv-card__glow { background: #10B981; }
.srv-card--create  .srv-card__glow { background: #06B6D4; }

.srv-card__content { position: relative; z-index: 1; }

.srv-card__head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.srv-card__num {
  font-family: var(--font-title); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.06em; opacity: 0.35;
}
.srv-card__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.55;
}

.srv-card__title {
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem); line-height: 1.12;
  letter-spacing: -0.03em; margin-bottom: 14px;
}
.srv-card--growth  .srv-card__title { background: linear-gradient(135deg, #fff 30%, #93C5FD); -webkit-background-clip: text; background-clip: text; color: transparent; }
.srv-card--manage  .srv-card__title { background: linear-gradient(135deg, #fff 30%, #93C5FD); -webkit-background-clip: text; background-clip: text; color: transparent; }
.srv-card--secure  .srv-card__title { background: linear-gradient(135deg, #fff 30%, #6EE7B7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.srv-card--create  .srv-card__title { background: linear-gradient(135deg, #fff 30%, #A5F3FC); -webkit-background-clip: text; background-clip: text; color: transparent; }

.srv-card__desc {
  font-size: 1rem; line-height: 1.6; color: var(--muted-light);
  max-width: 440px; margin-bottom: 28px;
}

.srv-card__items { display: grid; gap: 16px; }

.srv-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease, border-color .3s ease;
}
.srv-item:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18);
}

.srv-item__icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.srv-item__icon svg { width: 22px; height: 22px; }
.srv-card--growth .srv-item__icon { background: rgba(24,119,242,0.18); color: #93C5FD; }
.srv-card--manage .srv-item__icon { background: rgba(37,99,235,0.18); color: #93C5FD; }
.srv-card--secure .srv-item__icon { background: rgba(16,185,129,0.18);  color: #6EE7B7; }
.srv-card--create .srv-item__icon { background: rgba(6,182,212,0.18); color: #A5F3FC; }

.srv-item strong {
  display: block; font-size: 0.95rem; font-weight: 600; color: #fff;
  margin-bottom: 2px;
}
.srv-item span { font-size: 0.82rem; color: var(--muted-light); line-height: 1.4; }

.srv-card__visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
}
.srv-card__visual svg {
  width: 100%; max-width: 200px; height: auto;
  opacity: 0.7; transition: opacity .4s ease, transform .4s ease;
}
.srv-card:hover .srv-card__visual svg { opacity: 1; transform: scale(1.06); }

/* Card accent borders */
.srv-card--growth { border: 1px solid rgba(24,119,242,0.2); }
.srv-card--manage { border: 1px solid rgba(37,99,235,0.2); }
.srv-card--secure { border: 1px solid rgba(16,185,129,0.2); }
.srv-card--create { border: 1px solid rgba(6,182,212,0.2); }
.srv-card--growth:hover { border-color: rgba(24,119,242,0.6); }
.srv-card--manage:hover { border-color: rgba(37,99,235,0.6); }
.srv-card--secure:hover { border-color: rgba(16,185,129,0.6); }
.srv-card--create:hover { border-color: rgba(6,182,212,0.6); }

/* Insight révélé au survol */
.srv-card__insight {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 600; color: #fff;
  padding: 7px 13px; border-radius: 999px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.srv-card:hover .srv-card__insight { opacity: 1; transform: translateY(0); }
.srv-card--growth .srv-card__insight { background: rgba(24,119,242,0.22); border: 1px solid rgba(59,130,246,0.5); color: #cfe3ff; }
.srv-card--manage .srv-card__insight { background: rgba(37,99,235,0.22); border: 1px solid rgba(96,165,250,0.5); color: #CFE3FF; }
.srv-card--secure .srv-card__insight { background: rgba(16,185,129,0.22);  border: 1px solid rgba(52,211,153,0.5);  color: #A7F3D0; }
.srv-card--create .srv-card__insight { background: rgba(6,182,212,0.22); border: 1px solid rgba(103,232,249,0.5);  color: #CFFAFE; }
.srv-card__insight svg { flex-shrink: 0; }

/* -------------------------------------------------------------
   6c. Services — écosystème (noyau + réseau)
   ------------------------------------------------------------- */
.srv-eco { position: relative; }

.srv-net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: none; pointer-events: none; }
.srv-net__line { animation: netDash 3s linear infinite; }
@keyframes netDash { to { stroke-dashoffset: -8; } }

.srv-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 5; display: none; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
.srv-core__badge {
  position: relative; width: 84px; height: 84px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0E1730, #080C16);
  border: 1px solid rgba(59,130,246,0.4);
  box-shadow: 0 0 40px rgba(24,119,242,0.5), inset 0 0 20px rgba(24,119,242,0.18);
}
.srv-core__fh {
  font-family: var(--font-title); font-weight: 800; font-size: 1.9rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.srv-core__ring {
  position: absolute; left: 50%; top: 42px; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.35); pointer-events: none;
  animation: corePulse 3.5s ease-out infinite;
}
.srv-core__ring--2 { animation-delay: 1.75s; }
@keyframes corePulse {
  0%   { width: 84px; height: 84px; opacity: 0.8; }
  100% { width: 260px; height: 260px; opacity: 0; }
}
.srv-core__caption {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-light); text-align: center; line-height: 1.5;
  text-shadow: 0 2px 12px rgba(8,12,22,0.8);
}

/* -------------------------------------------------------------
   6d. Services — showcase Apple-style (carrousel)
   ------------------------------------------------------------- */
.srv-show { position: relative; overflow: hidden; padding-block: 100px; }

/* Ambiance lumineuse qui change selon la carte active */
/* Atmosphère de section retirée : les services vivent dans le canvas global */
.srv-show__ambient { display: none; }
.srv-show__glow {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  width: 760px; height: 600px; border-radius: 50%; filter: blur(130px);
  opacity: 0; transition: opacity 1.1s ease;
}
.srv-show__glow--growth { background: radial-gradient(circle, rgba(24,119,242,0.5), transparent 70%); }
.srv-show__glow--manage { background: radial-gradient(circle, rgba(37,99,235,0.45), transparent 70%); }
.srv-show__glow--secure { background: radial-gradient(circle, rgba(16,185,129,0.42), transparent 70%); }
.srv-show__glow--create { background: radial-gradient(circle, rgba(6,182,212,0.4), transparent 70%); }
.srv-show[data-active="0"] .srv-show__glow--growth,
.srv-show[data-active="1"] .srv-show__glow--manage,
.srv-show[data-active="2"] .srv-show__glow--secure,
.srv-show[data-active="3"] .srv-show__glow--create { opacity: 1; }

.srv-show .container, .srv-stage, .srv-dots { position: relative; z-index: 1; }

/* Scène */
.srv-stage {
  display: flex; align-items: center; gap: 6px;
  max-width: 1180px; margin: 52px auto 0; padding-inline: 8px;
}
.srv-viewport { flex: 1; min-width: 0; overflow: hidden; padding: 20px 0; }
.srv-rail {
  display: flex; gap: 24px;
  transition: transform .75s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Carte */
.scard {
  flex: 0 0 86%;
  opacity: 0.35; filter: blur(3px); transform: scale(.9);
  transition: opacity .6s ease, filter .6s ease, transform .6s cubic-bezier(.4,0,.2,1);
}
.scard.is-active { opacity: 1; filter: none; transform: scale(1); }

.scard__inner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  padding: 38px 30px; border-radius: 28px; min-height: 380px;
  background: linear-gradient(165deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 50px 100px -36px rgba(0,0,0,0.7);
}
.scard__inner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
}
.scard--growth .scard__inner::before { background: radial-gradient(600px 300px at 100% 0%, rgba(24,119,242,0.16), transparent 60%); }
.scard--manage .scard__inner::before { background: radial-gradient(600px 300px at 100% 0%, rgba(37,99,235,0.16), transparent 60%); }
.scard--secure .scard__inner::before { background: radial-gradient(600px 300px at 100% 0%, rgba(16,185,129,0.16), transparent 60%); }
.scard--create .scard__inner::before { background: radial-gradient(600px 300px at 100% 0%, rgba(6,182,212,0.16), transparent 60%); }

.scard__text { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.scard__top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.scard__num { font-family: var(--font-title); font-weight: 800; font-size: 0.85rem; opacity: 0.4; color: #fff; }
.scard__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }
.scard__title {
  font-family: var(--font-title); font-weight: 800; color: #fff;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem); line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.scard--growth .scard__title { background: linear-gradient(135deg, #fff 35%, #93C5FD); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scard--manage .scard__title { background: linear-gradient(135deg, #fff 35%, #93C5FD); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scard--secure .scard__title { background: linear-gradient(135deg, #fff 35%, #6EE7B7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scard--create .scard__title { background: linear-gradient(135deg, #fff 35%, #A5F3FC); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scard__desc { font-size: 1rem; line-height: 1.7; color: var(--muted-light); max-width: 460px; margin: 0 0 26px; }

.scard__services { display: flex; flex-wrap: wrap; gap: 12px; }
.ssvc {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px 10px 10px; border-radius: 999px;
}
.ssvc__ic { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.scard--growth .ssvc__ic { background: rgba(24,119,242,0.2); color: #93C5FD; }
.scard--manage .ssvc__ic { background: rgba(37,99,235,0.2); color: #93C5FD; }
.scard--secure .ssvc__ic { background: rgba(16,185,129,0.2);  color: #6EE7B7; }
.scard--create .ssvc__ic { background: rgba(6,182,212,0.2); color: #A5F3FC; }

.scard__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 180px; }
.scard__visual svg { width: 100%; max-width: 240px; height: auto; position: relative; z-index: 1; }
.scard__halo {
  position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(60px); opacity: 0.5;
}
.scard--growth .scard__halo { background: radial-gradient(circle, rgba(24,119,242,0.5), transparent 70%); }
.scard--manage .scard__halo { background: radial-gradient(circle, rgba(37,99,235,0.5), transparent 70%); }
.scard--secure .scard__halo { background: radial-gradient(circle, rgba(16,185,129,0.5), transparent 70%); }
.scard--create .scard__halo { background: radial-gradient(circle, rgba(6,182,212,0.5), transparent 70%); }

/* Flèches */
.srv-nav {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.srv-nav:hover { background: rgba(255,255,255,0.14); border-color: rgba(59,130,246,0.5); transform: scale(1.08); }
.srv-nav:active { transform: scale(0.96); }

/* Indicateurs */
.srv-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.srv-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.22); transition: width .3s ease, background-color .3s ease;
}
.srv-dot.is-active { width: 30px; background: var(--blue-light); }

/* -------------------------------------------------------------
   7. Programme (phases)
   ------------------------------------------------------------- */
.phases { display: flex; flex-direction: column; gap: 18px; }
.phase { position: relative; flex: 1; overflow: hidden; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.phase__num { position: absolute; top: 8px; right: 18px; font-family: var(--font-title); font-weight: 800; font-size: 3.75rem; color: var(--blue); opacity: 0.12; line-height: 1; }
.phase__title { position: relative; color: var(--ink); font-size: 1.5rem; margin-bottom: 16px; }
.phase__list { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.phase__list li { position: relative; padding-left: 24px; color: var(--text); font-size: 0.95rem; }
.phase__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.phase__connector { align-self: center; width: 2px; height: 22px; background: repeating-linear-gradient(var(--blue) 0 4px, transparent 4px 8px); opacity: 0.5; }

/* -------------------------------------------------------------
   8. Coaching (formulaire)
   ------------------------------------------------------------- */
.coaching-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); }
.coaching-form__group { border: 0; margin: 0 0 22px; padding: 0; }
.coaching-form__legend { font-weight: 600; color: var(--ink); margin-bottom: 14px; font-size: 1rem; }
.coaching-form__legend span { color: var(--muted); font-weight: 400; font-size: 0.85rem; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; text-align: left;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.pill:hover { border-color: var(--blue); }
.pill.selected { background: rgba(24,119,242,0.12); border-color: var(--blue); color: var(--blue-dark); font-weight: 500; }

.coaching-form__fields { display: grid; gap: 14px; margin-bottom: 22px; }
.field { display: block; }
.field__label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 7px; }
.field input { width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: #fff; color: var(--ink); font-family: var(--font-body); font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease; }
.field input::placeholder { color: #94A3B8; }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,119,242,0.15); }
.field input.is-invalid { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }

.form-message { margin: 14px 0 0; font-weight: 500; min-height: 1.2em; text-align: center; }
.form-message.success { color: #059669; }
.form-message.error   { color: #DC2626; }

/* -------------------------------------------------------------
   9. Témoignages
   ------------------------------------------------------------- */
.testimonial { display: flex; flex-direction: column; }
.testimonial__stars { color: var(--blue); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial__text { color: var(--text); margin: 0 0 18px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__author strong { display: block; color: var(--ink); font-size: 0.95rem; }
.testimonial__author small { color: var(--muted); font-size: 0.82rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--grad); color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; }

/* -------------------------------------------------------------
   10. Carrousel clients
   ------------------------------------------------------------- */
/* Wall of Fame — preuve sociale premium */
.wof-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto 56px;
}
.wof-stat {
  text-align: center; padding: 26px 16px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .3s ease, transform .35s ease;
}
.wof-stat:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-4px); }
.wof-stat__num {
  display: block; font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.6rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.wof-stat__label { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--muted-light); }

/* Section « mur des créateurs » plus compacte */
.wof { padding-block: 68px; }
.wof .section__head { margin-bottom: 36px; }

.wof-wall {
  position: relative; display: flex; flex-direction: column; gap: 16px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.wof-row { position: relative; display: flex; width: 100%; overflow: hidden; }
.wof-track {
  display: flex; align-items: stretch; gap: 16px; flex: 0 0 auto; padding-right: 16px;
  will-change: transform;
}
.wof-track--left  { animation: wof-scroll-left 38s linear infinite; }
.wof-track--right { animation: wof-scroll-right 44s linear infinite; }
.wof-row:hover .wof-track { animation-play-state: paused; }
@keyframes wof-scroll-left  { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes wof-scroll-right { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.wof-card {
  flex: 0 0 auto; display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 16px; min-width: 280px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.wof-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 24px 50px -20px rgba(24,119,242,0.5);
}
.wof-card__avatar {
  position: relative; overflow: hidden; width: 52px; height: 52px; border-radius: 14px;
  flex-shrink: 0; background: var(--grad);
  border: 1px solid rgba(255,255,255,0.15);
}
.wof-card__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wof-card__body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.wof-card__name { font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: #fff; white-space: nowrap; }
.wof-card__cat { font-size: 0.78rem; color: var(--muted-light); white-space: nowrap; }
.wof-card__tag {
  margin-left: auto; flex-shrink: 0; font-size: 0.68rem; font-weight: 600;
  color: var(--blue-light); background: rgba(24,119,242,0.16);
  border: 1px solid rgba(59,130,246,0.3); padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}

/* Témoignages rotatifs */
.wof-quote { text-align: center; max-width: 680px; margin: 40px auto 0; }
.wof-quote__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; font-size: 1.05rem; }
.wof-quote__list { position: relative; margin: 0; min-height: 96px; }
.wof-quote__item {
  position: absolute; inset: 0; margin: 0;
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem); line-height: 1.45; color: #fff;
  opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.wof-quote__item.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.wof-quote__item cite {
  display: block; margin-top: 16px; font-family: var(--font-body);
  font-weight: 500; font-style: normal; font-size: 0.92rem; color: var(--blue-light);
}

/* -------------------------------------------------------------
   11. À propos
   ------------------------------------------------------------- */
/* Founder section : leadership & authority */
.founder { padding-block: 100px; }
.founder .section__head { margin-bottom: 56px; }

.founder-spotlight {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; margin-bottom: 64px;
}

/* Photo + glows + badges */
.founder-photo {
  position: relative; width: 100%; max-width: 380px; margin-inline: auto;
  aspect-ratio: 4/5;
}
.founder-photo__glow {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.founder-photo__glow--1 {
  width: 80%; height: 80%; top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(24,119,242,0.45), transparent 70%);
  animation: founderGlow 6s ease-in-out infinite alternate;
}
.founder-photo__glow--2 {
  width: 70%; height: 70%; bottom: -10%; right: -15%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  animation: founderGlow 8s ease-in-out infinite alternate-reverse;
}
@keyframes founderGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(20px, -20px) scale(1.1); opacity: 1; }
}

/* Cadre photo : anneau dégradé premium + reflet */
.founder-photo__frame {
  position: relative; width: 100%; height: 100%;
  padding: 1.5px; border-radius: 28px;
  background: linear-gradient(155deg, rgba(96,165,250,0.7) 0%, rgba(6,182,212,0.3) 45%, rgba(255,255,255,0.06) 100%);
  box-shadow: 0 44px 90px -28px rgba(0,0,0,0.7);
}
.founder-photo__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 26px; display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
/* léger dégradé + reflet par-dessus l'image */
.founder-photo__frame::after {
  content: ""; position: absolute; inset: 1.5px; border-radius: 26px; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 22%),
    linear-gradient(180deg, transparent 60%, rgba(1,4,13,0.45) 100%);
}
.founder-photo:hover .founder-photo__frame img { transform: scale(1.05); }

/* Intro & quote */
.founder-intro { text-align: center; }
.founder-name-kicker {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-light);
  background: rgba(24,119,242,0.14); border: 1px solid rgba(59,130,246,0.3);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.founder-name {
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1.15;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 20px;
}
.founder-bio {
  font-size: 1rem; line-height: 1.7; color: var(--muted-light);
  margin: 0 0 32px; max-width: 540px;
}
.founder-bio strong { color: #fff; font-weight: 600; }

.founder-quote {
  position: relative; margin: 0;
  padding: 28px 24px 24px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(24,119,242,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(59,130,246,0.2);
  text-align: left; max-width: 540px;
}
.founder-quote svg {
  color: var(--blue-light); opacity: 0.4; margin-bottom: 8px;
}
.founder-quote p {
  margin: 0 0 14px; font-family: var(--font-title); font-weight: 600;
  font-size: 1.05rem; line-height: 1.55; color: #fff;
}
.founder-quote cite {
  display: block; font-family: var(--font-body); font-style: normal;
  font-weight: 500; font-size: 0.85rem; color: var(--blue-light);
}

/* Three pillars */
.founder-pillars {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-bottom: 64px;
}
.founder-pillar {
  position: relative; padding: 28px 24px 24px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.founder-pillar:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(24,119,242,0.3);
}
.founder-pillar__num {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-title); font-weight: 800; font-size: 2.2rem;
  color: #fff; opacity: 0.08; line-height: 1;
}
.founder-pillar__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.founder-pillar__icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(24,119,242,0.18); color: var(--blue-light);
}
.founder-pillar h4 {
  font-family: var(--font-title); font-weight: 700; color: #fff;
  font-size: 1.05rem; margin: 0;
}
.founder-pillar p {
  margin: 0; font-size: 0.92rem; color: var(--muted-light); line-height: 1.6;
}

/* Animated stats strip */
.founder-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  padding: 32px 20px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(24,119,242,0.1), rgba(37,99,235,0.06));
  border: 1px solid rgba(59,130,246,0.18);
  margin-bottom: 48px;
}
.founder-stat { text-align: center; }
.founder-stat__num {
  display: block; font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.4rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.founder-stat__label {
  display: block; margin-top: 6px; font-size: 0.78rem; color: var(--muted-light);
}

/* CTA */
.founder-cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.link-arrow { color: var(--blue); font-weight: 600; transition: color .2s ease; }
.link-arrow:hover { color: var(--blue-dark); }

/* -------------------------------------------------------------
   11b. Parcours (storytelling journey)
   ------------------------------------------------------------- */
.journey { padding-block: 100px; }
.journey .section__head { margin-bottom: 64px; }

.journey-track { position: relative; display: flex; flex-direction: column; gap: 28px; }

/* Ligne de progression verticale (mobile) */
.journey-line {
  position: absolute; left: 26px; top: 20px; bottom: 20px; width: 3px;
  background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden;
}
.journey-line__fill {
  position: absolute; inset: 0 0 auto 0; height: 0;
  background: linear-gradient(180deg, #1877F2, #2563EB 50%, #F4B740);
  border-radius: 3px; transition: height .4s ease;
  box-shadow: 0 0 16px rgba(24,119,242,0.6);
}

/* Une étape */
.jstep { position: relative; display: flex; gap: 20px; padding-left: 0; }
.jstep__marker {
  position: relative; z-index: 2; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 800; font-size: 1.05rem; color: #fff;
  background: rgba(8,12,22,0.9); border: 2px solid rgba(255,255,255,0.14);
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}
.jstep.visible .jstep__marker { transform: scale(1); }
.jstep--blue.visible    .jstep__marker { border-color: rgba(24,119,242,0.7);  box-shadow: 0 0 24px rgba(24,119,242,0.5); }
.jstep--violet.visible  .jstep__marker { border-color: rgba(37,99,235,0.7);  box-shadow: 0 0 24px rgba(37,99,235,0.5); }
.jstep--green.visible   .jstep__marker { border-color: rgba(16,185,129,0.7);   box-shadow: 0 0 24px rgba(16,185,129,0.5); }
.jstep__marker--studio.jstep__marker, .jstep--studio.visible .jstep__marker--studio { border-color: rgba(244,183,64,0.8); color: var(--gold); box-shadow: 0 0 28px rgba(244,183,64,0.5); }
.jstep__marker--gold { color: var(--gold); }
.jstep--monetize.visible .jstep__marker--gold { border-color: rgba(244,183,64,0.8); box-shadow: 0 0 24px rgba(244,183,64,0.5); }

/* Carte d'étape */
.jstep__card {
  position: relative; overflow: hidden; flex: 1; min-width: 0;
  padding: 28px 26px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.jstep__card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.4); box-shadow: 0 30px 60px -24px rgba(24,119,242,0.4); }
.jstep__glow {
  position: absolute; top: -60px; right: -60px; width: 240px; height: 240px;
  border-radius: 50%; filter: blur(80px); opacity: 0.18; pointer-events: none;
  transition: opacity .4s ease;
}
.jstep__card:hover .jstep__glow { opacity: 0.32; }
.jstep--blue   .jstep__glow { background: #1877F2; }
.jstep--violet .jstep__glow { background: #2563EB; }
.jstep--green  .jstep__glow { background: #10B981; }
.jstep__glow--gold { background: #F4B740; }

.jstep__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.jstep__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(24,119,242,0.16); color: var(--blue-light);
}
.jstep--violet .jstep__icon { background: rgba(37,99,235,0.16); color: #93C5FD; }
.jstep--green  .jstep__icon { background: rgba(16,185,129,0.16);  color: #6EE7B7; }
.jstep__icon--gold { background: rgba(244,183,64,0.16); color: var(--gold); }
.jstep__label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 3px; }
.jstep__label--gold { color: var(--gold); }
.jstep__title { font-family: var(--font-title); font-weight: 700; color: #fff; font-size: 1.2rem; line-height: 1.2; }
.jstep__desc { margin: 0 0 18px; color: var(--muted-light); font-size: 0.95rem; line-height: 1.6; }

.jstep__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.jstep__list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-light); }
.jstep__list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-light); }
.jstep--violet .jstep__list li svg { color: #93C5FD; }
.jstep--green  .jstep__list li svg { color: #6EE7B7; }

/* STEP 3 — Studio (hero step) */
.jstep--studio .jstep__card { padding: 0; border: 0; background: transparent; overflow: visible; }
.jstudio {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(24,119,242,0.14), rgba(37,99,235,0.1) 60%, rgba(244,183,64,0.06));
  border: 1px solid rgba(244,183,64,0.3);
  box-shadow: 0 0 0 1px rgba(244,183,64,0.12), 0 40px 90px -30px rgba(24,119,242,0.5);
}
.jstudio__glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,119,242,0.4), transparent 70%);
  filter: blur(70px); pointer-events: none;
  animation: studioPulse 5s ease-in-out infinite alternate;
}
@keyframes studioPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.jstudio__ribbon {
  position: relative; z-index: 1; display: inline-block; margin-bottom: 18px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(244,183,64,0.12);
  border: 1px solid rgba(244,183,64,0.4); padding: 6px 14px; border-radius: 999px;
}
.jstudio__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 28px; }
.jstudio__title { font-family: var(--font-title); font-weight: 800; color: #fff; font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 14px; }
.jstudio__desc { color: var(--muted-light); font-size: 1rem; line-height: 1.65; margin: 0 0 22px; }
.jstudio__formats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.jstudio__formats span {
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 13px; border-radius: 999px;
}
.jstudio__benefits { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.jstudio__benefits li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: #fff; }
.jstudio__benefits li svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--gold); }

/* Studio — visuel (image) */
.jstudio__visual {
  position: relative; z-index: 1; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.7);
  aspect-ratio: 4/3;
}
.jstudio__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.jstudio:hover .jstudio__visual img { transform: scale(1.05); }
.jstudio__visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8,12,22,0.6));
}
.jstudio__visual-tag {
  position: absolute; z-index: 1; bottom: 14px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600; color: #fff;
}
.jstudio__visual-tag svg { color: var(--gold); }

/* STEP 5 — Monétiser (3 piliers) */
.jmonet { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 4px; }
.jmonet__pillar {
  padding: 18px 18px; border-radius: 14px;
  background: rgba(244,183,64,0.06); border: 1px solid rgba(244,183,64,0.18);
  transition: border-color .3s ease, transform .3s ease;
}
.jmonet__pillar:hover { border-color: rgba(244,183,64,0.45); transform: translateY(-3px); }
.jmonet__top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.jmonet__emoji { font-size: 1.2rem; }
.jmonet__top h4 { font-family: var(--font-title); font-weight: 700; color: #fff; font-size: 1rem; margin: 0; }
.jmonet__pillar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.jmonet__pillar li {
  font-size: 0.78rem; color: var(--text-light);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 11px; border-radius: 999px;
}

/* Destination finale */
.journey-dest {
  position: relative; overflow: hidden; margin-top: 40px;
  padding: 44px 28px; border-radius: 24px; text-align: center;
  border: 1px solid transparent;
  background:
    linear-gradient(140deg, #0b3a2d 0%, #082b26 58%, #061f1d 100%) padding-box,
    linear-gradient(140deg, rgba(52,211,153,0.55), rgba(6,182,212,0.32) 55%, rgba(16,185,129,0.5)) border-box;
  box-shadow: 0 40px 90px -45px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.journey-dest__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 220px at 50% 0%, rgba(16,185,129,0.16), transparent 72%),
    radial-gradient(420px 200px at 50% 100%, rgba(6,182,212,0.08), transparent 72%);
}
.journey-dest__badge {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6EE7B7; background: rgba(16,185,129,0.14); border: 1px solid rgba(52,211,153,0.4);
  padding: 7px 16px; border-radius: 999px;
}
/* CTA en vert sur la carte destination */
.journey-dest .btn--white { color: #059669; }
.journey-dest__title {
  position: relative; z-index: 1;
  font-family: var(--font-title); font-weight: 800; color: #fff;
  font-size: clamp(1.5rem, 4.5vw, 2.3rem); letter-spacing: -0.02em; margin-bottom: 26px;
}
.journey-dest__list {
  position: relative; z-index: 1; list-style: none; margin: 0 auto 30px; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 12px 32px; max-width: 620px; text-align: left;
}
@media (min-width: 600px) {
  .journey-dest__list { grid-template-columns: 1fr 1fr; justify-content: center; }
}
.journey-dest__list li {
  display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 500; color: #fff;
  opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease;
}
.journey-dest.visible .journey-dest__list li { opacity: 1; transform: none; }
.journey-dest.visible .journey-dest__list li:nth-child(1) { transition-delay: .12s; }
.journey-dest.visible .journey-dest__list li:nth-child(2) { transition-delay: .22s; }
.journey-dest.visible .journey-dest__list li:nth-child(3) { transition-delay: .32s; }
.journey-dest.visible .journey-dest__list li:nth-child(4) { transition-delay: .42s; }
.journey-dest.visible .journey-dest__list li:nth-child(5) { transition-delay: .52s; }
.journey-dest__list li svg { width: 22px; height: 22px; flex-shrink: 0; padding: 4px; border-radius: 50%; background: var(--green); color: #fff; }
.journey-dest .btn { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .journey-dest__list li { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------
   11c. Formations — cartes glass (FaceHOOK School)
   ------------------------------------------------------------- */
.fcards { display: grid; grid-template-columns: 1fr; gap: 24px; }

.fcard {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform .4s cubic-bezier(.4,0,.2,1), border-color .4s ease, box-shadow .4s ease;
}
.fcard:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 40px 80px -28px rgba(24,119,242,0.5);
}
.fcard--featured {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 4px 24px rgba(24,119,242,0.12);
}

/* Media */
.fcard__media { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
.fcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fcard:hover .fcard__media img { transform: scale(1.06); }
.fcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,22,0.1), rgba(8,12,22,0.55));
}
.fcard__chip {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; color: #fff;
  background: rgba(24,119,242,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px;
}
.fcard__chip--hot { left: auto; right: 12px; background: var(--gold); color: #1a1205; }
.fcard__chip--new { background: rgba(16,185,129,0.9); }

/* Body */
.fcard__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.fcard__cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.fcard__title { font-family: var(--font-title); font-weight: 800; color: #fff; font-size: 1.2rem; line-height: 1.25; margin-bottom: 8px; }
.fcard__desc { font-size: 0.88rem; color: var(--muted-light); line-height: 1.6; margin: 0 0 12px; }
.fcard__author { font-size: 0.78rem; color: var(--blue-light); margin: 0 0 12px; }
.fcard__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.fcard__stars {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  background: rgba(244,183,64,0.18); border: 1px solid rgba(244,183,64,0.4);
  padding: 3px 9px; border-radius: 7px;
}
.fcard__stars svg { color: var(--gold); }
.fcard__reviews { font-size: 0.78rem; color: var(--muted-light); }
.fcard__divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 16px; }

.fcard__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; flex: 1; }
.fcard__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.fcard__list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--blue-light); }

.fcard__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--blue-light); background: rgba(24,119,242,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  transition: background .3s ease, color .3s ease, gap .25s ease, border-color .3s ease;
}
.fcard:hover .fcard__btn { background: var(--blue); color: #fff; border-color: var(--blue); }
.fcard__btn:hover { gap: 12px; }

/* -------------------------------------------------------------
   FaceHOOK School — catalogue « académie » (design propre)
   Cartes pilotées par icône + couleur de catégorie, sans photo
   ni notes : --acc / --accRGB définis par les modificateurs.
   ------------------------------------------------------------- */
.school-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 20px; }
.school-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: #fff; opacity: 0.85;
}
.school-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light); box-shadow: 0 0 8px rgba(59,130,246,0.7);
}

.course-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 680px)  { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .course-grid { grid-template-columns: repeat(3, 1fr); } }

.course {
  --acc: #3B82F6; --accRGB: 59,130,246;
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  padding: 26px 24px 24px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform .35s ease, border-color .35s ease;
}
.course::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--acc); opacity: 0.9;
}
.course:hover { transform: translateY(-4px); border-color: rgba(var(--accRGB),0.45); }

.course__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.course__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--accRGB),0.14); color: var(--acc);
}
.course__icon svg { width: 24px; height: 24px; }
.course__flag {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--acc); background: rgba(var(--accRGB),0.12);
  border: 1px solid rgba(var(--accRGB),0.34); padding: 5px 10px; border-radius: 999px;
}

.course__cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); margin-bottom: 6px; }
.course__title { font-family: var(--font-title); font-weight: 800; color: #fff; font-size: 1.18rem; line-height: 1.25; margin: 0 0 10px; }
.course__promise { font-size: 0.9rem; color: var(--muted-light); line-height: 1.6; margin: 0 0 16px; }

.course__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.course__tag {
  font-size: 0.72rem; color: var(--text-light);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px; border-radius: 8px;
}

.course__list {
  list-style: none; margin: 16px 0 22px; padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 10px; flex: 1;
}
.course__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--text-light); line-height: 1.5; }
.course__list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--acc); }

.course__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 12px; border-radius: 12px; font-size: 0.86rem; font-weight: 600; color: #fff;
  background: rgba(var(--accRGB),0.16); border: 1px solid rgba(var(--accRGB),0.4);
  transition: gap .2s ease, background .25s ease, border-color .25s ease;
}
.course:hover .course__btn { background: var(--acc); border-color: var(--acc); }
.course__btn:hover { gap: 12px; }

/* Modificateurs de couleur par catégorie */
.course--blue   { --acc: #2563EB; --accRGB: 37,99,235; }
.course--indigo { --acc: #3B82F6; --accRGB: 59,130,246; }
.course--cyan   { --acc: #06B6D4; --accRGB: 6,182,212; }
.course--sky    { --acc: #60A5FA; --accRGB: 96,165,250; }
.course--green  { --acc: #10B981; --accRGB: 16,185,129; }

/* Variante imagée (aperçu formations sur la page d'accueil) */
.course--media { padding: 0; }
.course--media::before { display: none; } /* l'accent passe par l'image, pas par la barre latérale */
.course__media { position: relative; height: 172px; overflow: hidden; }
.course__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course--media:hover .course__media img { transform: scale(1.05); }
/* teinte d'accent par catégorie : différencie des visuels identiques */
.course__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(var(--accRGB),0.55), transparent 62%);
  mix-blend-mode: overlay;
}
.course__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,12,28,0) 38%, rgba(4,12,28,0.92) 100%);
}
/* tuile icône + catégorie superposées en bas du visuel (rendu éditorial) */
.course__media-tag {
  position: absolute; z-index: 2; left: 14px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.course__media-tag .course__icon { width: 34px; height: 34px; border-radius: 9px; }
.course__media-tag .course__icon svg { width: 18px; height: 18px; }
/* pastille honnête (mise en avant), pas de note chiffrée */
.course__badge {
  position: absolute; z-index: 2; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #fff;
  background: rgba(var(--accRGB),0.92); border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 10px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(0,0,0,0.6);
}
.course__badge svg { width: 11px; height: 11px; }
.course__inner { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }

/* -------------------------------------------------------------
   11d. FAQ (onglets + accordéon glass)
   ------------------------------------------------------------- */
.faq .container--narrow { max-width: 920px; }
.faq-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px;
}
.faq-tab {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; cursor: pointer;
  color: var(--muted-light); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); padding: 9px 18px; border-radius: 999px;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.faq-tab:hover { color: #fff; border-color: rgba(59,130,246,0.4); }
.faq-tab.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.faq-item {
  border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] { border-color: rgba(59,130,246,0.35); background: rgba(255,255,255,0.06); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: #fff;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--blue-light); }
.faq-chevron { flex-shrink: 0; color: var(--blue-light); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 18px; animation: faqOpen .3s ease; }
.faq-answer p { margin: 0; font-size: 0.92rem; line-height: 1.7; color: var(--muted-light); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.faq-help { text-align: center; margin-top: 36px; }
.faq-help p { color: var(--muted-light); margin: 0 0 16px; font-size: 0.95rem; }

/* -------------------------------------------------------------
   11e. Consultation (section contact premium)
   ------------------------------------------------------------- */
.consult { padding-block: 84px; }

/* Champ « objectif » (liste déroulante) dans le formulaire de consultation */
.consult-field { display: block; margin-bottom: 16px; }
.consult-field__lbl { display: block; font-size: 0.78rem; color: var(--muted-light); margin-bottom: 8px; }
.consult-form .select {
  background-color: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.consult-form .select:required:invalid { color: var(--muted-light); }
.consult-form .select option { color: #0A2540; }
.consult-form .select:focus { border-color: var(--blue); background-color: rgba(24,119,242,0.06); box-shadow: 0 0 0 3px rgba(24,119,242,0.18); }
.consult-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }

/* --- Gauche --- */
.consult-left .section__title { margin-bottom: 18px; }
.consult-lead { color: var(--muted-light); line-height: 1.7; margin: 0 0 32px; font-size: 1rem; }

.consult-trust { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
.ctrust {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color .3s ease, transform .3s ease;
}
.ctrust:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-3px); }
.ctrust__icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(24,119,242,0.16); color: var(--blue-light);
}
.ctrust strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.ctrust span { font-size: 0.85rem; color: var(--muted-light); line-height: 1.5; }

/* Social proof */
.consult-proof {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 32px;
  padding: 24px 20px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(24,119,242,0.1), rgba(37,99,235,0.06));
  border: 1px solid rgba(59,130,246,0.18);
}
.cproof { text-align: center; }
.cproof__num {
  display: block; font-family: var(--font-title); font-weight: 800; font-size: 1.7rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cproof__label { display: block; margin-top: 5px; font-size: 0.76rem; color: var(--muted-light); }

/* Direct contact cards */
.consult-direct { display: grid; gap: 12px; }
/* Masqués sur mobile (le formulaire suffit) */
@media (max-width: 767px) { .consult-direct { display: none; } }
.cdirect {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.cdirect:hover { background: rgba(255,255,255,0.08); border-color: rgba(59,130,246,0.4); transform: translateY(-3px); }
.cdirect__icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.cdirect--wa .cdirect__icon   { background: rgba(16,185,129,0.2); color: #34D399; }
.cdirect--mail .cdirect__icon { background: rgba(24,119,242,0.2); color: var(--blue-light); }
.cdirect--fb .cdirect__icon   { background: rgba(24,119,242,0.2); color: var(--blue-light); }
.cdirect__body { display: flex; flex-direction: column; min-width: 0; }
.cdirect__body strong { color: #fff; font-size: 0.92rem; font-weight: 600; }
.cdirect__body span { font-size: 0.82rem; color: var(--muted-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cdirect__arrow { margin-left: auto; flex-shrink: 0; color: var(--muted-light); transition: transform .25s ease, color .25s ease; }
.cdirect:hover .cdirect__arrow { transform: translateX(4px); color: var(--blue-light); }

/* --- Droite : formulaire --- */
.consult-form {
  position: relative; overflow: hidden;
  padding: 32px 26px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.consult-form__glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 460px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,119,242,0.3), transparent 70%);
  filter: blur(70px); pointer-events: none;
}

.consult-step { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; margin: 0 0 16px; }
.consult-step:not(:first-child) { margin-top: 28px; }
.consult-step__num {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 800; font-size: 0.85rem; color: #fff;
  background: var(--blue); box-shadow: 0 0 16px rgba(24,119,242,0.5);
}
.consult-step__title { font-family: var(--font-title); font-weight: 700; color: #fff; font-size: 1.05rem; margin: 0; }

/* Objectifs (cartes radio) */
.consult-objectives { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.consult-objectives.is-invalid { outline: 1px solid rgba(239,68,68,0.6); outline-offset: 6px; border-radius: 12px; }
.obj-card {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem; color: var(--text-light); line-height: 1.3;
  transition: background .25s ease, border-color .25s ease;
}
.obj-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(59,130,246,0.4); }
.obj-card input { position: absolute; opacity: 0; pointer-events: none; }
.obj-card__dot {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); position: relative; transition: border-color .25s ease;
}
.obj-card:has(input:checked) {
  background: rgba(24,119,242,0.16); border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(24,119,242,0.4), 0 10px 30px -12px rgba(24,119,242,0.6);
}
.obj-card:has(input:checked) .obj-card__dot { border-color: var(--blue-light); }
.obj-card:has(input:checked) .obj-card__dot::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue-light);
}
.obj-card input:focus-visible + .obj-card__dot { box-shadow: 0 0 0 3px rgba(24,119,242,0.4); }

/* Champs floating label */
.consult-fields { position: relative; z-index: 1; display: grid; gap: 16px; }
.ffield { position: relative; }
.ffield input, .ffield textarea {
  width: 100%; padding: 18px 16px 8px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.ffield--area { position: relative; z-index: 1; }
.ffield textarea { resize: vertical; min-height: 110px; padding-top: 24px; line-height: 1.6; }
.ffield input::placeholder, .ffield textarea::placeholder { color: transparent; }
.ffield label {
  position: absolute; left: 16px; top: 14px; font-size: 1rem; color: var(--muted-light);
  pointer-events: none; transition: all .2s ease;
}
.ffield textarea + label { top: 16px; }
.ffield input:focus, .ffield textarea:focus {
  outline: none; border-color: var(--blue); background: rgba(24,119,242,0.06);
  box-shadow: 0 0 0 3px rgba(24,119,242,0.18);
}
.ffield input:focus + label,
.ffield input:not(:placeholder-shown) + label,
.ffield textarea:focus + label,
.ffield textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: 0.7rem; color: var(--blue-light); font-weight: 600; letter-spacing: 0.02em;
}
.ffield input.is-invalid { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }

.consult-submit { position: relative; z-index: 1; margin-top: 28px; }

.consult-reassure {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 18px;
}
.consult-reassure span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted-light); }
.consult-reassure svg { color: var(--green-light); }

/* Message sur fond sombre */
.consult .form-message.success { color: var(--green-light); }
.consult .form-message.error { color: #FCA5A5; }

/* -------------------------------------------------------------
   12. CTA final (bande bleue)
   ------------------------------------------------------------- */
.final-cta { position: relative; padding-block: 90px; text-align: center; overflow: hidden; background: var(--grad-cta); }
.final-cta::before { content: ""; position: absolute; top: -40%; left: 50%; width: 600px; height: 600px; transform: translateX(-50%); background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%); pointer-events: none; }
.final-cta__inner { position: relative; }
.final-cta__title { color: #fff; font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.final-cta__subtitle { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 520px; margin: 0 auto 30px; }
.final-cta__buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-inline: auto; }
.final-cta__buttons .btn { width: auto; }

/* -------------------------------------------------------------
   13. School — formation privée
   ------------------------------------------------------------- */
.private__inner { text-align: center; }
.private__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin: 26px 0 30px; }
.private__perk { color: var(--blue-dark); font-weight: 600; }

/* -------------------------------------------------------------
   14. Footer (navy)
   ------------------------------------------------------------- */
.footer { position: relative; background: #000510; color: rgba(255,255,255,0.7); padding-block: 64px 26px; border-top: 1px solid rgba(59,130,246,0.1); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col .logo { margin-bottom: 4px; }
.footer .logo__img { height: 24px; }
.footer .logo__face { color: #fff; }
.footer .logo__hook { color: var(--blue-pale); }
.footer__tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 300px; margin: 0; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); width: fit-content; transition: color .2s ease; }
.footer__social:hover { color: #fff; }
.footer__heading { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer__col a:not(.logo):not(.footer__social) { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color .2s ease; }
.footer__col a:not(.logo):not(.footer__social):hover { color: #fff; }
.footer__bottom { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; padding-top: 22px; color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,0.55); transition: color .2s ease; }
.footer__legal a:hover { color: #fff; }

/* -------------------------------------------------------------
   15. Reveal au scroll
   ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------
   Horizon numérique — signature de transition FaceHOOK
   Ligne de lumière ultra-fine, plein écran, avec impulsion d'énergie.
   ------------------------------------------------------------- */
.horizon { position: relative; width: 100%; height: 1px; overflow: hidden; margin-block: 4px; }
/* la ligne : dégradé bleu qui s'efface aux extrémités */
.horizon::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(59,130,246,0) 10%,
    rgba(24,119,242,0.55) 50%,
    rgba(59,130,246,0) 90%, transparent 100%);
}
/* le halo doux (horizon lointain) */
.horizon::after {
  content: ""; position: absolute; left: 0; right: 0; top: -3px; height: 7px;
  filter: blur(7px); opacity: 0.55; pointer-events: none;
  background: linear-gradient(90deg, transparent 18%, rgba(37,99,235,0.5) 50%, transparent 82%);
}
/* impulsion d'énergie qui traverse lentement la ligne */
.horizon__pulse {
  position: absolute; top: 0; left: 0; height: 1px; width: 180px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.9) 35%, #ffffff 50%, rgba(59,130,246,0.9) 65%, transparent);
  box-shadow: 0 0 14px 2px rgba(59,130,246,0.55);
  animation: horizonPulse 11s linear infinite; will-change: transform;
}
@keyframes horizonPulse {
  0%   { transform: translateX(-200px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}

/* -------------------------------------------------------------
   Surfaces de cartes opaques (panneaux nets, non transparents)
   ------------------------------------------------------------- */
.scard__inner,
.wof-card,
.fcard,
.jstep__card,
.founder-pillar,
.ctrust,
.cdirect,
.consult-form,
.faq-item {
  background: linear-gradient(180deg, #111A2D 0%, #0C1322 100%);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.faq-item[open] { background: linear-gradient(180deg, #142036 0%, #0E1626 100%); }
.wof-card:hover { background: linear-gradient(180deg, #16223A 0%, #0F182A 100%); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .fade-up { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .btn:hover, .card:hover, .srv-card:hover { transform: none; }
  .wof-track { animation: none !important; }
  .wof-row { overflow-x: auto; }
  .jstudio__glow { animation: none !important; }
  .faq-answer { animation: none !important; }
  .srv-rail { transition: none !important; }
  .scard { filter: none !important; }
  .srv-show__glow { transition: none !important; }
  .aurora, .flow { animation: none !important; }
  .horizon__pulse { animation: none !important; display: none; }
}

/* =============================================================
   16. RESPONSIVE
   ============================================================= */

/* Tablette ≥ 768px */
@media (min-width: 768px) {
  .section { padding-block: 92px; }
  .hero__cta { flex-direction: row; max-width: none; width: auto; }
  .hero__cta .btn { width: auto; }
  .final-cta__buttons { flex-direction: row; max-width: none; }
  .final-cta__buttons .btn { width: auto; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .formations-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services showcase */
  .scard { flex: 0 0 78%; }
  .scard__inner { grid-template-columns: 1.15fr 0.85fr; gap: 40px; padding: 48px 44px; align-items: center; }
  .scard__visual { min-height: 240px; }

  .founder-spotlight { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
  .founder-photo { margin-inline: 0; }
  .founder-intro { text-align: left; }
  .founder-bio { margin-inline: 0; }
  .founder-quote { margin-inline: 0; }
  .founder-pillars { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .founder-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 24px; }
  .founder-cta { flex-direction: row; justify-content: center; }

  /* Formations */
  .fcards { grid-template-columns: repeat(3, 1fr); }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Journey */
  .jstep { gap: 28px; }
  .jstep__list { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
  .jstudio { padding: 40px 38px; }
  .jstudio__grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
  .jmonet { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Desktop ≥ 1280px */
@media (min-width: 1280px) {
  .nav { display: flex; }
  .nav__social { display: flex; }
  .header__cta { display: inline-flex; }
  .hamburger { display: none; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .scard { flex: 0 0 72%; }
  .scard__inner { padding: 56px 52px; }

  .phases { flex-direction: row; align-items: stretch; }
  .phase__connector { width: 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0 6px, transparent 6px 12px); align-self: center; }
}

/* Aurora : plus petites et moins visibles sur mobile */
@media (max-width: 767px) {
  .hero__aurora span { filter: blur(45px); }
}

/* =============================================================
   COUCHE PREMIUM — upgrade design (agence haut de gamme)
   ============================================================= */

/* Kicker (label de section) */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  background: rgba(24,119,242,0.08); border: 1px solid rgba(24,119,242,0.2);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section--dark .kicker { color: var(--blue-light); background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }

/* Titres — réglage premium */
.section__title { letter-spacing: -0.03em; line-height: 1.08; }

/* Boutons — reflet (sheen) au survol + base magnétique */
.btn--gradient, .btn--primary, .btn--white { position: relative; overflow: hidden; }
.btn--gradient::after, .btn--primary::after, .btn--white::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg); transition: left .7s cubic-bezier(.2,.8,.2,1); pointer-events: none;
}
.btn--gradient:hover::after, .btn--primary:hover::after, .btn--white:hover::after { left: 135%; }
.btn--magnetic { will-change: transform; }

/* Hero — badge de confiance */
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.45); } 50% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } }

/* Hero — particules lumineuses */
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__particles span {
  position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(190,215,255,0.9); box-shadow: 0 0 10px rgba(140,190,255,0.9);
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-90vh); opacity: 0; }
}

/* Flux d'activité (ancré en bas du hero) */
.hero-feed {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; overflow: hidden; padding: 14px 0;
  background: rgba(8,12,22,0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.06);
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.feed__track {
  display: flex; flex: 0 0 auto; align-items: center; gap: 12px; padding: 0 6px;
  animation: feed-scroll 60s linear infinite;
}
.hero-feed:hover .feed__track { animation-play-state: paused; }
@keyframes feed-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Carte d'événement (pill) */
.feed__item {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 7px 14px 7px 7px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; color: var(--text-light); white-space: nowrap;
}
.feed__ic {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.feed__ic svg { width: 13px; height: 13px; }
.feed__txt b { font-weight: 700; color: #fff; }
.feed__time { color: var(--muted-light); font-size: 0.7rem; padding-left: 6px; border-left: 1px solid rgba(255,255,255,0.1); }

/* Variantes par type d'événement (palette unifiée bleu/cyan/vert) */
.feed__item--cert    .feed__ic { background: rgba(16,185,129,0.18); color: #34D399; }
.feed__item--money   .feed__ic { background: rgba(16,185,129,0.18); color: #34D399; }
.feed__item--grow    .feed__ic { background: rgba(6,182,212,0.18);  color: #67E8F9; }
.feed__item--ads     .feed__ic { background: rgba(37,99,235,0.20);  color: #93C5FD; }
.feed__item--audit   .feed__ic { background: rgba(59,130,246,0.18); color: #93C5FD; }
.feed__item--content .feed__ic { background: rgba(96,165,250,0.18); color: #BFDBFE; }

/* Preuve sociale — bande compteurs */
.proof { position: relative; overflow: hidden; background: var(--dark); color: var(--text-light); padding-block: 44px; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.proof::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 300px at 50% -40%, rgba(24,119,242,0.22), transparent 60%);
}
.proof__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 16px; text-align: center; }
.proof__num { display: block; font-family: var(--font-title); font-weight: 800; font-size: clamp(1.9rem, 6vw, 2.7rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof__label { display: block; margin-top: 8px; color: var(--muted-light); font-size: 0.86rem; }

/* Liste de bénéfices (cartes formations) */
.benefits { list-style: none; margin: 4px 0 20px; padding: 0; display: grid; gap: 10px; }
.benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--muted); }
.benefits li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); margin-top: 2px; }
.section--dark .benefits li { color: var(--muted-light); }
.section--dark .benefits li svg { color: var(--green-light); }

/* Carte mise en avant + ruban */
.card--featured { overflow: hidden; }
.section--dark .card--featured {
  background: linear-gradient(180deg, rgba(24,119,242,0.16), rgba(255,255,255,0.02));
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.22), 0 34px 70px -30px rgba(24,119,242,0.6);
}
.ribbon {
  position: absolute; top: 16px; right: -36px; transform: rotate(45deg);
  background: var(--grad); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 42px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.55);
}

/* Carrousel témoignages */
.carousel { position: relative; max-width: 720px; margin-inline: auto; }
.carousel__viewport { overflow: hidden; padding: 8px; }
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel__slide { flex: 0 0 100%; min-width: 0; }
.carousel .testimonial__text { font-size: 1.15rem; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel__dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,0.25); transition: width .25s ease, background-color .25s ease; }
.carousel__dots button.active { width: 24px; border-radius: 5px; background: var(--blue-light); }

/* Contact — disposition en split */
.coaching-split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.coaching-info .section__title { margin-bottom: 14px; }
.coaching-info__lead { color: var(--muted); margin: 0 0 24px; }
.coaching-info__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.coaching-info__list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.coaching-info__list a { color: var(--ink); transition: color .2s ease; }
.coaching-info__list a:hover { color: var(--blue); }
.ci-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--blue); }
.ci-ic svg { width: 20px; height: 20px; }
.ci-social { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); transition: transform .2s ease; }
.ci-social:hover { transform: translateY(-3px); }
.ci-social svg { width: 22px; height: 22px; }

/* CTA final — dégradé animé subtil */
.final-cta { background-size: 180% 180%; animation: gradShift 14s ease infinite; }
@keyframes gradShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Responsive premium */
@media (min-width: 768px) {
  .proof__grid { grid-template-columns: repeat(4, 1fr); }
  .wof-stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .consult-trust { grid-template-columns: 1fr 1fr; }
  .consult-proof { grid-template-columns: repeat(4, 1fr); }
  .consult-form { padding: 40px 36px; }
}
@media (min-width: 980px) {
  .coaching-split { grid-template-columns: 0.92fr 1.08fr; gap: 48px; }
  .consult-split { grid-template-columns: 1fr 1.05fr; gap: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__particles { display: none; }
  .hero__badge-dot, .hero__gbadge, .hero__review-card, .final-cta { animation: none !important; }
  .rev__scan, .rev__live i, .hero__growth-card { animation: none !important; }
  .rev__prog, .rev__bar i::after, .rev__verdict, .grow__line, .grow__area { transition: none !important; }
  .feed__track { animation: none !important; }
  .hero-feed { overflow-x: auto; }
  .btn--gradient::after, .btn--primary::after, .btn--white::after { display: none; }
  .carousel__track { transition: none; }
}

/* (Les cartes du hero sont désormais en flux dans la colonne droite — voir .hero__col-right) */

/* Liste déroulante (besoin) — formulaire coaching */
.coaching-form__group { margin-bottom: 20px; }
.select {
  width: 100%; padding: 13px 42px 13px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background-color: #fff; color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; cursor: pointer; line-height: 1.4;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,119,242,0.15); }
.select.is-invalid { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.select:required:invalid { color: #94A3B8; }
.select option { color: var(--ink); }

/* Mobile : hero plein écran au lieu d'aspect-ratio fixe */
@media (max-width: 767px) {
  .hero--home { min-height: 100vh; min-height: 100svh; }
  .hero__stats { gap: 14px; }
  .hero-stat__sep { height: 28px; }
}


/* =============================================================
   PARCOURS — identité chromatique bleue unifiée (refonte)
   Une seule famille : navy profond → bleu lumineux → cyan discret.
   ============================================================= */
/* Fil conducteur : un seul dégradé narratif (fondations → revenus) */
.journey-line { width: 3px; background: rgba(255,255,255,0.06); }
.journey-line__fill {
  background: linear-gradient(to bottom, #2563EB 0%, #3B82F6 25%, #06B6D4 70%, #10B981 100%);
  box-shadow: 0 0 16px rgba(59,130,246,0.5);
}

/* Variables d'accent par position dans le parcours + montée en puissance */
.journey .jstep--blue     { --acc: #2563EB; --accRGB: 37,99,235;  --glow: 0.05; --dot: 0.06; }
.journey .jstep--violet   { --acc: #3B82F6; --accRGB: 59,130,246; --glow: 0.07; --dot: 0.09; }
.journey .jstep--green    { --acc: #06B6D4; --accRGB: 6,182,212;  --glow: 0.10; --dot: 0.12; }
.journey .jstep--monetize { --acc: #10B981; --accRGB: 16,185,129; --glow: 0.16; --dot: 0.18; }

/* Cartes : même design, teinte d'accent très subtile + glow progressif */
.journey .jstep__card {
  background:
    linear-gradient(135deg, rgba(var(--accRGB),0.05) 0%, transparent 55%),
    linear-gradient(135deg, rgba(4,18,46,0.96) 0%, rgba(8,33,77,0.92) 100%);
  border: 1px solid rgba(var(--accRGB),0.16);
  box-shadow: none;
}
.journey .jstep__card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accRGB),0.45);
  box-shadow: 0 0 70px rgba(var(--accRGB), calc(var(--glow) + 0.12)), 0 30px 60px -26px rgba(2,8,23,0.65);
}

/* Glow d'angle : présence croissante selon l'étape, renforcé au survol */
.journey .jstep__glow { background: var(--acc); opacity: var(--dot); }
.journey .jstep__card:hover .jstep__glow { opacity: calc(var(--dot) + 0.16); }

/* Badges numérotés : suivent le dégradé, glow discret */
.journey .jstep__marker {
  background: #04122E; border: 2px solid rgba(var(--accRGB),0.5); color: #EAF2FF;
  box-shadow: none;
}
.journey .jstep.visible .jstep__marker { border-color: var(--acc); box-shadow: 0 0 calc(14px + var(--dot)*60px) rgba(var(--accRGB),0.35); }
.journey .jstep:hover .jstep__marker { box-shadow: 0 0 26px rgba(var(--accRGB),0.55); }

/* Icônes, labels & listes : teinte de l'étape */
.journey .jstep__icon { background: rgba(var(--accRGB),0.15); color: var(--acc); }
.journey .jstep__label { color: var(--acc); }
.journey .jstep__list li svg { color: var(--acc); }

/* Étape « Revenus » : la plus lumineuse + halo émeraude derrière la carte */
.journey .jstep--monetize { position: relative; }
.journey .jstep--monetize::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -24px; bottom: -24px; left: 54px; right: -10px;
  background: radial-gradient(60% 65% at 60% 50%, rgba(16,185,129,0.16), transparent 72%);
  filter: blur(34px);
}
.journey .jstep--monetize .jstep__card { position: relative; z-index: 1; }

/* Étape « Revenus » : piliers à l'accent émeraude */
.journey .jmonet__pillar {
  background: rgba(8,33,77,0.4); border: 1px solid rgba(16,185,129,0.18);
}
.journey .jmonet__pillar:hover { border-color: rgba(16,185,129,0.42); }
.journey .jmonet__pillar li {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(16,185,129,0.16);
}
.jmonet__ic {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.16); color: #34D399;
}

/* -------------------------------------------------------------
   Section « Ton parcours FaceHOOK » : suppression de TOUTES les
   lueurs (au repos comme au survol). On garde bordures et léger
   lift, mais plus aucun halo lumineux.
   ------------------------------------------------------------- */
.journey .jstep__card,
.journey .jstep__card:hover,
.journey .jstep__marker,
.journey .jstep.visible .jstep__marker,
.journey .jstep:hover .jstep__marker,
.journey .jmonet__pillar,
.journey-line__fill { box-shadow: none !important; }
/* Glow d'angle des cartes + halo émeraude derrière l'étape Revenus */
.journey .jstep__glow,
.journey .jstep--monetize::before { display: none !important; }

/* =============================================================
   Bascule de thème (bouton fixe) + ajustements thème clair
   ============================================================= */
.theme-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  background: var(--surface-glass);
  border: 1px solid var(--border-secondary);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.55);
  transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.theme-toggle:hover { transform: translateY(-3px); border-color: var(--border-brand); color: var(--accent-blue); }
.theme-toggle:active { transform: translateY(0) scale(0.95); }
.theme-toggle svg { width: 22px; height: 22px; }
/* en sombre : on propose de passer au clair (icône soleil) ; en clair : lune */
[data-theme="dark"]  .theme-toggle .ico-moon { display: none; }
[data-theme="light"] .theme-toggle .ico-sun  { display: none; }

/* ---- THÈME CLAIR : canvas lumineux ---- */
[data-theme="light"] #bg-universe {
  background:
    radial-gradient(1200px 820px at 50% -10%, #EAF1FC 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 55%, #FFFFFF 100%);
}
[data-theme="light"] .aurora { opacity: 0.55; }
[data-theme="light"] .uni-particles { opacity: 0.35 !important; }
[data-theme="light"] .flow { opacity: 0.5; }

/* ---- THÈME CLAIR : lisibilité des textes posés sur le fond clair ---- */
[data-theme="light"] .section--dark .section__title,
[data-theme="light"] .hero__title,
[data-theme="light"] .journey-dest__title,
[data-theme="light"] .founder-name { color: #0A2540; }
[data-theme="light"] .hero__subtitle,
[data-theme="light"] .hero__line,
[data-theme="light"] .founder-bio { color: #334155; }

/* ---- THÈME CLAIR : header au scroll en verre clair ---- */
[data-theme="light"] .header.scrolled {
  background: rgba(255,255,255,0.9);
  border-bottom-color: var(--border-primary);
  box-shadow: 0 2px 16px rgba(10,37,64,0.07);
}
[data-theme="light"] .header.scrolled .logo__face { color: #0A2540; }
[data-theme="light"] .header.scrolled .nav__link { color: #334155; }
[data-theme="light"] .header.scrolled .nav__link:hover,
[data-theme="light"] .header.scrolled .nav__link--active { color: var(--brand-primary); }
[data-theme="light"] .header.scrolled .hamburger span { background: #0A2540; }

/* =============================================================
   THÈME CLAIR — corrections de lisibilité (audit complet)
   Les cartes restent sombres ; tout ce qui est posé sur le fond
   clair (header, titres, hero, boutons verre, onglets…) repasse en
   couleurs foncées lisibles.
   ============================================================= */
[data-theme="light"] { color-scheme: light; }

/* Header (haut de page, non scrollé) */
[data-theme="light"] .logo__face { color: #0A2540; }
[data-theme="light"] .nav__link { color: #334155; }
[data-theme="light"] .nav__link:hover,
[data-theme="light"] .nav__link--active { color: var(--brand-primary); }
[data-theme="light"] .hamburger span { background: #0A2540; }

/* Titres & sous-titres de section sur fond clair */
[data-theme="light"] .section--dark .section__title { color: #0A2540; }
[data-theme="light"] .section--dark .section__lead { color: #475569; }

/* Hero accueil */
[data-theme="light"] .hero--home::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 26%, transparent 64%, rgba(255,255,255,0.5) 100%);
}
[data-theme="light"] .hero__gbadge { background: rgba(10,37,64,0.05); border-color: rgba(10,37,64,0.12); color: #334155; }
[data-theme="light"] .hero-stat__num { color: #0A2540; }
[data-theme="light"] .hero-stat__label { color: #64748B; }
[data-theme="light"] .hero-stat__sep { background: rgba(10,37,64,0.15); }

/* Boutons verre posés sur fond clair */
[data-theme="light"] .btn--glass { background: rgba(10,37,64,0.05); border-color: rgba(10,37,64,0.15); color: #0A2540; }
[data-theme="light"] .btn--glass:hover { background: rgba(10,37,64,0.10); border-color: rgba(10,37,64,0.28); }

/* Services — flèches & points du carrousel */
[data-theme="light"] .srv-nav { background: rgba(10,37,64,0.05); border-color: rgba(10,37,64,0.15); color: #0A2540; }
[data-theme="light"] .srv-nav:hover { background: rgba(10,37,64,0.1); }
[data-theme="light"] .srv-dot { background: rgba(10,37,64,0.2); }
[data-theme="light"] .srv-dot.is-active { background: var(--brand-primary); }

/* FAQ — onglets sur fond clair */
[data-theme="light"] .faq-tab { color: #475569; background: rgba(10,37,64,0.05); border-color: rgba(10,37,64,0.12); }
[data-theme="light"] .faq-tab:hover { color: #0A2540; }
[data-theme="light"] .faq-tab.is-active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }

/* Wall of Fame — citation rotative posée sur fond clair */
[data-theme="light"] .wof-quote__item { color: #0A2540; }

/* Flux d'activité */
[data-theme="light"] .hero-feed { background: rgba(10,37,64,0.04); border-top-color: rgba(10,37,64,0.08); }
[data-theme="light"] .feed__item { background: rgba(10,37,64,0.06); border-color: rgba(10,37,64,0.1); color: #0A2540; }
[data-theme="light"] .feed__txt b { color: #0A2540; }
[data-theme="light"] .feed__time { color: #475569; border-left-color: rgba(10,37,64,0.15); }

/* Section contact (gauche) sur fond clair */
[data-theme="light"] .consult-lead { color: #475569; }
