/* ═══════════════════════════════════════════════════════
   COACH OBÉSITÉ : Premium Design System v5.0
   
   Design Language: "Intimité Médicale"
   Inspiration: Headspace × Stripe × Apple Health
   
   Règle absolue : si une décision peut être meilleure,
   elle doit être meilleure. Aucun compromis.
═══════════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Palette : strict control */
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --cream:        #F4F3EF;
  --cream-2:      #EDECE8;

  --ink:          #0E1117;
  --ink-80:       rgba(14,17,23,0.80);
  --ink-60:       rgba(14,17,23,0.60);
  --ink-40:       rgba(14,17,23,0.40);
  --ink-12:       rgba(14,17,23,0.12);
  --ink-06:       rgba(14,17,23,0.06);
  --ink-03:       rgba(14,17,23,0.03);

  /* ink-40 is decorative-only (borders, dots, separators) : 2.6:1, fails AA for text.
     Use ink-60 (4.95:1, AA) for any muted TEXT. */

  --navy:         #1A2E4A;
  --navy-80:      rgba(26,46,74,0.80);

  --sage:         #6B9E94;
  --sage-dark:    #4A7B71;
  --sage-deep:    #2D5E54;
  --sage-light:   #EDF5F3;
  --sage-pale:    #F5FAF9;
  --sage-glow:    rgba(107,158,148,0.15);

  --blue:         #2B6CB0;
  --blue-light:   #EBF4FF;

  --rose:         #D97E8A;
  --rose-light:   #FDF2F4;

  --gold:         #C19A4C;
  --gold-deep:    #876C35; /* AA-safe variant of --gold for text/labels */
  --rose-deep:    #985861; /* AA-safe variant of --rose for text/labels */

  /* Typography */
  --f-serif: 'Instrument Serif', 'Georgia', serif;
  --f-sans:  'Geist', 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --t-hero:   clamp(2.75rem, 6.5vw, 5.75rem);
  --t-h1:     clamp(2.25rem, 5vw, 4.25rem);
  --t-h2:     clamp(1.875rem, 3.5vw, 3rem);
  --t-h3:     clamp(1.375rem, 2vw, 1.875rem);
  --t-h4:     1.25rem;
  --t-lg:     1.1875rem;
  --t-base:   1.0625rem;
  --t-sm:     0.9375rem;
  --t-xs:     0.8125rem;
  --t-2xs:    0.75rem;

  /* Spacing : 8px grid */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-7:  28px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;
  --sp-40: 160px;

  /* Sections */
  --section-v: var(--sp-40);
  --section-v-sm: var(--sp-24);

  /* Radius */
  --r-2:   2px;
  --r-4:   4px;
  --r-8:   8px;
  --r-12:  12px;
  --r-16:  16px;
  --r-20:  20px;
  --r-24:  24px;
  --r-32:  32px;
  --r-pill: 9999px;

  /* Elevation : subtle system */
  --e-xs:  0 1px 3px var(--ink-06);
  --e-sm:  0 2px 8px var(--ink-06), 0 1px 2px var(--ink-03);
  --e-md:  0 4px 16px var(--ink-06), 0 1px 4px var(--ink-03);
  --e-lg:  0 8px 32px rgba(14,17,23,0.07), 0 2px 8px var(--ink-03);
  --e-xl:  0 16px 48px rgba(14,17,23,0.08), 0 4px 16px rgba(14,17,23,0.04);
  --e-sage: 0 8px 28px rgba(107,158,148,0.22);
  --e-sage-sm: 0 4px 14px rgba(107,158,148,0.18);

  /* Motion : physical feel */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-decel:   cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:     140ms;
  --dur-base:     240ms;
  --dur-slow:     420ms;
  --dur-enter:    560ms;

  /* Layout */
  --nav-h:     68px;
  --max-w:     1160px;
  --max-text:  680px;
  --max-card:  920px;
}

/* ═══ RESET ═══ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: var(--r-4);
}

::selection {
  background: var(--sage-light);
  color: var(--sage-deep);
}

/* ═══ LAYOUT ═══ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.wrap--text { max-width: var(--max-text); margin: 0 auto; padding: 0 var(--sp-6); }
.wrap--card { max-width: var(--max-card); margin: 0 auto; padding: 0 var(--sp-6); }
.wrap--narrow { max-width: 520px; margin: 0 auto; padding: 0 var(--sp-6); }

.section {
  padding: var(--section-v) 0;
  position: relative;
}

.section--sm { padding: var(--section-v-sm) 0; }

/* Section backgrounds */
.bg-white  { background: var(--white); }
.bg-off    { background: var(--off-white); }
.bg-cream  { background: var(--cream); }
.bg-sage   { background: var(--sage-pale); }
.bg-dark   { background: var(--navy); }
.bg-ink    { background: var(--ink); }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;

  /* Glassmorphism léger */
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;

  transition:
    border-color var(--dur-base) var(--ease-smooth),
    background var(--dur-base) var(--ease-smooth),
    box-shadow var(--dur-base);
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.95);
  border-color: var(--ink-06);
  box-shadow: 0 1px 0 var(--ink-06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--dur-fast);
}
.nav__logo:hover { opacity: 0.72; }

.nav__logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--f-serif);
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 28px; }
}

.grid-2col { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) {
  .grid-2col { grid-template-columns: 1fr; }
}

/* ── Avis Google : carrousel infini premium ── */
.reviews-summary {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--t-sm); color: var(--ink-60);
}
.reviews-summary__stars { color: #F5A623; font-size: var(--t-lg); letter-spacing: 2px; }
.reviews-summary__score { font-weight: 700; color: var(--ink); font-size: var(--t-lg); }
.reviews-summary__count { color: var(--ink-40); }

.reviews-track-wrap {
  overflow: hidden; margin-top: var(--sp-10);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.reviews-track {
  display: flex; gap: var(--sp-5); width: max-content;
  animation: reviewsScroll 50s linear infinite;
  will-change: transform;
}
.reviews-track-wrap:hover .reviews-track,
.reviews-track-wrap:focus-within .reviews-track { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 auto;
  width: min(340px, 82vw);
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-20);
  padding: var(--sp-6);
  box-shadow: var(--e-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.review-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--e-lg); }

.review-card__head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-pale); object-fit: cover; flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: var(--t-sm); color: var(--ink); }
.review-card__meta { font-size: var(--t-xs); color: var(--ink-40); }
.review-card__stars { color: #F5A623; letter-spacing: 2px; margin-bottom: var(--sp-3); }
.review-card__text {
  font-size: var(--t-sm); color: var(--ink-60); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: var(--sp-4);
}
.review-card__badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--t-xs); font-weight: 600; color: var(--sage-dark);
  background: var(--sage-pale); padding: 4px 10px; border-radius: var(--r-pill);
}

@media (max-width: 640px) {
  .reviews-track { animation: none; }
  .reviews-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; scrollbar-width: none; }
  .reviews-track-wrap::-webkit-scrollbar { display: none; }
  .review-card { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; overflow-x: auto; scroll-snap-type: x proximity; }
  .review-card { scroll-snap-align: start; }
}

/* ── Bloc de réassurance ── */
.reassurance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}
@media (max-width: 900px) { .reassurance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reassurance-grid { grid-template-columns: 1fr; } }

