/* ═══════════════════════════════════════════════════════════════════
   LANDING.CSS — HelenB.fr Nouvelle Landing Page
   "Apple meets Lash" — Scroll-driven storytelling premium
   ═══════════════════════════════════════════════════════════════════ */

/* ─── BODY (remplace .body-23 du webflow CSS supprimé) ─── */
html { background-color: #2A2A41; }
.body-23 { background-color: #2A2A41; min-height: 100vh; }

/* ─── Webflow classes minimales (cookie banner Finsweet) ─── */
.w-button { display: inline-block; padding: 9px 15px; background-color: var(--hb-gold, #CDAF76); color: white; border: 0; line-height: inherit; text-decoration: none; cursor: pointer; border-radius: 999rem; }
input.w-button { -webkit-appearance: button; }
.w-form { margin: 0 0 15px; }
.w-form-done { display: none; padding: 20px; text-align: center; background-color: #ddd; }
.w-form-fail { display: none; margin-top: 10px; padding: 10px; background-color: #ffdede; }
.w-form-label { display: inline-block; cursor: pointer; font-weight: normal; margin-bottom: 0; }
.w-embed:before, .w-embed:after { content: " "; display: table; }
.w-embed:after { clear: both; }
.w-checkbox { display: block; margin-bottom: 5px; padding-left: 20px; }
.w-checkbox::before, .w-checkbox::after { content: " "; display: table; }
.w-checkbox::after { clear: both; }
.w-checkbox-input { float: left; margin: 4px 0 0 -20px; line-height: normal; }

/* ─── Cookie Banner (Finsweet) — styles gold ─── */
.fs-cc-banner_component {
  z-index: 998; background-color: #f5f6ff; border-top: 1px solid rgba(67,83,255,0.16);
  padding: 1.5rem 2rem; display: none; position: fixed; inset: auto 0% 0%;
}
.fs-cc-banner_container {
  align-items: center; width: 100%; max-width: 62.5rem;
  margin-left: auto; margin-right: auto; display: flex;
}
.fs-cc-banner_text { color: #616161; margin-right: 1.5rem; }
.fs-cc-banner_text-link { color: var(--hb-gold, #CDAF76); border-bottom: 2px solid rgba(255,255,255,0.13); font-weight: 400; text-decoration: none; }
.fs-cc-banner_buttons-wrapper { flex-direction: row; flex: none; justify-content: flex-start; align-items: center; display: flex; }
.fs-cc-banner_button {
  border: 2px solid var(--hb-gold, #CDAF76); background-color: var(--hb-gold, #CDAF76);
  color: #fff; text-align: center; border-radius: 999rem;
  min-width: 8.75rem; margin-left: 1rem; padding: .625rem 1.25rem; font-size: 1rem;
  text-decoration: none; cursor: pointer;
}
.fs-cc-banner_button:hover { opacity: 0.9; }
.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--hb-gold, #CDAF76); color: var(--hb-gold, #CDAF76); background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .fs-cc-banner_container { flex-direction: column; text-align: center; }
  .fs-cc-banner_text { margin-right: 0; margin-bottom: 1rem; }
  .fs-cc-banner_buttons-wrapper { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
  .fs-cc-banner_button { margin-left: 0; }
}

/* ─── VARIABLES CSS ─── */
:root {
  --hb-dark: #2A2A41;
  --hb-dark-deep: #1E1E32;
  --hb-gold: #CDAF76;
  --hb-gold-accent: #E8C87A;
  --hb-gold-deep: #A9814C;
  --hb-cream: #F8F6F1;
  --hb-white: #FFFFFF;
  --hb-text: #333333;
  --hb-text-light: rgba(255,255,255,0.87);
  --hb-glass: rgba(30,30,50,0.85);
  --hb-glass-border: rgba(205,175,118,0.15);
  --hb-radius: 16px;
  --hb-radius-sm: 10px;
  --hb-transition: cubic-bezier(0.16, 1, 0.3, 1);
  --hb-font-title: 'Lora', serif;
  --hb-font-body: 'Montserrat', sans-serif;
  --hb-max-width: 1200px;
}

/* ─── RESET MINIMAL (en plus de normalize.css) ─── */
.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page {
  font-family: var(--hb-font-body);
  color: var(--hb-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── CAPSULE NAV — Système unifié ─── */

/* Wrapper fixe centré */
.capsule-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  pointer-events: none;
  gap: 12px;
}

/* Capsule principale — îlot glassmorphism */
.capsule-island {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: 9999px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  pointer-events: auto;
  font-family: var(--hb-font-body);
  transition: box-shadow 0.3s;
}
.capsule-island.scrolled {
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* ── Mode LIGHT — capsule sur fond clair ── */
.capsule-wrap.capsule-light .capsule-island {
  background: linear-gradient(to bottom, rgba(42,42,65,0.85), rgba(42,42,65,0.75));
  border-color: rgba(42,42,65,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.capsule-wrap.capsule-light .ci-btn {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}
.capsule-wrap.capsule-light .ci-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.capsule-wrap.capsule-light .ci-sep {
  background: rgba(255,255,255,0.15);
}
.capsule-wrap.capsule-light .capsule-lang-btn {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}
.capsule-wrap.capsule-light .capsule-lang-code {
  color: rgba(255,255,255,0.6);
}

/* ── Bouton capsule unifié — TOUS les éléments ont exactement la même hauteur ── */
.ci-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.ci-btn svg {
  display: block;
  flex-shrink: 0;
}
.ci-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: scale(1.05);
}
.ci-btn:active {
  transform: scale(0.95);
  transition-duration: 0.1s;
}
.ci-btn[aria-expanded="true"] {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Bouton avec label texte */
.ci-btn--label {
  gap: 6px;
  padding: 0 14px;
}

/* Variante dorée (login) */
.ci-btn--gold { color: #CDAF76; }
.ci-btn--gold:hover { color: #E8C87A; }

/* Séparateur — même hauteur flex */
.ci-sep {
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 2px;
  align-self: center;
}

/* Language btn (injecté par JS) — MÊME classe de base */
.capsule-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  padding: 0 10px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 9999px;
  color: rgba(255,255,255,0.7);
  font-family: var(--hb-font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.capsule-lang-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}
.capsule-lang-btn:active {
  transform: scale(0.95);
}
.capsule-lang-code {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
}

/* ── Dropdown = 2e capsule (horizontal, flex items-center) ── */
.capsule-dd-wrap {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.capsule-dd-wrap.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* La 2e capsule elle-même — rounded-full, même glass que la nav */
.capsule-dd-island {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px 14px 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Chaque item du dropdown : icône + label vertical, centré */
.capsule-dd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 76px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--hb-font-body);
  font-size: 10.5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  line-height: 1.15;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.capsule-dd-item:hover {
  background: rgba(205,175,118,0.12);
  color: #CDAF76;
  transform: translateY(-2px);
}
.capsule-dd-item:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.1s;
}
.capsule-dd-item svg {
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.capsule-dd-item:hover svg {
  transform: scale(1.15);
}
.capsule-dd-item span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Séparateur dans le dropdown — auto-stretch avec le conteneur */
.capsule-dd-sep {
  width: 1px;
  align-self: center;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 6px;
}

/* Backdrop */
.capsule-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.capsule-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .capsule-wrap { padding-top: 14px; gap: 8px; }
  .ci-btn--desktop { display: none !important; }
  .ci-btn { height: 32px; min-width: 32px; padding: 0 8px; }
  .capsule-lang-btn { height: 32px; padding: 0 8px; font-size: 12px; }
  .capsule-island { gap: 2px; padding: 4px; }
  .ci-sep { height: 16px; }
  .capsule-dd-island {
    flex-wrap: wrap;
    border-radius: 20px;
    max-width: calc(100vw - 32px);
    justify-content: center;
    padding: 12px 16px;
    gap: 4px;
  }
  .capsule-dd-item { width: 64px; font-size: 10px; }
  .capsule-dd-sep { height: 1px; width: 100%; margin: 4px 0; }
}
@media (min-width: 768px) {
  .ci-btn--desktop { display: inline-flex; }
}

/* ─── CONTAINER ─── */
.lp-container {
  max-width: var(--hb-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHIE ─── */
.lp-kicker {
  display: inline-block;
  font-family: var(--hb-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hb-gold);
  background: rgba(205,175,118,0.1);
  border: 1px solid rgba(205,175,118,0.2);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.lp-section-title {
  font-family: var(--hb-font-title);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--hb-dark);
}

.lp-section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 640px;
  color: #555;
}

/* Sections sombres — titres blancs */
.scroll-story .lp-section-title,
.ecosystem-section .lp-section-title,
.social-section .lp-section-title,
.final-cta-section .lp-section-title,
.final-cta-section h2,
.hero-section .lp-section-title { color: var(--hb-white); }

.scroll-story .lp-section-subtitle,
.ecosystem-section .lp-section-subtitle,
.social-section .lp-section-subtitle,
.final-cta-section .lp-section-subtitle,
.final-cta-section p { color: var(--hb-text-light); }

.lp-gold { color: var(--hb-gold); }
.lp-white { color: var(--hb-white); }

/* ═══════════════════════════════════════════════════
   S2 — HERO (full-width background image + gradient overlay)
   ═══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: var(--hb-dark);
  color: var(--hb-white);
  padding: 160px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Image de fond plein ecran */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-formation-groupe.webp') center top / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

/* Degrade branding : navy en haut, fondu vers navy solide en bas */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(42,42,65,0.55) 0%,
      rgba(42,42,65,0.25) 25%,
      rgba(42,42,65,0.35) 50%,
      rgba(42,42,65,0.75) 75%,
      rgba(42,42,65,1) 100%
    ),
    linear-gradient(90deg,
      rgba(42,42,65,0.85) 0%,
      rgba(42,42,65,0.15) 50%,
      rgba(42,42,65,0.3) 100%
    );
  z-index: 0;
}

/* Particules dorees CSS — 0 JS, au-dessus de l'image et du gradient */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--hb-gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-up var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
  opacity: 0;
  will-change: transform, opacity;
  contain: strict;
}

@keyframes float-up {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 720px;
}

/* Logo badge au-dessus du kicker */
.hero-logo-badge {
  display: block;
  margin: 0 auto 24px;
  width: clamp(150px, 35vw, 220px);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

.hero-h1 {
  font-family: var(--hb-font-title);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}

/* Animation mot par mot */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-in 0.6s var(--hb-transition) forwards;
}
.hero-word:nth-child(1) { animation-delay: 0.2s; }
.hero-word:nth-child(2) { animation-delay: 0.35s; }
.hero-word:nth-child(3) { animation-delay: 0.5s; }
.hero-word:nth-child(4) { animation-delay: 0.65s; }
.hero-word:nth-child(5) { animation-delay: 0.8s; }
.hero-word:nth-child(6) { animation-delay: 0.95s; }
.hero-word:nth-child(7) { animation-delay: 1.1s; }
.hero-word:nth-child(8) { animation-delay: 1.25s; }
.hero-word:nth-child(9) { animation-delay: 1.4s; }

@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust bar glassmorphism */
.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.trust-pill .trust-value {
  color: var(--hb-gold);
  font-weight: 700;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--hb-gold), var(--hb-gold-accent));
  color: var(--hb-dark);
  font-family: var(--hb-font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--hb-transition), box-shadow 0.3s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205,175,118,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--hb-white);
  font-family: var(--hb-font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--hb-transition);
}
.btn-outline:hover {
  border-color: var(--hb-gold);
  background: rgba(205,175,118,0.08);
  transform: translateY(-2px);
}

/* Hero — gold vignette en bas pour transition douce */
.hero-gold-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(205,175,118,0.3), transparent);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   S3 — SCROLL STORY
   ═══════════════════════════════════════════════════ */
.scroll-story {
  position: relative;
  background: var(--hb-dark);
  color: var(--hb-white);
  /* hauteur geree par JS (pin 200vh — reduit pour moins de scroll) */
}

.scroll-story-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  perspective: 1200px;
  perspective-origin: center center;
}

/* Chaque face du cube — positionnee par GSAP */
.story-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.story-step.active {
  pointer-events: auto;
}

.story-step-number {
  font-family: var(--hb-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 16px;
  opacity: 0.7;
}

.story-step-title {
  font-family: var(--hb-font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 700px;
}

.story-step-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--hb-text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

/* Icones orbite (etape 2) */
.story-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 32px;
}

/* Trait d'orbite subtil */
.story-orbit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  margin: -105px 0 0 -105px;
  border: 1px dashed rgba(205,175,118,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.story-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter:
    drop-shadow(0 0 15px rgba(205,175,118,0.25))
    drop-shadow(0 0 40px rgba(205,175,118,0.1));
}

.story-orbit-center img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.story-orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: linear-gradient(135deg, rgba(205,175,118,0.12), rgba(42,42,65,0.95));
  border: 1px solid rgba(205,175,118,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-gold);
  box-shadow: 0 0 12px rgba(205,175,118,0.1);
  animation: orbit var(--orbit-dur, 20s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
  will-change: transform;
}

.story-orbit-icon svg {
  stroke: var(--hb-gold);
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(110px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}

/* Metriques flottantes (etape 3) */
.story-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.story-metric {
  padding: 12px 24px;
  background: var(--hb-glass);
  border: 1px solid var(--hb-glass-border);
  border-radius: var(--hb-radius-sm);
  font-weight: 600;
  color: var(--hb-gold);
  animation: subtle-float 3s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Progress bar du scroll story */
.story-progress {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.story-progress-fill {
  width: 100%;
  background: var(--hb-gold);
  border-radius: 3px;
  transition: height 0.3s ease;
}

/* Mobile : pas de pin, blocs empiles */
.scroll-story-mobile {
  display: none;
}

/* ═══════════════════════════════════════════════════
   S4 — PERSONAS
   ═══════════════════════════════════════════════════ */
.personas-section {
  background: var(--hb-cream);
  padding: 100px 0;
}

.personas-header {
  text-align: center;
  margin-bottom: 64px;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.persona-card {
  position: relative;
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: default;
}

.persona-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.persona-card--featured {
  border: 2px solid var(--hb-gold);
}

.persona-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(205,175,118,0.1), rgba(205,175,118,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.persona-card h3 {
  font-family: var(--hb-font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--hb-dark);
}

.persona-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.persona-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.persona-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.persona-features li::before {
  content: '✓';
  color: var(--hb-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.persona-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hb-gold-deep);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.persona-cta:hover {
  gap: 10px;
  color: var(--hb-gold);
}

/* ═══════════════════════════════════════════════════
   S5 — ECOSYSTEME
   ═══════════════════════════════════════════════════ */
.ecosystem-section {
  background: var(--hb-dark);
  color: var(--hb-white);
  padding: 100px 0;
  overflow: hidden;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 72px;
}

/* Orbit central */
.eco-orbit {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 48px;
}

/* Logo centre — libre, pas de cercle, glow dore */
.eco-orbit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter:
    drop-shadow(0 0 15px rgba(205,175,118,0.25))
    drop-shadow(0 0 40px rgba(205,175,118,0.1));
}

.eco-orbit-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Trait d'orbite subtil */
.eco-orbit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border: 1px dashed rgba(205,175,118,0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Icones en orbite — plus grandes, glow subtil */
.eco-orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: linear-gradient(135deg, rgba(205,175,118,0.12), rgba(42,42,65,0.95));
  border: 1px solid rgba(205,175,118,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-gold);
  box-shadow: 0 0 12px rgba(205,175,118,0.1);
  animation: orbit var(--orbit-dur, 24s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
  will-change: transform;
  transition: box-shadow 0.3s;
}

.eco-orbit-item svg {
  stroke: var(--hb-gold);
}

/* Feature cards */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.eco-card {
  background: var(--hb-glass);
  border: 1px solid var(--hb-glass-border);
  border-radius: var(--hb-radius);
  padding: 32px 28px;
  transition: border-color 0.3s;
  transform-style: preserve-3d;
}

.eco-card:hover {
  border-color: rgba(205,175,118,0.4);
}

.eco-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 12px;
}

.eco-card h3 {
  font-family: var(--hb-font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--hb-white);
}

.eco-card p {
  font-size: 0.9rem;
  color: var(--hb-text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   S6 — PRICING
   ═══════════════════════════════════════════════════ */
.pricing-section {
  background: var(--hb-cream);
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Carte flip 3D */
.pricing-card {
  perspective: 1000px;
  height: 420px;
}

.pricing-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--hb-transition);
}

.pricing-card:hover .pricing-card-inner {
  transform: rotateY(180deg);
}

.pricing-front,
.pricing-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--hb-radius);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-front {
  background: var(--hb-white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.pricing-back {
  background: var(--hb-dark);
  color: var(--hb-white);
  transform: rotateY(180deg);
  justify-content: center;
  overflow-y: auto;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--hb-gold);
  color: var(--hb-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--hb-font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hb-gold-deep);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--hb-font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--hb-dark);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
}

.pricing-hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: auto;
}

/* Back features */
.pricing-back h4 {
  font-family: var(--hb-font-title);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--hb-gold);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--hb-text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--hb-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Carte featured — bordure gold + glow subtil statique */
.pricing-card--featured .pricing-front {
  border: 2px solid var(--hb-gold);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(205,175,118,0.12), 0 8px 32px rgba(0,0,0,0.3);
}
.pricing-card--featured .pricing-front::after { display: none; }

/* Badge positionne sur .pricing-card (parent), pas dans .pricing-front */
.pricing-card--featured > .pricing-badge {
  z-index: 2;
}

@keyframes shimmer {
  from { transform: translate3d(-100%, -100%, 0); }
  to { transform: translate3d(100%, 100%, 0); }
}

/* Outils Pro offerts — sous les cartes formation */
.pricing-tools-included {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hb-gold);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   S6b — PRO SPOTLIGHT (carte unique sur landing)
   ═══════════════════════════════════════════════════ */

.lp-white { color: var(--hb-white); }
.lp-white-sub { color: rgba(255,255,255,0.6); }

/* ── Pro Spotlight section ── */
.pro-spotlight {
  background: var(--hb-dark-deep, #1a1a2e);
  color: var(--hb-white);
  padding: 80px 0;
}

.pro-spotlight-header {
  text-align: center;
  margin-bottom: 40px;
}

.pro-spotlight-header .lp-kicker { margin-bottom: 8px; }
.pro-spotlight-header .lp-section-title { margin-bottom: 0; }

.pro-spotlight-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 0;
  font-size: 0.85rem;
}

/* ── Grille 3 cartes landing ── */
.pro-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.pro-spotlight-grid .subscription-card-wrapper {
  max-width: none;
}

/* Toggle mensuel/annuel */
.subscription-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.subscription-toggle-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.subscription-toggle-label--active {
  color: var(--hb-white);
  font-weight: 600;
}

.subscription-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 0;
}

.subscription-toggle-switch.active {
  background: var(--hb-gold);
  border-color: var(--hb-gold);
}

.subscription-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hb-white);
  transition: transform 0.3s ease;
}

.subscription-toggle-switch.active .subscription-toggle-thumb {
  transform: translateX(24px);
}

.subscription-toggle-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hb-dark);
  background: var(--hb-gold);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ── Cartes abonnement ── */
.subscription-card {
  background: rgba(30,30,55,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--hb-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  max-width: 380px;
  width: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscription-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Carte featured (Pro) */
.subscription-card--featured {
  border: 2px solid var(--hb-gold);
  background: rgba(205,175,118,0.08);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(205,175,118,0.12), 0 8px 32px rgba(0,0,0,0.3);
}
.subscription-card--featured:hover {
  border-color: var(--hb-gold);
  box-shadow: 0 0 40px rgba(205,175,118,0.2), 0 12px 40px rgba(0,0,0,0.4);
}

/* Wrapper pour carte featured */
.subscription-card-wrapper {
  position: relative;
  max-width: 380px;
  width: 100%;
}

/* Badge RECOMMANDE gold */
.subscription-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 20px;
  background: linear-gradient(135deg, var(--hb-gold), var(--hb-gold-accent, #E8C87A));
  color: var(--hb-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(205,175,118,0.3);
}

.subscription-card-name {
  font-family: var(--hb-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 8px;
}

.subscription-card-price {
  margin-bottom: 6px;
}

.subscription-price-amount {
  font-family: var(--hb-font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hb-white);
}

.subscription-price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* Tag "X mois offerts" sous le prix */
.subscription-card-bonus {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.subscription-card-bonus--gold {
  color: var(--hb-gold);
  background: rgba(205,175,118,0.08);
  border-color: rgba(205,175,118,0.2);
}

.subscription-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
  width: 100%;
}

.subscription-features li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.subscription-features li::before {
  content: '✓';
  color: var(--hb-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.subscription-cta {
  text-align: center;
  font-size: 14px;
}

/* ── Savings inline (utilise dans spotlight + page dediee) ── */
.subscription-savings-vs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(255,100,100,0.5);
}

.subscription-savings-arrow {
  font-size: 1.1rem;
  color: var(--hb-gold);
}

.subscription-savings-hb {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hb-gold);
}

/* ── Banniere savings page dediee ── */
.dp-subscription-savings {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px 32px;
  background: rgba(30,30,55,0.95);
  border: 1px solid rgba(205,175,118,0.15);
  border-radius: var(--hb-radius);
}

.dp-subscription-savings-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dp-subscription-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   TABLEAU COMPARATIF ABONNEMENTS (detail_pricing)
   ═══════════════════════════════════════════════════ */
.sub-compare-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sub-compare {
  width: 100%;
  border-collapse: collapse;
  color: var(--hb-white);
  font-size: 0.88rem;
}

.sub-compare th,
.sub-compare td {
  padding: 10px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sub-compare-feature-col {
  text-align: left !important;
  min-width: 200px;
  color: rgba(255,255,255,0.7);
}

.sub-compare td:first-child {
  text-align: left;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.sub-compare-plan {
  min-width: 140px;
  padding: 16px 12px;
  vertical-align: bottom;
}

.sub-compare-plan--featured {
  background: rgba(205,175,118,0.06);
  border-left: 1px solid rgba(205,175,118,0.15);
  border-right: 1px solid rgba(205,175,118,0.15);
  border-top: 2px solid var(--hb-gold);
  border-radius: 12px 12px 0 0;
}

.sub-compare-featured {
  background: rgba(205,175,118,0.06);
  border-left: 1px solid rgba(205,175,118,0.15);
  border-right: 1px solid rgba(205,175,118,0.15);
}

.sub-compare-plan-name {
  font-family: var(--hb-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 6px;
}

.sub-compare-plan-price {
  margin-bottom: 4px;
}

.sub-compare-plan-price .subscription-price-amount {
  font-family: var(--hb-font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--hb-white);
}

.sub-compare-plan-price .subscription-price-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.sub-compare-section-row td {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hb-gold);
  padding: 16px 14px 8px;
  border-bottom: 1px solid rgba(205,175,118,0.12);
  text-align: left;
}

.sub-check {
  color: #4ade80;
  font-weight: 700;
  font-size: 1.1rem;
}

.sub-cross {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
}

.sub-compare tfoot td {
  padding: 20px 12px;
  border-bottom: none;
}

.sub-compare tfoot .subscription-cta {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════
   S7 — SOCIAL PROOF
   ═══════════════════════════════════════════════════ */
.social-section {
  background: var(--hb-dark);
  color: var(--hb-white);
  padding: 100px 0;
}

.social-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Compteurs */
.social-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.social-counter {
  text-align: center;
  padding: 24px;
}

.social-counter-value {
  font-family: var(--hb-font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--hb-gold);
  margin-bottom: 4px;
}

.social-counter-label {
  font-size: 0.9rem;
  color: var(--hb-text-light);
}

/* Etoiles */
.social-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}

.social-star {
  width: 20px;
  height: 20px;
  color: var(--hb-gold);
}

/* Carousel temoignages */
.social-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-testimonial {
  background: var(--hb-glass);
  border: 1px solid var(--hb-glass-border);
  border-radius: var(--hb-radius);
  padding: 32px;
}

.social-testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--hb-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hb-gold);
}

/* ═══════════════════════════════════════════════════
   S7b — FAQ
   ═══════════════════════════════════════════════════ */
.faq-section {
  background: var(--hb-cream);
  padding: 100px 0;
}

.faq-section h2 {
  font-family: var(--hb-font-title);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--hb-dark);
  margin: 12px 0 48px;
  text-align: center;
}

.faq-section .lp-kicker {
  background: rgba(42,42,65,0.06);
  border-color: rgba(42,42,65,0.1);
  color: var(--hb-dark);
  margin: 0 auto 0;
  display: block;
  text-align: center;
  width: fit-content;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-left: 3px solid var(--hb-gold);
  background: var(--hb-white);
  border-radius: var(--hb-radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq-item[open] {
  box-shadow: 0 2px 12px rgba(205,175,118,0.15);
}

.faq-question {
  padding: 20px 48px 20px 24px;
  font-family: var(--hb-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: "";
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--hb-gold);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-family: var(--hb-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--hb-text);
}

@media (max-width: 768px) {
  .faq-section { padding: 64px 0; }
  .faq-question { font-size: 15px; padding: 16px 36px 16px 18px; }
  .faq-answer { padding: 0 18px 16px; font-size: 14px; }
}
@media (max-width: 479px) {
  .faq-question { padding: 14px 28px 14px 14px; font-size: 14px; }
  .faq-answer { padding: 0 14px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   S8 — HELENE
   ═══════════════════════════════════════════════════ */
.helene-section {
  background: var(--hb-white);
  padding: 100px 0;
  overflow: hidden;
}

.helene-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.helene-photo {
  border-radius: 20px;
  overflow: hidden;
  will-change: transform;
}

.helene-photo img {
  width: 100%;
  border-radius: 20px;
}

.helene-content {
  max-width: 500px;
}

.helene-content .lp-kicker {
  background: rgba(42,42,65,0.06);
  border-color: rgba(42,42,65,0.1);
  color: var(--hb-dark);
}

.helene-content h2 {
  font-family: var(--hb-font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--hb-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.helene-content .helene-bio {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Typewriter */
.helene-quote {
  font-family: var(--hb-font-title);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--hb-dark);
  padding: 20px 24px;
  border-left: 3px solid var(--hb-gold);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   S9 — CTA FINAL
   ═══════════════════════════════════════════════════ */
.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--hb-dark) 0%, var(--hb-dark-deep) 50%, var(--hb-dark) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  color: var(--hb-white);
  padding: 100px 0 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-family: var(--hb-font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: var(--hb-text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Glow pulse CTA */
.btn-glow {
  box-shadow: 0 0 20px rgba(205,175,118,0.3);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(205,175,118,0.3); }
  50% { box-shadow: 0 0 40px rgba(205,175,118,0.6); }
}

.final-cta-lead {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.final-cta-lead a {
  color: var(--hb-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════
   S10 — FOOTER PREMIUM
   ═══════════════════════════════════════════════════ */
/* ── Footer wrapper ── */
.lp-footer {
  position: relative;
  background: var(--hb-dark-deep);
  color: rgba(255,255,255,0.6);
  font-family: var(--hb-font-body);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ── Barre rétractée — toujours visible ── */
.lp-footer-toggle {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(205,175,118,0.12);
  cursor: pointer;
  transition: background 0.3s;
  -webkit-appearance: none;
}
.lp-footer-toggle:hover {
  background: rgba(255,255,255,0.02);
}
.lp-footer-toggle-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-footer-toggle-brand {
  font-family: var(--hb-font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}
.lp-footer-toggle-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.1);
}
.lp-footer-toggle-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hb-gold);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.lp-footer-toggle:hover .lp-footer-toggle-hint {
  opacity: 0.9;
}
.lp-footer-toggle-chevron {
  color: var(--hb-gold);
  opacity: 0.4;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.lp-footer-toggle:hover .lp-footer-toggle-chevron {
  opacity: 0.8;
}
.lp-footer-toggle[aria-expanded="true"] .lp-footer-toggle-chevron {
  transform: rotate(180deg);
}

/* ── Tiroir déplié ── */
.lp-footer-drawer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1),
              opacity 0.4s ease;
}
.lp-footer-drawer.open {
  max-height: 600px;
  opacity: 1;
}
.lp-footer-drawer > .lp-container {
  padding-top: 32px;
  padding-bottom: 24px;
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  align-items: start;
}

/* ── Brand ── */
.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.lp-footer-logo img {
  width: 90px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.lp-footer-logo:hover img {
  opacity: 1;
}
.lp-footer-tagline {
  font-family: var(--hb-font-title);
  font-style: italic;
  font-size: 13px;
  color: var(--hb-gold);
  opacity: 0.5;
  letter-spacing: 0.3px;
}

/* ── Social icons sous le logo ── */
.lp-footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.lp-footer-social-links {
  display: flex;
  gap: 8px;
}
.lp-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lp-footer-social-icon:hover {
  background: rgba(205,175,118,0.12);
  color: var(--hb-gold);
  border-color: rgba(205,175,118,0.25);
  transform: translateY(-2px);
}
.lp-footer-social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
.lp-footer-email {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 11.5px;
  transition: color 0.2s;
}
.lp-footer-email:hover {
  color: var(--hb-gold);
}

/* ── Navigation colonnes ── */
.lp-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer-heading {
  font-family: var(--hb-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hb-gold);
  margin-bottom: 4px;
  opacity: 0.6;
}
.lp-footer-col a,
.lp-footer-cookie-btn {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.25s, transform 0.25s;
  cursor: pointer;
}
.lp-footer-col a:hover,
.lp-footer-cookie-btn:hover {
  color: rgba(255,255,255,0.9);
  transform: translateX(3px);
}

/* ── Cookie manager ── */
.lp-footer-cookie {
  display: inline-flex;
  align-items: center;
}

/* Note astérisque écosystème */
.lp-ecosystem-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

/* ── Séparateur interne ── */
.lp-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  margin: 32px 0 20px;
}

/* ── Bottom bar ── */
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.lp-footer-bottom p {
  margin: 0;
}
.lp-footer-made {
  font-family: var(--hb-font-title);
  font-style: italic;
  letter-spacing: 0.3px;
  color: rgba(205,175,118,0.3);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  .hero-content { max-width: 100%; }

  .personas-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pro-spotlight { padding: 48px 0; }
  .pro-spotlight-header { margin-bottom: 24px; }
  .pro-spotlight-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .subscription-card { padding: 24px 20px; max-width: 340px; }
  .dp-subscription-savings-inner { flex-direction: column; gap: 8px; padding: 16px 20px; }
  .sub-compare { font-size: 0.78rem; }
  .sub-compare th, .sub-compare td { padding: 8px 8px; }
  .sub-compare-feature-col { min-width: 150px; }
  .pricing-card { height: auto; min-height: auto; perspective: none; }
  .pricing-card-inner {
    transform-style: flat;
    transition: none;
  }
  .pricing-card:hover .pricing-card-inner {
    transform: none;
  }
  .pricing-front,
  .pricing-back {
    position: static;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }
  .pricing-back {
    transform: none;
    margin-top: 0;
    border-radius: 0 0 var(--hb-radius) var(--hb-radius);
  }
  .pricing-front {
    border-radius: var(--hb-radius) var(--hb-radius) 0 0;
  }
  .pricing-hint {
    display: none;
  }
  .social-counters { grid-template-columns: repeat(2, 1fr); }
  .social-carousel { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .helene-inner { grid-template-columns: 1fr; text-align: center; }
  .helene-content { max-width: 100%; margin: 0 auto; }

  /* Scroll story : pas de pin, blocs visibles */
  .scroll-story { display: none !important; }
  .scroll-story-mobile { display: block; }

  /* Footer */
  .lp-footer-top { grid-template-columns: 1fr 2fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-section { padding: 120px 0 60px; min-height: auto; }
  .hero-h1 { font-size: clamp(1.5rem, 5vw, 1.8rem); }
  .hero-trust { gap: 8px; }
  .trust-pill { padding: 6px 12px; font-size: 12px; }
  .eco-grid { grid-template-columns: 1fr; }
  .social-counters { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Footer mobile */
  .lp-footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .lp-footer-brand { align-items: center; }
  .lp-footer-nav { grid-template-columns: 1fr 1fr 1fr; gap: 16px; text-align: center; }
  .lp-footer-social-links { justify-content: center; }
  .lp-footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 479px) {
  .lp-container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-outline { justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; }
}

@media (max-width: 360px) {
  .lp-container { padding: 0 12px; }
  .hero-section { padding: 100px 0 40px; }
  .hero-h1 { font-size: 1.35rem; }
  .hero-logo-badge { width: 130px; margin-bottom: 16px; }
  .trust-pill { font-size: 11px; padding: 5px 10px; }
  .lp-section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .capsule-island { gap: 1px; padding: 3px; }
  .ci-btn { height: 28px; min-width: 28px; padding: 0 6px; }
}

/* ═══════════════════════════════════════════════════
   SCROLL STORY MOBILE — blocs empiles avec AOS
   ═══════════════════════════════════════════════════ */
.scroll-story-mobile {
  background: var(--hb-dark);
  color: var(--hb-white);
  padding: 80px 0;
}

.story-mobile-step {
  padding: 48px 20px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 479px) {
  .story-mobile-step { padding: 36px 16px; }
}

.story-mobile-step + .story-mobile-step {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.story-mobile-step .story-step-number,
.story-mobile-step .story-step-title,
.story-mobile-step .story-step-text {
  position: static;
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITE
   ═══════════════════════════════════════════════════ */

/* prefers-reduced-motion : desactive animations sauf fades basiques */
@media (prefers-reduced-motion: reduce) {
  .hero-particle,
  .eco-card,
  .story-metric,
  .eco-orbit-item,
  .story-orbit-icon,
  .pricing-card--featured .pricing-front::after {
    animation: none !important;
  }

  .hero-word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .pricing-card:hover .pricing-card-inner {
    transform: none;
  }

  .final-cta-section {
    animation: none !important;
  }

  .btn-glow {
    animation: none !important;
    box-shadow: 0 0 20px rgba(205,175,118,0.3);
  }

  .story-step {
    transform: none !important;
    opacity: 0 !important;
  }
  .story-step.active {
    opacity: 1 !important;
  }
}

/* Focus visible */
.landing-page a:focus-visible,
.landing-page button:focus-visible {
  outline: 2px solid var(--hb-gold);
  outline-offset: 2px;
}

/* RTL arabe — appliqué à main et footer, pas au body entier */
[lang="ar"] main,
[lang="ar"] footer {
  direction: rtl;
}

[lang="ar"] .hero-inner {
  direction: rtl;
}

[lang="ar"] .persona-features li {
  flex-direction: row-reverse;
}

[lang="ar"] .helene-quote {
  border-left: none;
  border-right: 3px solid var(--hb-gold);
}

[lang="ar"] .subscription-features li {
  flex-direction: row-reverse;
}

[lang="ar"] .dp-subscription-savings-inner {
  flex-direction: row-reverse;
}

[lang="ar"] .pro-spotlight-savings {
  flex-direction: row-reverse;
}

[lang="ar"] .sub-compare td:first-child,
[lang="ar"] .sub-compare-feature-col,
[lang="ar"] .sub-compare-section-row td {
  text-align: right;
}


/* ─── STICKY CTA MOBILE ─── */
.sticky-cta-mobile {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(42, 42, 65, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hb-glass-border);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .sticky-cta-mobile .btn-gold {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
