/* ============================================================
   COSMMUNITY — Design System
   CSS fidèle au site cosmmunity.fr (extrait Webflow)
   Fonts: Buona Display · Modernera · Inter
   ============================================================ */

/* ---- Fonts custom Cosmmunity (depuis le CDN Webflow) ---- */
@font-face {
  font-family: 'Buona Display';
  src: url('https://cdn.prod.website-files.com/66032a57ac67e0d9467a21e4/6661a00768f1d66a59e794be_Buona-Display-Medium.zip') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Modernera';
  src: url('https://cdn.prod.website-files.com/66032a57ac67e0d9467a21e4/666184a71463da47be7904a7_ModernEra-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kindnessmatters';
  src: url('https://cdn.prod.website-files.com/66032a57ac67e0d9467a21e4/6661a07d541502db92d68e39_KindnessMatters.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kindnessmatters Solid';
  src: url('https://cdn.prod.website-files.com/66032a57ac67e0d9467a21e4/6661a08e77ab1989b5f844d3_KindnessMatters_solid.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables exactes Cosmmunity ---- */
:root {
  --black:         #1d1d39;
  --royal-blue:    #5465ff;
  --jaune:         #ffa827;
  --parme:         #caa8f5;
  --white:         white;
  --light-grey-2:  #ccd3d9;
  --light-bg:      #f8f4eb;
  --orange:        #f96f26;

  /* Alias pratiques */
  --dark:          var(--black);
  --dark-mid:      #282556;
  --gray:          #6b7094;
  --gray-light:    #e4e6f1;
  --border:        #e4ebf3;
  --bg-peach:      #f9e1d0;

  /* Typographie */
  --font-body:     'Inter', Arial, Helvetica, sans-serif;
  --font-display:  'Modernera', 'Inter', Arial, sans-serif;
  --font-deco:     'Buona Display', 'Inter', Arial, sans-serif;

  /* Formes — fidèles au site (carré 4px, pas pill) */
  --radius:        4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --radius-full:   100px;

  /* Ombres fidèles */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(150,163,181,.08);
  --shadow-lg:   0 4px 130px rgba(150,163,181,.12);
  --shadow-xl:   0 24px 48px rgba(0,0,0,.18);

  --transition:  .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Layout ---- */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 30px; }
.container--sm { max-width: 640px;  margin: 0 auto; padding: 0 30px; }
.container--md { max-width: 880px;  margin: 0 auto; padding: 0 30px; }

/* ---- Typographie — fidèle Cosmmunity ---- */
h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
}
h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}
p { color: var(--gray); line-height: 1.7; }
.lead {
  font-size: 1.15rem;
  line-height: 1.72;
  color: var(--dark-mid);
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.eyebrow--white  { color: rgba(255,255,255,0.5); }
.eyebrow--parme  { color: var(--parme); }

/* ---- Buttons — fidèles Cosmmunity (border-radius: 4px) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: var(--radius); /* 4px — carré comme le site original */
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Bouton hero / CTA principal — Orange */
.btn--primary {
  background-color: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background-color: #e05c18;
  color: var(--white);
}

/* Bouton standard — Parme */
.btn--parme {
  background-color: var(--parme);
  color: var(--white);
  border: 1px solid var(--parme);
}
.btn--parme:hover {
  background-color: transparent;
  color: var(--parme);
}

/* Bouton dark */
.btn--dark {
  background-color: var(--black);
  color: var(--white);
}
.btn--dark:hover { background-color: var(--dark-mid); }

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--outline:hover {
  background-color: var(--black);
  color: var(--white);
}
.btn--outline-orange {
  background-color: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.btn--outline-orange:hover {
  background-color: var(--orange);
  color: var(--white);
}
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background-color: rgba(255,255,255,0.1); }

/* Ghost (fond neutre) */
.btn--ghost {
  background-color: var(--light-bg);
  color: var(--black);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background-color: #ede8df; }

/* Tailles */
.btn--lg { padding: .75rem 1.5rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.25rem; font-size: .875rem; }

.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Sections (padding fidèle: 80px) ---- */
section { padding: 80px 30px; }
.section--warm   { background: var(--light-bg); }
.section--dark   { background: var(--black);    color: var(--white); }
.section--jaune  { background: var(--jaune);    color: var(--black); }
.section--peach  { background: var(--bg-peach); }
.section--parme  { background: var(--parme);    color: var(--black); }

.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 560px; font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ---- Nav — fond #f8f4eb comme le vrai site ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}
/* Fallback texte si l'image n'est pas encore disponible */
.nav__logo em { font-style: normal; color: var(--orange); }

/* Logo footer */
.footer__brand-logo img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  /* Rendre le logo visible sur fond sombre */
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: #1a1b1f;
  padding: 5px 10px;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  border-radius: var(--radius-md);
}
.nav__links a:hover  { color: rgba(26,27,31,0.75); }
.nav__links a.active { color: var(--orange); font-weight: 600; }

/* ---- Dropdown submenu ---- */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #1a1b1f;
  padding: 5px 10px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
}
.nav__dropdown-trigger:hover { color: rgba(26,27,31,0.75); }
.nav__dropdown-chevron {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav__dropdown:hover .nav__dropdown-chevron,
.nav__dropdown.open .nav__dropdown-chevron {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(29,29,57,0.12);
  padding: 18px 8px 8px; /* padding-top crée l'espace visuel sans gap */
  min-width: 280px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.15s;
}
.nav__dropdown-item:hover {
  background: var(--light-bg);
}
.nav__dropdown-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav__dropdown-item__icon--orange { background: rgba(249,111,38,0.12); }
.nav__dropdown-item__icon--blue   { background: rgba(84,101,255,0.10); }
.nav__dropdown-item__icon--jaune  { background: rgba(255,168,39,0.12); }
.nav__dropdown-item__text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.nav__dropdown-item__text span {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}
.nav__cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Proof bar ---- */
.proof-bar {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 10px 30px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}
.proof-bar strong { color: var(--jaune); font-weight: 700; }
.proof-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-bar__sep { opacity: 0.25; }

/* ---- Hero — fond light-bg comme le site ---- */
.hero {
  background-color: var(--light-bg);
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
/* Tag pill */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,111,38,0.12);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(249,111,38,0.2);
}
.tag-pill--dark {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.tag-pill--parme {
  background: rgba(202,168,245,0.15);
  color: #8b5cf6;
  border-color: rgba(202,168,245,0.3);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__anchor {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero__anchor-icon {
  width: 18px;
  height: 18px;
  background: rgba(249,111,38,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.hero__visual {
  background: rgba(249,111,38,0.03);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px dashed rgba(249,111,38,0.35);
}
.hero__visual img,
.hero__visual picture { width:100%; height:100%; object-fit:cover; display:block; }
.hero__visual-content {
  padding: 0; width:100%; height:100%;
  display: flex; align-items: stretch;
}
.hero__visual-content .photo-placeholder {
  border: none;
  border-radius: 0;
  min-height: unset;
  flex: 1;
}
/* Badge flottant */
.hero__badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}
.hero__badge-float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,111,38,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(249,111,38,0); }
}
.hero__badge-float-text { font-size: 0.8rem; font-weight: 700; color: var(--black); font-family: var(--font-display); }
.hero__badge-float-sub  { font-size: 0.72rem; color: var(--gray); }

/* ---- Stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.stat-card__label { font-size: 0.9rem; color: var(--gray); line-height: 1.55; }
.stat-card__label strong { color: var(--black); font-weight: 600; }

/* Nuance box */
.nuance-box {
  background: #fff8e1;
  border-left: 4px solid var(--jaune);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 40px;
}
.nuance-box p { color: var(--dark-mid); font-size: 0.93rem; }

/* ---- Before / After ---- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.before-after__col { border-radius: var(--radius-lg); padding: 32px; }
.before-after__col--before { background: var(--white); border: 1px solid var(--border); }
.before-after__col--after  { background: rgba(249,111,38,0.08); border: 1px solid rgba(249,111,38,0.2); }
.before-after__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.before-after__col--before .before-after__label { color: var(--light-grey-2); }
.before-after__col--after  .before-after__label { color: var(--orange); }
.before-after__list { display: flex; flex-direction: column; gap: 12px; }
.before-after__item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.93rem; }
.before-after__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 2px; font-weight: 700;
}
.before-after__col--before .before-after__icon { background: var(--border); color: var(--gray); }
.before-after__col--after  .before-after__icon { background: var(--orange); color: white; }
.before-after__col--before .before-after__item span:last-child { color: var(--dark-mid); }
.before-after__col--after  .before-after__item span:last-child { color: var(--black); }

/* ---- Pilliers ---- */
.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.pillar__icon--orange { background: rgba(249,111,38,0.12); }
.pillar__icon--blue   { background: rgba(84,101,255,0.12); }
.pillar__icon--parme  { background: rgba(202,168,245,0.2); }
.pillar__icon--jaune  { background: rgba(255,168,39,0.15); }
.pillar h4 { margin-bottom: 4px; font-size: 1rem; }
.pillar p  { font-size: 0.9rem; margin: 0; }

/* ---- Conviction card — Dark ---- */
.conviction-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  color: var(--white);
}
.conviction-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 10px; }
.conviction-card > p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.conviction-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.conviction-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.conviction-stat__num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--jaune); letter-spacing: -0.03em; }
.conviction-stat__label { font-size: 0.77rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ---- Quiz ---- */
.quiz-block {
  background: rgba(202,168,245,0.15);
  border: 1px solid rgba(202,168,245,0.35);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}
.quiz-block h2 { margin-bottom: 14px; }
.quiz-block p  { font-size: 1.05rem; max-width: 460px; margin: 0 auto 32px; }
.quiz-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.quiz-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.82rem;
  color: var(--dark-mid);
  font-weight: 500;
}

