/* ══════════════════════════════════════════════════════════════════════════
   CloudCall — système visuel du site vitrine
   Jetons repris tels quels du design brief de l'application, pour que les
   captures d'écran s'encastrent sans dissonance.
   Typographie et rythme d'écriture alignés sur Assist-iA (Inter, titres très
   gras et très serrés, seconde moitié du titre en dégradé de marque).
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── Police ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext-var.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─── Jetons ─────────────────────────────────────────────────────────────── */
:root {
  --cream: #fbf8f2;
  --sand: #f5efe6;
  --white: #fff;
  --ink: #1a1f35;
  --ink-soft: rgba(26, 31, 53, 0.66);
  --ink-mute: rgba(26, 31, 53, 0.44);
  --hair: rgba(26, 31, 53, 0.1);
  --hair-strong: rgba(26, 31, 53, 0.16);

  --blue: #3e6cdf;
  --blue-soft: #6b91e8;
  --mauve: #8b6bd9;
  --pink: #ea5c8e;
  --warm: #ffb57a;
  --success: #10b981;

  --brand: linear-gradient(115deg, #3e6cdf 0%, #8b6bd9 46%, #ea5c8e 100%);
  --brand-bright: linear-gradient(115deg, #8fb0ff 0%, #c2a9f5 46%, #ff9dc0 100%);
  --iridescent: radial-gradient(circle at 28% 18%, #ffb57a 0%, #ea5c8e 34%, #8b6bd9 68%, #3e6cdf 100%);

  --shadow-soft: 0 1px 2px rgba(26, 31, 53, 0.04), 0 8px 24px rgba(26, 31, 53, 0.06);
  --shadow-up: 0 4px 12px rgba(26, 31, 53, 0.07), 0 24px 56px rgba(26, 31, 53, 0.1);
  --shadow-deep: 0 12px 32px rgba(26, 31, 53, 0.12), 0 48px 96px rgba(26, 31, 53, 0.16);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gouttiere: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 128px);
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* `height: auto` est indispensable : les images portent des attributs
   width/height, et une largeur imposée en CSS sans lui écrasait la hauteur
   d'origine — Noah se retrouvait comprimé en largeur. */
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid rgba(62, 108, 223, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}

.saut-contenu {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--pill);
  font-weight: 600;
}
.saut-contenu:focus { left: 24px; }

/* ─── Trame ──────────────────────────────────────────────────────────────── */
.enveloppe {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-inline: var(--gouttiere);
}
.section { padding-block: var(--section); position: relative; }
/* La barre de navigation est collante : sans cette marge, un saut d'ancre place
   le titre de la section DERRIÈRE elle et le visiteur croit avoir raté sa cible. */
[id] { scroll-margin-top: 86px; }
.section--sable { background: var(--sand); }
.section--blanc { background: var(--white); }

/* ─── Typographie ────────────────────────────────────────────────────────── */
.surtitre {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.surtitre::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

h1, .t1 {
  font-size: clamp(35px, 6vw, 74px);
  font-weight: 900;
  letter-spacing: -0.042em;
  line-height: 1.03;
  text-wrap: balance;
}
h2, .t2 {
  font-size: clamp(29px, 4.1vw, 52px);
  font-weight: 900;
  letter-spacing: -0.036em;
  line-height: 1.08;
  text-wrap: balance;
}
h3, .t3 {
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.chapeau {
  font-size: clamp(16.5px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: 60ch;
}

.degrade {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.degrade-clair {
  background: var(--brand-bright);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.entete-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 68px);
  max-width: 720px;
}

/* ─── Boutons ────────────────────────────────────────────────────────────── */
.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--pill);
  border: 0;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.011em;
  /* Pas de `nowrap` : un libellé long doit revenir à la ligne plutôt que de
     pousser la page en largeur sur un téléphone. */
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav .bouton, .rappel .bouton { text-wrap: nowrap; }
.bouton--primaire {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(62, 108, 223, 0.24);
}
.bouton--primaire:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(139, 107, 217, 0.32);
}
.bouton--fantome {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hair-strong);
}
.bouton--fantome:hover { border-color: var(--ink); transform: translateY(-2px); }
.bouton--clair {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.bouton--clair:hover { transform: translateY(-2px); }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 248, 242, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.est-defile {
  border-bottom-color: var(--hair);
  background: rgba(251, 248, 242, 0.93);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.marque { display: inline-flex; align-items: center; gap: 11px; }
.marque svg { width: 36px; height: 36px; flex: none; }
.marque-mot {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.nav-liens {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-liens a { transition: color 0.2s var(--ease); }
.nav-liens a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
/* L'accès à l'espace client doit rester atteignable sur un téléphone : il était
   masqué sous 720 px, donc introuvable pour un client déjà équipé. */
.nav-connexion {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: var(--pill);
  border: 1.5px solid var(--hair-strong);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-connexion svg { width: 15px; height: 15px; }
.nav-connexion:hover { color: var(--ink); border-color: var(--ink); }
.nav .bouton { padding: 11px 20px; font-size: 14.5px; }
@media (max-width: 520px) {
  .nav-connexion { padding: 9px 11px; font-size: 13.5px; }
  .nav-connexion span { display: none; }
  .nav .bouton { padding: 10px 15px; font-size: 13.5px; }
  .marque svg { width: 30px; height: 30px; }
  .marque-mot { font-size: 18px; }
}
@media (min-width: 940px) { .nav-liens { display: flex; } }

/* ─── Halos d'ambiance ───────────────────────────────────────────────────── */
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.halo--bleu { background: rgba(62, 108, 223, 0.16); }
.halo--mauve { background: rgba(139, 107, 217, 0.16); }
.halo--rose { background: rgba(234, 92, 142, 0.14); }

/* ─── Héro ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  /* Serré volontairement : sur un écran de 900 px de haut, le bouton du
     formulaire doit rester visible sans défiler. */
  padding-block: clamp(34px, 4.4vw, 62px) clamp(56px, 8vw, 104px);
  isolation: isolate;
}
.hero h1 { font-size: clamp(35px, 5.1vw, 64px); }
.hero .chapeau { font-size: clamp(16px, 1.35vw, 18.5px); max-width: 54ch; }
.hero-texte { gap: 18px; }
.hero-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 980px) {
  .hero-grille { grid-template-columns: 1.12fr 0.88fr; gap: 48px; }
}
.hero-texte { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.pastille {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.point-vif {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}
@media (prefers-reduced-motion: no-preference) {
  .point-vif { animation: battement 2.6s var(--ease) infinite; }
}
@keyframes battement {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
}

.hero-preuves {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.8px;
  font-weight: 500;
  color: var(--ink-mute);
}
.hero-preuves li { display: flex; align-items: center; gap: 7px; }
.hero-preuves svg { width: 15px; height: 15px; color: var(--blue); flex: none; }

/* Formulaire compact du héro */
.rappel {
  width: 100%;
  max-width: 470px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-up);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rappel-ligne { display: flex; flex-direction: column; gap: 8px; }
@media (min-width: 560px) { .rappel-ligne { flex-direction: row; } }
.rappel input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  background: var(--cream);
  border-radius: var(--pill);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.rappel input::placeholder { color: var(--ink-mute); }
.rappel input:focus { outline: none; border-color: var(--blue-soft); background: #fff; }
.rappel .bouton { width: 100%; }
.rappel-mention { font-size: 12.5px; color: var(--ink-mute); padding: 2px 10px 6px; }
.rappel-etat { font-size: 14px; font-weight: 600; padding: 10px 12px; border-radius: var(--r-sm); }
.rappel-etat[data-ton='ok'] { color: #0b7a5b; background: rgba(16, 185, 129, 0.1); }
.rappel-etat[data-ton='erreur'] { color: #b42318; background: rgba(234, 92, 142, 0.1); }
.piege { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Colonne droite du héro : Noah + carte d'appel */
.hero-visuel { position: relative; display: flex; justify-content: center; }
.hero-socle {
  position: absolute;
  inset: auto 0 -6% 0;
  height: 68%;
  background: var(--iridescent);
  opacity: 0.16;
  filter: blur(46px);
  border-radius: 50%;
  z-index: 0;
}
.hero-noah {
  position: relative;
  z-index: 1;
  width: min(400px, 82%);
  filter: drop-shadow(0 30px 60px rgba(26, 31, 53, 0.18));
  /* Le détourage s'arrête aux cuisses : un fondu évite la coupe nette. */
  -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
}
.carte-appel {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-deep);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
}
/* Décalées vers l'extérieur pour dégager le visage de Noah — le seul élément
   de la page qui doit rester intact — mais le débord est exprimé en pixels et
   plafonné à la gouttière : en pourcentage, la carte mordait sur le texte de
   la colonne de gauche dès que le titre prenait une ligne de plus. */
.carte-appel--entrant { top: 33%; left: -40px; }
.carte-appel--stat { bottom: 12%; right: -40px; }
@media (max-width: 1180px) {
  .carte-appel--entrant { left: -12px; }
  .carte-appel--stat { right: -12px; }
}
@media (max-width: 979px) {
  /* Noah est centré et plus petit : la carte doit tomber sur le buste,
     jamais sur le visage. */
  .carte-appel--entrant { top: 38%; left: 0; }
  .carte-appel--stat { bottom: 8%; right: 0; }
}
.carte-appel .rond {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.carte-appel .rond--appel { background: var(--brand); }
.carte-appel .rond--stat { background: rgba(16, 185, 129, 0.14); color: var(--success); }
.carte-appel svg { width: 19px; height: 19px; }
.carte-appel strong { display: block; font-weight: 700; letter-spacing: -0.015em; }
.carte-appel span { color: var(--ink-mute); font-size: 12.8px; }
@media (prefers-reduced-motion: no-preference) {
  .carte-appel--entrant { animation: flotte 6s ease-in-out infinite; }
  .carte-appel--stat { animation: flotte 6s ease-in-out infinite reverse; }
}
@keyframes flotte {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ─── Bandeau de confiance ───────────────────────────────────────────────── */
.bandeau {
  border-block: 1px solid var(--hair);
  padding-block: 26px;
  background: rgba(255, 255, 255, 0.5);
}
.bandeau-titre {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.bandeau-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.5;
}

/* ─── Cartes génériques ──────────────────────────────────────────────────── */
.grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.carte {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.carte:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-up);
  border-color: rgba(139, 107, 217, 0.35);
}
.carte p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.icone {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: rgba(62, 108, 223, 0.1);
  color: var(--blue);
}
.icone svg { width: 21px; height: 21px; }
.icone--mauve { background: rgba(139, 107, 217, 0.12); color: var(--mauve); }
.icone--rose { background: rgba(234, 92, 142, 0.12); color: var(--pink); }
.icone--vert { background: rgba(16, 185, 129, 0.12); color: var(--success); }

/* ─── Démonstration produit (défilement piloté) ──────────────────────────── */
.demo { position: relative; background: var(--sand); }
.demo-piste { position: relative; }
.demo-collant {
  position: sticky;
  top: 72px;
  /* Le bloc doit remplir la hauteur d'écran : plus court que la piste, il se
     décrochait avant la fin et laissait une bande vide. */
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-content: center;
  align-items: center;
  padding-block: 24px;
}
@media (min-width: 1000px) {
  .demo-collant { grid-template-columns: 0.66fr 1.34fr; gap: 44px; }
}
.demo-legendes { display: flex; flex-direction: column; gap: 14px; }
.demo-legende {
  border-left: 2px solid var(--hair);
  padding: 12px 0 12px 20px;
  opacity: 0.38;
  transition: opacity 0.45s var(--ease), border-color 0.45s var(--ease);
}
.demo-legende[data-actif='1'] { opacity: 1; border-left-color: var(--mauve); }
.demo-legende h3 { margin-bottom: 5px; }
.demo-legende h3 { font-size: 18.5px; }
/* Seule l'étape en cours déplie son texte : la colonne reste plus courte que
   l'écran, et l'œil sait où il en est. */
.demo-legende p {
  color: var(--ink-soft);
  font-size: 14.4px;
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.35s var(--ease), margin-top 0.5s var(--ease);
}
.demo-legende[data-actif='1'] p { max-height: 200px; opacity: 1; margin-top: 7px; }
@media (prefers-reduced-motion: reduce) {
  .demo-legende p { max-height: none; opacity: 1; margin-top: 7px; }
}
@media (max-width: 999px) {
  .demo-legende p { max-height: none; opacity: 1; margin-top: 7px; }
}
.demo-legende .rang {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 6px;
}

.fenetre {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-deep);
}
.fenetre-barre {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}
.fenetre-pastilles { display: flex; gap: 6px; }
.fenetre-pastilles i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: var(--hair-strong);
}
.fenetre-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.fenetre-scene { position: relative; aspect-ratio: 1440 / 900; background: var(--cream); }
.fenetre-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.fenetre-scene img[data-actif='1'] { opacity: 1; transform: scale(1); }

/* ─── Section mobile ─────────────────────────────────────────────────────── */
.mobile-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 940px) { .mobile-grille { grid-template-columns: 1fr 1fr; } }
.telephones { display: flex; justify-content: center; gap: clamp(14px, 3vw, 30px); }
.telephone {
  position: relative;
  width: min(232px, 42vw);
  border-radius: 34px;
  padding: 9px;
  background: var(--ink);
  box-shadow: var(--shadow-deep);
  flex: none;
}
.telephone:nth-child(2) { transform: translateY(26px) rotate(2.2deg); }
.telephone-ecran {
  border-radius: 26px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 390 / 844;
}
.telephone-ecran img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.telephone-encoche {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 20px;
  border-radius: var(--pill);
  background: var(--ink);
  z-index: 2;
}

.liste-cochee { display: flex; flex-direction: column; gap: 16px; }
.liste-cochee li { display: flex; gap: 14px; align-items: flex-start; }
.liste-cochee .puce {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(62, 108, 223, 0.12);
  color: var(--blue);
  margin-top: 2px;
}
.liste-cochee svg { width: 14px; height: 14px; }
.liste-cochee strong { display: block; font-weight: 700; letter-spacing: -0.015em; }
.liste-cochee span { color: var(--ink-soft); font-size: 15px; }

/* ─── Section sombre ─────────────────────────────────────────────────────── */
.sombre {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sombre .surtitre { color: rgba(255, 255, 255, 0.5); }
.sombre .chapeau { color: rgba(255, 255, 255, 0.68); }
.sombre .halo--mauve { background: rgba(139, 107, 217, 0.3); }
.sombre .halo--bleu { background: rgba(62, 108, 223, 0.26); }
.sombre .carte {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}
.sombre .carte:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}
.sombre .carte p { color: rgba(255, 255, 255, 0.66); }
.sombre .icone { background: rgba(255, 255, 255, 0.1); color: #c2a9f5; }
.sombre .enveloppe { position: relative; z-index: 1; }

/* ─── Chiffres ───────────────────────────────────────────────────────────── */
.chiffres {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (min-width: 760px) { .chiffres { grid-template-columns: repeat(4, 1fr); } }
.chiffre { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 20px; }
.chiffre b {
  display: block;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.chiffre span { font-size: 14px; color: rgba(255, 255, 255, 0.62); }

/* ─── Noah ───────────────────────────────────────────────────────────────── */
.noah-bloc {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 860px) { .noah-bloc { grid-template-columns: 0.42fr 0.58fr; } }
.noah-portrait { position: relative; display: flex; justify-content: center; }
.noah-portrait::after {
  content: '';
  position: absolute;
  inset: 12% 8% 0 8%;
  background: var(--iridescent);
  opacity: 0.14;
  filter: blur(38px);
  border-radius: 50%;
  z-index: 0;
}
.noah-portrait img { position: relative; z-index: 1; width: min(280px, 76%); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq details {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 4px 24px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq details[open] { border-color: rgba(139, 107, 217, 0.35); box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding-block: 20px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 11px;
  height: 11px;
  flex: none;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq details p { color: var(--ink-soft); font-size: 15.5px; padding-bottom: 22px; max-width: 70ch; }

/* ─── Appel final ────────────────────────────────────────────────────────── */
.final {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5.5vw, 72px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) { .final { grid-template-columns: 1.05fr 0.95fr; } }
.final .halo--mauve { background: rgba(139, 107, 217, 0.34); }
.final .halo--rose { background: rgba(234, 92, 142, 0.3); }
.final > * { position: relative; z-index: 1; }
.final h2 { color: #fff; }
.final p { color: rgba(255, 255, 255, 0.7); }
.final .rappel { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }
.final .rappel input { background: rgba(255, 255, 255, 0.08); color: #fff; }
.final .rappel input::placeholder { color: rgba(255, 255, 255, 0.42); }
.final .rappel input:focus { background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.4); }
.final .rappel-mention { color: rgba(255, 255, 255, 0.48); }

/* ─── Pied ───────────────────────────────────────────────────────────────── */
.pied { background: var(--sand); border-top: 1px solid var(--hair); padding-block: 60px 34px; }
.pied-grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  margin-bottom: 42px;
}
@media (min-width: 720px) { .pied-grille { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.pied h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.pied ul { display: flex; flex-direction: column; gap: 11px; font-size: 14.8px; color: var(--ink-soft); }
.pied ul a:hover { color: var(--ink); }
.pied-baseline { color: var(--ink-soft); font-size: 14.8px; max-width: 34ch; margin-top: 14px; }
.pied-bas {
  border-top: 1px solid var(--hair);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-mute);
}

/* ─── Apparition au défilement ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .apparait {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  }
  .apparait.est-vu { opacity: 1; transform: none; }
}

/* ─── Pages profondes ────────────────────────────────────────────────────── */
.fil {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.fil a:hover { color: var(--ink); }
.entete-page { padding-block: clamp(48px, 6vw, 84px) clamp(30px, 4vw, 52px); }
.prose { max-width: 74ch; display: flex; flex-direction: column; gap: 18px; }
.prose p { color: var(--ink-soft); }
.prose h3 { margin-top: 18px; }
.prose ul { display: flex; flex-direction: column; gap: 10px; color: var(--ink-soft); }
.prose li { padding-left: 20px; position: relative; }
.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.tableau { width: 100%; overflow-x: auto; }
.tableau table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 14.8px; }
.tableau th, .tableau td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--hair); }
.tableau th {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.tableau td { color: var(--ink-soft); }
.tableau tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.6); }
