/* =====================================================================
   9 MOIS DE DOUCEUR — Design system partagé
   Basé sur focus-yogapre/index.html (palette rose poudré)
   ===================================================================== */

/* ===================== TOKENS ===================== */
:root {
  --accent:       #C47A8A;
  --accent-hover: #B06678;
  --accent-light: #F9EBED;
  --accent-mid:   #E8B4C0;
  --cream:        #FDF6F0;
  --cream-dark:   #F5EDE5;
  --text:         #2D2D2D;
  --text-muted:   #6B7280;
  --border:       #EDE0E3;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 2px 16px rgba(196,122,138,.12);
  --shadow-lg:    0 8px 40px rgba(196,122,138,.18);
  --font-h:       'Cormorant Garamond', Georgia, serif;
  --font-b:       'DM Sans', -apple-system, sans-serif;
  --max:          1120px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.reg { font-size: 0.5em; vertical-align: super; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.6; font-variant-numeric: lining-nums; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== HELPERS ===================== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-align: center;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,122,138,.35);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 6px 24px rgba(196,122,138,.4); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-light); }
.btn--white {
  background: var(--white);
  color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  white-space: nowrap;
}
.btn--white:hover { background: var(--cream); }
.btn--full { width: 100%; justify-content: center; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo span { color: var(--accent); }

/* Nav links (desktop) */
.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color .15s, background .15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--text); background: var(--accent-light); }

/* Dropdown nav */
.nav__dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-toggle svg {
  transition: transform .2s;
}
.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Pont invisible toujours présent dans le DOM — comble le gap entre trigger et menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav__dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent-hover);
}
.nav__dropdown-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Nav CTA */
.nav__cta { display: none; }
@media (min-width: 1100px) { .nav__cta { display: inline-flex; } }

/* Hamburger (mobile) */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
@media (min-width: 900px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: block; }
.nav__mobile-section { margin-bottom: 24px; }
.nav__mobile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  padding: 0 4px;
}
.nav__mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .15s;
  margin-bottom: 4px;
}
.nav__mobile-link:hover { background: var(--accent-light); color: var(--accent-hover); }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #FEF0F2 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 420px; }
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  background: var(--accent-light);
  color: var(--accent-hover);
}
.badge--accent {
  background: var(--accent);
  color: var(--white);
}

/* CTA Premier cours offert */
.cta-offert {
  display: block;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--cream);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s;
}
.cta-offert:hover {
  border-color: var(--accent-hover);
  background: var(--accent-light);
}
.cta-offert__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.cta-offert__title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cta-offert__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .cta-offert { padding: 36px 24px; }
  .cta-offert__title { font-size: 24px; }
}
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__proof-item svg { color: var(--accent); flex-shrink: 0; }
.hero__proof-google { transition: color .15s; }
.hero__proof-google:hover { color: var(--accent); }
.hero__proof-google:hover svg { stroke: var(--accent); }

/* Hero image (pages service) */
.hero--img .hero__grid {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero--img .hero__grid { grid-template-columns: 1fr 460px; }
}
.hero__img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--accent-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

/* Hero formulaire */
.hero__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.hero__form-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero__form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===================== FORMS ===================== */
.form-guide { display: flex; flex-direction: column; gap: 12px; }
.form-guide input,
.form-guide select,
.form-guide textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  -webkit-appearance: none;
}
.form-guide textarea { resize: vertical; min-height: 100px; }
.form-guide input::placeholder,
.form-guide textarea::placeholder { color: var(--text-muted); }
.form-guide input:focus,
.form-guide select:focus,
.form-guide textarea:focus { outline: none; border-color: var(--accent); }
.form-guide label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.form-guide .rgpd {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-guide .rgpd a { text-decoration: underline; }

/* Message merci (formsubmit redirect) */
.merci-msg {
  display: none;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--accent-hover);
  font-weight: 500;
  margin-bottom: 32px;
}
.merci-msg.visible { display: block; }

/* Bonus badge */
.bonus-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.bonus-badge__icon { font-size: 20px; flex-shrink: 0; }
.bonus-badge__text { font-size: 13px; line-height: 1.5; }
.bonus-badge__text strong { display: block; color: var(--accent-hover); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }

/* Form inline (leadmagnet) */
.form-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .form-inline { flex-direction: row; }
  .form-inline input { flex: 1; }
}
.form-inline input {
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-b);
  font-size: 15px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.form-inline input::placeholder { color: rgba(255,255,255,.7); }
.form-inline input:focus { outline: 2px solid rgba(255,255,255,.5); background: rgba(255,255,255,.25); }

/* ===================== BENEFITS GRID ===================== */
.benefits__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card__soon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-card__img {
  margin: -28px -24px 20px;
  width: calc(100% + 48px);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.benefit-card h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===================== SERVICE CARDS (hub pages) ===================== */
.services__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services__grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.service-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-card__mode {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: -8px;
}
.service-card__title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card__price {
  font-size: 14px;
  color: var(--text-muted);
}
.service-card__price strong {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--text);
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ===================== ABOUT / CHARLOTTE ===================== */
.about__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) { .about__grid { grid-template-columns: 420px 1fr; } }