.reassurance-item {
  padding: var(--sp-6);
  background: var(--off-white);
  border-radius: var(--r-16);
  border: 1px solid var(--ink-06);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.reassurance-item:hover { transform: translateY(-3px); box-shadow: var(--e-md); }
.reassurance-item__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-12);
  background: var(--sage-pale); color: var(--sage-dark);
  margin-bottom: var(--sp-4);
}
.reassurance-item__title { font-weight: 700; font-size: var(--t-base); margin-bottom: var(--sp-2); color: var(--ink); }
.reassurance-item__text { font-size: var(--t-sm); color: var(--ink-60); line-height: 1.6; }

/* Version compacte : 3 items en ligne, avant un CTA */
.reassurance-compact {
  display: flex; flex-wrap: wrap; gap: var(--sp-6); justify-content: center;
  margin-top: var(--sp-8); padding: var(--sp-6); background: var(--off-white); border-radius: var(--r-16);
}
.reassurance-compact__item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--t-sm); color: var(--ink-60); flex: 1 1 220px; max-width: 280px;
}
.reassurance-compact__item svg { flex-shrink: 0; color: var(--sage-dark); }

.reassurance-quote {
  max-width: 680px; margin: var(--sp-14) auto 0; text-align: center;
}
.reassurance-quote p {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.625rem); line-height: 1.5;
  color: var(--ink); margin-bottom: var(--sp-4);
}
.reassurance-quote span { font-size: var(--t-sm); color: var(--ink-60); font-weight: 600; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Bamboo : assistant IA ── */
#bamboo-root { position: fixed; z-index: 9999; bottom: var(--sp-5); right: var(--sp-5); }

.bamboo-toggle {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--blue));
  border: none; box-shadow: var(--e-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; cursor: pointer;
  transition: transform var(--dur-base) var(--ease-spring);
  padding: 4px; overflow: hidden;
}
.bamboo-toggle__icon-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.bamboo-toggle__badge { position: absolute; top: 2px; right: 2px; width: 13px; height: 13px; border-radius: 50%; background: var(--rose-deep); border: 2px solid var(--white); }
.bamboo-toggle:hover { transform: scale(1.06); }
.bamboo-toggle:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 3px; }
.bamboo-toggle--intro { animation: bambooIntro 900ms var(--ease-spring); }
@keyframes bambooIntro {
  0% { transform: scale(0.6) rotate(-8deg); }
  50% { transform: scale(1.12) rotate(6deg); }
  100% { transform: scale(1) rotate(0); }
}

.bamboo-panel {
  position: absolute; bottom: 72px; right: 0;
  width: min(360px, 88vw); max-height: 70vh;
  background: var(--white); border-radius: var(--r-20);
  box-shadow: var(--e-lg); border: 1px solid var(--ink-06);
  display: flex; flex-direction: column; overflow: hidden;
  animation: bambooPanelIn 220ms var(--ease-out);
}
@keyframes bambooPanelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.bamboo-panel__header {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--sage-pale); border-bottom: 1px solid var(--ink-06);
}
.bamboo-panel__avatar { font-size: 22px; }
.bamboo-panel__avatar-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.bamboo-panel__name { font-weight: 700; font-size: var(--t-sm); color: var(--ink); }
.bamboo-panel__sub { font-size: var(--t-xs); color: var(--ink-60); }
.bamboo-panel__close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--ink-40); width: 32px; height: 32px; border-radius: 50%;
}
.bamboo-panel__close:hover { background: var(--ink-06); }
.bamboo-panel__close:focus-visible { outline: 2px solid var(--sage-dark); }

.bamboo-messages {
  flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-3); max-height: 320px;
}
.bamboo-msg { max-width: 85%; padding: 10px 14px; border-radius: var(--r-16); font-size: var(--t-sm); line-height: 1.5; }
.bamboo-msg--bot { background: var(--sage-pale); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.bamboo-msg--user { background: var(--blue); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.bamboo-msg--typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.bamboo-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-40); animation: bambooTyping 1.2s infinite ease-in-out; }
.bamboo-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.bamboo-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bambooTyping { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

.bamboo-suggestions { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0 var(--sp-5) var(--sp-3); max-height: 180px; overflow-y: auto; flex-shrink: 0; }
.bamboo-suggestion {
  font-size: var(--t-xs); padding: 7px 12px; border-radius: var(--r-pill);
  background: var(--off-white); border: 1px solid var(--ink-12); color: var(--ink-60);
  cursor: pointer; transition: border-color var(--dur-fast), color var(--dur-fast);
}
.bamboo-suggestion:hover { border-color: var(--sage); color: var(--sage-dark); }

.bamboo-form { display: flex; gap: var(--sp-2); padding: var(--sp-3) var(--sp-5); border-top: 1px solid var(--ink-06); }
.bamboo-form input {
  flex: 1; padding: 10px 14px; border-radius: var(--r-pill); border: 1.5px solid var(--ink-12);
  font-size: 16px; min-height: 44px;
}
.bamboo-form input:focus { outline: none; border-color: var(--sage); }
.bamboo-form button {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--sage); color: var(--white); font-size: 18px; cursor: pointer; flex-shrink: 0;
}
.bamboo-form button:hover { background: var(--sage-dark); }
.bamboo-form button:focus-visible { outline: 2px solid var(--sage-dark); outline-offset: 2px; }

.bamboo-quick-bilan {
  display: block; text-align: center; margin: 0 var(--sp-5) var(--sp-3);
  padding: 9px 14px; border-radius: var(--r-pill);
  background: var(--sage-pale); color: var(--sage-deep);
  font-size: var(--t-xs); font-weight: 600; text-decoration: none;
  border: 1px solid rgba(107,158,148,0.25);
  transition: background var(--dur-base) var(--ease-out);
}
.bamboo-quick-bilan:hover { background: var(--sage-light); }
.bamboo-disclaimer { font-size: 11px; color: var(--ink-40); text-align: center; padding: 0 var(--sp-5) var(--sp-3); }

.bamboo-nudge {
  position: absolute; bottom: 72px; right: 0; width: 240px;
  background: var(--white); border: 1px solid var(--ink-06); border-radius: var(--r-16);
  box-shadow: var(--e-md); padding: var(--sp-3) var(--sp-4); font-size: var(--t-xs); color: var(--ink-60);
  animation: bambooPanelIn 300ms var(--ease-out);
}

@media (max-width: 480px) {
  #bamboo-root { right: var(--sp-4); }
  .bamboo-panel { width: 92vw; right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .bamboo-toggle--intro { animation: none; }
  .bamboo-panel, .bamboo-nudge { animation: none; }
  .bamboo-msg--typing span { animation: none; opacity: 0.7; }
}

.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--sage);
  z-index: 1000;
  transition: width 100ms linear;
}

.field-check {
  position: absolute;
  right: 14px;
  top: 41px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-base) var(--ease-spring), transform var(--dur-base) var(--ease-spring);
  pointer-events: none;
}
.field-check.is-valid {
  opacity: 1;
  transform: scale(1);
}

.section--manifeste {
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--off-white) 100%);
}

.pullquote--framed {
  padding-left: var(--sp-8);
  border-left: 3px solid var(--sage);
}
@media (max-width: 640px) {
  .pullquote--framed { padding-left: var(--sp-5); border-left-width: 2px; }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-8);
  font-size: var(--t-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus {
  top: var(--sp-4);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-60);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
  position: relative;
  padding: var(--sp-2) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--sage);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--sage-dark); }

