/* =========================================================
   QCMed, site vitrine
   Design system : Encre & Laiton
   ========================================================= */

/* -------- Tokens (light) -------- */
:root {
  /* Fonts */
  --sf: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --baloo: "Baloo 2", var(--sf);

  /* Encre & Laiton */
  --primaire: #1E3A5F;
  --primaire-soft: #E5EAF1;
  --primaire-dark: #141C2B;
  --accent: #C8A96A;
  --accent-soft: #E8D8B0;
  --accent-dark: #8A6A1F;
  --fond: #F6F2EA;
  --fond-2: #EEE9DD;
  --succes: #1B7A5A;
  --succes-soft: #E4F0EA;
  --erreur: #B83A3A;
  --erreur-soft: #F6E4E4;

  /* Roles */
  --bg: var(--fond);
  --bg-alt: var(--fond-2);
  --surface: #FFFFFF;
  --ink: var(--primaire);
  --ink-2: #4A5A72;
  --ink-3: #8A93A4;
  --line: rgba(30, 58, 95, 0.12);
  --line-strong: rgba(30, 58, 95, 0.22);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 28, 43, 0.06);
  --shadow-md: 0 8px 24px -10px rgba(20, 28, 43, 0.18);
  --shadow-cta: 0 6px 16px -4px rgba(30, 58, 95, 0.35);
  --shadow-hero: 0 30px 80px -30px rgba(20, 28, 43, 0.45);

  /* Radii */
  --r-sm: 10px;
  --r: 12px;
  --r-card: 14px;
  --r-hero: 18px;
  --r-pill: 999px;

  /* Espacements */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* Largeurs */
  --container: 1120px;
  --container-tight: 840px;
}

/* -------- Tokens (dark) -------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--primaire-dark);
    --bg-alt: #1B2538;
    --surface: #1F2A40;
    --ink: #F0EAD8;
    --ink-2: #B8C0CF;
    --ink-3: #7A85A0;
    --line: rgba(240, 234, 216, 0.10);
    --line-strong: rgba(240, 234, 216, 0.20);
    --primaire-soft: #2A3A55;
    --accent-soft: #4A3D1F;
    --succes-soft: #1A3128;
    --erreur-soft: #3A1F1F;
    --shadow-md: 0 8px 24px -10px rgba(0, 0, 0, 0.5);
    --shadow-cta: 0 6px 16px -4px rgba(200, 169, 106, 0.35);
    --shadow-hero: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  }
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sf);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

/* -------- Typo -------- */
h1, h2, h3, h4 {
  font-family: var(--baloo);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 5.5vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
p  { color: var(--ink-2); }

.eyebrow {
  font-family: var(--sf);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
@media (prefers-color-scheme: dark) {
  .eyebrow { color: var(--accent); }
}

.lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}
.container-tight {
  max-width: var(--container-tight);
}

.section {
  padding-block: clamp(60px, 9vw, 110px);
}
.section--alt { background: var(--bg-alt); }
.section--ink {
  background: var(--primaire);
  color: var(--fond);
}
.section--ink h2, .section--ink h3 { color: var(--fond); }
.section--ink p { color: rgba(246, 242, 234, 0.78); }
.section--ink .eyebrow { color: var(--accent); }

.section-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 720px; }
.section-head .eyebrow { margin-bottom: 12px; display: block; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 17px; line-height: 1.55; }

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 14px;
}
.wordmark {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.wordmark__dot { color: var(--accent-dark); }
@media (prefers-color-scheme: dark) {
  .wordmark__dot { color: var(--accent); }
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}
@media (min-width: 640px) {
  .site-header__nav { gap: 12px; }
}
.site-header__link {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 7px 8px;
  border-radius: var(--r-pill);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .site-header__link {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
  }
}
.site-header__link:hover { color: var(--ink); background: rgba(30, 58, 95, 0.06); }
.site-header__link--accent {
  color: var(--accent-dark);
  background: var(--accent-soft);
}
@media (prefers-color-scheme: dark) {
  .site-header__link--accent { color: var(--accent); }
}
.site-header__link--accent:hover {
  background: var(--accent-soft);
  color: var(--ink);
}
.site-header__link-full { display: none; }
.site-header__link-short { display: inline; }
@media (min-width: 640px) {
  .site-header__link-full { display: inline; }
  .site-header__link-short { display: none; }
}
.site-header__cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}
@media (min-width: 640px) {
  .site-header__cta {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.site-header__cta:hover {
  background: var(--primaire-soft);
  border-color: var(--primaire);
}

/* -------- Boutons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--primaire);
  color: var(--fond);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--primaire); background: var(--primaire-soft); }

.btn--accent {
  background: var(--accent);
  color: var(--primaire-dark);
}
.btn--accent:hover { background: var(--accent-dark); color: var(--fond); }

.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* -------- Hero -------- */
.hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(60px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 sup { font-size: 0.55em; vertical-align: super; line-height: 0; }
.hero__sub {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 56ch;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

/* Universités cibles (badges proéminents) */
.hero__unis {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.uni-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--primaire);
  background: var(--primaire-soft);
  color: var(--primaire);
  text-transform: none;
}
.uni-pill--ge { border-color: var(--primaire); }
.uni-pill--la { border-color: var(--accent-dark); background: var(--accent-soft); color: var(--accent-dark); }
@media (prefers-color-scheme: dark) {
  .uni-pill { color: var(--fond); }
  .uni-pill--la { color: var(--accent); }
}
.hero__unis-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* -------- Carte de preuve sociale (Superprof) --------
   Charte Superprof : rose #FF3D80 comme signature.
   Fond blanc forcé (même en dark mode) pour ressortir. */
.trust-card {
  --sp-pink: #EE7583;
  --sp-pink-dark: #D8626F;
  --sp-pink-soft: #FDE7EA;

  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  margin-bottom: 28px;
  background: #FFFFFF;                 /* toujours blanc */
  color: #1A1A1A;                      /* texte foncé sur blanc */
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-card);
  box-shadow: 0 6px 18px -8px rgba(238, 117, 131, 0.35),
              0 1px 2px rgba(20, 28, 43, 0.06);
  max-width: 460px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  /* filet rose signature à gauche */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--sp-pink);
}
.trust-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(238, 117, 131, 0.5),
              0 2px 4px rgba(20, 28, 43, 0.08);
}

