/* ===== Méthode Léa — Design system ===== */
/* DA: ambre chaud / crème / teal profond / typographie Playfair + Inter */
:root {
  --cream-50:  #FDFAF4;
  --cream-100: #F7F0E2;
  --cream-200: #EDE1C8;
  --sand:      #D9C89A;
  --amber:     #C08A3A;
  --amber-soft:#F9EDDA;
  --teal:      #2D6A5E;
  --teal-light:#C6DDD8;
  --teal-dark: #1B4840;
  --teal-50:   #EAF3F1;
  --ink:       #1D1914;
  --ink-soft:  #5A4A35;
  --rust:      #B85A3A;
  --rust-soft: #F5E2DB;
  --white:     #FFFDF8;
  --shadow:    0 20px 48px -16px rgba(45, 30, 10, 0.16);
  --shadow-sm: 0 6px 20px -8px rgba(45, 30, 10, 0.12);
  --radius:    16px;
  --radius-lg: 28px;
  --container: 1180px;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--ink); margin: 0 0 .5em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--teal); }
h1 .h1-sub { display:block; font-size: .55em; font-family: var(--sans); font-weight: 500; color: var(--ink-soft); margin-top: .5em; line-height: 1.3; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h2 em { font-style: italic; color: var(--teal); }
h3 { font-size: 1.3rem; font-family: var(--sans); font-weight: 600; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 1em;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head h2 { max-width: 720px; margin: 0 auto; }
.section__head p { color: var(--ink-soft); max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 8px 24px -8px rgba(29, 74, 66, .45);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(29, 74, 66, .5); }
.btn--xl { padding: 20px 40px; font-size: 1.1rem; }
.btn--small { padding: 10px 20px; font-size: .9rem; }
.btn--ghost { background: transparent; color: var(--teal); border: 2px solid var(--teal); box-shadow: none; }
.btn--ghost:hover { background: var(--teal-50); color: var(--teal-dark); }

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  font-size: .88rem;
  padding: 9px 16px;
  letter-spacing: .01em;
}
.topbar strong { color: var(--sand); }
.topbar .paw { opacity: .8; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--cream-100);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px -4px rgba(45,30,10,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: baseline; gap: 8px; color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: -.01em; }
.brand__name em { font-style: italic; color: var(--teal); }
.brand__tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 700; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 96px;
  background: linear-gradient(155deg, var(--cream-100) 0%, var(--teal-50) 60%, var(--cream-50) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.hero__copy .lead { font-size: 1.1rem; color: var(--ink-soft); margin: 1em 0 1.6em; line-height: 1.7; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 2.2em; }
.hero__bullets li {
  padding: 8px 0 8px 32px;
  color: var(--ink-soft);
  position: relative;
  border-bottom: 1px solid var(--cream-200);
  font-size: 1rem;
}
.hero__bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.hero__trust {
  margin-top: 20px; font-size: .9rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.hero__trust-avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--teal-light);
}
.hero__media { position: relative; }
.hero__media img:first-child {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--white); border-radius: 50%;
  padding: 14px; box-shadow: var(--shadow);
}
.hero__floating-card {
  position: absolute; top: 28px; right: -24px;
  background: var(--white); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow);
  font-size: .88rem; max-width: 180px;
  border-left: 4px solid var(--teal);
}
.hero__floating-card strong { display: block; color: var(--teal-dark); font-size: 1.1rem; margin-bottom: 2px; }

/* ── Trust strip ─────────────────────────────────────────── */
.trust { background: var(--teal-dark); padding: 36px 0; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust__inner strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--sand); }
.trust__inner span { font-size: .88rem; color: var(--teal-light); }

/* ── Cost reveal ─────────────────────────────────────────── */
.cost { background: var(--rust-soft); }
.cost__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow);
  max-width: 740px; margin: 0 auto;
  border-top: 6px solid var(--rust);
}
.cost__calc { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.cost__line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: var(--cream-50);
  border-radius: 10px; font-size: 1.02rem;
}
.cost__line span { color: var(--ink-soft); }
.cost__line strong { color: var(--rust); font-family: var(--serif); font-size: 1.2rem; }
.cost__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; background: var(--rust); border-radius: 12px;
  color: var(--white); margin-top: 8px;
}
.cost__total span { font-size: 1rem; font-weight: 600; }
.cost__total strong { font-family: var(--serif); font-size: 2rem; }
.cost__verdict { margin-top: 28px; font-size: 1.05rem; color: var(--ink-soft); font-style: italic; line-height: 1.7; }

