/* Charte Adrien Tornier 2026 · récupérée BookStack page 169 */
:root {
  --orange: #df7a32;
  --orange-dark: #c46420;
  --or: #c7b374;
  --or-light: #e6d8a5;
  --beige: #fef9f6;
  --beige-2: #f9eee2;
  --bleu: #265077;
  --bleu-dark: #1a3a58;
  --text: #1a1612;
  --text-muted: #6b5e52;
  --text-light: #998878;
  --border: #ead8c4;
  --white: #ffffff;
  --shadow-sm: 0 2px 6px rgba(38,80,119,0.08);
  --shadow-md: 0 6px 18px rgba(38,80,119,0.12);
  --shadow-lg: 0 12px 32px rgba(38,80,119,0.16);
  --shadow-cta: 0 10px 28px rgba(223,122,50,0.32);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Rethink Sans', 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--beige);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--bleu);
  color: var(--white);
  padding: 9px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.topbar strong { color: var(--or); font-weight: 800; text-transform: uppercase; }
.dot-live {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(223,122,50,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(223,122,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(223,122,50,0); }
}

/* ===== HERO OPT-IN ===== */
.hero {
  background: var(--beige);
  padding: 40px 0 56px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--or);
  color: var(--bleu);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bleu);
  margin-bottom: 16px;
}
.hero h1 .highlight {
  background: var(--or);
  color: var(--bleu);
  padding: 0 8px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero h1 .orange { color: var(--orange); }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 22px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.bullet-list { list-style: none; margin-bottom: 24px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.bullet-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--orange);
  margin-top: 1px;
}

/* ===== FORM ===== */
.optin-form {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 420px;
}
.optin-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.optin-input::placeholder { color: var(--text-light); }
.optin-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(223,122,50,0.12);
}
.optin-input.invalid {
  border-color: #d04545;
  background: #fff5f5;
}

.cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: var(--shadow-cta);
  transition: background .15s ease, transform .15s ease;
}
.cta-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-primary .arr { transition: transform .15s ease; }
.cta-primary:hover .arr { transform: translateX(4px); }

.hero-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--orange); }

/* ===== HERO PHOTO ADRIEN ===== */
.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--or), var(--orange));
  display: flex; align-items: center; justify-content: center;
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-portrait-placeholder {
  color: var(--white);
  font-family: 'Rethink Sans', sans-serif;
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0.5;
}
.hero-portrait-name {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--bleu);
}

.with-aurelien {
  margin-top: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  max-width: max-content;
  font-size: 13px;
  font-weight: 600;
}
.with-aurelien img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.with-aurelien-stack {
  display: flex; align-items: center;
}
.with-aurelien-stack img {
  border: 2px solid var(--white);
  margin-left: -10px;
}
.with-aurelien-stack img:first-child { margin-left: 0; }

/* ===== COUNTDOWN ===== */
.countdown-section {
  background: var(--bleu);
  color: var(--white);
  padding: 28px 0;
}
.countdown-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--or);
}
.countdown-cells { display: flex; gap: 12px; }
.countdown-cell {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  min-width: 64px;
}
.countdown-cell strong {
  display: block;
  font-family: 'Rethink Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.countdown-cell span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--or-light);
  margin-top: 4px;
}

/* ===== STRIPE PROOF ===== */
.proof-stripe {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.proof-stat { display: flex; align-items: center; gap: 12px; }
.proof-stat-num {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.proof-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.2;
  font-weight: 600;
}
.proof-sep { width: 1px; height: 36px; background: var(--border); }
.proof-faces { display: flex; }
.proof-faces .face {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background: var(--or);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--bleu);
  background-size: cover;
  background-position: center;
}
.proof-faces .face:first-child { margin-left: 0; }
.proof-faces .face.b1 { background: var(--orange); color: var(--white); }
.proof-faces .face.b2 { background: var(--bleu); color: var(--white); }
.proof-faces .face.b3 { background: var(--or); color: var(--bleu); }
.proof-faces .face.b4 { background: var(--beige-2); color: var(--bleu); }
.proof-faces .face.b5 { background: var(--or-light); color: var(--bleu); }