/* ---- Offer cards ---- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}
.offer-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 130px rgba(150,163,181,0.2);
  transform: translateY(-4px);
}
.offer-card--featured {
  border-color: var(--parme);
  box-shadow: 0 4px 130px rgba(150,163,181,0.3);
}
.offer-card__badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.offer-card__badge--dark { background: var(--black); }
.offer-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.offer-card__icon--orange { background: rgba(249,111,38,0.12); }
.offer-card__icon--blue   { background: rgba(84,101,255,0.12); }
.offer-card__icon--jaune  { background: rgba(255,168,39,0.15); }
.offer-card h3 { font-size: 1.2rem; font-family: var(--font-display); }
.offer-card__tagline { font-size: 0.9rem; font-style: italic; color: var(--gray); margin: 0; }
.offer-card__price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.04em;
}
.offer-card__price span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.offer-card__desc { font-size: 0.9rem; color: var(--gray); margin: 0; line-height: 1.6; }
.offer-card__perks { display: flex; flex-direction: column; gap: 8px; }
.offer-card__perk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--dark-mid);
}
.offer-card__perk::before { content: '✦'; color: var(--orange); font-size: 0.6rem; flex-shrink: 0; margin-top: 4px; }
.offer-card .btn { margin-top: auto; width: 100%; }

/* ---- Community WhatsApp ---- */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.community-visual {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.whatsapp-bubble {
  background: var(--white);
  border-radius: 14px 14px 14px 3px;
  padding: 11px 15px;
  max-width: 86%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.whatsapp-bubble--right {
  background: #d9f7be;
  border-radius: 14px 14px 3px 14px;
  align-self: flex-end;
  margin-left: auto;
}
.whatsapp-bubble p { font-size: 0.87rem; color: var(--black); margin: 0; line-height: 1.5; }
.whatsapp-bubble .meta { font-size: 0.7rem; color: var(--gray); margin-top: 5px; }

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--parme));
  opacity: 0.4;
}
.step { text-align: center; }
.step__num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--white);
}
.step:nth-child(1) .step__num { background: var(--orange); color: var(--white); }
.step:nth-child(2) .step__num { background: var(--black); color: var(--white); }
.step:nth-child(3) .step__num { background: var(--parme); color: var(--black); }
.step h3 { font-size: 1.1rem; margin-bottom: 12px; font-family: var(--font-display); }
.step p  { font-size: 0.9rem; }