/* ── Pain ────────────────────────────────────────────────── */
.pain__list { list-style: none; padding: 0; margin: 0; }
.pain__list li {
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--cream-200);
  position: relative; color: var(--ink-soft);
  font-size: 1.04rem; line-height: 1.6;
}
.pain__list li::before {
  content: "✗"; position: absolute; left: 6px;
  color: var(--rust); font-size: 1.1rem; font-weight: 700; line-height: 1.7;
}
.pain__verdict {
  margin-top: 32px; font-size: 1.08rem; font-style: italic;
  color: var(--ink); border-left: 4px solid var(--teal);
  padding-left: 22px; line-height: 1.7;
}

/* ── Promise ─────────────────────────────────────────────── */
.promise { background: var(--teal-50); }
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.promise__card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); border-bottom: 4px solid var(--teal-light);
  transition: transform .2s, box-shadow .2s;
}
.promise__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promise__icon { font-size: 2.8rem; display: block; margin-bottom: 18px; }
.promise__card h3 { color: var(--teal-dark); margin-bottom: .5em; }
.promise__card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ── Author ──────────────────────────────────────────────── */
.author__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.author__photo { position: relative; }
.author__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 1; object-fit: cover; }
.author__photo-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal-dark); color: var(--white);
  border-radius: 14px; padding: 16px 20px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow);
  text-align: center; line-height: 1.4;
}
.author__photo-badge strong { display: block; font-size: 1.8rem; font-family: var(--serif); color: var(--sand); }
.author__copy p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 1.2em; }
.author__signature { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--teal); margin-top: 1.5em; }
.author__cred {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; margin-bottom: 28px;
}
.author__cred-pill {
  background: var(--teal-50); color: var(--teal-dark);
  border-radius: 999px; padding: 6px 14px;
  font-size: .82rem; font-weight: 600; border: 1px solid var(--teal-light);
}

/* ── Method ──────────────────────────────────────────────── */
.method { background: var(--cream-100); }
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method__card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
  border-top: 5px solid var(--teal-light);
  position: relative;
}
.method__card:nth-child(2) { border-top-color: var(--teal); }
.method__card:nth-child(3) { border-top-color: var(--amber); }
.method__num { font-family: var(--serif); font-size: 3rem; color: var(--cream-200); display: block; margin-bottom: 12px; line-height: 1; font-weight: 700; }
.method__card h3 { color: var(--teal-dark); margin-bottom: .6em; }
.method__card p { color: var(--ink-soft); margin: 0; }
.method__card em { color: var(--teal); font-style: normal; font-weight: 700; }

/* ── Timeline / Programme ────────────────────────────────── */
.weeks { list-style: none; padding: 0; margin: 0; }
.weeks li {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 22px 24px; border-radius: var(--radius);
  margin-bottom: 8px; background: var(--white);
  box-shadow: var(--shadow-sm); transition: transform .15s;
}
.weeks li:hover { transform: translateX(6px); }
.week__num {
  font-family: var(--serif); font-size: 1.3rem; color: var(--teal);
  font-weight: 700; flex-shrink: 0; min-width: 70px;
}
.week__label { font-weight: 600; color: var(--ink); margin-bottom: 4px; font-size: 1.03rem; }
.week__desc { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ── Testimonials ────────────────────────────────────────── */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border-left: 4px solid var(--teal-light); position: relative;
}
.testi__quote { font-size: 3rem; color: var(--teal-light); position: absolute; top: 12px; right: 20px; font-family: var(--serif); line-height: 1; }
.testi__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi__head img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-light); }
.testi__head strong { display: block; color: var(--ink); }
.testi__head span { font-size: .82rem; color: var(--ink-soft); }
.testi p { color: var(--ink-soft); font-style: italic; margin: 0 0 16px; font-size: .97rem; line-height: 1.7; }
.stars { color: #E8A825; font-size: .9rem; }

/* ── Offer ───────────────────────────────────────────────── */
.offer { background: linear-gradient(180deg, var(--cream-50) 0%, var(--teal-50) 100%); }
.offer__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 980px; margin: 0 auto 48px;
}
.offer__card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 20px;
  align-items: center; box-shadow: var(--shadow);
}
.offer__card--main {
  grid-column: 1 / -1; padding: 36px;
  background: linear-gradient(135deg, var(--teal-50), var(--cream-100));
  border: 2px solid var(--teal-light);
}
.offer__card img { width: 110px; height: 110px; object-fit: contain; flex-shrink: 0; border-radius: 10px; }
.offer__card--main img { width: 180px; height: 180px; }
.offer__card h3 { margin-bottom: .4em; color: var(--teal-dark); }
.offer__card p { color: var(--ink-soft); margin: 0 0 .6em; font-size: .95rem; }
.offer__value { font-size: .85rem; color: var(--teal); font-weight: 700; }
.offer__value strong { color: var(--rust); }