/* Avatar */
.trust-card__avatar {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDE7EA, #F9CFD4);
  border: 2px solid var(--sp-pink);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.trust-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.trust-card__initials {
  position: absolute;
  z-index: 1;
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 20px;
  color: var(--sp-pink);
}

/* Corps texte */
.trust-card__body {
  flex: 1;
  min-width: 0;
}
.trust-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sf);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-pink);
  margin-bottom: 2px;
}
.trust-card__star { color: var(--sp-pink); }
.trust-card__rank {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 17px;
  color: #1A1A1A;
  line-height: 1.15;
}
.trust-card__label {
  font-size: 12.5px;
  color: #4A4A4A;
  line-height: 1.35;
  margin-top: 1px;
}
.trust-card__arrow {
  flex-shrink: 0;
  color: #8A8A8A;
  transition: color 0.15s, transform 0.15s;
}
.trust-card:hover .trust-card__arrow {
  color: var(--sp-pink);
  transform: translate(1px, -1px);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-3);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* -------- Stat strip -------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 720px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__num .unit { font-size: 0.55em; color: var(--accent-dark); margin-left: 2px; }
@media (prefers-color-scheme: dark) { .stat__num .unit { color: var(--accent); } }
.stat__label {
  font-size: 13px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* -------- Cartes "Pourquoi" -------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.why-card__pain {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.25;
}
.why-card__detail { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.why-card__answer {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  font-size: 14.5px;
  color: var(--accent-dark);
  font-weight: 600;
  line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  .why-card__answer { color: var(--accent); }
}
.why-card__answer::before { content: "→ "; margin-right: 2px; }

/* -------- Features (text+visual alternés) -------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__visual { order: -1; }
}
.feature__title { margin-bottom: 16px; }
.feature__lead { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 20px; }
.feature__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}
.feature__bullets li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature__bullets li::before {
  content: "";
  grid-row: 1 / -1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}
.feature__bullet-label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.feature__bullet-text {
  display: block;
  grid-column: 2;
  color: var(--ink-2);
  line-height: 1.5;
}

.feature + .feature { margin-top: clamp(60px, 9vw, 110px); }

/* -------- Mockup iPhone (CSS pur) -------- */
.phone {
  --phone-w: 280px;
  width: var(--phone-w);
  aspect-ratio: 9 / 19;
  margin-inline: auto;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    var(--shadow-hero);
  position: relative;
}
.phone--lg { --phone-w: 320px; }

/* Phone qui contient une vidéo plein cadre (vs mockup CSS)
   Ratio exact de la vidéo (iPhone 15 Pro Max source, 1284×2778) */
.phone--video,
.phone--classement {
  --phone-w: 300px;
  aspect-ratio: 1284 / 2778;   /* ≈ 0.462 */
}
/* Quand la vidéo est utilisée dans le hero, on garde la taille --lg */
.phone--video.phone--lg { --phone-w: 320px; }
.phone--video .phone__screen,
.phone--classement .phone__screen { background: #000; }
.phone__video,
.phone__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* -------- Classement (écran leaderboard) -------- */
.phone--classement .phone__screen { background: var(--fond); }

.lb {
  position: absolute;
  inset: 0;
  padding: 8px 10px 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--primaire);
  font-family: var(--sf);
  overflow: hidden;
}
.lb__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 10px 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--primaire);
}
.lb__status .sig { display: flex; gap: 2px; }
.lb__status .sig i { display: block; width: 3px; background: var(--primaire); border-radius: 1px; }
.lb__status .sig i:nth-child(1) { height: 4px; }
.lb__status .sig i:nth-child(2) { height: 6px; }
.lb__status .sig i:nth-child(3) { height: 8px; }
.lb__status .sig i:nth-child(4) { height: 10px; }