/* Nav CTA */
.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

/* Mobile toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-8);
  cursor: pointer;
}

.nav__burger-line {
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform var(--dur-slow) var(--ease-out),
    opacity var(--dur-base);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--white);
  flex-direction: column;
  padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-6) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  gap: 0;
}
.nav__drawer.is-open { transform: translateX(0); }

.nav__drawer-link {
  font-family: var(--f-serif);
  font-size: var(--t-h3);
  color: var(--ink);
  border-bottom: 1px solid var(--ink-06);
  padding: var(--sp-5) 0;
  transition: color var(--dur-fast);
}
.nav__drawer-link:hover { color: var(--sage); }
.nav__drawer-cta { margin-top: auto; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease-smooth),
    background var(--dur-fast),
    border-color var(--dur-fast),
    color var(--dur-fast),
    opacity var(--dur-fast);
}

.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0.5px) scale(0.98); }

/* Sage : action principale */
.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: var(--e-sage);
}

/* Outline : discret */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-12);
}
.btn-outline:hover {
  border-color: var(--ink-40);
  box-shadow: var(--e-sm);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--ink-60);
  border-color: transparent;
  padding: 12px 20px;
}
.btn-ghost:hover {
  color: var(--ink);
  background: var(--ink-03);
}

/* Outline sage */
.btn-outline-sage {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-outline-sage:hover {
  background: var(--sage-pale);
  box-shadow: var(--e-sage-sm);
}

/* Sizes */
.btn-sm  { padding: 10px 18px; font-size: var(--t-xs); min-height: 44px; }
.btn-lg  { padding: 17px 36px; font-size: var(--t-base); letter-spacing: -0.015em; }
.btn-xl  {
  padding: 19px 44px;
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
  border-radius: var(--r-20);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-20);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Fond organique : très discret */
.hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: orbFadeIn var(--dur-enter) var(--ease-out) forwards;
}

.hero__orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(107,158,148,0.12), transparent 70%);
  top: -80px; right: -100px;
  animation-delay: 300ms;
}

.hero__orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(43,108,176,0.06), transparent 70%);
  bottom: 0; left: -80px;
  animation-delay: 500ms;
}

@keyframes orbFadeIn {
  to { opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 6px 14px 6px 8px;
  background: var(--sage-pale);
  border: 1px solid rgba(107,158,148,0.2);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: slideUp var(--dur-enter) var(--ease-out) 100ms forwards;
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107,158,148,0.2);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(107,158,148,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(107,158,148,0.08); }
}

.hero__eyebrow-text {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* Headline */
.hero__h1 {
  font-family: var(--f-serif);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: slideUp var(--dur-enter) var(--ease-out) 200ms forwards;
}

.hero__h1-em {
  font-style: italic;
  color: var(--sage);
}

/* Sub */
.hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 560px;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: slideUp var(--dur-enter) var(--ease-out) 300ms forwards;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: slideUp var(--dur-enter) var(--ease-out) 380ms forwards;
}

/* Trust */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp var(--dur-enter) var(--ease-out) 450ms forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  color: var(--ink-60);
  font-weight: 500;
}

.hero__trust-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-12);
  flex-shrink: 0;
}

.hero__stars {
  color: var(--gold-deep);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ TYPOGRAPHY SYSTEM ═══ */
.tag {
  display: inline-block;
  font-size: var(--t-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--sp-5);
}

.tag--blue { color: var(--blue); }
.tag--muted { color: var(--ink-60); }

.display {
  font-family: var(--f-serif);
  font-size: var(--t-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.display em { font-style: italic; color: var(--sage); }
.display strong { font-weight: 400; color: var(--navy); }

.display--xl {
  font-family: var(--f-serif);
  font-size: var(--t-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.display--sm {
  font-family: var(--f-serif);
  font-size: var(--t-h3);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: var(--t-lg);
  line-height: 1.75;
  color: var(--ink-60);
}

.body {
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--ink-60);
}

.body-sm {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-60);
}

/* Section header */
.sh {
  margin-bottom: var(--sp-16);
}

.sh--center { text-align: center; }
.sh--center .body-lg { max-width: 540px; margin: var(--sp-5) auto 0; }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  border-top: 1px solid var(--ink-06);
  border-bottom: 1px solid var(--ink-06);
  background: var(--off-white);
  padding: var(--sp-5) var(--sp-6);
}

.trust-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--ink-60);
}

.trust-bar__sep {
  width: 1px;
  height: 16px;
  background: var(--ink-12);
  flex-shrink: 0;
}

/* ═══ STAT STRIP ═══ */
.stat-strip {
  background: var(--navy);
}

.stat-strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-strip__item {
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-strip__item:last-child { border-right: none; }

.stat-strip__num {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.stat-strip__label {
  font-size: var(--t-2xs);
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══ PULLQUOTE ═══ */
.pullquote {
  padding: var(--sp-10) var(--sp-12) var(--sp-10) var(--sp-10);
  background: var(--sage-pale);
  border-left: 2px solid var(--sage);
  border-radius: 0 var(--r-16) var(--r-16) 0;
  position: relative;
}

.pullquote__q {
  font-family: var(--f-serif);
  font-size: var(--t-h3);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}

.pullquote__source {
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══ PROBLEM GRID ═══ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.problem-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-20);
  transition:
    border-color var(--dur-base) var(--ease-smooth),
    box-shadow var(--dur-base) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-out);
}

.problem-card:hover {
  border-color: rgba(107,158,148,0.25);
  box-shadow: var(--e-md);
  transform: translateY(-3px);
}

.problem-card__num {
  font-family: var(--f-serif);
  font-size: 2rem;
  color: var(--ink-06);
  line-height: 1;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
  transition: color var(--dur-base);
}

.problem-card:hover .problem-card__num {
  color: var(--sage-light);
}

.problem-card__title {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.problem-card__body {
  font-size: var(--t-xs);
  line-height: 1.65;
  color: var(--ink-60);
}

/* ═══ METHOD CARDS ═══ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.method-card {
  padding: var(--sp-10) var(--sp-8);
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-24);
  transition:
    box-shadow var(--dur-base) var(--ease-smooth),
    transform var(--dur-slow) var(--ease-out),
    border-color var(--dur-base);
}

.method-card:hover {
  box-shadow: var(--e-lg);
  transform: translateY(-4px);
  border-color: rgba(107,158,148,0.2);
}

.method-card__icon {
  width: 48px; height: 48px;
  background: var(--sage-pale);
  border-radius: var(--r-12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--sp-7);
  transition: transform var(--dur-base) var(--ease-spring);
}

.method-card:hover .method-card__icon {
  transform: scale(1.08) rotate(-2deg);
}

.method-card__title {
  font-family: var(--f-serif);
  font-size: var(--t-h4);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

.method-card__body {
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--ink-60);
}

/* ═══ COMPARE ═══ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-24);
  overflow: hidden;
  border: 1px solid var(--ink-06);
  box-shadow: var(--e-xl);
}

.compare__col {
  padding: var(--sp-12) var(--sp-10);
}

.compare__col--before {
  background: var(--cream);
  border-right: 1px solid var(--ink-06);
}

.compare__col--after {
  background: var(--navy);
}

.compare__label {
  font-size: var(--t-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-8);
}

.compare__col--before .compare__label { color: var(--ink-60); }
.compare__col--after  .compare__label { color: rgba(255,255,255,0.3); }

.compare__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid;
  font-size: var(--t-sm);
  line-height: 1.55;
}

.compare__col--before .compare__item {
  border-color: var(--ink-06);
  color: var(--ink-60);
}

.compare__col--after .compare__item {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
}

.compare__item:last-child { border-bottom: none; }

.compare__ic { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.compare__ic--after { color: var(--sage-dark); }

/* ═══ BENEFIT GRID ═══ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-20);
  padding: var(--sp-7);
  text-align: center;
  transition:
    transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-base),
    border-color var(--dur-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--e-md);
}

.benefit-card__icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-4);
  display: block;
  transition: transform var(--dur-base) var(--ease-spring);
}
.benefit-card:hover .benefit-card__icon {
  transform: translateY(-2px);
}

.benefit-card__text {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.benefit-card--become {
  background: var(--sage-pale);
  border-color: rgba(107,158,148,0.15);
}

.benefit-card--become:hover {
  border-color: rgba(107,158,148,0.3);
  box-shadow: var(--e-sage-sm);
}

/* ═══ BIO ═══ */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-20);
  align-items: center;
}