.about__photo { position: relative; }
.about__photo-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--accent-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.about__cert-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--accent-light);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__cert-badge__text { font-size: 12px; line-height: 1.4; }
.about__cert-badge__text strong { display: block; font-size: 13px; }
.about__content .section-title { margin-bottom: 8px; }
.about__content .section-label { margin-bottom: 12px; }
.about__bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about__bio strong { color: var(--text); }
.about__certif {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.certif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.certif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.about__stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.about__stat__num {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.about__stat__label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ===================== TESTIMONIALS ===================== */
.testimonials__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card--featured {
  border-color: var(--accent-mid);
  background: var(--accent-light);
}
.testi-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.testi-text {
  font-family: var(--font-h);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author__name { font-size: 14px; font-weight: 600; }
.testi-author__ctx { font-size: 12px; color: var(--text-muted); }
.testi-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 20px;
  padding: 3px 10px;
}
.testi-card--compact .testi-text { font-size: 15px; }

/* ===================== OFFERS / PRICING ===================== */
.offers__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) { .offers__grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
@media (min-width: 640px) and (max-width: 899px) { .offers__grid { grid-template-columns: repeat(2, 1fr); } }
.offers__grid--2 { max-width: 720px; margin: 0 auto; }
@media (min-width: 640px) { .offers__grid--2 { grid-template-columns: repeat(2, 1fr); } }

/* Inclus grid (programme HypnoNaissance) */
.inclus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 24px auto 0;
}
@media (min-width: 640px) { .inclus__grid { grid-template-columns: repeat(2, 1fr); } }
.inclus__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
}
.inclus__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.offer-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.offer-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.offer-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.offer-card__title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.offer-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.offer-card__price .amount {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.offer-card__price .amount--free { color: var(--accent); }
.offer-card__price .old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.offer-card__price .note {
  font-size: 13px;
  color: var(--text-muted);
}
.offer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.offer-feature__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
}

/* ===================== STEPS / HOW IT WORKS ===================== */
.how__grid {
  display: grid;
  gap: 32px;
  position: relative;
}
@media (min-width: 700px) { .how__grid { grid-template-columns: repeat(3, 1fr); } }

.how-step { text-align: center; padding: 32px 20px; }
.how-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(196,122,138,.3);
}
.how-step h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Steps list (programme séances) */
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-item__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196,122,138,.3);
}
.step-item__body { padding-top: 8px; }
.step-item__body h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-item__body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Steps horizontaux (hub pages) */
.steps-h {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 700px) { .steps-h { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.steps-h__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.steps-h__body { width: 100%; }
.steps-h__body h3 { font-family: var(--font-h); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.steps-h__body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Formats visio/présentiel (programme HypnoNaissance) */
.prog-formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .prog-formats { grid-template-columns: repeat(2, 1fr); } }
.prog-format {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}
.prog-format__img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.prog-format h3 { font-family: var(--font-h); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.prog-format p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Accordion programme séances */
.prog-accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prog-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.prog-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 600;
}
.prog-item summary::-webkit-details-marker { display: none; }
.prog-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}
.prog-item[open] summary::after { content: '−'; }
.prog-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-item__body { padding: 0 24px 20px 72px; }
.prog-item__body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.prog-item__body li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.prog-item__body li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

/* ===================== LEADMAGNET / CTA BAND ===================== */
.leadmagnet {
  background: linear-gradient(135deg, var(--accent) 0%, #B06678 100%);
  color: var(--white);
}
.leadmagnet__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.leadmagnet__title {
  font-family: var(--font-h);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}
.leadmagnet__sub {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 36px;
  line-height: 1.6;
}
.leadmagnet__rgpd { font-size: 12px; opacity: .65; margin-top: 14px; }

/* ===================== BRIDGE / CTA SECTION ===================== */
.bridge {
  background: linear-gradient(135deg, #FDF0F3 0%, var(--cream) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bridge__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.bridge__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}
.bridge__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.bridge__text strong { color: var(--text); }

/* ===================== FAQ ===================== */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
details {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
details[open] { border-color: var(--accent-mid); }
summary {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 16px 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.faq__answer a { color: var(--accent); text-decoration: underline; }

/* ===================== QUIZ ===================== */
.quiz__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.quiz-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}
.quiz-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.quiz-item span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.quiz__result {
  max-width: 700px;
  margin: 24px auto 0;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  display: none;
}
.quiz__result--yes {
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  color: var(--accent-hover);
}
.quiz__result--maybe {
  background: #EEF4FF;
  border: 1.5px solid #B8D0F5;
  color: #1E3A6E;
}
.quiz__result--no {
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.quiz__result.visible { display: block; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent-mid); }
.footer__tagline { font-size: 14px; line-height: 1.6; }
.footer__contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.footer__contact a:hover { color: var(--accent-mid); }
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li a { font-size: 14px; transition: color .15s; }
.footer__col li a:hover { color: var(--accent-mid); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer__bottom a { text-decoration: underline; }
.footer__bottom a:hover { color: var(--accent-mid); }

/* ===================== STICKY CTA MOBILE ===================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  display: flex;
  gap: 8px;
}
.sticky-cta .btn {
  flex: 1;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  justify-content: center;
}
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ===================== PAGE HERO SIMPLE (hub pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #FEF0F2 100%);
  padding: 60px 0;
  text-align: center;
}
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===================== UTILS ===================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

@media (max-width: 899px) {
  .section { padding: 56px 0; }
  .about__cert-badge { bottom: 12px; right: 12px; }
}
@media (max-width: 599px) {
  .section { padding: 48px 0; }
  .hero { padding: 56px 0 80px; }
}