/* ---- Testimonial cards — fidèles Cosmmunity ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card__result {
  display: inline-block;
  background: rgba(249,111,38,0.1);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.testimonial-card__quote { font-size: 0.93rem; color: var(--dark-mid); line-height: 1.65; font-style: italic; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--parme);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.82rem;
  flex-shrink: 0;
}
img.testimonial-card__avatar {
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial-card__name { font-weight: 600; font-size: 0.88rem; color: var(--black); }
.testimonial-card__role { font-size: 0.76rem; color: var(--gray); }

/* ---- Founders ---- */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.founder-card__avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--parme) 100%);
}
.founder-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-display); }
.founder-card p  { font-size: 0.9rem; }

.founders-proof {
  margin-top: 28px;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
}
.founders-proof__stat { text-align: center; padding: 8px 16px; }
.founders-proof__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--jaune);
  letter-spacing: -0.04em;
  display: block;
}
.founders-proof__label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ---- Guarantee ---- */
.guarantee-box {
  background: rgba(249,111,38,0.08);
  border: 1px solid rgba(249,111,38,0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.guarantee-box__icon { font-size: 3rem; }
.guarantee-box h2 { color: var(--black); }
.guarantee-box p { max-width: 520px; font-size: 1.02rem; color: var(--dark-mid); }

/* ---- FAQ ---- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.95rem; }

/* ======================================================
   PHOTO PLACEHOLDERS — espaces pour les visuels
   Remplacer par <img> quand les photos sont prêtes
====================================================== */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(249,111,38,0.35);
  border-radius: var(--radius-lg);
  background: rgba(249,111,38,0.03);
  color: rgba(249,111,38,0.75);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 24px 16px;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}
.photo-placeholder__icon { font-size: 2rem; line-height: 1; display: block; }
.photo-placeholder__label { opacity: 0.85; }
/* Taille hero — visuel principal */
.photo-placeholder--hero {
  min-height: 340px;
  border-radius: var(--radius-xl);
}
/* Taille portrait — photos fondatrices */
.photo-placeholder--portrait {
  aspect-ratio: 3/4;
  min-height: unset;
  max-width: 200px;
  font-size: 0.75rem;
}
/* Taille large — visuel de section */
.photo-placeholder--wide {
  min-height: 220px;
}
/* Taille carrée */
.photo-placeholder--square {
  aspect-ratio: 1/1;
  min-height: unset;
}

/* Zone photo fondatrice dans les cards */
.founder-photo-slot {
  width: 200px;
  flex-shrink: 0;
}
.founder-photo-slot .photo-placeholder {
  aspect-ratio: 3/4;
  min-height: unset;
  padding: 20px 12px;
  border-radius: var(--radius-lg);
  font-size: 0.72rem;
}
.founder-photo-slot img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 32px rgba(29,29,57,0.12);
}