.bio__text p {
  font-size: var(--t-base);
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: var(--sp-6);
}

.bio__text p:last-child { margin-bottom: 0; }

.bio__sig {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 2.25rem;
  color: var(--sage);
  display: block;
  margin-top: var(--sp-10);
}

.bio__role {
  font-size: var(--t-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: block;
  margin-top: var(--sp-2);
}

.bio__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-32);
  background: linear-gradient(145deg, var(--sage-pale), rgba(43,108,176,0.06));
  border: 1px solid var(--ink-06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio__photo-placeholder {
  font-size: 4.5rem;
  opacity: 0.2;
}

.bio__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ═══ FUNNEL ═══ */
.funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-24);
  overflow: hidden;
}

.funnel__step {
  padding: var(--sp-10) var(--sp-7);
  text-align: center;
  border-right: 1px solid var(--ink-06);
  background: var(--white);
  transition: background var(--dur-base);
  position: relative;
}

.funnel__step:last-child { border-right: none; }
.funnel__step:hover { background: var(--sage-pale); }

.funnel__step-num {
  font-family: var(--f-serif);
  font-size: 1.75rem;
  color: var(--ink-06);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-4);
  transition: color var(--dur-base);
}

.funnel__step:hover .funnel__step-num {
  color: var(--sage-light);
}

.funnel__step-title {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}

.funnel__step-body {
  font-size: var(--t-xs);
  color: var(--ink-60);
  line-height: 1.55;
}

/* ═══ OBJECTIONS ═══ */
.objection-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.objection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-20);
  padding: var(--sp-7);
  align-items: start;
  transition:
    border-color var(--dur-base),
    box-shadow var(--dur-base);
}

.objection:hover {
  border-color: rgba(107,158,148,0.2);
  box-shadow: var(--e-sm);
}

.objection__q {
  font-style: italic;
  color: var(--ink-60);
  font-size: var(--t-sm);
  line-height: 1.7;
}

.objection__q::before {
  content: '"';
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--sage);
  line-height: 0;
  vertical-align: -6px;
  margin-right: 2px;
}

.objection__a {
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--ink);
  padding-left: var(--sp-6);
  border-left: 2px solid var(--sage);
}

/* ═══ FAQ ═══ */
.faq-list {
  border-top: 1px solid var(--ink-06);
}

.faq-item {
  border-bottom: 1px solid var(--ink-06);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-7) 0;
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  cursor: pointer;
  font-family: var(--f-sans);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}

.faq-btn:hover { color: var(--sage-dark); }

.faq-ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1.5px solid var(--ink-12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--sage);
  transition:
    transform var(--dur-base) var(--ease-out),
    background var(--dur-fast),
    border-color var(--dur-fast);
}

.faq-item.is-open .faq-ic {
  transform: rotate(45deg);
  background: var(--sage-pale);
  border-color: var(--sage);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-decel);
}

.faq-panel__inner {
  padding: 0 0 var(--sp-7);
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.8;
  max-width: 680px;
}

.faq-panel__inner a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══ IMC CALCULATOR ═══ */
.imc-card {
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-32);
  padding: var(--sp-12) var(--sp-12);
  box-shadow: var(--e-lg);
  max-width: 540px;
  margin: 0 auto;
}

.imc-card__title {
  font-family: var(--f-serif);
  font-size: var(--t-h3);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.imc-card__sub {
  font-size: var(--t-sm);
  color: var(--ink-60);
  margin-bottom: var(--sp-8);
}

.imc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.field-label {
  display: block;
  font-size: var(--t-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: var(--sp-2);
}

.field-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--r-12);
  font-size: var(--t-base);
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--off-white);
  outline: none;
  transition:
    border-color var(--dur-fast),
    background var(--dur-fast),
    box-shadow var(--dur-fast);
}

.field-input:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107,158,148,0.12);
}

.imc-result {
  display: none;
  margin-top: var(--sp-7);
  padding: var(--sp-7);
  background: var(--sage-pale);
  border-radius: var(--r-16);
  border: 1px solid rgba(107,158,148,0.15);
}

.imc-result__num {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  color: var(--sage-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.imc-result__cat {
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--ink);
  margin: var(--sp-2) 0 var(--sp-4);
  letter-spacing: -0.01em;
}

.imc-result__body {
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

/* ═══ CTA SECTION ═══ */
.cta-sec {
  background: var(--navy);
  padding: var(--section-v) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-sec__orb--1 {
  width: 400px; height: 400px;
  background: rgba(107,158,148,0.15);
  top: -100px; left: -80px;
}

.cta-sec__orb--2 {
  width: 300px; height: 300px;
  background: rgba(43,108,176,0.12);
  bottom: -60px; right: -60px;
}

.cta-sec__inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.cta-sec__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 6px 14px;
  background: rgba(107,158,148,0.12);
  border: 1px solid rgba(107,158,148,0.25);
  border-radius: var(--r-pill);
  font-size: var(--t-2xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-8);
}

.cta-sec__badge-dot {
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulseDot 2.4s ease-in-out infinite;
}

.cta-sec__title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}

.cta-sec__body {
  font-size: var(--t-base);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.cta-sec__meta {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.28);
  margin-top: var(--sp-6);
}

/* ═══ HIGHLIGHT ═══ */
.highlight {
  padding: var(--sp-6) var(--sp-8);
  background: var(--blue-light);
  border-left: 2.5px solid var(--blue);
  border-radius: 0 var(--r-12) var(--r-12) 0;
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.75;
}

.highlight--sage {
  background: var(--sage-pale);
  border-left-color: var(--sage);
}

.highlight a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ═══ TARGET LIST ═══ */
.target-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.target-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--t-base);
  color: var(--ink-60);
  line-height: 1.6;
}

.target-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ═══ FORM ═══ */
.form-guide {
  background: var(--navy);
  border-radius: var(--r-32);
  padding: var(--sp-12) var(--sp-10);
  max-width: 460px;
  margin: 0 auto;
}

