/* ─────── VARIABLES & RESET ─────── */
:root {
  --sage: #7A9E7E;
  --sage-light: #EDF2EE;
  --sage-dark: #3D5C40;
  --stone: #C4B8A8;
  --stone-light: #F5F1EC;
  --stone-mid: #E8E0D4;
  --warm-white: #FAFAF8;
  --charcoal: #2A2A26;
  --charcoal-mid: #4A4A44;
  --muted: #7A7A72;
  --accent: #8B6A4E;
  --red-soft: #C4554D;
  --red-light: #FBEEEC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* ─── Charte POP (nouvelle direction) ─── */
  --pop-green: #254d32;
  --pop-green-dark: #19381f;
  --pop-yellow: #fbbf4d;
  --pop-cream: #faf1e8;
  --pop-cream-alt: #fffdfa;
  --pop-text: #5a5a52;
  --pop-eyebrow: #c89a3c;
  --font-title: 'Fredoka', sans-serif;
  --font-pop: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 77px;
}

/* ─────── HEADER ─────── */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid var(--stone-mid);
  background: rgba(250,250,248,0.97);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Header masqué (glisse vers le haut) quand on atteint le bloc CTA final */
.lp-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-image: url('christina-avatar.webp');
  background-size: cover;
  background-position: center;
}

.logo-name {
  font-family: var(--font-pop);
  font-size: 15px;
  font-weight: 600;
  color: var(--pop-green);
  line-height: 1.2;
}

.logo-title {
  font-family: var(--font-pop);
  font-size: 12px;
  font-weight: 400;
  color: var(--pop-text);
  line-height: 1.2;
}

.btn-primary {
  background: var(--pop-green);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--font-pop);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 var(--pop-green-dark);
}
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--pop-green-dark); }

/* ─────── HERO ─────── */
.lp-hero {
  text-align: center;
  background: var(--pop-cream);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 50px 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  color: var(--pop-green);
  margin-bottom: 26px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  max-width: 1000px;
  margin-bottom: 22px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.hero-sub {
  font-family: var(--font-pop);
  font-size: 17px;
  color: var(--pop-text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-hero {
  background: var(--pop-green);
  color: #fff;
  border: none;
  padding: 16px 38px;
  border-radius: 100px;
  font-family: var(--font-pop);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 var(--pop-green-dark);
}
.btn-hero:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--pop-green-dark); }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-text);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pop-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--pop-green);
  font-weight: 600;
  flex-shrink: 0;
}

.hero-sep { color: var(--pop-yellow); }

.hero-video-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
  border-radius: 16px;  
}

.video-placeholder {
  border-radius: 18px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #fdf6ec 0%, #f3e4cf 100%);
  border: 2px solid var(--pop-green);
  box-shadow: 6px 6px 0 var(--pop-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--pop-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,77,50,0.2);
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--pop-green);
  margin-left: 5px;
}

.video-caption {
  font-size: 13px;
  color: var(--charcoal-mid);
  font-style: italic;
  background: rgba(255,255,255,0.65);
  padding: 4px 14px;
  border-radius: 20px;
}

/* Le <br> après "Retrouvez" est masqué par défaut (desktop) */
.br-mobile { display: none; }
.br-desktop { display: inline; }


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC 6 RAISONS — Style Apple zoom ─────── */
/* ─────────────────────────────────────────────────── */

/* Conteneur principal de l'intro */
.container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  overflow: hidden;
  background: var(--pop-green);
}

/* Wrapper qui sera scalé par GSAP */
#text-wrapper {
  width: 60vw;
  text-align: center;
}

.reasons-title-big {
  font-family: var(--font-title);
  font-size: 8vw;
  font-weight: 700;
  color: var(--pop-yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.zoom-letter {
  font-style: normal;
  color: var(--pop-yellow);
  display: inline-block;
}

.reasons-title-small {
  font-family: var(--font-title);
  font-size: 2vw;
  font-weight: 500;
  font-style: normal;
  color: var(--pop-yellow);
  line-height: 1.25;
}

/* ─────── INDICATEUR DE SCROLL ─────── */
.scroll-downs {
  position: absolute;
  bottom: 50vh;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 55px;
  z-index: 5;
  will-change: opacity;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid var(--pop-yellow);
  border-radius: 25px;
  opacity: 0.85;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: var(--pop-yellow);
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* Section après le zoom */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  padding: 20px 0px 20px;
}

.sage-dark {
  background-color: var(--pop-yellow);
}

/* Plus d'air en bas de la section verte (après la dernière pastille) */
.section-2 {
  padding-bottom: 120px;
}

/* Liste des pastilles dans la section verte */
.reasons-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 50%;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--pop-green-dark);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 4px 4px 0 var(--pop-green-dark);
  text-align: left;
  width: 100%;
}