/* Photo dans teacher-card (formation pages) */
.teacher-photo {
  width: 180px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(29,29,57,0.12);
}

/* Layout split hero pour pages formation (texte | visuel) */
.page-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.page-hero__split .page-hero__text { /* naturel */ }
.page-hero__split .btn-group  { justify-content: flex-start; }
.page-hero__split .price-badge { margin-left: 0; }
.formation-visual { position: relative; }
.formation-visual .photo-placeholder--hero {
  aspect-ratio: 4/3;
  min-height: unset;
}
@media (max-width: 860px) {
  .page-hero__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-hero__split .btn-group { justify-content: center; }
  .page-hero__split .price-badge { margin: 0 auto 32px; }
  .page-hero__split { text-align: center; }
  .formation-visual { max-width: 480px; margin: 0 auto; }
}

/* Section "Qui enseigne" sur les pages formation */
.teachers-section { background: var(--light-bg); }
.teachers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.teacher-card .photo-placeholder--portrait { max-width: 180px; }
.teacher-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.teacher-card p { font-size: 0.88rem; color: var(--gray); }
@media (max-width: 600px) {
  .teachers-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- CTA final — fond jaune comme section_cta du site ---- */
/* ---- Articles Substack ---- */
.substack-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.substack-article {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.substack-article:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.substack-article__cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.substack-article__date,
.substack-article__title,
.substack-article__excerpt,
.substack-article__link { padding: 0 24px; }
.substack-article__date { padding-top: 20px; }
.substack-article__link { padding-bottom: 20px; }
.substack-article__date {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.substack-article__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  flex: 1;
}
.substack-article__excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.substack-article__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.substack-article__link:hover { text-decoration: underline; }
.substack-article-skeleton {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  height: 180px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- Rainbow word (collectif) ---- */
.rainbow-word { display: inline; white-space: nowrap; }
.rainbow-word span { display: inline; font-weight: inherit; font-size: inherit; font-family: inherit; }

/* ---- Newsletter section ---- */
.section--newsletter {
  background: var(--parme);
  padding: 80px 30px;
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.newsletter-icon {
  font-size: 2.4rem;
  margin-bottom: 4px;
}
.section--newsletter h2 {
  color: var(--black);
  margin-bottom: 4px;
}
.section--newsletter p {
  color: rgba(29,29,57,0.75);
  max-width: 520px;
  margin: 0 auto 8px;
}
.newsletter-note {
  font-size: 0.78rem;
  color: rgba(29,29,57,0.5) !important;
  margin-top: 4px !important;
}
.substack-embed-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 8px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .substack-articles { grid-template-columns: 1fr; }
}

.cta-final {
  background: var(--jaune);
  padding: 100px 30px;
  text-align: center;
}
.cta-final h2 { color: var(--black); margin-bottom: 16px; }
.cta-final p  { color: rgba(29,29,57,0.7); font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; }

/* ---- Footer ---- */
.footer {
  background: #13132a;
  color: rgba(255,255,255,0.45);
  padding: 64px 30px 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer__brand-logo em { font-style: normal; color: var(--orange); }
.footer__brand-desc { font-size: 0.87rem; line-height: 1.65; }
.footer__col h5 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 0.87rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---- Page hero ---- */
.page-hero {
  padding: 80px 30px 70px;
  text-align: center;
}
.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: var(--orange); font-weight: 500; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { max-width: 600px; margin: 0 auto 32px; }
.price-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--black);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.price-badge .price-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

/* ---- Modules list (style Lovable) ---- */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.module-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.module-card__num {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.module-card__num--bonus {
  background: var(--parme);
}
.module-card__body h4 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.module-card__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 10px;
  font-style: italic;
}
.module-card__body p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.module-card__exercice {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: #f3f3f7;
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}
.module-card__exercice strong {
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .module-card { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px; }
  .module-card__num { width: 40px; height: 40px; font-size: 0.95rem; }
}

/* ---- Témoignages style Lovable (photo ronde + étoiles) ---- */
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(29,29,57,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.temoignage-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.temoignage-card__author .photo-placeholder--avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.temoignage-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.temoignage-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.temoignage-card__stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.temoignage-card__quote {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
}

/* ---- Section Problème (style Lovable — fond parme) ---- */
.section--probleme {
  background: #ede8ff;
  padding: 80px 30px;
}
.probleme__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 12px 0 24px;
  color: var(--black);
}
.probleme__title--orange {
  color: var(--orange);
  display: block;
}
.probleme__intro {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 20px;
}
.probleme-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.probleme-item {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--black);
}
.probleme-item__arrow {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.probleme-callout {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.6;
}
.probleme-callout strong { font-weight: 700; }

/* ---- Ce qui différencie ---- */
.differenciateurs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.differenciateur-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}
.differenciateur-pill::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ---- Program list (ancien style, conservé pour compatibilité) ---- */
.program-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.program-item:last-child { border-bottom: none; }
.program-item:hover { background: var(--light-bg); }
.program-item__num {
  width: 34px; height: 34px;
  background: rgba(249,111,38,0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.87rem; flex-shrink: 0;
}
.program-item h4 { margin-bottom: 6px; font-size: 1rem; }
.program-item p  { font-size: 0.88rem; }

/* ---- Coaching programme card ---- */
.coaching-programme-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 32px rgba(29,29,57,0.08);
  border: 1px solid var(--border);
}
.coaching-programme-card__intro {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 28px;
}
.coaching-steps { display: flex; flex-direction: column; gap: 24px; }
.coaching-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.coaching-step__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.coaching-step h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--black); }
.coaching-step p  { font-size: 0.83rem; color: var(--gray); margin: 0; }