.form-guide__title {
  font-family: var(--f-serif);
  font-size: var(--t-h3);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.form-guide__body {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.field-input--dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.field-input--dark::placeholder { color: rgba(255,255,255,0.3); }

.field-input--dark:focus {
  border-color: var(--sage);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(107,158,148,0.15);
}

.form-guarantee {
  font-size: var(--t-2xs);
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: var(--sp-5);
  line-height: 1.6;
}

/* ═══ BLOG CARDS ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--ink-06);
  border-radius: var(--r-24);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-base),
    border-color var(--dur-base);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--e-lg);
  border-color: rgba(107,158,148,0.2);
}

.blog-card__thumb {
  height: 176px;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card__thumb-blob {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(107,158,148,0.2);
  filter: blur(40px);
  top: -30px; right: -30px;
}

.blog-card__thumb-icon {
  position: relative;
  z-index: 1;
}

.blog-card__body { padding: var(--sp-6); flex: 1; }

.blog-card__cat {
  font-size: var(--t-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: var(--sp-3);
  display: block;
}

.blog-card__title {
  font-family: var(--f-serif);
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.blog-card__excerpt {
  font-size: var(--t-xs);
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.blog-card__read {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--dur-fast);
}

.blog-card:hover .blog-card__read { gap: var(--sp-4); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: var(--sp-20) 0 var(--sp-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--sp-10);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer__logo-img { width: 30px; height: 30px; }

.footer__logo-text {
  font-family: var(--f-serif);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
}

.footer__desc {
  font-size: var(--t-sm);
  line-height: 1.75;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
}

.footer__social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--dur-fast),
    background var(--dur-fast);
}

.footer__social-link:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

.footer__col-title {
  font-size: var(--t-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast);
}

.footer__link:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer__copy { font-size: var(--t-xs); }
.footer__disclaimer { font-size: var(--t-xs); max-width: 360px; text-align: right; line-height: 1.6; }

/* ═══ STICKY CTA MOBILE ═══ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: var(--sp-4) var(--sp-5);
  padding-bottom: calc(var(--sp-4) + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--ink-06);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__row {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.sticky-cta__text { flex: 1; }

.sticky-cta__text strong {
  display: block;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1px;
}

.sticky-cta__text span {
  font-size: var(--t-xs);
  color: var(--ink-60);
}

/* ═══ ARTICLE ═══ */
.article-hero {
  padding: calc(var(--nav-h) + var(--sp-14)) 0 var(--sp-14);
  background: var(--white);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--t-xs);
  color: var(--ink-60);
  margin-bottom: var(--sp-7);
  font-weight: 500;
}

.article-cat {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
}

.article-headline {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 820px;
}

.article-intro {
  font-size: var(--t-lg);
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 680px;
  margin-top: var(--sp-6);
}

.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { font-family: var(--f-serif); font-size: var(--t-h3); margin: var(--sp-12) 0 var(--sp-5); letter-spacing: -0.02em; }
.article-body h3 { font-size: var(--t-h4); font-weight: 600; margin: var(--sp-10) 0 var(--sp-4); letter-spacing: -0.01em; }
.article-body p { font-size: var(--t-base); color: var(--ink-60); line-height: 1.85; margin-bottom: var(--sp-6); }
.article-body ul, .article-body ol { margin: var(--sp-6) 0; padding-left: var(--sp-7); }
.article-body li { font-size: var(--t-base); color: var(--ink-60); line-height: 1.75; margin-bottom: var(--sp-3); }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 2px; }
.article-body .highlight { margin: var(--sp-10) 0; }

.article-plan {
  background: var(--sage-pale);
  border: 1px solid rgba(107,158,148,0.15);
  border-radius: var(--r-16);
  padding: var(--sp-7);
  margin: var(--sp-10) 0;
}

.article-plan h2 {
  font-size: var(--t-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: var(--sp-5);
}

.article-plan ol { padding-left: var(--sp-5); }
.article-plan ol li { font-size: var(--t-sm); color: var(--ink); font-weight: 600; line-height: 1.6; margin-bottom: var(--sp-3); list-style: decimal; }
.article-plan ol li span { display: block; font-weight: 400; color: var(--ink-60); font-size: var(--t-xs); }

/* ═══ LEGAL ═══ */
.legal-body h2 { font-size: var(--t-h4); font-weight: 600; margin: var(--sp-10) 0 var(--sp-4); letter-spacing: -0.01em; }
.legal-body p, .legal-body li { font-size: var(--t-sm); color: var(--ink-60); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-body a { color: var(--sage-dark); text-decoration: underline; }

/* ═══ 404 ═══ */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-8);
}
.error-page__num { font-family: var(--f-serif); font-size: clamp(6rem,20vw,12rem); color: var(--ink-06); line-height: 1; }
.error-page__title { font-family: var(--f-serif); font-size: var(--t-h2); margin-bottom: var(--sp-5); letter-spacing: -0.02em; }
.error-page__body { font-size: var(--t-base); color: var(--ink-60); margin-bottom: var(--sp-10); }

/* ═══ SCROLL REVEAL ═══ */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur-enter) var(--ease-out),
    transform var(--dur-enter) var(--ease-out);
}

.fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-d1 { transition-delay: 60ms; }
.fade-d2 { transition-delay: 120ms; }
.fade-d3 { transition-delay: 180ms; }
.fade-d4 { transition-delay: 240ms; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  :root { --section-v: var(--sp-24); }
  .problem-grid  { grid-template-columns: repeat(2,1fr); }
  .benefit-grid  { grid-template-columns: repeat(2,1fr); }
  .bio-layout    { grid-template-columns: 1fr; }
  .bio__photo    { aspect-ratio: 3/4; max-height: 460px; }
  .footer__top   { grid-template-columns: 1fr 1fr; }
  .blog-grid     { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-v:    var(--sp-16);
    --section-v-sm: var(--sp-12);
  }

  /* Nav mobile */
  .nav__links,
  .nav__cta .btn-ghost,
  .nav__cta .btn-outline,
  .nav__cta .btn--outline,
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + var(--sp-10));
    min-height: auto;
    padding-bottom: var(--sp-14);
  }

  /* Grids */
  .method-grid { grid-template-columns: 1fr; }
  .compare     { grid-template-columns: 1fr; }
  .objection   { grid-template-columns: 1fr; }
  .objection__a { border-left: none; padding-left: 0; border-top: 2px solid var(--sage); padding-top: var(--sp-5); }
  .funnel { grid-template-columns: 1fr 1fr; }
  .imc-fields { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Sticky CTA */
  .sticky-cta { display: block; }

  /* Bamboo : remonter la bulle pour ne pas chevaucher la barre CTA collante */
  #bamboo-root { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }

  /* Stat strip */
  .stat-strip__items { grid-template-columns: repeat(2,1fr); }
  .stat-strip__item:nth-child(2) { border-right: none; }

  /* Trust bar */
  .trust-bar__items { gap: var(--sp-5); }
  .trust-bar__sep { display: none; }
}