.offer__total { text-align: center; margin: 40px 0 32px; }
.offer__total p { margin: .3em 0; color: var(--ink-soft); }
.offer__price { font-family: var(--serif); font-size: 1.2rem; }
.offer__price strong { font-size: 3.4rem; color: var(--teal); display: inline-block; vertical-align: middle; margin-left: 12px; }
.offer__sub { font-size: .92rem; color: var(--ink-soft); }

.offer__cta { max-width: 620px; margin: 0 auto; text-align: center; }
.offer__cta .btn { width: 100%; font-size: 1.12rem; padding: 22px 40px; }
.offer__bump {
  background: var(--amber-soft); border: 2px dashed var(--amber);
  border-radius: var(--radius); padding: 22px; margin: 24px 0; text-align: left;
}
.offer__bump label { display: flex; gap: 14px; cursor: pointer; align-items: flex-start; }
.offer__bump input[type=checkbox] { margin-top: 4px; transform: scale(1.4); accent-color: var(--teal); flex-shrink: 0; }
.offer__bump strong { display: block; margin-bottom: 6px; color: var(--ink); }
.offer__bump small { display: block; color: var(--ink-soft); margin-bottom: 8px; font-size: .9rem; }
.offer__bump em { display: block; color: var(--rust); font-style: normal; font-weight: 700; font-size: .88rem; }

.offer__pay { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 18px; }
.offer__pay small { font-size: .82rem; color: var(--ink-soft); text-align: left; }

/* ── Guarantee ───────────────────────────────────────────── */
.guarantee { background: var(--amber-soft); }
.guarantee__inner { display: flex; align-items: center; gap: 40px; }
.guarantee__inner img { flex-shrink: 0; }
.guarantee__inner p { color: var(--ink-soft); }
.guarantee__inner strong { color: var(--ink); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq__list details {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 26px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm); border-left: 4px solid transparent;
  transition: border-color .2s;
}
.faq__list details[open] { border-left-color: var(--teal); }
.faq__list summary {
  font-weight: 700; cursor: pointer; list-style: none;
  position: relative; padding-right: 34px; color: var(--ink);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem;
  color: var(--teal); transition: transform .2s;
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__list p { color: var(--ink-soft); margin: 14px 0 0; }

/* ── CTA Final ───────────────────────────────────────────── */
.cta-final { background: var(--teal-dark); color: var(--white); text-align: center; }
.cta-final h2 { color: var(--white); }
.cta-final p { color: var(--teal-light); font-size: 1.1rem; margin-bottom: 28px; }
.cta-final .btn { background: var(--sand); color: var(--ink); font-weight: 700; }
.cta-final .btn:hover { background: var(--amber-soft); color: var(--teal-dark); transform: translateY(-2px); }
.cta-final__sub { margin-top: 20px; font-size: .9rem; color: var(--teal-light); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--cream-200); padding: 52px 0 36px; }
.footer__inner { text-align: center; }
.footer nav { display: flex; gap: 24px; justify-content: center; margin: 18px 0; flex-wrap: wrap; }
.footer nav a { color: var(--cream-200); font-size: .9rem; }
.footer nav a:hover { color: var(--white); }
.footer__disclaimer { font-size: .78rem; color: #7a6845; max-width: 720px; margin: 16px auto 0; }

/* ── Badge garantie (inline SVG remplacement) ──────────────── */
.badge-garantie {
  width: 130px; height: 130px; flex-shrink: 0;
  background: var(--teal-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  box-shadow: 0 0 0 6px var(--teal-light);
  color: var(--white); padding: 16px;
}
.badge-garantie strong { font-family: var(--serif); font-size: 1.4rem; line-height: 1.1; }
.badge-garantie span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-light); margin-top: 4px; }