/* ---- Coaching témoignages ---- */
.coaching-temoignages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.coaching-temoignage {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.coaching-temoignage__stars {
  color: var(--jaune);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.coaching-temoignage__highlight {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 0;
}
.coaching-temoignage__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coaching-temoignage__body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.coaching-temoignage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.coaching-temoignage__tags span {
  background: var(--light-bg);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
}
.coaching-temoignage__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.coaching-temoignage__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.coaching-temoignage__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}
.coaching-temoignage__author span {
  font-size: 0.8rem;
  color: var(--gray);
}
@media (max-width: 768px) {
  .coaching-temoignages-grid { grid-template-columns: 1fr; }
}

/* ---- For who ---- */
.for-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.for-who-box { border-radius: var(--radius-lg); padding: 32px; }
.for-who-box--yes { background: rgba(249,111,38,0.07); border: 1px solid rgba(249,111,38,0.18); }
.for-who-box--no  { background: var(--light-bg); border: 1px solid var(--border); }
.for-who-box h3 { font-size: 1.05rem; margin-bottom: 20px; }
.for-who-box--yes h3 { color: var(--orange); }
.for-who-box--no  h3 { color: var(--gray); }
.for-who-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.for-who-item:last-child { margin-bottom: 0; }
.for-who-item__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 2px; font-weight: 700;
}
.for-who-box--yes .for-who-item__icon { background: var(--orange); color: white; }
.for-who-box--no  .for-who-item__icon { background: var(--border); color: var(--gray); }
.for-who-item p { font-size: 0.91rem; margin: 0; color: var(--dark-mid); }