.reason-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon-cross { background: #fde2df; }
.reason-icon-check { background: #8fb89a; }

.reason-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-icon-cross svg { stroke: #d9534f; }
.reason-icon-check svg { stroke: #fff; }

.reason-text {
  font-family: var(--font-pop);
  font-size: 16px;
  color: #3a3a34;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

/* La dernière pastille (la solution) : texte vert en gras, mais garde la
   même bordure/ombre verte que les autres (une bordure jaune serait invisible
   sur le fond jaune de la section). L'accent se fait via l'icône coche jaune. */
.reason-item:last-child .reason-text {
  color: var(--pop-green);
  font-weight: 600;
}

/* Section après l'animation */
.after-reasons {
  padding: 100px 40px;
  text-align: center;
  background: var(--warm-white);
}

.after-reasons-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
}


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC BÉNÉFICES — Layout sticky 2 cols ─────── */
/* ─────────────────────────────────────────────────── */

.benefits-section {
  padding: 90px 40px;
  background: var(--pop-cream);
}

/* Titre + sous-titre centrés */
.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Eyebrow façon badge (comme le hero) */
.benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 22px;
}
.benefits-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

/* Titre sticker (comme le hero) */
.benefits-title {
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 600;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-title em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.benefits-sub {
  font-family: var(--font-pop);
  font-size: 17px;
  font-style: normal;
  color: var(--pop-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Menu de navigation labels (desktop uniquement) */
.benefits-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 0 auto 50px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.benefits-nav-item {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #b0a890;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-pop);
  transition: color 0.3s;
}

.benefits-nav-item:hover {
  color: var(--pop-green);
}

.benefits-nav-item.active {
  color: var(--pop-green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--pop-yellow);
}

/* Conteneur du carrousel */
.benefits-carousel-wrap {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

/* Track des cartes : flex row avec animation de translation */
.benefits-list {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.30, 1);
  padding: 0 80px;
}

/* Chaque carte du peek carrousel */
.benefit-block {
  flex-shrink: 0;
  width: 420px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 18px;
  padding: 32px 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 0.84, 0.30, 1);
  transform: scale(0.85);
  opacity: 0.4;
  cursor: pointer;
}

/* Carte active : pleine taille + ombre dure sticker */
.benefit-block.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 6px 6px 0 var(--pop-green);
  cursor: default;
}

.benefit-content {
  position: relative;
  z-index: 1;
}

.benefit-number-label {
  display: none;
}

.benefit-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 600;
  color: var(--pop-green);
  line-height: 1.25;
  margin-bottom: 16px;
}

.benefit-title em {
  font-style: normal;
  color: #d89a1e;
}

.benefit-text {
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-text);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Numéro géant caché sur desktop */
.benefit-number-bg {
  display: none;
}

/* Photo dans chaque carte */
.benefit-card-photo {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf0d8 0%, #f5d98f 100%);
  border: 2px solid var(--pop-green);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
}

.benefit-photo-1 {
  background-image: url('christina-hagen-stress-luxembourg.webp');
  background-size: cover;
  background-position: center;
}
.benefit-photo-2 {
  background-image: url('christina-hagen-sommeil-luxembourg.webp');
  background-size: cover;
  background-position: center;
}
.benefit-photo-3 {
  background-image: url('christina-hagen-emotions-luxembourg.webp');
  background-size: cover;
  background-position: center;
}
.benefit-photo-4 {
  background-image: url('christina-hagen-pma-grossesse-luxembourg.webp');
  background-size: cover;
  background-position: center;
}
.benefit-photo-5 {
  background-image: url('christina-hagen-confiance-luxembourg.webp');
  background-size: cover;
  background-position: center;
}

.benefit-card-photo-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: var(--pop-green);
}

.benefit-card-photo-caption {
  font-family: var(--font-pop);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--pop-green);
  background: rgba(255,255,255,0.9);
  padding: 3px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

/* Éléments mobile-only — cachés sur desktop */
.benefits-indicators { display: none; }


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC COMMENT ÇA SE PASSE — Steps ─────── */
/* ─────────────────────────────────────────────────── */

/* Section haute = piste de scroll pour les 2 phases (défilement texte + montée photo) */
.steps-section {
  background: var(--warm-white);
  position: relative;
  height: 400vh;
}

/* Le conteneur figé pendant tout le scroll dans la section */
.steps-pin-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 50px 0 0;
}

/* Titre centré — reste fixe en haut du bloc figé */
.steps-header {
  text-align: center;
  padding: 0 20px 30px;
  max-width: 600px;
  margin: 0 auto;
  flex-shrink: 0;
}

.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 20px;
}
.steps-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.steps-title {
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 600;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  line-height: 1.12;
  margin-bottom: 18px;
}