.lb__title {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  color: var(--primaire);
  margin-top: 2px;
}

.lb__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(30, 58, 95, 0.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lb__tab {
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(30, 58, 95, 0.55);
  background: transparent;
}
.lb__tab--active {
  background: #FFFFFF;
  color: var(--primaire);
  box-shadow: 0 1px 2px rgba(20, 28, 43, 0.06);
}

.lb__note {
  background: rgba(30, 58, 95, 0.08);
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 9.5px;
  line-height: 1.4;
  color: rgba(30, 58, 95, 0.78);
}
.lb__note strong { color: var(--primaire); font-weight: 700; }

.lb__segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lb__seg {
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(30, 58, 95, 0.6);
  background: rgba(30, 58, 95, 0.05);
}
.lb__seg--active {
  background: var(--primaire);
  color: #F6F2EA;
  font-weight: 700;
}

/* Podium */
.lb__podium {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: end;
  gap: 5px;
  margin-top: 2px;
}
.lb__pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.10);
  transition: background 400ms ease, color 400ms ease, transform 400ms ease;
}
.lb__pod--1 {
  background: var(--accent);
  border-color: transparent;
  color: #141C2B;
  padding: 10px 4px;
  transform: translateY(-2px);
}
.lb__pod-rank { font-size: 9px; font-weight: 700; color: inherit; opacity: 0.65; }
.lb__pod--1 .lb__pod-rank { opacity: 1; }
.lb__pod-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primaire);
  color: #F6F2EA;
  display: grid;
  place-items: center;
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 10px;
  margin: 1px 0;
}
.lb__pod-name { font-family: var(--baloo); font-weight: 700; font-size: 10px; color: inherit; }
.lb__pod-score { font-size: 9px; font-weight: 700; color: inherit; opacity: 0.85; }

/* Podium slot 3 quand c'est "toi" */
.lb__pod--3.is-me {
  background: var(--primaire);
  color: #F6F2EA;
  border-color: transparent;
}
.lb__pod--3.is-me .lb__pod-avatar {
  background: var(--accent);
  color: var(--primaire);
}

/* Liste */
.lb__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}
.lb__separator {
  text-align: center;
  font-size: 9px;
  color: rgba(30, 58, 95, 0.4);
  padding: 3px 0;
  font-weight: 600;
}
.lb__row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.08);
  font-size: 10px;
  transition: opacity 260ms ease;
}
.lb__row-rank {
  width: 20px;
  text-align: center;
  font-weight: 700;
  color: rgba(30, 58, 95, 0.55);
  font-size: 10px;
}
.lb__row-rank sup { font-size: 7px; }
.lb__row-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.12);
  color: var(--primaire);
  display: grid;
  place-items: center;
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 9px;
  flex-shrink: 0;
}
.lb__row-name {
  flex: 1;
  font-weight: 600;
  color: var(--primaire);
}
.lb__row-score {
  font-weight: 700;
  color: rgba(30, 58, 95, 0.75);
  font-size: 10px;
}
.lb__row-delta {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 9.5px;
  margin-right: 2px;
}