/* ===== SECTIONS GENERIQUES ===== */
.section { padding: 56px 0; }
.section-or { background: var(--or); color: var(--bleu); }
.section-beige2 { background: var(--beige-2); }
.section-bleu { background: var(--bleu); color: var(--white); }
.section h2 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 640px;
}
.section-bleu h2 { color: var(--white); }
.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-bleu .section-eyebrow { color: var(--or); }
.section-or .section-eyebrow { color: var(--bleu); font-weight: 700; }
.section-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 32px;
  font-weight: 500;
}
.section-bleu .section-lead { color: rgba(255,255,255,0.78); }

/* ===== HISTOIRE ===== */
.histoire-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
}
.histoire-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
}
.histoire-card p:last-child { margin-bottom: 0; }
.histoire-card .accent { color: var(--orange); font-weight: 700; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bleu);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}
.final-cta h2 {
  margin: 0 auto 20px;
  max-width: 600px;
  color: var(--white);
}
.final-cta .cta-primary {
  width: auto;
  display: inline-flex;
  padding: 16px 32px;
}

/* ===== SUCCESS SCREEN ===== */
.optin-success {
  display: none;
  max-width: 420px;
  padding: 24px 22px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
}
.optin-success.is-visible { display: block; }
.optin-success-icon {
  width: 48px; height: 48px; margin-bottom: 14px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.optin-success h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; color: var(--bleu); font-family: 'Rethink Sans', sans-serif; }
.optin-success p { color: var(--text-muted); font-size: 14px; }

/* ===== CONFIRMATION PAGE SPECIFIC ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -14px; left: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin: 8px 0 10px; color: var(--bleu); font-family: 'Rethink Sans', sans-serif; }
.step-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.step-card .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--bleu);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700; font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}
.step-card .btn:hover { background: var(--bleu-dark); }
.step-card .btn.disabled { background: var(--text-light); pointer-events: none; }

/* ===== REPLAY PAGE ===== */
.replay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.replay-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.replay-card-head {
  padding: 18px 24px;
  background: var(--or);
  color: var(--bleu);
  display: flex; align-items: center; gap: 14px;
}
.replay-card-day {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.replay-card-day-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bleu-dark);
}
.replay-card-title { font-family: 'Rethink Sans', sans-serif; font-weight: 700; font-size: 18px; flex: 1; }
.replay-card-body { padding: 0; background: #000; aspect-ratio: 16/9; }
.replay-card-body iframe,
.replay-card-body video { width: 100%; height: 100%; border: 0; display: block; }
.replay-locked {
  padding: 60px 24px;
  text-align: center;
  background: var(--beige-2);
  color: var(--text-muted);
}
.replay-locked svg { width: 40px; height: 40px; color: var(--orange); margin: 0 auto 12px; }

.replay-closed {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}
.replay-closed h2 { color: var(--bleu); margin-bottom: 12px; }
.replay-closed p { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bleu-dark);
  color: rgba(255,255,255,0.7);
  padding: 30px 0 24px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.55;
}
.footer a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }

/* ===== DASHBOARD ===== */
.dash-shell {
  min-height: 100vh;
  background: var(--beige);
  padding: 30px 0;
}
.dash-head {
  background: var(--bleu);
  color: var(--white);
  padding: 18px 0;
  margin-bottom: 30px;
}
.dash-head .container { display: flex; align-items: center; justify-content: space-between; }
.dash-head h1 { font-family: 'Rethink Sans', sans-serif; font-size: 20px; font-weight: 800; }
.dash-head .badge {
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dash-tabs {
  display: flex; gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.dash-tab {
  padding: 12px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.dash-tab.is-active { color: var(--orange); border-color: var(--orange); }
.dash-panel { display: none; }
.dash-panel.is-active { display: block; }
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.dash-card h2 { font-family: 'Rethink Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--bleu); margin-bottom: 6px; }
.dash-card p.help { color: var(--text-muted); font-size: 13.5px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bleu);
}
.field input, .field textarea, .field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(223,122,50,0.10);
}
.field textarea { min-height: 90px; resize: vertical; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-help { font-size: 12px; color: var(--text-light); margin-top: -2px; }
.field-checkbox { flex-direction: row; align-items: center; gap: 10px; }
.field-checkbox input[type=checkbox] { width: 18px; height: 18px; }
.field-checkbox label { text-transform: none; letter-spacing: normal; font-size: 14px; font-weight: 600; color: var(--text); }

.dash-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 18px;
}
.btn-save {
  background: var(--orange);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
}
.btn-save:hover { background: var(--orange-dark); }
.btn-save:disabled { background: var(--text-light); cursor: not-allowed; }
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 14px 22px;
  background: var(--bleu);
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast.is-error { background: #b93a3a; }

/* ===== VARIANTE LONGUE — composants spécifiques ===== */

/* Sub-headline en 3 colonnes "Sans ... Sans ... Sans ..." */
.sub-3cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 26px;
  max-width: 560px;
}
.sub-3cols-cell {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.sub-3cols-cell strong {
  display: block;
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sub-3cols-cell span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bleu);
  line-height: 1.3;
}

/* Crédit nom sous le form */
.hero-name-credit {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--bleu);
  margin-top: 14px;
}
.hero-name-credit span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}