.steps-title em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.steps-sub {
  font-family: var(--font-pop);
  font-size: 17px;
  font-style: normal;
  color: var(--pop-text);
  line-height: 1.5;
}

/* Layout 2 colonnes — occupe l'espace restant sous le titre, sert de fenêtre */
.steps-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  min-height: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 30px 40px;
}

/* Barre de progression verticale entre les colonnes */
.steps-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e6dcc8;
  transform: translateX(-50%);
  z-index: 5;
  border-radius: 3px;
}

.steps-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--pop-green);
  border-radius: 3px;
  transition: height 0.2s ease-out;
}

/* Colonne gauche : liste des étapes (translatée verticalement en phase 1) */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-self: start;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Remplissage de ligne timeline : caché sur desktop */
.steps-line-fill {
  display: none;
}

/* Chaque étape (desktop : focus actif/inactif) */
.step-block {
  display: flex;
  gap: 20px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.step-block.active {
  opacity: 1;
}

/* Le rond numéroté */
.step-dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--pop-green);
  color: var(--pop-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--pop-green);
  transition: all 0.4s ease;
}

.step-block.active .step-dot {
  background: var(--pop-yellow);
  color: var(--pop-green);
}

.step-content {
  flex: 1;
}

.step-eyebrow {
  font-family: var(--font-pop);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pop-eyebrow);
  font-weight: 600;
  margin-bottom: 8px;
  padding-top: 4px;
}

.step-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 600;
  color: var(--pop-green);
  line-height: 1.2;
  margin-bottom: 14px;
}

.step-title em {
  font-style: normal;
  color: #d89a1e;
}

.step-text {
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-text);
  line-height: 1.7;
}

/* Colonne droite : visuels qui changent (le wrap parent est déjà figé) */
.steps-visual-col {
  position: relative;
  height: 100%;
}

.steps-visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.step-visual {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf0d8 0%, #f5d98f 100%);
  border: 2px solid var(--pop-green);
  box-shadow: 6px 6px 0 var(--pop-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.step-visual.active {
  opacity: 1;
}

/* Chaque étape a sa photo en fond */
.step-visual-1 {
  background-image: url('christina-hagen-etape-1-reservation.webp');
  background-size: cover;
  background-position: center;
}
.step-visual-2 {
  background-image: url('christina-hagen-etape-2-bilan.webp');
  background-size: cover;
  background-position: center;
}
.step-visual-3 {
  background-image: url('christina-hagen-etape-3-seances.webp');
  background-size: cover;
  background-position: center;
}
.step-visual-4 {
  background-image: url('christina-hagen-etape-4-autonomie.webp');
  background-size: cover;
  background-position: center;
}


/* ─────────────────────────────────────────────────── */
/* ─────── PHOTO COVER REVEAL (la photo monte) ─────── */
/* ─────────────────────────────────────────────────── */

/* La photo recouvre tout le wrap figé. Démarre hors écran en bas (translateY 100%),
   sa montée est pilotée au scroll par le JS pendant la phase 2. */
.cover-photo {
  position: absolute;
  inset: 0;
  background-image: url('christina-hagen-cabinet-sophrologie-altwies.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform: translateY(100%);
  will-change: transform;
  z-index: 20;
}


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC TARIFS ─────── */
/* ─────────────────────────────────────────────────── */

.tarif-section {
  background: var(--pop-cream);
  padding: 80px 40px 90px;
  text-align: center;
}

.tarif-header {
  max-width: 600px;
  margin: 0 auto 50px;
}

.tarif-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 20px;
}
.tarif-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.tarif-title {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 600;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  line-height: 1.15;
  margin-bottom: 14px;
}
.tarif-title em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.tarif-sub {
  font-family: var(--font-pop);
  font-size: 17px;
  font-style: normal;
  color: var(--pop-text);
  margin-bottom: 22px;
}

/* Le badge V6 (réutilisé depuis les témoignages) centré dans les tarifs */
.tarif-badge {
  margin: 0 auto;
}

/* Grille 2 cartes distinctes */
.tarif-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.tarif-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 6px 6px 0 var(--pop-green);
}

.tarif-col-divider {
  display: none;
}

.tarif-col-label {
  font-family: var(--font-pop);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pop-eyebrow);
  font-weight: 600;
  margin-bottom: 10px;
}