/* ── Sticky bar ──────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--teal-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(29,40,30,.3);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar span { font-size: .9rem; opacity: .8; }
.sticky-bar strong { color: var(--sand); font-size: 1.05rem; }

/* ── Diagnostic ──────────────────────────────────────────── */
.diagnostic { background: var(--cream-100); }
.diagnostic > .container > .eyebrow { display: block; text-align: center; }
.diagnostic > .container > h2 { text-align: center; }
.diag__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.diag__card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  border-top: 5px solid var(--teal-light);
  display: flex; flex-direction: column; gap: 10px;
}
.diag__card--ok  { border-top-color: var(--teal); }
.diag__card--warn { border-top-color: var(--amber); }
.diag__card--alert { border-top-color: var(--rust); }
.diag__icon { font-size: 2rem; }
.diag__card h3 { color: var(--teal-dark); margin: 0; }
.diag__desc { color: var(--ink-soft); font-size: .96rem; margin: 0; flex: 1; }
.diag__action {
  margin: 0; font-size: .92rem;
  background: var(--cream-100); border-radius: 8px;
  padding: 10px 14px; color: var(--ink-soft);
  border-left: 3px solid var(--teal);
}
.diag__action strong { color: var(--teal-dark); }
.diag__footnote {
  text-align: center; margin-top: 36px; font-style: italic;
  color: var(--ink-soft); font-size: 1.04rem;
  border-left: none; padding: 0;
}

/* ── Secrets (révélations) ───────────────────────────────── */
.secrets { background: var(--teal-dark); }
.secrets .eyebrow { color: var(--sand); display: block; text-align: center; margin-bottom: 12px; }
.secrets h2 { color: var(--white); text-align: center; margin-bottom: 40px; }
.secrets__list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.secrets__item {
  display: flex; gap: 28px; align-items: flex-start;
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 32px 36px; border-left: 4px solid var(--sand);
  transition: background .2s;
}
.secrets__item:hover { background: rgba(255,255,255,.1); }
.secrets__num {
  font-family: var(--serif); font-size: 2.8rem; color: var(--sand);
  font-weight: 700; flex-shrink: 0; line-height: 1; opacity: .5;
}
.secrets__item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .5em; }
.secrets__item p { color: var(--teal-light); margin: 0; font-size: .97rem; line-height: 1.7; }

/* ── Calculator ──────────────────────────────────────────── */
.calc-section { background: var(--cream-100); }
.calc-section > .container > .eyebrow { display: block; text-align: center; margin-bottom: 8px; }
.calc-section > .container > h2 { text-align: center; margin-bottom: 40px; }
.calc__card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.calc__inputs {
  padding: 44px 40px; background: var(--cream-50);
  border-right: 1px solid var(--cream-200);
  display: flex; flex-direction: column; gap: 32px;
}
.calc__field label {
  display: block; font-weight: 700; color: var(--ink);
  margin-bottom: 14px; font-size: 1rem;
}
.calc__slider-row { display: flex; align-items: center; gap: 16px; }
.calc__slider-row input[type=range] {
  flex: 1; accent-color: var(--teal);
  height: 6px; cursor: pointer;
}
.calc__slider-row output {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 700; color: var(--teal-dark);
  min-width: 80px; text-align: right;
}
.calc__results { padding: 44px 40px; display: flex; flex-direction: column; gap: 12px; }
.calc__result-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--cream-200);
  font-size: .96rem;
}
.calc__result-line span { color: var(--ink-soft); }
.calc__result-line strong { color: var(--ink); font-family: var(--serif); }
.calc__result-total {
  display: flex; justify-content: space-between; align-items: center;
  background: #B85A3A; border-radius: 10px;
  padding: 14px 18px; color: #fff; margin-top: 4px;
}
.calc__result-total span { font-weight: 600; }
.calc__result-total strong { font-family: var(--serif); font-size: 1.8rem; }
.calc__result-savings {
  background: #EAF3F1; border-radius: 12px;
  padding: 20px; text-align: center; margin-top: 8px;
  border: 2px solid #C6DDD8;
}
.calc__result-savings p { margin: 0 0 6px; font-size: .92rem; color: var(--ink-soft); }
.calc__result-savings small { font-size: .82rem; color: var(--ink-soft); }
.calc__big-saving {
  display: block; font-family: var(--serif); font-size: 2.8rem;
  font-weight: 700; color: var(--teal-dark); line-height: 1;
  margin: 4px 0;
}

/* ── Results strip ───────────────────────────────────────── */
.results-strip { background: var(--cream-100); }
.results__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.results__stat {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  box-shadow: var(--shadow-sm); border-bottom: 4px solid var(--teal);
}
.results__stat strong {
  display: block; font-family: var(--serif);
  font-size: 2.4rem; color: var(--teal-dark);
  margin-bottom: 10px; line-height: 1;
}
.results__stat span { font-size: .9rem; color: var(--ink-soft); line-height: 1.4; }