/* Card "toi", mise en avant */
.lb__row--me {
  background: var(--primaire);
  border-color: transparent;
  color: #F6F2EA;
  box-shadow: 0 6px 14px -6px rgba(20, 28, 43, 0.45);
}
.lb__row--me .lb__row-rank { color: rgba(246, 242, 234, 0.65); }
.lb__row--me .lb__row-avatar--me {
  background: var(--accent);
  color: var(--primaire);
}
.lb__row--me .lb__row-name { color: #F6F2EA; }
.lb__row--me .lb__row-score { color: #F6F2EA; }
.lb__row--me .lb__row-delta { color: var(--accent); }

/* Flash "monte d'un cran" */
.lb__row--me.is-jumping {
  box-shadow: 0 10px 22px -6px rgba(200, 169, 106, 0.55);
}
.lb__row--me.is-jumping .lb__row-delta {
  transform: scale(1.15);
}
.lb__row--me .lb__row-delta {
  transition: transform 400ms ease, color 300ms ease;
  display: inline-block;
}

/* Fade discret pour les infos qui se rafraîchissent */
.lb__row.is-refreshing,
.lb__pod.is-refreshing { opacity: 0.35; }

/* Tabbar en bas */
.lb__tabbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px 0 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(30, 58, 95, 0.08);
  z-index: 4;
}
.lb__tabbar span {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: rgba(30, 58, 95, 0.45);
}
.lb__tabbar span.is-active { color: var(--primaire); }

.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--fond);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  font-size: 11px;
}
.phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 22px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primaire);
}
.phone__status .sig { display: flex; gap: 2px; }
.phone__status .sig i {
  display: block;
  width: 3px;
  background: var(--primaire);
  border-radius: 1px;
}
.phone__status .sig i:nth-child(1) { height: 4px; }
.phone__status .sig i:nth-child(2) { height: 6px; }
.phone__status .sig i:nth-child(3) { height: 8px; }
.phone__status .sig i:nth-child(4) { height: 10px; }
.phone__inner {
  padding: 18px 16px 14px;
  height: calc(100% - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--primaire);
}