@media (max-width: 560px) {
  .problem-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .stat-strip__items { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-strip__item:last-child { border-bottom: none; }
  .funnel { grid-template-columns: 1fr; }
  .funnel__step { border-right: none; border-bottom: 1px solid var(--ink-06); }
  .funnel__step:last-child { border-bottom: none; }
}

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

/* ═══════════════════════════════════════════════════════
   COMPATIBILITY LAYER
   Certaines pages (méthode, à-propos, blog, légal, articles)
   ont été livrées avec une nomenclature de tokens/classes
   différente de la v5. Cette couche fait le pont pour que
   ces pages s'affichent correctement sans réécriture du HTML.
═══════════════════════════════════════════════════════ */
:root {
  --c-blue: var(--blue);
  --c-blue-dim: var(--blue-light);
  --c-border: var(--ink-06);
  --c-ink: var(--ink);
  --c-ink-2: var(--navy);
  --c-muted: var(--ink-60);
  --c-rose: var(--rose-deep);
  --c-rose-dim: var(--rose-light);
  --c-sage: var(--sage);
  --c-sage-dark: var(--sage-dark);
  --c-sage-dim: var(--sage-light);
  --c-subtle: var(--ink-60);
  --c-surface: var(--white);
  --c-text: var(--ink);
  --f-display: var(--f-serif);
  --r-2xl: var(--r-24);
  --r-lg:  var(--r-16);
  --r-xl:  var(--r-20);
  --s-2:  var(--sp-2);
  --s-3:  var(--sp-3);
  --s-4:  var(--sp-4);
  --s-5:  var(--sp-5);
  --s-6:  var(--sp-6);
  --s-8:  var(--sp-8);
  --s-10: var(--sp-10);
  --s-12: var(--sp-12);
  --s-16: var(--sp-16);
  --s-20: var(--sp-20);
  --shadow-lg: var(--e-lg);
  --text-2xl:  var(--t-h3);
  --text-4xl:  var(--t-h2);
  --text-5xl:  var(--t-h1);
  --text-base: var(--t-base);
  --text-lg:   var(--t-lg);
  --text-sm:   var(--t-sm);
  --text-xs:   var(--t-xs);
}

.container       { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.container--text { width: 100%; max-width: var(--max-text); margin: 0 auto; padding: 0 var(--sp-6); }

.btn--sage, .btn--rose {
  background: var(--sage); color: var(--white); border: 1.5px solid var(--sage);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 14px 28px; font-size: var(--t-sm); font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast), background var(--dur-fast);
}
.btn--sage:hover, .btn--rose:hover { background: var(--sage-dark); border-color: var(--sage-dark); box-shadow: var(--e-sage); transform: translateY(-1.5px); }

.btn--outline {
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink-12);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 14px 28px; font-size: var(--t-sm); font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.btn--outline:hover { border-color: var(--ink-40); box-shadow: var(--e-sm); transform: translateY(-1.5px); }

.btn--outline-white {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 14px 28px; font-size: var(--t-sm); font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.btn--outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn--dark {
  background: var(--ink); color: var(--white); border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 14px 28px; font-size: var(--t-sm); font-weight: 600; letter-spacing: -0.01em;
  border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.btn--dark:hover { opacity: 0.85; transform: translateY(-1.5px); }

.btn--sm { padding: 10px 18px !important; font-size: var(--t-xs) !important; }
.btn--lg { padding: 17px 36px !important; font-size: var(--t-base) !important; }
.btn--xl { padding: 19px 44px !important; font-size: var(--t-lg) !important; border-radius: var(--r-20) !important; }

.eyebrow {
  display: inline-block; font-size: var(--t-2xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: var(--sp-5);
}
.eyebrow--sage { color: var(--sage-dark); }
.eyebrow--blue { color: var(--blue); }
.eyebrow--rose { color: var(--rose-deep); }
.eyebrow--white { color: rgba(255,255,255,0.7); }

.hero-light {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  background: var(--white);
}
.hero-light__blob {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0;
}
.hero-light__blob--1 { width: 480px; height: 480px; top: -100px; right: -80px; background: radial-gradient(circle, rgba(107,158,148,0.14), transparent 70%); }
.hero-light__blob--2 { width: 320px; height: 320px; bottom: -60px; left: -80px; background: radial-gradient(circle, rgba(43,108,176,0.07), transparent 70%); }
.hero-light .container { position: relative; z-index: 1; }

.section-header { margin-bottom: var(--sp-16); }
.section-header--center { text-align: center; }
.section-header--center .lead { max-width: 540px; margin: var(--sp-5) auto 0; }

.lead { font-size: var(--t-lg); line-height: 1.75; color: var(--ink-60); }

.nav--light { background: rgba(255,255,255,0.82); }
.nav__logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); border-radius: var(--r-8); cursor: pointer; }
.nav__toggle-line { width: 20px; height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base); }
@media (max-width: 768px) { .nav__toggle { display: flex; } }

.display-sm {
  font-family: var(--f-serif); font-size: var(--t-h3); font-weight: 400;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--ink);
}

.pullquote__text {
  font-family: var(--f-serif); font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink);
}

.problem-card__text, .method-card__text {
  font-size: var(--t-base); color: var(--ink-60); line-height: 1.7;
}

.target-item__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

.renaissance-badge {
  align-items: center; gap: var(--sp-3); padding: 6px 14px 6px 8px;
  background: var(--sage-pale); border: 1px solid rgba(107,158,148,0.2); border-radius: var(--r-pill);
}
.renaissance-badge__dot {
  width: 6px; height: 6px; background: var(--sage); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107,158,148,0.2);
}

.cta-sec__blob { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-sec__blob--1 { width: 480px; height: 480px; top: -120px; right: -100px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); }
.cta-sec__blob--2 { width: 320px; height: 320px; bottom: -100px; left: -60px; background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%); }
.cta-sec__sub { font-size: var(--t-lg); color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 520px; margin: var(--sp-5) auto var(--sp-8); }

.faq-icon { font-size: var(--t-lg); color: var(--ink-40); flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); }
.faq-panel-inner { padding-bottom: var(--sp-6); font-size: var(--t-sm); color: var(--ink-60); line-height: 1.75; }

.footer__brand { display: flex; align-items: center; gap: var(--sp-3); font-family: var(--f-serif); font-size: 1.0625rem; color: rgba(255,255,255,0.9); margin-bottom: var(--sp-5); }

.sticky-cta__inner { display: flex; gap: var(--sp-4); align-items: center; justify-content: space-between; }

.section--surface { background: var(--off-white); }
.section--dark { background: var(--navy); color: rgba(255,255,255,0.8); }

.error-page__text { font-size: var(--t-base); color: var(--ink-60); margin-bottom: var(--sp-10); }

.article-reading { font-size: var(--t-xs); color: var(--ink-60); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   100 VICTOIRES : page émotionnelle
═══════════════════════════════════════════════════════ */

.vict-hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 72px) 0 var(--sp-20); background: var(--white); }
.vict-hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.vict-hero__orb--1 { top: -140px; left: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(107,158,148,0.14), transparent 70%); }
.vict-hero__orb--2 { bottom: -160px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(217,126,138,0.10), transparent 70%); }
.vict-hero__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.vict-hero__stats { display: flex; justify-content: center; gap: var(--sp-10); margin-top: var(--sp-10); flex-wrap: wrap; }
.vict-hero__stat-num { font-family: var(--f-serif); font-size: clamp(1.75rem,3vw,2.25rem); color: var(--sage-deep); line-height: 1; }
.vict-hero__stat-label { font-size: var(--t-xs); color: var(--ink-60); margin-top: var(--sp-2); }