.tarif-col-name {
  font-family: var(--font-pop);
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  color: var(--pop-green);
  margin-bottom: 16px;
}

.tarif-col-price {
  font-family: var(--font-pop);
  font-size: 76px;
  line-height: 1;
  font-weight: 700;
  color: var(--pop-green);
  margin-bottom: 10px;
}
.tarif-col-price span {
  font-size: 38px;
  vertical-align: top;
  color: var(--pop-green);
}

.tarif-col-duration {
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-text);
  margin-bottom: 28px;
  min-height: 42px;
}

.tarif-col-cta {
  display: inline-block;
  margin-top: auto;
}


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC TÉMOIGNAGES — Double marquee ─────── */
/* ─────────────────────────────────────────────────── */

.avis-section {
  background: var(--pop-cream);
  padding: 80px 0;
  overflow: hidden;
  transition: background-color 0.9s ease;
}

/* Vire au jaune quand l'internaute scrolle dans le bloc (révélation progressive) */
.avis-section.to-yellow {
  background: var(--pop-yellow);
}

.avis-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 50px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.avis-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 20px;
}
.avis-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.avis-title {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 600;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  line-height: 1.15;
  margin-bottom: 16px;
  transition: color 0.9s ease;
}
.avis-title em {
  font-style: normal;
  color: inherit;
  -webkit-text-stroke: 2px var(--pop-green);
}

/* Quand le fond de la section devient jaune, le titre passe au blanc
   (le jaune sur jaune deviendrait illisible) */
.avis-section.to-yellow .avis-title {
  color: #fff;
}

/* Accroche "100% d'avis 5 étoiles sur Google" */
.avis-accroche {
  font-family: var(--font-pop);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--pop-green);
}

/* Badge Google enrichi (V6) — sans encadré, posé directement sur le fond */
.avis-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.avis-badge-avatars {
  display: flex;
}
.avis-badge-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--pop-cream);
  margin-left: -10px;
  background-size: cover;    
  background-position: center;
}
.avis-badge-av:first-child { margin-left: 0; }

.avis-badge-av.av1 { background-image: url('avis-4.webp'); }
.avis-badge-av.av2 { background-image: url('avis-2.webp'); }
.avis-badge-av.av3 { background-image: url('avis-3.webp'); }
.avis-badge-av.av4 { background-image: url('avis-1.webp'); }

.avis-badge-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.avis-badge-stars {
  color: #f0a830;
  font-size: 14px;
  letter-spacing: 1px;
}
.avis-badge-stars span {
  color: var(--pop-text);
  font-size: 12px;
  font-family: var(--font-pop);
}
.avis-badge-sub {
  font-size: 12px;
  color: var(--pop-text);
  font-family: var(--font-pop);
}
.avis-badge-sub strong { color: var(--pop-green); }
.avis-badge-gicon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 2px;
}

/* Lignes marquee */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
  margin-bottom: 20px;
}
.marquee-row.row1 {
  animation: scroll-left 70s linear infinite;
}
.marquee-row.row2 {
  animation: scroll-right 70s linear infinite;
}

/* Pause au survol */
.marquee-wrap:hover .marquee-row {
  animation-play-state: paused;
}

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