/* ── Timeline jour par jour ──────────────────────────────── */
.days { list-style: none; padding: 0; margin: 0; position: relative; }
.days::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: var(--teal-light); border-radius: 2px;
}
.day {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 20px 20px 20px 0; margin-bottom: 4px;
  position: relative;
  list-style: none;
  counter-increment: none;
}
.day__marker {
  font-family: var(--serif); font-weight: 700;
  font-size: 1rem; color: var(--white);
  background: var(--teal); border-radius: 50%;
  width: 56px; height: 56px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; z-index: 1;
  box-shadow: 0 0 0 4px var(--cream-50);
  transition: transform .2s;
}
.day:hover .day__marker { transform: scale(1.08); }
.day--milestone .day__marker {
  background: var(--amber); width: 64px; height: 64px;
  font-size: 1.05rem;
  box-shadow: 0 0 0 5px var(--amber-soft);
}
.day__content {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow-sm);
  flex: 1; border-left: 4px solid transparent;
  transition: border-color .2s, transform .15s;
}
.day:hover .day__content { border-left-color: var(--teal-light); transform: translateX(4px); }
.day--milestone .day__content { border-left-color: var(--amber); }
.day__content strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.day__content p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ── Bump card ───────────────────────────────────────────── */
.bump-card {
  background: var(--amber-soft);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 28px 32px; max-width: 620px;
  margin: 0 auto 24px; cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.bump-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.bump-card__header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px;
}
.bump-card__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  overflow: hidden;
  border: 0;
}
.bump-card__badge {
  display: inline-block; background: #C08A3A; color: #fff;
  font-size: .75rem; font-weight: 700; border-radius: 999px;
  padding: 3px 10px; margin-bottom: 6px;
  letter-spacing: .04em; text-transform: uppercase;
}
.bump-card__title {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin: 0; line-height: 1.3;
}
.bump-card__price-tag {
  display: inline-block; background: #2D6A5E;
  color: #fff; font-size: .85rem; font-weight: 700;
  border-radius: 999px; padding: 2px 10px;
  margin-left: 8px; vertical-align: middle;
}
.bump-card__body {
  color: var(--ink-soft); font-size: .96rem;
  margin: 0 0 18px; line-height: 1.65;
}
.bump-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.bump-card__label {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; font-weight: 700; color: var(--ink); font-size: .95rem;
}
.bump-card__checkbox-visual {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--teal); background: var(--white);
  flex-shrink: 0; position: relative; transition: background .15s;
}
.bump-card__checkbox-visual::after {
  content: '✓'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: var(--white); font-size: .85rem; font-weight: 900; display: none;
}
.bump-card.is-checked .bump-card__checkbox-visual {
  background: #2D6A5E;
  border-color: #2D6A5E;
}
.bump-card.is-checked .bump-card__checkbox-visual::after { display: block; }
.bump-card__savings {
  font-size: .82rem; color: var(--teal-dark); font-weight: 700;
  background: var(--teal-50); border-radius: 999px;
  padding: 4px 12px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid, .author__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { order: -1; }
  .hero__floating-card { display: none; }
  .promise__grid, .method__grid, .testi__grid { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .offer__grid { grid-template-columns: 1fr; }
  .offer__card--main { padding: 24px; }
  .guarantee__inner { flex-direction: column; text-align: center; }
  .author__photo-badge { right: -10px; bottom: -10px; }
  .diag__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: repeat(2,1fr); }
  .calc__card { grid-template-columns: 1fr; }
  .calc__inputs { border-right: none; border-bottom: 1px solid var(--cream-200); }
  .secrets__item { padding: 22px 24px; }
  .sticky-bar { gap: 10px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .topbar { font-size: .8rem; padding: 8px 12px; }
  .hero__badge { left: auto; right: -10px; bottom: -18px; }
  .hero__badge img { width: 80px; height: 80px; }
  .offer__card { flex-direction: column; text-align: center; }
  .offer__card img { width: 120px; height: 120px; }
  .offer__price strong { font-size: 2.8rem; }
  .results__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bump-card { padding: 20px; }
  .bump-card__footer { flex-direction: column; align-items: flex-start; }
  .days::before { left: 22px; }
  .day__marker { width: 44px; height: 44px; font-size: .85rem; }
  .day--milestone .day__marker { width: 52px; height: 52px; }
  .sticky-bar span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