.vict-filters { position: sticky; top: var(--nav-h); z-index: 30; background: rgba(250,250,248,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--ink-06); padding: var(--sp-5) 0; }
.vict-filters__row { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; justify-content: center; }
.vict-chip { font-family: var(--f-sans); font-size: var(--t-xs); font-weight: 500; color: var(--ink-60); background: var(--white); border: 1px solid var(--ink-12); border-radius: var(--r-pill); padding: 8px 16px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); white-space: nowrap; }
.vict-chip:hover { border-color: var(--sage); color: var(--sage-deep); }
.vict-chip.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.vict-chip--fav.is-active { background: var(--rose-deep); border-color: var(--rose-deep); }
.vict-filters__count { text-align: center; font-size: var(--t-xs); color: var(--ink-40); margin-top: var(--sp-4); }

.vict-cat-section { padding-top: var(--sp-16); }
.vict-cat-header { display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.vict-cat-header__icon { font-size: 1.5rem; }
.vict-cat-header__title { font-family: var(--f-serif); font-size: clamp(1.5rem,3vw,2rem); color: var(--ink); }
.vict-cat-header__count { font-size: var(--t-xs); color: var(--ink-40); }

.vict-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--sp-4); }
.vict-card { position: relative; text-align: left; background: var(--white); border: 1px solid var(--ink-06); border-radius: var(--r-16); padding: var(--sp-5) var(--sp-5) var(--sp-6); cursor: pointer; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); opacity: 0; transform: translateY(14px); }
.vict-card.is-shown { opacity: 1; transform: translateY(0); }
.vict-card:hover { box-shadow: var(--e-md); border-color: rgba(107,158,148,0.35); transform: translateY(-3px); }
.vict-card[hidden] { display: none; }
.vict-card__text { font-size: var(--t-sm); line-height: 1.55; color: var(--ink-80); padding-right: var(--sp-8); }
.vict-card__fav { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 30px; height: 30px; border-radius: 50%; border: none; background: transparent; color: var(--ink-40); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.vict-card__fav:hover { background: var(--rose-light); color: var(--rose-deep); }
.vict-card__fav.is-fav { color: var(--rose-deep); }
.vict-card__fav svg { fill: none; }
.vict-card__fav.is-fav svg { fill: currentColor; }

.vict-empty { text-align: center; padding: var(--sp-16) 0; color: var(--ink-40); font-size: var(--t-sm); }

.vict-modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(14,17,23,0.55); backdrop-filter: blur(4px); display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out); }
.vict-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 640px) { .vict-modal-overlay { align-items: center; padding: var(--sp-6); } }
.vict-modal { background: var(--white); width: 100%; max-width: 520px; border-radius: var(--r-24) var(--r-24) 0 0; padding: var(--sp-8) var(--sp-7) var(--sp-9); transform: translateY(24px); transition: transform var(--dur-base) var(--ease-out); max-height: 88vh; overflow-y: auto; }
@media (min-width: 640px) { .vict-modal { border-radius: var(--r-24); } }
.vict-modal-overlay.is-open .vict-modal { transform: translateY(0); }
.vict-modal__close { position: absolute; top: var(--sp-5); right: var(--sp-5); width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--ink-03); color: var(--ink-60); cursor: pointer; }
.vict-modal__cat { font-size: var(--t-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sage-deep); }
.vict-modal__title { font-family: var(--f-serif); font-size: clamp(1.5rem,3vw,1.875rem); line-height: 1.25; color: var(--ink); margin: var(--sp-3) 0 var(--sp-5); }
.vict-modal__body { font-size: var(--t-base); line-height: 1.75; color: var(--ink-60); }
.vict-modal__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-7); }

.vict-cta-block { background: var(--sage-pale); border: 1px solid rgba(107,158,148,0.2); border-radius: var(--r-32); padding: var(--sp-12) var(--sp-10); text-align: center; margin: 0 auto; max-width: 560px; }

/* ═══════════════════════════════════════════════════════
   MUR DES VICTOIRES : mosaïque
═══════════════════════════════════════════════════════ */

.mv-hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 72px) 0 var(--sp-16); background: var(--white); text-align: center; }
.mv-hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.mv-hero__orb--1 { top: -140px; left: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(217,126,138,0.12), transparent 70%); }
.mv-hero__orb--2 { bottom: -160px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(107,158,148,0.14), transparent 70%); }
.mv-hero__inner { position: relative; max-width: 720px; margin: 0 auto; }

.mv-featured { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); max-width: 900px; margin: 0 auto; }
@media (min-width: 720px) { .mv-featured { grid-template-columns: 1fr 1fr; align-items: center; } }
.mv-featured__card { display: block; border-radius: var(--r-24); overflow: hidden; background: var(--white); border: 1px solid var(--ink-06); box-shadow: var(--e-md); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); text-decoration: none; }
.mv-featured__card:hover { transform: translateY(-4px); box-shadow: var(--e-lg); }
.mv-featured__img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.mv-featured__body { padding: var(--sp-6) var(--sp-7) var(--sp-7); }
.mv-featured__quote { font-family: var(--f-serif); font-size: 1.25rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.mv-featured__cta { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-4); font-size: var(--t-sm); font-weight: 600; color: var(--sage-deep); }

.mv-wall { column-count: 1; column-gap: var(--sp-5); }
@media (min-width: 560px) { .mv-wall { column-count: 2; } }
@media (min-width: 860px) { .mv-wall { column-count: 3; } }
@media (min-width: 1180px) { .mv-wall { column-count: 4; } }

