/* ══════════════════════════════════════════════
   Sales Page — Pack Découverte Peeling Profond aux Micro-Algues Bio™
   V2 — Optimisé UX/Conversion
   Fond BLANC dominant · Or = CTA · Noir = accents
   ══════════════════════════════════════════════ */

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #161616;
  --dark-border: #222222;
  --white: #FFFFFF;
  --cream: #F8F5F0;
  --sand: #F0ECE4;
  --border-light: #E5E0D8;
  --gold: #B8965A;
  --gold-light: #D4B88C;
  --gold-dim: rgba(184,150,90,0.1);
  --gold-border: rgba(184,150,90,0.3);
  --body: #FFFFFF;
  --text: #3A342E;
  --text-light: #6B6055;
  --text-dim: #9A9189;
  --radius: 4px;
  --radius-lg: 12px;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILS ─── */
.container { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
em { font-style: normal; }
strong { font-weight: 600; color: var(--black); }

/* ─── MARQUEE TOPBAR ─── */
.topbar {
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.topbar-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.topbar-item {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0 32px;
}
.topbar-item span { color: var(--gold-light); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HEADER / NAV ─── */
.site-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  position: relative;
  z-index: 90;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.logo span {
  font-weight: 300;
  color: var(--text-dim);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 95;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 28px 20px;
  border-top: 1px solid var(--border-light);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── CTA BUTTON ─── */
.btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn:hover { background: #222; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn--outline:hover { background: rgba(0,0,0,0.05); }
.btn--gold {
  background: #246c3b;
  color: var(--white);
  border: 2px solid #1a5430;
  box-shadow: 0 0 0 3px rgba(36,108,59,0.15), 0 6px 20px rgba(36,108,59,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn--gold svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.btn--gold:hover {
  background: #1a5430;
  box-shadow: 0 0 0 4px rgba(36,108,59,0.25), 0 10px 28px rgba(36,108,59,0.35);
  transform: translateY(-2px);
}
.btn--large { font-size: 14px; padding: 22px 56px; }
.btn--cta-final {
  font-size: 16px;
  padding: 24px 64px;
  max-width: 480px;
  width: 100%;
}
.btn-sub { font-size: 12px; color: var(--text-dim); margin-top: 14px; text-align: center; }

/* ─── SECTIONS ─── */
section { padding: 80px 0; }

.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--garantie { background: var(--sand); padding: 0; }

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 28px;
}
h2 em { color: var(--gold); font-style: normal; }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

p { margin-bottom: 18px; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ─── HERO — Split layout ─── */
.hero {
  background: var(--white);
  color: var(--text);
  padding: 28px 28px 36px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split {
  display: grid;
  /* ── RATIO TEXTE/IMAGE HERO ── ajuster ici (ex: 70% texte / 30% image) */
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  /* ── TAILLE TITRE HERO ── ajuster ici : min, preferred, max */
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: #5C554E;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  max-width: 520px;
}
.hero-bullets li {
  font-size: 16px;
  color: #5C554E;
  line-height: 1.6;
  padding: 4px 0 4px 24px;
  position: relative;
}
.hero-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 420px;
}
.placeholder-icon { font-size: 48px; opacity: 0.6; }
.placeholder-text { font-size: 14px; color: var(--text-light); font-weight: 500; margin: 0; }
.placeholder-sub { font-size: 12px; color: var(--text-dim); margin: 0; text-align: center; line-height: 1.5; }

.hero-proof {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid #E5E0D8;
  padding-top: 20px;
  margin-top: 8px;
}
.hero-proof-item { display: flex; flex-direction: column; gap: 4px; }
.hero-proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-proof-label { font-size: 11px; color: #8A8279; letter-spacing: 0.06em; }

/* ─── STORY ─── */
.story-letter {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: normal;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.story-with-image {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* ─── BODY LISTS (global) ─── */
.container > ul {
  padding-left: 28px;
  margin: 24px 0;
}
.container > ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 6px;
}

/* ─── BLOCKQUOTE (global) ─── */
blockquote {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  margin: 28px 0;
  padding: 24px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1.6;
  color: var(--black);
}

.story-pull {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.story-pull p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  font-style: normal;
}

/* ─── SELMA CARD ─── */
.selma-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.selma-card .avatar-circle {
  width: 64px;
  height: 64px;
  font-size: 26px;
  flex-shrink: 0;
}
.selma-card--large {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
  padding: 40px;
  margin-top: 24px;
  background: var(--white);
  border: 2px solid var(--border-light);
}
.selma-photo { flex-shrink: 0; }
.photo-placeholder--selma {
  width: 200px;
  aspect-ratio: 3/4;
  margin: 0;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}
.selma-body { display: flex; flex-direction: column; gap: 0; }
.selma-greeting {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 8px;
}
.selma-role {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.selma-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 12px;
}
.selma-text:last-child { margin-bottom: 0; }

/* ─── BANDE AUTORITÉ MARQUES ─── */
.logo-bar {
  padding: 14px 0;
  background: var(--sand);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.logo-bar-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-align: center;
  margin: 0 0 10px;
}
.logo-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px 32px;
}
.logo-brand {
  color: var(--text);
  opacity: 0.55;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.logo-brand:hover {
  opacity: 0.9;
}

/* ─── MIRROR CARD ─── */
.mirror-card {
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 32px 0;
  transition: border-color 0.3s;
}
.mirror-card:hover { border-color: var(--gold); }
.mirror-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 500;
}
.avatar-info { display: flex; flex-direction: column; gap: 2px; }
.avatar-name { font-weight: 500; font-size: 15px; color: var(--black); }
.avatar-detail { font-size: 13px; color: var(--text-dim); }
.mirror-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: normal;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  color: #7A6530;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid var(--gold-border);
}
.result-pill::before { content: '\2191'; font-size: 14px; color: var(--gold); }

/* ─── SCIENCE ─── */
.data-callout {
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.data-callout p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: normal;
  line-height: 1.5;
  color: var(--gold);
  margin-bottom: 8px;
}
.data-callout cite { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }

.actifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.actif-card {
  border: 1px solid var(--border-light);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.3s;
}
.actif-card:hover { border-color: var(--gold); }
.actif-icon { font-size: 28px; margin-bottom: 12px; }
.actif-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}
.actif-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ─── PROTOCOLES ─── */
.protocoles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.protocole-card {
  border: 1px solid var(--border-light);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.protocole-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.protocole-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
}
.protocole-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--gold-border);
}
.protocole-card h3 { font-size: 20px; margin-bottom: 10px; }
.protocole-card p { font-size: 14px; color: var(--text-light); }
.protocole-compat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.compat-badge {
  font-size: 11px;
  background: var(--cream);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}
.section--sand .compat-badge { background: var(--white); }
.section--cream .compat-badge { background: var(--white); }

/* Adapt components in colored sections */
.section--sand blockquote { background: var(--white); }
.section--cream blockquote { background: var(--white); }
.section--sand .cycle-box { background: var(--white); border-color: var(--border-light); }
.section--sand .selma-card { background: var(--white); }
.section--sand .mirror-card { background: var(--white); }
.section--sand .roi-table td { border-bottom-color: rgba(0,0,0,0.08); }
.section--sand .roi-callout { background: var(--white); }
.section--sand .comparison-chart { background: var(--white); }
.section--sand .roi-visual { background: var(--white); }
.section--cream .ca-chart-box { background: var(--white); }

/* Testimonial inline — white cards for contrast on any background */
.testimonial-inline { background: var(--white); }

/* First bonus card — more prominent */
.bonus-card--urgent:first-child {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(184,150,90,0.15);
}

/* ─── BEFORE/AFTER PHOTOS ─── */
.ba-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.ba-photo-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-photo { position: relative; }
.photo-placeholder--ba {
  aspect-ratio: 3/4;
  margin: 0;
  padding: 20px;
  border: none;
  border-radius: 0;
  background: #E8E2DA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.photo-placeholder--ba-after {
  background: linear-gradient(135deg, #E8E2DA 0%, #DDD5C8 100%);
}
.ba-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.ba-label--before { background: rgba(139,58,58,0.15); color: #8B3A3A; }
.ba-label--after { background: rgba(184,150,90,0.2); color: #7A6530; }
.ba-caption {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin: 0;
}

/* ─── TESTIMONIALS INLINE ─── */
.testimonials-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.testimonial-inline {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 22px;
  border-left: 3px solid var(--gold);
}
.testimonial-inline blockquote {
  font-style: normal;
  font-family: 'Inter', -apple-system, sans-serif;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.testimonial-inline cite {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* ─── BEFORE/AFTER TABLE ─── */
.ba-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.ba-th {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
}
.ba-th--before {
  background: rgba(192,70,70,0.08);
  color: #B0413E;
  width: 50%;
}
.ba-th--after {
  background: rgba(34,110,55,0.08);
  color: #1B6B35;
  width: 50%;
  border-left: 1px solid var(--border-light);
}
.ba-td {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.ba-table tbody tr:last-child .ba-td { border-bottom: none; }
.ba-td--before {
  color: var(--text-dim);
  background: rgba(139,58,58,0.03);
}
.ba-td--after {
  color: var(--text);
  background: rgba(46,120,68,0.03);
  border-left: 1px solid var(--border-light);
}
.ba-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  text-decoration: none;
}
.ba-icon--no {
  background: rgba(176,65,62,0.15);
  color: #B0413E;
}
.ba-icon--yes {
  background: rgba(27,107,53,0.15);
  color: #1B6B35;
}

/* ─── FEATURED TESTIMONIAL ─── */
.testimonial-featured {
  background: var(--sand);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  padding: 44px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  pointer-events: none;
}
.testimonial-featured blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: normal;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
}
.testimonial-featured blockquote em { color: var(--gold); font-style: normal; font-weight: 500; }
.featured-author { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.featured-author-info { display: flex; flex-direction: column; gap: 2px; }
.featured-author-name { color: var(--black); font-size: 15px; font-weight: 600; }
.featured-author-detail { color: var(--text-dim); font-size: 13px; }
.testimonial-featured .avatar-circle { background: var(--gold); color: var(--white); }

/* ─── PARCOURS CLIENTE — responsive ─── */
.parcours-box {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 28px 0;
  border: 1px solid var(--border-light);
}
.parcours-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--black);
  text-align: center;
}
.parcours-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.parcours-step {
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 180px;
}
.parcours-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
  font-weight: 700;
}
.parcours-step-circle--gold { background: var(--gold); color: var(--white); }
.parcours-step-circle--star { background: linear-gradient(135deg, #8B6F3A 0%, #C9A55C 100%); color: var(--white); border: 2px solid var(--gold-light); box-shadow: 0 0 0 4px rgba(184,150,90,0.15); }
.parcours-step-name { font-weight: 600; font-size: 14px; color: var(--black); margin: 0 0 4px; }
.parcours-step-desc { font-size: 12px; color: var(--text-dim); margin: 0 0 6px; }
.parcours-step-amount { font-size: 18px; font-weight: 700; color: var(--gold); margin: 0; }
.parcours-step-amount--big { font-size: 22px; }
.parcours-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 24px;
  padding-top: 20px;
}
.parcours-total {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}
.parcours-total-item { text-align: center; }
.parcours-total-label { font-size: 12px; color: var(--text-dim); margin: 0 0 4px; }
.parcours-total-value { font-size: 28px; font-weight: 700; color: var(--black); margin: 0; line-height: 1.2; }
.parcours-total-value--gold { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1.2; }
.parcours-total-arrow { font-size: 28px; color: var(--gold); line-height: 1.2; margin-bottom: 4px; }

/* ─── STACK TABLE ─── */
.stack-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.stack-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}
.stack-table tr:last-child td { border-bottom: none; }
.check { color: var(--gold); font-size: 16px; padding-right: 6px; }
.stack-table .value { text-align: right; color: var(--text-dim); white-space: nowrap; }
.stack-thumb {
  width: 56px;
  padding: 10px 0 10px 16px !important;
  vertical-align: middle;
}
.thumb-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0.7;
}
.item-name { color: var(--black); }
.item-desc { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ─── STACK GRID (product cards with images) ─── */
.stack-grid {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stack-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stack-card-img {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.stack-card-body {
  flex: 1;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stack-card-body .item-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
}
.item-benefit {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.stack-card-body .stack-card-value {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
}
.stack-guide-icon {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
/* ── Pricing Summary Card ── */
.stack-pricing-summary {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 48px;
  gap: 0;
}
.pricing-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin: 0 0 10px;
  max-width: 540px;
}
.pricing-summary-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 32px;
}
.pricing-block-normal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.pricing-col-price {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}
.pricing-col-price--struck {
  color: #c0392b;
  text-decoration: line-through;
}
.pricing-col-price--gold {
  color: var(--gold);
  font-size: 36px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
}
.pricing-divider::before,
.pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.pricing-divider-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
}
.pricing-block-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-savings-badge {
  display: inline-block;
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
  border: none;
}
.pricing-scarcity {
  font-size: 13px;
  color: var(--text-dim);
  font-style: normal;
  margin: 0 0 20px;
  max-width: 420px;
}
.pricing-cta-hint {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 12px 0 24px;
}
.pricing-cta-btn {
  font-size: 20px;
  font-weight: 700;
  padding: 22px 64px;
  width: 100%;
  max-width: 520px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 700px) {
  .stack-pricing-summary {
    padding: 32px 24px;
  }
  .pricing-comparison {
    flex-direction: column;
    gap: 12px;
  }
  .pricing-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }
  .pricing-col-price {
    font-size: 44px;
  }
}

@media (max-width: 700px) {
  .stack-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .stack-card-img {
    width: 160px;
    height: 160px;
  }
  .stack-guide-icon {
    width: 160px;
    height: 160px;
    font-size: 40px;
  }
}


/* ─── BONUS CARD THUMBNAIL ─── */
.bonus-card-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.7;
  margin-bottom: 14px;
  overflow: hidden;
}
.bonus-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── URGENCE INLINE ─── */
.urgence-inline {
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 8px 0 24px;
  font-size: 14px;
}
.urgence-inline p { color: rgba(255,255,255,0.8); margin: 0; }
.urgence-inline strong { color: var(--gold-light); }

/* ─── BONUS ─── */
.bonus-highlight {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 16px 0 24px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.bonus-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.bonus-card-title {
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 15px;
}
.bonus-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ─── SCIENCE SIMPLIFIED ─── */
.science-simple {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 24px 0 32px;
}
.science-analogy {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: normal;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}
.science-key {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

/* ─── COUNTDOWN + BONUS URGENCE ─── */
.section--bonus {
  background: var(--white);
  padding: 80px 0;
  border-top: 3px solid var(--gold);
}
.countdown-box {
  background: var(--sand);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 8px 0 28px;
}
.countdown-date {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.countdown-date strong { color: var(--black); font-weight: 700; }
.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
}
.countdown-item { text-align: center; }
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.countdown-label { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.countdown-sep { font-size: 48px; color: var(--gold); line-height: 1; }
.countdown-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
.countdown-note strong { color: var(--black); }

.bonus-card--urgent {
  border-color: var(--gold-border);
  position: relative;
}
.bonus-card--urgent::before {
  content: 'BONUS';
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 10px;
}
.bonus-card-value {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ─── ROI TABLE ─── */
.roi-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roi-table th {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
}
.roi-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text);
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table .highlight td { background: var(--gold-dim); color: var(--black); font-weight: 500; }
.roi-table .roi-val { color: var(--gold); font-weight: 600; }

.roi-callout {
  background: var(--sand);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-top: 28px;
  border-radius: var(--radius-lg);
}

/* ─── PRICE BOX ─── */
.price-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 520px;
  margin: 24px auto;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(184,150,90,0.15);
  text-align: left;
}
.price-box__group-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 10px;
}
.price-box__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}
.price-box__row:last-of-type {
  border-bottom: none;
}
.price-box__item {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.price-box__val {
  font-size: 14px;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-box__row--bonus .price-box__item {
  color: var(--gold);
  font-weight: 600;
}
.price-box__row--bonus .price-box__val {
  color: var(--gold);
}
.price-box__total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--text-dim);
}
.price-box__total-line span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.price-box__total-struck {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: #B0413E;
  text-decoration: line-through;
  font-weight: 600;
}
.price-box__final {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}
.price-box__big-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}
.price-box__sub {
  font-size: 13px;
  color: var(--text-dim);
  margin: 8px 0 0;
}
.price-box__timer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.price-box__timer .countdown-wrap { justify-content: center; }
.price-box__timer .countdown-num { font-size: 40px; }
.price-box__timer .countdown-sep { font-size: 36px; }
@media (max-width: 600px) {
  .price-box { padding: 24px 20px; }
  .price-box__item { font-size: 13px; }
  .price-box__big-price { font-size: 34px; }
  .price-box__timer .countdown-num { font-size: 32px; }
  .price-box__timer .countdown-sep { font-size: 28px; }
}

/* ─── GARANTIE ─── */
.garantie-block {
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.garantie-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  background: var(--gold-dim);
}
.garantie-badge {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  transform: rotate(-12deg);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.12));
}
.garantie-badge-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #5A3221;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #fffcf7 0%, #f6efe4 100%);
}
.garantie-badge-outer::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px solid #5A3221;
}
.garantie-badge-outer::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed #5A3221;
  opacity: .35;
}
.garantie-badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.garantie-badge-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -18px;
}
.garantie-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #3E1E0F;
  line-height: 1;
}
.garantie-badge-jours {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #3E1E0F;
}
.garantie-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
}
.garantie-block p { color: var(--text); font-size: 15px; line-height: 1.75; }