/* Carte d'avis */
.avis-card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 4px 4px 0 var(--pop-green);
}

.avis-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pop-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  flex-shrink: 0;
}

.avis-meta { flex: 1; min-width: 0; }
.avis-nom {
  font-family: var(--font-pop);
  font-weight: 600;
  font-size: 14px;
  color: var(--pop-green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avis-date {
  font-family: var(--font-pop);
  font-size: 12px;
  color: #A8A29A;
}

.avis-google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.avis-stars {
  color: #f0a830;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.avis-texte {
  font-family: var(--font-pop);
  font-size: 13px;
  line-height: 1.55;
  color: var(--pop-text);
}


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC FAQ — Accordéon + carte de relance ─────── */
/* ─────────────────────────────────────────────────── */

.faq-section {
  background: var(--pop-cream);
  padding: 80px 40px 90px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 20px;
}
.faq-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.faq-title {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 600;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  line-height: 1.15;
  margin: 0;
}
.faq-title em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

/* Accordéon */
.faq-item {
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--pop-green);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-pop);
  font-size: 15px;
  font-weight: 600;
  color: var(--pop-green);
  text-align: left;
  background: none;
  border: none;
}
.faq-q:hover { color: var(--pop-green-dark); }

/* Icône + qui pivote en × */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--pop-green);
  border-radius: 2px;
}
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-icon::after { left: 10px; top: 0; width: 2px; height: 22px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 22px 20px;
  font-family: var(--font-pop);
  font-size: 14px;
  line-height: 1.65;
  color: var(--pop-text);
}
.faq-item.open .faq-a { max-height: 400px; }

/* Carte de relance à droite (collante au scroll) */
.faq-cta-card {
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 6px 6px 0 var(--pop-yellow);
}

.faq-cta-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-image: url('christina-hagen-etape-4-autonomie.webp');
  background-size: 130%;
  background-position: center 0%;
  border: 2px solid var(--pop-green);
  }

.faq-cta-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 24px;
  color: var(--pop-green);
  margin-bottom: 8px;
}

.faq-cta-sub {
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-text);
  line-height: 1.5;
  margin-bottom: 22px;
}

.faq-cta-btn {
  display: inline-block;
}


/* ─────────────────────────────────────────────────── */
/* ─────── BLOC CTA FINAL + FORMULAIRE ─────── */
/* ─────────────────────────────────────────────────── */

.cta-section {
  background: var(--pop-cream);
  scroll-margin-top: 77px;
}

/* Partie haute claire : titre + sous-titre */
.cta-top {
  background: var(--pop-cream);
  text-align: center;
  padding: 70px 40px 50px;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--pop-green);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pop-green);
  margin-bottom: 20px;
}
.cta-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop-yellow);
  flex-shrink: 0;
}

.cta-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.12;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--pop-green);
  margin: 0 0 18px;
}
.cta-title em {
  font-style: normal;
  color: var(--pop-yellow);
  -webkit-text-stroke: 2px var(--pop-green);
}

.cta-sub {
  font-family: var(--font-pop);
  font-size: 16px;
  color: var(--pop-text);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* Partie dégradé : le formulaire est centré dedans */
.cta-bottom {
  background: linear-gradient(135deg, #356b45 0%, var(--pop-green) 55%, var(--pop-green-dark) 100%);
  padding: 70px 40px 80px;
}

.cta-card-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  background: #fff;
  border: 2px solid var(--pop-green-dark);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 6px 6px 0 var(--pop-yellow);
}

/* Ligne de champs horizontale : 4 champs + bouton */
.cta-fields-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.cta-field { flex: 1; text-align: left; min-width: 0; }
.cta-field label {
  display: block;
  font-family: var(--font-pop);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pop-green);
  white-space: nowrap;
}
.cta-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 10px;
  border: 2px solid #e0d8c5;
  background: #fff;
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--pop-green);
  transition: border-color 0.2s;
}
.cta-field input:focus {
  outline: none;
  border-color: var(--pop-green);
}
.cta-field input.error {
  border-color: #d9534f;
  background: #fde2df;
}

.cta-btn-join {
  background: var(--pop-green);
  color: #fff;
  border: 2px solid var(--pop-green-dark);
  border-radius: 100px;
  padding: 13px 24px;
  font-family: var(--font-pop);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--pop-green-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn-join:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--pop-green-dark);
}
.cta-btn-join:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--pop-green-dark);
}