/* Mockup contenu, question */
.mock-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 58, 95, 0.55);
}
.mock-meta .pill {
  background: rgba(200, 169, 106, 0.18);
  color: #8A6A1F;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.mock-title {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  color: var(--primaire);
}
.mock-enonce {
  font-size: 10.5px;
  line-height: 1.45;
  color: #2C3F5C;
}
.mock-options { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.mock-option {
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 9px;
  border: 1px solid rgba(30, 58, 95, 0.18);
  background: #FFFFFF;
  font-size: 10px;
  line-height: 1.3;
  color: #2C3F5C;
  align-items: flex-start;
}
.mock-option .ko {
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(30, 58, 95, 0.10);
  display: grid;
  place-items: center;
  font-size: 9px;
  flex-shrink: 0;
  color: var(--primaire);
}
.mock-option--ok { border-color: #1B7A5A; background: #E4F0EA; }
.mock-option--ok .ko { background: #1B7A5A; color: #fff; }
.mock-option--ok::after { content: "✓"; margin-left: auto; color: #1B7A5A; font-weight: 700; }
.mock-option--no { border-color: #B83A3A; background: #F6E4E4; }
.mock-option--no .ko { background: #B83A3A; color: #fff; }
.mock-option--no::after { content: "✗"; margin-left: auto; color: #B83A3A; font-weight: 700; }

.mock-tabbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38px;
  border-top: 1px solid rgba(30, 58, 95, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.mock-tabbar i {
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 600;
  color: rgba(30, 58, 95, 0.45);
  text-transform: lowercase;
  font-style: normal;
}
.mock-tabbar i.active { color: var(--primaire); }

/* -------- Anatomie d'une correction -------- */
.anat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-hero);
  padding: clamp(20px, 3.5vw, 36px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) { .anat { grid-template-columns: 1.2fr 1fr; } }
.anat__qcm {
  background: var(--bg-alt);
  border-radius: var(--r-card);
  padding: 22px;
  border: 1px solid var(--line);
}
.anat__qcm-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.anat__qcm-title {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.anat__qcm-enonce {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.anat__qcm-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 6px;
}
.anat__qcm-opt--ok { background: var(--succes-soft); color: var(--succes); }
.anat__qcm-opt--no { background: var(--erreur-soft); color: var(--erreur); }
.anat__qcm-opt .letter {
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.06);
  font-size: 12px;
}
.anat__qcm-opt .check { margin-left: auto; font-weight: 700; }

.anat__detail { display: flex; flex-direction: column; gap: 16px; }
.anat__block {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 14px;
}
.anat__block-title {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
@media (prefers-color-scheme: dark) {
  .anat__block-title { color: var(--accent); }
}
.anat__block p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.anat__block code {
  font-family: "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: var(--primaire-soft);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

/* -------- Programme couvert (grille matières) -------- */
.programme-note {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: var(--r-card);
  margin-bottom: 32px;
}
.programme-note strong { color: var(--ink); }
.programme-note p { color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
@media (prefers-color-scheme: dark) {
  .programme-note { background: rgba(200, 169, 106, 0.12); }
}

.subj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .subj-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .subj-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .subj-grid--modules { grid-template-columns: repeat(3, 1fr); } }
.subj-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.subj-card__name {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.subj-card__count {
  font-size: 13px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.subj-card__big {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  margin-top: 8px;
}
.subj-card__big span { font-size: 0.5em; color: var(--ink-3); margin-left: 4px; }
.subj-card__sub {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}
.programme-foot {
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
}
.programme-foot strong { color: var(--ink); font-weight: 600; }

.subj-card--soon { opacity: 0.6; }
.subj-card--soon .subj-card__name::after {
  content: "Bientôt";
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  text-transform: uppercase;
}

/* -------- Auteur -------- */
.author {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-hero);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 760px) {
  .author { grid-template-columns: 180px 1fr; gap: 40px; }
}
.author__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primaire-soft), var(--accent-soft));
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px -12px rgba(20, 28, 43, 0.35);
}
.author__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.author__avatar-initials {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 64px;
  color: var(--primaire);
  z-index: 1;
}
.author__name {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 4px;
}
.author__role {
  color: var(--ink-2);
  font-size: 15.5px;
  margin-bottom: 14px;
}
.author__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.author__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primaire-soft);
  color: var(--primaire);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (prefers-color-scheme: dark) {
  .author__badge { color: var(--fond); }
}
.author__badge--accent { background: var(--accent-soft); color: var(--accent-dark); }
@media (prefers-color-scheme: dark) {
  .author__badge--accent { color: var(--accent); }
}
.author__bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.author__bio strong { color: var(--ink); font-weight: 600; }

.author__quote {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  margin-bottom: 16px;
}
.author__guarantee {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.author__guarantee strong { color: var(--ink); font-weight: 600; }

/* -------- FAQ -------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q::after {
  content: "+";
  font-size: 24px;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  .faq__q::after { color: var(--accent); }
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq__a p + p { margin-top: 10px; }

/* -------- Formulaire pré-inscription -------- */
.signup {
  background: var(--primaire);
  color: var(--fond);
  border-radius: var(--r-hero);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-hero);
}
.signup h2 { color: var(--fond); margin-bottom: 14px; }
.signup p { color: rgba(246, 242, 234, 0.8); margin-inline: auto; max-width: 52ch; margin-bottom: 28px; font-size: 16.5px; }

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin-inline: auto;
}
.signup__row { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.signup__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.7);
}
.signup__input {
  font-family: var(--sf);
  font-size: 16px;
  height: 52px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(246, 242, 234, 0.2);
  background: rgba(246, 242, 234, 0.08);
  color: var(--fond);
  transition: border-color 0.15s, background 0.15s;
}
.signup__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(246, 242, 234, 0.14);
}
.signup__input::placeholder { color: rgba(246, 242, 234, 0.4); }

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(246, 242, 234, 0.08);
  border: 1px solid rgba(246, 242, 234, 0.2);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 4px;
}
.segmented input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(246, 242, 234, 0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.segmented input:checked + label {
  background: var(--accent);
  color: var(--primaire-dark);
}

.signup__submit {
  margin-top: 8px;
  background: var(--accent);
  color: var(--primaire-dark);
  height: 56px;
  font-size: 17px;
}
.signup__submit:hover { background: #DDB97A; }
.signup__legal {
  font-size: 12.5px;
  color: rgba(246, 242, 234, 0.55);
  line-height: 1.5;
  max-width: 44ch;
  margin: 14px auto 0;
}
.signup__legal a { color: rgba(246, 242, 234, 0.85); text-decoration: underline; text-decoration-color: rgba(246, 242, 234, 0.4); }

.signup__status {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  min-height: 22px;
}
.signup__status--ok { color: #FFFFFF; }
.signup__status--ko { color: #FFB4B4; }

/* -------- Footer -------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
  background: var(--bg);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .site-footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.site-footer__copy { font-size: 13.5px; color: var(--ink-3); }
.site-footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__links a {
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color 0.15s;
}
.site-footer__links a:hover { color: var(--ink); }

/* -------- Pages légales -------- */
.legal {
  padding-block: clamp(48px, 6vw, 80px);
}
.legal h1 { margin-bottom: 12px; }
.legal .lead { margin-bottom: 32px; }
.legal__note {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent-dark);
  padding: 16px 20px;
  border-radius: var(--r);
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 40px;
}
@media (prefers-color-scheme: dark) {
  .legal__note { background: rgba(200, 169, 106, 0.12); border-color: var(--accent); }
}
.legal__note strong { color: var(--ink); }

.legal h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-size: 24px;
}
.legal h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
}
.legal p { color: var(--ink-2); line-height: 1.65; margin-bottom: 12px; }
.legal ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.legal ul li { margin-bottom: 6px; line-height: 1.55; }
.legal a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
}
@media (prefers-color-scheme: dark) {
  .legal a { color: var(--accent); }
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
  font-weight: 600;
}
.legal__back:hover { color: var(--ink); }

/* -------- Utility -------- */
.center { text-align: center; }
.hide-mobile { display: none; }
@media (min-width: 760px) { .hide-mobile { display: inline; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Page Préparation intensive
   ========================================================= */

/* Hero adapté (pas de mockup à droite) */
.prep-hero {
  padding-block: clamp(56px, 8vw, 110px);
}
.prep-hero__inner {
  max-width: 780px;
}
.prep-hero h1 { margin-bottom: 22px; }
.prep-hero h1 sup { font-size: 0.55em; vertical-align: super; line-height: 0; }

.scope-banner {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent-dark);
  border-radius: var(--r-card);
  padding: 14px 18px;
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 42rem;
}
.scope-banner strong {
  color: var(--ink);
  font-weight: 700;
}
@media (prefers-color-scheme: dark) {
  .scope-banner {
    background: rgba(200, 169, 106, 0.14);
    border-color: var(--accent);
    border-left-color: var(--accent);
  }
  .scope-banner strong { color: var(--fond); }
}

/* -------- Sessions (liste dynamique) -------- */
.sessions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .sessions { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .sessions { grid-template-columns: repeat(2, 1fr); } }

.sessions__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--ink-3);
  font-size: 14px;
}

.session-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.session-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.session-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.session-card__title {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
}
.session-card__dates {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 4px;
}
.session-card__pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.session-card__pill--ok {
  background: var(--succes-soft);
  color: var(--succes);
}
.session-card__pill--low {
  background: rgba(200, 169, 106, 0.22);
  color: var(--accent-dark);
}
@media (prefers-color-scheme: dark) {
  .session-card__pill--low { color: var(--accent); }
}
.session-card__pill--full {
  background: rgba(184, 58, 58, 0.15);
  color: var(--erreur);
}

.session-card__meta {
  display: flex;
  gap: 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.session-card__meta strong { color: var(--ink); font-weight: 600; }
.session-card__meta .sep { color: var(--ink-3); }

.session-card__prog {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
}
.session-card__prog-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 700;
}
.session-card__prog-item {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}

.session-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.session-card__price {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.session-card__price span {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  margin-left: 3px;
}
.session-card__cta {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
}
.session-card__cta--full {
  background: var(--line);
  color: var(--ink-3);
  cursor: not-allowed;
  pointer-events: none;
}

.sessions__foot {
  text-align: center;
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.sessions__foot a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
}
@media (prefers-color-scheme: dark) {
  .sessions__foot a { color: var(--accent); }
}

/* -------- Pricing (2 formules) -------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .pricing { grid-template-columns: 1fr 1fr; } }

.pricing__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-hero);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing__card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--accent-soft) 22%, var(--surface)) 100%);
  box-shadow: 0 12px 30px -10px rgba(200, 169, 106, 0.35);
}
.pricing__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--primaire-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing__label {
  font-family: var(--baloo);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing__amount {
  font-family: var(--baloo);
  font-weight: 800;
  font-size: 48px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing__cur {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 700;
}
.pricing__meta {
  font-size: 14px;
  color: var(--ink-2);
}
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.pricing__list li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.pricing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 800;
}
@media (prefers-color-scheme: dark) {
  .pricing__list li::before { color: var(--accent); }
}

.pricing__note {
  margin-top: 32px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.55;
}
.pricing__note strong { color: var(--ink); font-weight: 600; }

/* -------- CTA WhatsApp final -------- */
.signup--wa .signup__submit--wa {
  background: #25D366;
  color: #FFFFFF;
}
.signup--wa .signup__submit--wa:hover {
  background: #1EBA57;
}