/* CTA double ligne (texte principal + sous-texte) */
.cta-stack {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  width: 100%;
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-cta);
  transition: background .15s ease, transform .15s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.cta-stack:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-stack .cta-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-stack .cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* Section histoire avec photo à droite */
.story-section { padding: 60px 0; background: var(--white); }
.story-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse { grid-template-columns: 1fr 1.3fr; }
.story-row.reverse .story-text { order: 2; }
.story-row.reverse .story-photo { order: 1; }
.story-intro {
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--bleu);
  margin-bottom: 18px;
}
.story-intro em {
  font-style: normal;
  background: var(--or);
  color: var(--bleu);
  padding: 0 6px;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.story-text p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}
.story-text p strong { color: var(--bleu); font-weight: 700; }
.story-text .accent { color: var(--orange); font-weight: 700; }
.story-bullets {
  list-style: none;
  margin-top: 12px;
}
.story-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.story-bullets li:last-child { border-bottom: none; }
.story-bullets li svg {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--orange); margin-top: 2px;
}
.story-photo {
  position: relative;
}
.story-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-photo-caption {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* Transition phrase entre sections */
.story-transition {
  text-align: center;
  padding: 36px 0 12px;
  background: var(--white);
}
.story-transition h2 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--bleu);
  max-width: 640px;
  margin: 0 auto;
}
.story-transition em {
  font-style: normal;
  background: var(--or);
  padding: 0 6px;
  border-radius: 3px;
}

/* "Ce que tu vas apprendre" — 4 cards */
.learn-section { padding: 64px 0; background: var(--beige-2); }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.learn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.learn-card h3 {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--bleu);
  margin-bottom: 10px;
  line-height: 1.25;
}
.learn-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.learn-card p:last-child { margin-bottom: 0; }
.learn-card .accent { color: var(--orange); font-weight: 700; }

/* Bonus live — section dorée */
.bonus-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--or) 0%, var(--or-light) 100%);
}
.bonus-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.bonus-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.bonus-icon svg { width: 28px; height: 28px; }
.bonus-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.bonus-card h2 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--bleu);
  margin: 0 auto 22px;
  max-width: 480px;
  line-height: 1.2;
}
.bonus-bullets {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 24px;
}
.bonus-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.bonus-bullets li:last-child { border-bottom: none; }
.bonus-bullets li svg {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--orange); margin-top: 1px;
}
.bonus-meta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 20px;
}
.bonus-meta svg { width: 14px; height: 14px; color: var(--orange); }

/* Footer disclaimer (variante longue) */
.footer-trademark {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 780px;
  margin: 14px auto 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-portrait { max-width: 280px; }
  .countdown-inner { gap: 16px; }
  .countdown-cell { padding: 8px 12px; min-width: 56px; }
  .countdown-cell strong { font-size: 20px; }
  .proof-inner { gap: 22px; }
  .proof-sep { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .field-grid-2 { grid-template-columns: 1fr; }
  .sub-3cols { grid-template-columns: 1fr; gap: 10px; }
  .story-row, .story-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .story-row.reverse .story-text { order: 2; }
  .story-row.reverse .story-photo { order: 1; }
  .learn-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: 26px; }
  .section { padding: 44px 0; }
  .topbar { font-size: 11.5px; }
  .cta-primary { padding: 14px 20px; font-size: 13.5px; }
  .countdown-label { font-size: 11px; flex-basis: 100%; text-align: center; }
}