.cta-foot {
  text-align: center;
  margin: 22px 0 0;
  font-family: var(--font-pop);
  font-size: 13px;
  color: var(--pop-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.cta-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-foot svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--pop-green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Message de confirmation après envoi */
.cta-success {
  text-align: center;
  padding: 20px 0;
}
.cta-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pop-yellow);
  border: 2px solid var(--pop-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 3px 3px 0 var(--pop-green);
}
.cta-success-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--pop-green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-success-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 28px;
  color: var(--pop-green);
  margin-bottom: 10px;
}
.cta-success-text {
  font-family: var(--font-pop);
  font-size: 15px;
  color: var(--pop-text);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────── */
/* ─────── FOOTER (V3 — warm-white épuré) ─────── */
/* ─────────────────────────────────────────────────── */

.lp-footer {
  background: var(--pop-green-dark);
  color: #fff;
  border-top: none;
  padding: 50px 40px 36px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url('christina-avatar.webp');
  background-size: cover;
  background-position: center;
  border: 2px solid var(--pop-yellow);
}

.footer-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}

.footer-role {
  font-family: var(--font-pop);
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-address {
  font-family: var(--font-pop);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  text-align: right;
}

.footer-address-label {
  font-family: var(--font-pop);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pop-yellow);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-bottom {
  max-width: 1080px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-family: var(--font-pop);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-phone {
  display: inline-block;
  margin-top: 6px;
  color: var(--pop-yellow);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover { text-decoration: underline; }

.footer-legal {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-legal:hover { text-decoration: underline; }


/* ─────── RESPONSIVE ─────── */
@media (max-width: 768px) {
  /* Sur mobile uniquement : bloque tout débordement horizontal résiduel.
     Sans danger ici car le bloc steps n'utilise pas de position:sticky en mobile
     (il devient une timeline verticale classique). */
  html { overflow-x: hidden; }

  body { padding-top: 73px; }
  .lp-header { padding: 12px 20px; justify-content: center; }
  .lp-header .btn-primary { display: none; }

  .lp-hero { padding: 0; }
  .hero-content { padding: 28px 20px 36px; }
  .hero-h1 {
    font-size: 34px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .hero-h1 em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .hero-sep { display: none; }

  .btn-hero {
    width: 80%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .br-mobile { 
    display: inline; 
  }
  .br-desktop {
    display: none;
  }

  /* Container du titre 6 raisons : moins d'espace, pas de padding-bottom */
  /* Sur mobile : fond jaune (pas de zoom), titre + sous-titre en vert */
  .container {
    height: auto;
    padding: 40px 20px 0;
    align-items: center;
    background: var(--pop-yellow);
  }

  #text-wrapper { width: 90vw; max-width: 90vw; overflow: hidden; }
  .reasons-title-big { font-size: 13vw; color: var(--pop-green); }
  .reasons-title-small { font-size: 4vw; color: var(--pop-green); }
  .zoom-letter { color: var(--pop-green); }

  /* Cache l'indicateur de scroll sur mobile */
  .scroll-downs { display: none; }

  /* Section des pastilles en jaune (charte pop) */
  .section-2.sage-dark {
    background-color: var(--pop-yellow);
    min-height: auto;
    padding: 50px 20px 60px;
  }

  .reason-item {
    transform: none !important;
    padding: 14px 18px;
  }
  .reason-text { font-size: 13px; white-space: normal; }

  /* Le conteneur reprend toute la largeur sur mobile (pas 65% comme desktop) */
  .reasons-list {
    width: 100%;
    gap: 16px;
  }

  /* ─────────── Bloc Bénéfices MOBILE — Carrousel swipe natif ─────────── */
  .benefits-section { padding: 60px 0 40px; }
  .benefits-title {
    font-size: 32px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .benefits-title em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .benefits-sub { font-size: 16px; padding: 0 20px; }
  .benefits-header { margin-bottom: 30px; padding: 0 20px; }

  /* Cacher le menu nav desktop sur mobile */
  .benefits-nav { display: none; }

  /* Le conteneur du carrousel */
  .benefits-carousel-wrap {
    padding: 0;
    overflow: visible;
  }

  /* CARROUSEL : la liste devient un défilement horizontal natif avec snap */
  .benefits-list {
    display: flex;
    flex-direction: row;
    gap: 14px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
  }
  .benefits-list::-webkit-scrollbar { display: none; }

  /* Chaque carte du carrousel mobile */
  .benefit-block {
    flex-shrink: 0;
    width: 85vw;
    max-width: 360px;
    padding: 0;
    border: 2px solid var(--pop-green);
    border-radius: 16px;
    background: #fff;
    scroll-snap-align: center;
    overflow: hidden;
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    cursor: default;
    box-shadow: 4px 4px 0 var(--pop-green);
  }

  /* Numéro géant caché sur mobile */
  .benefit-number-bg {
    display: none;
  }

  /* Label dans la carte caché sur mobile */
  .benefit-number-label {
    display: none;
  }

  /* Contenu de la carte */
  .benefit-content {
    position: relative;
    z-index: 1;
    padding: 28px 24px 24px;
  }

  .benefit-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .benefit-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  /* Photo de Christina intégrée dans chaque carte */
  .benefit-card-photo {
    aspect-ratio: 16/10;
    border-radius: 12px;
    border: 2px solid var(--pop-green);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
  }

  .benefit-card-photo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--pop-green);
  }

  .benefit-card-photo-caption {
    font-family: var(--font-pop);
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    color: var(--pop-green);
    background: rgba(255,255,255,0.9);
    padding: 3px 10px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
  }

  /* Indicateurs : dots + compteur thématique sur mobile */
  .benefits-indicators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 0;
  }

  .benefits-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .benefits-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pop-green);
    opacity: 0.3;
    transition: all 0.3s ease;
  }

  .benefits-dot.active {
    background: var(--pop-green);
    opacity: 1;
    width: 20px;
    border-radius: 4px;
  }

  .benefits-counter {
    font-family: var(--font-pop);
    font-size: 13px;
    color: var(--pop-text);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .benefits-counter strong {
    color: var(--pop-green);
    font-weight: 600;
  }

  /* ─────────── Bloc Comment ça se passe MOBILE — Timeline verticale ─────────── */
  /* On annule le pin desktop : la section reprend une hauteur naturelle */
  .steps-section { height: auto; padding: 0 0 50px; }
  .steps-pin-wrap {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
    padding: 0;
  }
  .steps-header { padding: 50px 24px 36px; }
  .steps-title {
    font-size: 30px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .steps-title em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .steps-sub { font-size: 14px; }

  /* Le layout passe en bloc simple */
  .steps-layout {
    display: block;
    grid-template-columns: none;
    gap: 0;
    max-width: 100%;
    padding: 0 24px;
  }

  /* Cacher la colonne visuelle desktop sur mobile */
  .steps-visual-col {
    display: none;
  }

  /* Cacher la barre de progression desktop (on en met une dédiée dans la timeline) */
  .steps-progress {
    display: none;
  }

  /* Liste : timeline verticale avec ligne à gauche */
  .steps-list {
    position: relative;
    display: block;
    padding: 0;
    transform: none !important;
  }

  /* La ligne verticale qui traverse les étapes */
  .steps-list::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #e6dcc8;
    z-index: 0;
  }

  /* Le remplissage de la ligne (vert pop) qui grandit au scroll */
  .steps-line-fill {
    display: block;
    position: absolute;
    left: 13px;
    top: 12px;
    width: 2px;
    height: 0%;
    background: var(--pop-green);
    z-index: 1;
    transition: height 0.3s ease-out;
  }

  /* Chaque étape : pleine opacité (pas d'effet actif/inactif sur mobile) */
  .step-block {
    display: block;
    position: relative;
    padding-left: 44px;
    margin-bottom: 36px;
    opacity: 1;
    gap: 0;
  }
  .step-block:last-child {
    margin-bottom: 0;
  }

  /* Le rond numéroté sur la ligne */
  .step-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    font-size: 13px;
    border: 3px solid var(--pop-cream);
    z-index: 2;
    box-shadow: none;
    /* Par défaut neutre sur mobile (la ligne se remplit au scroll via JS) */
    background: #fff;
    color: var(--pop-green);
  }

  /* Quand l'étape est atteinte au scroll, le rond devient jaune */
  .step-block.reached .step-dot {
    background: var(--pop-yellow);
    color: var(--pop-green);
  }

  .step-eyebrow {
    font-size: 10px;
    padding-top: 2px;
    margin-bottom: 6px;
  }

  .step-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  /* Le texte dans une carte blanche sticker */
  .step-text-wrap {
    background: #fff;
    border: 2px solid var(--pop-green);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 3px 3px 0 var(--pop-green);
  }

  .step-text {
    font-size: 13px;
    line-height: 1.6;
  }

  /* ─────────── Photo cover MOBILE — bloc normal sous les étapes ─────────── */
  /* La photo n'est plus en overlay : elle s'affiche comme un bloc plein écran
     classique après la timeline des étapes. */
  .cover-photo {
    position: relative;
    inset: auto;
    transform: none !important;
    height: 60vh;
    margin-top: 40px;
    z-index: auto;
  }

  .cover-photo-caption {
    font-size: 13px;
    text-align: center;
    margin: 0 16px;
  }

  /* ─────────── Bloc Tarifs MOBILE ─────────── */
  .tarif-section { padding: 50px 24px 60px; }
  .tarif-title {
    font-size: 30px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .tarif-title em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .tarif-sub { font-size: 15px; }
  .tarif-header { margin-bottom: 40px; }
  .tarif-badge { flex-wrap: wrap; }

  /* Les 2 cartes s'empilent verticalement avec un écart */
  .tarif-grid {
    flex-direction: column;
    gap: 20px;
  }

  .tarif-col {
    padding: 30px 22px;
  }

  .tarif-col-divider {
    display: none;
  }

  .tarif-col-price { font-size: 64px; }
  .tarif-col-price span { font-size: 32px; }
  .tarif-col-duration { min-height: auto; }

  /* ─────────── Bloc Témoignages MOBILE ─────────── */
  .avis-section { padding: 50px 0 60px; }
  .avis-header { margin-bottom: 36px; padding: 0 24px; }
  .avis-title { font-size: 30px; }
  .avis-google-badge { padding: 10px 18px; gap: 12px; }
  .avis-badge-av { width: 28px; height: 28px; font-size: 13px; }

  /* Cartes un peu plus petites sur mobile */
  .avis-card {
    width: 280px;
    padding: 18px 20px;
  }
  .avis-texte { font-size: 12px; }

  /* Le défilement continue (pas de pause au survol, inutile sur mobile) */
  .marquee-row.row1 { animation-duration: 50s; }
  .marquee-row.row2 { animation-duration: 50s; }

  /* ─────────── Bloc FAQ MOBILE ─────────── */
  .faq-section { padding: 50px 24px 60px; }
  .faq-title {
    font-size: 30px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .faq-title em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .faq-header { margin-bottom: 36px; }

  /* Les 2 colonnes s'empilent : carte de relance sous l'accordéon */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* La carte de relance n'est plus collante sur mobile */
  .faq-cta-card {
    position: static;
    top: auto;
  }

  .faq-q { font-size: 15px; padding: 18px 20px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 13px; }

  /* ─────────── Bloc CTA MOBILE ─────────── */
  .cta-top { padding: 50px 24px 40px; }
  .cta-title {
    font-size: 32px;
    -webkit-text-stroke: 1.5px var(--pop-green);
    text-shadow: 2px 2px 0 var(--pop-green);
  }
  .cta-title em { -webkit-text-stroke: 1.5px var(--pop-green); }
  .cta-sub { font-size: 15px; }
  .cta-bottom { padding: 40px 20px 50px; }

  /* Carte bien centrée et contenue sur mobile (pas de débordement à droite) */
  .cta-card-wrap {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cta-card {
    padding: 28px 22px;
    box-sizing: border-box;
    box-shadow: 4px 4px 0 var(--pop-yellow);
  }

  /* Les champs s'empilent verticalement */
  .cta-fields-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cta-field label { white-space: normal; }
  .cta-btn-join {
    width: 100%;
    padding: 16px;
    margin-top: 4px;
  }
  .cta-success-title { font-size: 24px; }

  /* ─────────── Footer MOBILE ─────────── */
  .lp-footer { padding: 36px 24px 28px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-address { text-align: center; }
}