/* ---- Inscription box ---- */
.inscription-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 130px rgba(150,163,181,0.12);
}
.inscription-box__icon { font-size: 2.5rem; margin-bottom: 14px; }
.inscription-box h2 { font-size: 1.7rem; margin-bottom: 8px; }
.inscription-box__format { font-size: 0.92rem; color: var(--gray); margin-bottom: 28px; }
.inscription-box__price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--orange); letter-spacing: -0.05em; line-height: 1; }
.inscription-box__price-ht { font-size: 1rem; font-weight: 400; color: var(--gray); }
.inscription-box__ttc { font-size: 0.85rem; color: var(--gray); margin: 6px 0 28px; }
.inscription-box .btn { width: 100%; margin-bottom: 10px; }
.inscription-box__garantie { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.inscription-box__garantie-title { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; color: var(--black); margin-bottom: 8px; font-size: 0.95rem; }
.inscription-box__garantie p { font-size: 0.85rem; }
.inscription-box__features { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.inscription-box__feature { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gray); }
.inscription-box__feature::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ---- Next step box ---- */
.next-step-box {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 16px;
  border: 1px solid var(--border);
}
.next-step-box p:first-child { font-weight: 600; color: var(--black); margin-bottom: 6px; font-family: var(--font-display); }
.next-step-box p:nth-child(2) { font-size: 0.9rem; margin-bottom: 18px; }

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--orange);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta__info h4 { font-size: 0.93rem; color: var(--black); font-family: var(--font-display); }
.sticky-cta__info p  { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ---- B2B cards ---- */
.b2b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.b2b-grid--4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.b2b-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.b2b-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.b2b-card__icon {
  width: 48px; height: 48px;
  background: rgba(249,111,38,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.b2b-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: var(--font-display); }
.b2b-card p  { font-size: 0.9rem; margin-bottom: 16px; }
.b2b-card ul { display: flex; flex-direction: column; gap: 8px; }
.b2b-card li { display: flex; gap: 8px; font-size: 0.86rem; color: var(--dark-mid); }
.b2b-card li::before { content: '✦'; color: var(--orange); font-size: 0.58rem; margin-top: 4px; }

/* ---- Contact box ---- */
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact-box__icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-box h2 { margin-bottom: 12px; }
.contact-box > p { margin-bottom: 28px; font-size: 1rem; }
.contact-box .btn { width: 100%; margin-bottom: 10px; }
.contact-box__note { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ---- Two col ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__inner > *:last-child { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .b2b-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .container, .container--sm, .container--md { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .b2b-grid { grid-template-columns: 1fr; }
  .b2b-grid--4col { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__hamburger { display: flex; }
  /* Mobile nav menu open state */
  .nav__links.nav--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links.nav--open a {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .nav__links.nav--open a:hover { background: rgba(249,111,38,0.07); }
  .quiz-block { padding: 40px 24px; }
  .guarantee-box { padding: 40px 24px; }
  .inscription-box { padding: 36px 20px; }
  .contact-box { padding: 36px 20px; }
  .founders-proof { gap: 20px; padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .sticky-cta { flex-direction: column; text-align: center; }
  .sticky-cta .btn { width: 100%; }
  .hero { padding: 60px 20px; }
  .founder-photo-slot { width: 140px; }
  .teacher-photo { width: 140px; }
  .coaching-programme-card { padding: 24px; }
}
@media (max-width: 479px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
  .conviction-stats { grid-template-columns: 1fr 1fr; }
  .price-badge { flex-wrap: wrap; justify-content: center; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; }
  .founder-photo-slot { width: 100%; max-width: 160px; margin: 0 auto; }
  .teachers-grid { grid-template-columns: 1fr; gap: 36px; }
  .coaching-temoignage { padding: 24px 18px; }
  .substack-articles { grid-template-columns: 1fr; }
}

/* ---- Utilitaires ---- */
.text-center { text-align: center; }
.text-orange { color: var(--orange) !important; }
.text-white  { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