/* ─── FAQ ─── */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s;
}
.faq-chevron::before, .faq-chevron::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-chevron::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-chevron::after { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-chevron::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ─── URGENCE BAR ─── */
.urgence-bar {
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.urgence-bar strong { color: var(--gold-light); }

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--sand);
  padding: 80px 0;
  text-align: center;
}
.cta-checklist {
  list-style: none;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 40px;
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.cta-checklist li::before { content: '\2713'; color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* ─── PAYMENT BADGES ─── */
.payment-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.payment-badge {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.payment-badge:hover { opacity: 1; }

.trust-ssl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── PHOTO PLACEHOLDERS ─── */
.photo-placeholder {
  background: var(--cream);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin: 28px 0;
  color: var(--text-dim);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.photo-placeholder--premium {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-color: var(--gold-border);
}
.photo-placeholder--landscape {
  aspect-ratio: 16/7;
  padding: 32px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}
.img-full {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 28px 0;
}
.img-showcase {
  margin: 28px 0;
  text-align: center;
  border: 5px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
}
.img-showcase img {
  width: 100%;
  display: block;
}
.img-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
  align-items: start;
}
.img-showcase-row .img-showcase {
  margin: 0;
}
.img-showcase-caption {
  padding: 14px 16px;
  margin: 0;
  font-size: 13px;
  color: var(--black);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-style: italic;
}

/* ─── PS ─── */
.ps-section {
  background: var(--cream);
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}
.ps-block {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.ps-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.ps-block p { font-family: 'Playfair Display', serif; font-size: 18px; font-style: normal; line-height: 1.65; color: var(--text); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  padding: 40px 28px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }

/* ─── SOURCES ─── */
.sources-section {
  background: var(--black);
  padding: 32px 0;
  border-top: 1px solid var(--dark-border);
}
.sources-section ol {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  padding-left: 20px;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,150,90,0.3);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 14px; color: rgba(255,255,255,0.7); }
.sticky-cta-text strong { color: var(--gold-light); }
.sticky-cta .btn { padding: 12px 28px; font-size: 12px; white-space: nowrap; }

/* ─── CYCLE BOX ─── */
.cycle-box {
  margin: 36px 0;
  padding: 32px 28px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.cycle-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 28px;
}
.cycle-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.cycle-step {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.cycle-step--danger { border-color: rgba(185,90,90,0.3); }
.cycle-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 14px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.cycle-step-num--gold { background: var(--gold); }
.cycle-step-num--gold-light { background: var(--gold-light); }
.cycle-step-num--danger { background: #8B3A3A; }
.cycle-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 6px;
}
.cycle-step-title--danger { color: #8B3A3A; }
.cycle-step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.cycle-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 300;
}

/* ─── SPIRAL STEPS (réactions réflexes) ─── */
.spiral-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.spiral-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(176,65,62,0.05);
  border: 1px solid rgba(176,65,62,0.15);
  border-left: 4px solid #B0413E;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.spiral-step:hover {
  background: rgba(176,65,62,0.08);
  border-color: rgba(176,65,62,0.3);
}
.spiral-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(176,65,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spiral-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
.spiral-text strong {
  color: #8B3A3A;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > .container > .hero-text > * { animation: fadeUp 0.8s ease both; }
.hero .hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero .hero-sub { animation-delay: 0.4s; }
.hero .hero-bullets { animation-delay: 0.4s; }
.hero .btn { animation-delay: 0.55s; }
.hero .hero-proof { animation-delay: 0.65s; }
.hero .hero-image { animation: fadeUp 1s ease 0.3s both; }

/* ─── GRAPHIQUES & CHARTS ─── */

/* Chart box commun */
.ca-chart-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px 24px;
  margin: 36px 0;
}

/* Comparison chart (barres panier moyen) */
.comparison-chart {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px 24px;
  margin: 36px 0;
}
.comparison-chart-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--black);
  text-align: center;
}
.comparison-bars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 48px;
}
.comparison-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100px;
}