.mv-card { break-inside: avoid; margin-bottom: var(--sp-5); border-radius: var(--r-16); padding: var(--sp-6) var(--sp-5); border: 1px solid var(--ink-06); opacity: 0; transform: translateY(14px) scale(0.98); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); cursor: default; }
.mv-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.mv-card:hover { box-shadow: var(--e-md); transform: translateY(-3px); }
.mv-card__icon { font-size: 1.5rem; display: block; margin-bottom: var(--sp-3); }
.mv-card__eyebrow { font-size: var(--t-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.7; }
.mv-card__text { font-size: var(--t-sm); line-height: 1.55; color: var(--ink-80); margin-top: var(--sp-2); }

.mv-card--corps      { background: var(--sage-light); }
.mv-card--corps .mv-card__eyebrow { color: var(--sage-deep); }
.mv-card--vetements   { background: var(--rose-light); }
.mv-card--vetements .mv-card__eyebrow { color: var(--rose-deep); }
.mv-card--confiance   { background: var(--blue-light); }
.mv-card--confiance .mv-card__eyebrow { color: var(--blue); }
.mv-card--famille     { background: var(--sage-pale); }
.mv-card--famille .mv-card__eyebrow { color: var(--sage-dark); }
.mv-card--couple      { background: var(--rose-light); }
.mv-card--couple .mv-card__eyebrow { color: var(--rose-deep); }
.mv-card--sorties     { background: var(--blue-light); }
.mv-card--sorties .mv-card__eyebrow { color: var(--navy); }
.mv-card--quotidien   { background: var(--off-white); border-color: var(--ink-12); }
.mv-card--quotidien .mv-card__eyebrow { color: var(--ink-60); }
.mv-card--emotions    { background: var(--rose-light); }
.mv-card--emotions .mv-card__eyebrow { color: var(--rose-deep); }
.mv-card--sante       { background: var(--sage-light); }
.mv-card--sante .mv-card__eyebrow { color: var(--sage-deep); }

.mv-legend { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin: var(--sp-8) 0 var(--sp-4); }
.mv-legend__item { display: inline-flex; align-items: center; gap: 6px; font-size: var(--t-xs); color: var(--ink-60); }
.mv-legend__dot { width: 8px; height: 8px; border-radius: 50%; }

.mv-add-block { text-align: center; border: 1px dashed var(--ink-12); border-radius: var(--r-20); padding: var(--sp-8); }

/* ═══════════════════════════════════════════════════════
   CONSENTEMENT COOKIES : bandeau + centre de préférences
═══════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-06);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
}
.cookie-banner__body { max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); justify-content: space-between; }
.cookie-banner__text { font-size: var(--t-xs); line-height: 1.5; color: var(--ink-60); flex: 1 1 320px; }
.cookie-banner__text a { color: var(--sage-deep); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 6px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 7px 14px; font-size: var(--t-xs); min-height: auto; }

.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 9995;
  background: rgba(14,17,23,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: var(--sp-5);
}
.cookie-modal {
  position: relative; background: var(--white); width: 100%; max-width: 560px;
  max-height: 88vh; overflow-y: auto; border-radius: var(--r-24);
  padding: var(--sp-8) var(--sp-7) var(--sp-9); box-shadow: var(--e-lg);
}
.cookie-modal__close { position: absolute; top: var(--sp-5); right: var(--sp-5); width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--ink-03); color: var(--ink-60); cursor: pointer; }
.cookie-modal__title { font-family: var(--f-serif); font-size: clamp(1.375rem,3vw,1.75rem); color: var(--ink); margin-bottom: var(--sp-3); }
.cookie-modal__intro { font-size: var(--t-sm); color: var(--ink-60); margin-bottom: var(--sp-6); line-height: 1.6; }
.cookie-modal__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-7); }

.cookie-cat { padding: var(--sp-5) 0; border-top: 1px solid var(--ink-06); }
.cookie-cat:first-of-type { border-top: none; }
.cookie-cat__header { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }
.cookie-cat__title { font-weight: 600; font-size: var(--t-sm); color: var(--ink); }
.cookie-cat__toggle--locked { font-size: var(--t-xs); color: var(--sage-deep); font-weight: 600; background: var(--sage-pale); padding: 4px 10px; border-radius: var(--r-pill); }
.cookie-cat__desc { font-size: var(--t-sm); color: var(--ink-60); line-height: 1.6; margin-top: var(--sp-3); }
.cookie-cat__desc a { color: var(--sage-deep); }

.cookie-toggle { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-toggle__track { position: absolute; inset: 0; background: var(--ink-12); border-radius: var(--r-pill); transition: background var(--dur-base) var(--ease-out); }
.cookie-toggle__track::before { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; transition: transform var(--dur-base) var(--ease-out); box-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--sage); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(18px); }
.cookie-toggle input:focus-visible + .cookie-toggle__track { outline: 2px solid var(--sage-dark); outline-offset: 2px; }

@media (max-width: 640px) {
  .cookie-banner__body { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .cookie-banner__text { flex-basis: auto; }
  .cookie-banner__actions { width: 100%; justify-content: flex-start; }
  .cookie-banner__actions .btn { flex: 0 1 auto; }
}

/* Corrige le débordement horizontal des boutons à libellé long sur petits écrans :
   au lieu de forcer une seule ligne (nowrap) qui pousse le bouton hors de l'écran,
   on autorise le texte à revenir à la ligne. */
@media (max-width: 480px) {
  .btn, .btn--sage, .btn--rose, .btn--outline, .btn--outline-white, .btn--dark {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  .cta-sec__inner .btn,
  .hero__actions .btn,
  .cta-sec .btn {
    width: 100%;
  }
}

/* Guide Renaissance : la section "actions + formulaire" doit s'empiler en colonne
   sur mobile plutôt que déborder en 2 colonnes fixes. */
@media (max-width: 860px) {
  .guide-split { grid-template-columns: 1fr !important; gap: var(--sp-10) !important; }
}

/* Avant/après (Guide, RESET 30, Renaissance, Bilan) : empile en 1 colonne sur mobile */
@media (max-width: 720px) {
  .avant-apres-grid { grid-template-columns: 1fr !important; }
}

/* Bouton WhatsApp dans la barre CTA collante mobile */
.sticky-cta__whatsapp {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  flex-shrink: 0;
  padding: 0 14px; min-height: 44px;
  border-radius: var(--r-pill, 999px);
  background: #EAFBF1;
  color: #128C4A;
  font-size: var(--t-xs);
  font-weight: 600;
  border: 1px solid rgba(37,211,102,0.25);
  transition: transform var(--dur-base, 240ms) var(--ease-out, ease), background var(--dur-base, 240ms);
}
.sticky-cta__whatsapp:hover { transform: scale(1.04); background: #DCF8E8; }
.sticky-cta__whatsapp svg { flex-shrink: 0; color: #25D366; }
.sticky-cta__whatsapp-label { white-space: nowrap; }

/* Sur les tout petits écrans, on garde l'icône seule pour ne jamais serrer la mise en page */
@media (max-width: 360px) {
  .sticky-cta__whatsapp { padding: 0; width: 44px; }
  .sticky-cta__whatsapp-label { display: none; }
}

/* Correctif critique : garantit que l'attribut [hidden] masque toujours l'élément,
   même si une règle plus spécifique (ex. display:flex sur une fenêtre modale)
   tente de forcer son affichage. Sans cette règle, certains éléments comme la
   fenêtre de cookies pouvaient rester visibles en permanence et bloquer tout le
   site derrière, quel que soit leur état réel (fermé ou non). */
[hidden] { display: none !important; }

/* ═══════════════════════════════════════════════════════
   CAPTURE EMAIL SORTIE (exit-intent / scroll)
═══════════════════════════════════════════════════════ */
.exit-capture-overlay {
  position: fixed; inset: 0; z-index: 9980;
  background: rgba(14,17,23,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: var(--sp-5);
}
.exit-capture {
  position: relative; background: var(--white); width: 100%; max-width: 460px;
  border-radius: var(--r-24); padding: var(--sp-9) var(--sp-7) var(--sp-8);
  box-shadow: var(--e-lg); text-align: center;
  animation: exitCaptureIn 260ms var(--ease-out);
}
@keyframes exitCaptureIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.exit-capture__close { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--ink-03); color: var(--ink-60); cursor: pointer; }
.exit-capture__eyebrow { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-deep); }
.exit-capture__title { font-family: var(--f-serif); font-size: clamp(1.375rem,4vw,1.75rem); line-height: 1.25; color: var(--ink); margin: var(--sp-3) 0 var(--sp-4); }
.exit-capture__body { font-size: var(--t-sm); line-height: 1.6; color: var(--ink-60); margin-bottom: var(--sp-6); }
.exit-capture__form { display: flex; flex-direction: column; gap: var(--sp-3); }
.exit-capture__form input { padding: 13px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--ink-12); font-size: 16px; }
.exit-capture__form input:focus { outline: none; border-color: var(--sage); }
.exit-capture__meta { font-size: var(--t-xs); color: var(--ink-40); margin-top: var(--sp-4); }