/* ROI visual bar chart */
.roi-visual {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px 24px;
  margin: 36px 0;
}
.roi-visual-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--black);
  text-align: center;
}
.roi-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
}
.roi-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.roi-bar-label {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.roi-bar-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}
.roi-bar-value--invest { color: var(--text-dim); }
.roi-bar-value--ca { color: var(--gold); }
.roi-bar-block {
  border-radius: 6px 6px 0 0;
  width: 80px;
}
.roi-bar-block--invest {
  background: var(--sand);
  border: 1px solid var(--border-light);
}
.roi-bar-block--ca {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
}
.roi-multiplier {
  display: inline-block;
  margin: 20px auto 0;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 24px;
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-image-placeholder { max-width: 280px; aspect-ratio: 1/1; }
  .protocoles-grid, .actifs-grid, .img-showcase-row { grid-template-columns: 1fr; }
  .img-showcase-row { gap: 16px; }
  .testimonials-inline-grid { grid-template-columns: 1fr; }
  .ba-photos-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .ba-table, .ba-table thead, .ba-table tbody, .ba-table tr, .ba-table th, .ba-table td {
    display: block;
    width: 100%;
  }
  .ba-th--after, .ba-td--after { border-left: none; }
  .ba-th--before { border-bottom: 1px solid var(--border-light); }
  .ba-td--before { border-bottom: none; }
  .ba-table tbody tr { border-bottom: 1px solid var(--border-light); }
  .ba-table tbody tr:last-child { border-bottom: none; }
  .selma-card--large { grid-template-columns: 1fr; padding: 28px 22px; }
  .photo-placeholder--selma { width: 100%; max-width: 200px; margin: 0 auto; }
  .garantie-block { grid-template-columns: 1fr; padding: 28px 22px; justify-items: center; text-align: center; }
  .garantie-icon { width: 56px; height: 56px; font-size: 22px; }
  .garantie-badge { width: 130px; height: 130px; }
  .garantie-badge-number { font-size: 3rem; }
  .sticky-cta { flex-direction: column; gap: 10px; text-align: center; }
  .hero-proof { gap: 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 40px 20px 60px; }
  .testimonial-featured { padding: 28px 22px; }
  .mirror-card { padding: 24px 18px; }
  section { padding: 60px 0; }
  .cycle-steps { flex-direction: column; align-items: center; gap: 8px; }
  .cycle-arrow { transform: rotate(90deg); padding: 4px 0; }
  .parcours-steps { flex-direction: column; align-items: center; gap: 12px; }
  .parcours-step { width: 100%; max-width: 240px; }
  .parcours-arrow { transform: rotate(90deg); padding: 0; }
  .parcours-total { flex-direction: column; gap: 16px; }
  .parcours-total-arrow { transform: rotate(90deg); }
  .bonus-grid { grid-template-columns: 1fr; }
  .btn--large { padding: 18px 32px; font-size: 13px; }
  .btn--cta-final { padding: 20px 40px; font-size: 14px; }
  .comparison-bars { gap: 32px; }
  .comparison-bar { width: 80px; }
  .roi-bars { gap: 20px; }
  .roi-bar-block { width: 60px; }
  .ca-chart-box { padding: 20px 16px 16px; }
  .comparison-chart { padding: 24px 16px 16px; }
  .roi-visual { padding: 24px 16px 16px; }
}
@media (max-width: 480px) {
  .btn--large { padding: 16px 28px; font-size: 13px; }
  .container { padding: 0 20px; }
}
