/* ==========================================================================
   WOURI ACADEMY — Feuille de style globale
   Structure : template Aelixa · Couleurs : logo officiel Wouri Academy
   Palette échantillonnée pixel par pixel sur WOURI-academy-logo.png
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs de marque (relevées sur le logo) */
  --brand:          #ce0088;   /* magenta principal — corps du logo   */
  --brand-light:    #f81d92;   /* rose vif — haut du dégradé          */
  --brand-dark:     #a0007e;   /* magenta profond — bas du dégradé    */
  --brand-soft:     #fdeaf5;   /* teinte claire pour les fonds        */
  --brand-gradient: linear-gradient(135deg, #f81d92 0%, #a0007e 100%);

  /* Neutres */
  --primary:        #2b2b2b;   /* dérivé du #414141 du mot ACADEMY    */
  --text-secondary: #5f5f5f;
  --mute:           #a9a9a9;
  --bg:             #ffffff;
  --bg-primary:     #f2f2f2;
  --bg-light:       #f6f6f6;
  --bg-secondary:   #fff8fc;   /* blanc très légèrement rosé          */
  --bg-dark:        #1e0c1c;   /* prune profond — cf. visuels 3D      */
  --border:         #efe9ed;
  --border-strong:  #e3d8de;
  --white:          #ffffff;

  /* Typographie */
  --font-display: "Funnel Display", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-h1:      clamp(2.6rem, 7vw, 5.6rem);
  --fs-h2:      clamp(2rem, 4.6vw, 3.6rem);
  --fs-h3:      clamp(1.15rem, 1.7vw, 1.5rem);
  --fs-lead:    clamp(1rem, 1.25vw, 1.15rem);
  --fs-body:    1rem;
  --fs-sm:      .875rem;
  --fs-xs:      .78rem;

  /* Rayons */
  --r-xs:   3px;
  --r-s:    6px;
  --r-m:    12px;
  --r-l:    16px;
  --r-xl:   24px;
  --r-pill: 44px;

  /* Espacements */
  --space-section: clamp(38px, 3.8vw, 64px);
  --container:     1280px;
  --gutter:        clamp(20px, 4vw, 40px);

  /* Divers */
  --shadow-s:  0 1px 2px rgba(36,36,36,.04);
  --shadow-m:  0 8px 30px rgba(36,36,36,.06);
  --shadow-l:  0 18px 50px rgba(36,36,36,.10);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --nav-h:     76px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
}
h1 { font-weight: 800; letter-spacing: -.025em; }

p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a  { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  background: var(--bg-primary);
  object-fit: cover;
}

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-s) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); }

.section--tint { background: var(--bg-secondary); }

.section--dark {
  background: var(--bg-dark);
  color: var(--mute);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

.section__head { max-width: 920px; margin-bottom: clamp(22px, 2.4vw, 36px); }

.section__head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section__title { font-size: var(--fs-h2); }

.section__sub {
  margin-top: 18px;
  font-size: var(--fs-lead);
  max-width: 58ch;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.7;
}

.section__head--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .section__sub { margin-inline: auto; }

.hl { color: var(--brand); }

/* Eyebrow -------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow--light { color: rgba(255,255,255,.9); }
.eyebrow--center { justify-content: center; }

.eyebrow__arrow {
  width: 15px; height: 15px;
  flex: none;
  color: var(--brand);
}
.eyebrow--light .eyebrow__arrow { color: var(--brand-light); }

.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
}

/* Cartes ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--border-strong);
}

/* --------------------------------------------------------------------------
   4. BOUTONS & LIENS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn__ico { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.btn:hover .btn__ico { transform: translateX(3px); }

.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--brand); color: var(--white); }

.btn--brand { background: var(--brand); color: var(--white); }
.btn--brand:hover { background: var(--brand-dark); color: var(--white); }

.btn--light { background: var(--white); color: var(--primary); }
.btn--light:hover { background: var(--brand); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn--outline:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.btn--ghost { background: var(--bg-primary); color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--white); }

.btn--sm  { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--lg  { padding: 16px 30px; font-size: var(--fs-body); }
.btn--block { display: flex; width: 100%; }

.section--dark .btn--outline { color: var(--white); border-color: rgba(255,255,255,.25); }
.section--dark .btn--outline:hover { background: var(--white); color: var(--primary); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-arrow:hover { border-color: var(--brand); color: var(--brand-dark); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck { border-color: var(--border); box-shadow: var(--shadow-s); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { width: 40px; height: 40px; background: none; object-fit: contain; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--brand);
}
.nav__logo-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--primary);
  margin-top: 2px;
}

.nav__list { display: flex; align-items: center; gap: 4px; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border: 0;
  background: none;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--primary); background: var(--bg-primary); }

.nav__chevron { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.nav__item--has-drop { position: relative; }
.nav__item--has-drop.is-open .nav__chevron { transform: rotate(180deg); }

.nav__drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 290px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__item--has-drop.is-open .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__drop-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--r-m);
  transition: background-color .2s var(--ease);
}
.nav__drop-link:hover { background: var(--bg-primary); }
.nav__drop-ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: var(--r-s);
  background: var(--brand-soft);
  font-size: 1rem;
}
.nav__drop-ico svg { width: 19px; height: 19px; color: var(--brand); }
.nav__drop-link strong { display: block; font-size: var(--fs-sm); color: var(--primary); font-weight: 600; }
.nav__drop-link em { display: block; font-size: var(--fs-xs); font-style: normal; color: var(--mute); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__login { font-size: var(--fs-sm); font-weight: 500; color: var(--primary); }
.nav__login:hover { color: var(--brand-dark); }

.nav__mobile-cta { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-s);
  background: var(--white);
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  margin-inline: auto;
  background: var(--primary);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HÉRO
   Photo plein cadre dans un cadre arrondi, titre en surimpression,
   barre de statistiques en pied.
   -------------------------------------------------------------------------- */
.hero {
  /* Cadre pleine largeur, contenu recentre sur la largeur du header */
  padding-block: 0 clamp(32px, 3.4vw, 52px);
  background: var(--bg);
}

.hero__frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(740px, calc(100dvh - var(--nav-h) - 36px));
  border-radius: 0;
  background: var(--bg-dark);
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%;
  background: none;
  animation: heroPhotoIn 1.2s var(--ease) both;
}

@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Voile dégradé : lisibilité du texte en bas et à gauche */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,6,15,.18) 0%, rgba(20,6,15,0) 30%, rgba(20,6,15,.35) 68%, rgba(20,6,15,.66) 100%),
    linear-gradient(90deg, rgba(20,6,15,.68) 0%, rgba(20,6,15,.28) 42%, rgba(20,6,15,0) 68%);
}

.hero__content {
  position: relative;
  width: 100%;
  padding-block: clamp(52px, 7vw, 88px);
  color: var(--white);
}

.hero__inner {
  width: 100%;
  max-width: 680px;
  margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  margin-right: auto;
  padding-inline: 0;
}

/* --- Bouton pilule ------------------------------------------------------ */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 6px 5px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.hero__pill-ico {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  transition: transform .25s var(--ease);
}
.hero__pill-ico svg { width: 13px; height: 13px; }
.hero__pill:hover { transform: translateY(-2px); }
.hero__pill:hover .hero__pill-ico { transform: translateX(3px); }

/* --- Accroche et titre --------------------------------------------------- */
.hero__kicker {
  margin: clamp(20px, 3vw, 34px) 0 6px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 12px rgba(20,6,15,.5);
}

.hero__title {
  margin: 0;
  max-width: 9.5em;
  font-size: clamp(2.35rem, 5.35vw, 4.8rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--white);
  text-shadow: 0 2px 26px rgba(20,6,15,.42);
  text-wrap: balance;
}

/* --- Barre de statistiques ---------------------------------------------- */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(20px, 2.5vw, 30px);
  border-top: 1px solid rgba(255,255,255,.28);
}

.hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 0 0;
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 14px;
}
.hero__stat:first-child { border-left: 0; padding-left: 0; }

.hero__stat-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  padding-top: 5px;
}

.hero__stat-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.25vw, 1.08rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}
.hero__stat-body span {
  display: block;
  margin-top: 3px;
  font-size: .74rem;
  line-height: 1.35;
  color: rgba(255,255,255,.66);
}

/* Apparition avec flou, comme sur la référence */
.hero [data-reveal] {
  filter: blur(8px);
  transition: opacity .72s var(--ease), transform .72s var(--ease), filter .72s var(--ease);
}
.hero [data-reveal].is-visible { filter: blur(0); }

@media (max-width: 900px) {
  .hero__frame { min-height: 660px; align-items: flex-end; }
  .hero__photo { object-position: 72% 22%; }
  .hero__content { padding-block: 42vh 28px; }
  .hero__inner {
    max-width: none;
    margin-inline: 0;
    padding-inline: var(--gutter);
  }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { padding-block: 14px 6px; }
  .hero__stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero__stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 560px) {
  .hero__frame { min-height: 650px; }
  .hero__pill,
  .hero__desc,
  .hero__actions .btn--light { display: none; }
  .hero__title {
    max-width: 9em;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .hero__actions { margin-top: 18px; }
  .hero__stats { margin-top: 18px; }
  .hero__stat { padding: 10px 8px 0 0; }
  .hero__stat-num { display: none; }
  .hero__stat-body strong { font-size: .92rem; }
  .hero__stat-body span { display: none; }
}


/* --------------------------------------------------------------------------
   6 bis. SECTION PROMOTEUR
   -------------------------------------------------------------------------- */
.promoter { padding-bottom: clamp(48px, 5.2vw, 86px); }

.promoter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 24px);
}

/* --- Panneau sombre --------------------------------------------------- */
.promoter__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--bg-dark);
  color: rgba(255,255,255,.62);
}

.promoter__title {
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 22px;
}
.promoter__title-mute { color: rgba(255,255,255,.32); }

.promoter__text {
  max-width: 46ch;
  margin-bottom: 32px;
  font-size: var(--fs-sm);
  line-height: 1.72;
}

.promoter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

/* Carte imbriquée en bas du panneau */
.promoter__mini {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-l);
  background: rgba(255,255,255,.04);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.promoter__mini:hover { background: rgba(255,255,255,.08); border-color: rgba(248,29,146,.45); }

.promoter__mini-media {
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  flex: none;
  border-radius: var(--r-m);
  background: var(--white);
  overflow: hidden;
}
.promoter__mini-media img { width: 78%; height: 78%; object-fit: contain; background: none; }

.promoter__mini-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--white);
}
.promoter__mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--brand-light);
}
.promoter__mini-link svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.promoter__mini:hover .promoter__mini-link svg { transform: translate(2px, -2px); }

/* --- Portrait + cartes de statistiques -------------------------------- */
.promoter__visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-primary);
}

.promoter__photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 22%;
}

.promoter__stats {
  position: absolute;
  left: clamp(14px, 1.4vw, 20px);
  right: clamp(14px, 1.4vw, 20px);
  bottom: clamp(14px, 1.4vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.2vw, 16px);
}

.stat-card {
  padding: clamp(16px, 1.7vw, 22px);
  border-radius: var(--r-l);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(30,12,28,.16);
}

.stat-card__num {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--primary);
}
.stat-card__mark { color: var(--brand); margin-left: 3px; }

.stat-card__label {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--text-secondary);
}

.stat-card__pill {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  padding: 9px 12px;
  border-radius: var(--r-m);
  background: var(--bg-primary);
  font-size: .72rem;
  line-height: 1.35;
  color: var(--primary);
}
.stat-card__pill svg { width: 12px; height: 12px; flex: none; color: var(--brand); }

/* --------------------------------------------------------------------------
   7. MARQUEE
   -------------------------------------------------------------------------- */
.marquee-band {
  padding-block: 18px;
  background: var(--primary);
  overflow: hidden;
}

.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

.marquee__track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--white);
  white-space: nowrap;
}
.marquee__sep {
  width: 7px; height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-light);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--cta { background: none; padding-block: 0 clamp(22px, 2.6vw, 36px); }
.marquee--cta .marquee__track { gap: 34px; }
.marquee--cta .marquee__item {
  color: var(--primary);
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
}
.marquee--cta .marquee__sep { width: 14px; height: 14px; background: var(--brand); }

/* --------------------------------------------------------------------------
   8. PILIERS
   -------------------------------------------------------------------------- */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(26px, 3vw, 38px);
}

.pillar__num {
  position: absolute;
  top: 26px; right: 28px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--bg-primary);
  line-height: 1;
}

.pillar__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: var(--r-m);
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.pillar__icon svg { width: 26px; height: 26px; }

.pillar__title { font-size: var(--fs-h3); }
.pillar__text  { flex: 1; }

/* --------------------------------------------------------------------------
   10. SERVICES
   -------------------------------------------------------------------------- */
.services__list { border-top: 1px solid var(--border); }

.service {
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px) 12px;
  border-bottom: 1px solid var(--border);
  transition: background-color .35s var(--ease), padding-inline .35s var(--ease);
}
.service:hover { background: var(--bg-secondary); padding-inline: 24px; }

.service__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--mute);
  letter-spacing: -.018em;
  transition: color .35s var(--ease);
}
.service:hover .service__num { color: var(--brand); }

.service__title { font-size: var(--fs-h3); margin-bottom: 8px; }
.service__text  { max-width: 62ch; margin: 0; }

.service__link {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  justify-self: end;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--primary);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.service__link svg { width: 16px; height: 16px; }
.service:hover .service__link { background: var(--primary); color: var(--white); transform: rotate(-45deg); }

.services__cta { margin-top: 32px; text-align: center; }

/* --------------------------------------------------------------------------
   11. FORMATIONS (grille)
   -------------------------------------------------------------------------- */
.works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work { overflow: hidden; display: flex; flex-direction: column; }

.work__media {
  position: relative;
  display: block;
  overflow: hidden;
}
.work__media img {
  width: 100%;
  aspect-ratio: 3/2;
  transition: transform .6s var(--ease);
}
.work:hover .work__media img { transform: scale(1.04); }

.work__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--brand);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--white);
}

.work__body { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 12px; flex: 1; }

.work__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work__tags li {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.work__title { font-size: var(--fs-h3); }
.work__title a:hover { color: var(--brand-dark); }
.work__text { flex: 1; margin: 0; font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   12. APPROCHE
   -------------------------------------------------------------------------- */
.approach__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.approach__points { margin: 32px 0; display: grid; gap: 20px; }
.approach__points li { display: flex; gap: 14px; }
.approach__points strong { display: block; color: var(--primary); font-size: var(--fs-body); }
.approach__points p { margin: 3px 0 0; font-size: var(--fs-sm); }

.approach__check {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  flex: none;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--primary);
}
.approach__check svg { width: 15px; height: 15px; }

.approach__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.approach__media {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-dark);
}
.approach__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: none; }

.approach__caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 14px 20px;
  border-radius: var(--r-m);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
}
.approach__caption strong { display: block; font-family: var(--font-display); color: var(--primary); }
.approach__caption span { font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   13. PARCOURS (section sombre)
   -------------------------------------------------------------------------- */
.journey__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.journey__step {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-l);
  background: rgba(255,255,255,.03);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.journey__step:hover { background: rgba(255,255,255,.06); border-color: rgba(248,29,146,.45); }

.journey__num {
  display: inline-block;
  margin-bottom: 16px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.journey__title { font-size: var(--fs-h3); margin-bottom: 12px; }
.journey__text  { margin-bottom: 18px; }

.journey__time {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. TARIFS
   -------------------------------------------------------------------------- */
.pricing .section__head { max-width: 720px; margin-inline: auto; text-align: center; }
.pricing .section__head .eyebrow { justify-content: center; }
.pricing .section__sub { margin-inline: auto; }

.pricing__toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--white);
}
.pricing__toggle-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--mute);
  transition: color .25s var(--ease);
}
.pricing__toggle-label.is-active { color: var(--primary); }

.switch {
  position: relative;
  width: 46px; height: 26px;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--bg-primary);
  transition: background-color .3s var(--ease);
}
.switch[aria-checked="true"] { background: var(--brand); }
.switch__knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease);
}
.switch[aria-checked="true"] .switch__knob { transform: translateX(20px); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: clamp(26px, 3vw, 38px);
}
/* Le bloc de titre occupe la meme hauteur dans les trois cartes */
.plan__head { min-height: 84px; }
.plan__price { min-height: 62px; align-items: baseline; }
.plan__save  { min-height: 1.2em; }
.plan .btn   { margin-top: auto; }

.plan--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-l);
}

.plan__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--brand);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.plan__name { font-size: var(--fs-h3); margin-bottom: 6px; }
.plan__desc { margin: 0; font-size: var(--fs-sm); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.018em;
}
.plan__period { font-size: var(--fs-sm); }

.plan__save {
  margin: -8px 0 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--brand-dark);
}

.plan__features { display: grid; gap: 11px; flex: 1; }
.plan__features li {
  position: relative;
  padding-left: 27px;
  font-size: var(--fs-sm);
}
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 8 3 3 5-6' fill='none' stroke='%23ce0088' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}

.pricing__note {
  margin-top: 26px;
  text-align: center;
  font-size: var(--fs-sm);
}
.pricing__note a { color: var(--primary); font-weight: 600; border-bottom: 1px solid var(--brand); }

/* --------------------------------------------------------------------------
   15. TÉMOIGNAGES / CARROUSEL
   -------------------------------------------------------------------------- */
.carousel { overflow: hidden; }

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform .55s var(--ease);
}

.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 2.8vw, 34px);
}

.testimonial__stars { color: var(--brand); letter-spacing: 3px; font-size: .95rem; }

.testimonial__quote {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -.01em;
}

.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial__author img { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.testimonial__author strong { display: block; font-size: var(--fs-sm); color: var(--primary); }
.testimonial__role { display: block; font-size: var(--fs-xs); color: var(--mute); }

.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.carousel__btn svg { width: 16px; height: 16px; }
.carousel__btn:hover { background: var(--primary); color: var(--white); }
.carousel__btn:disabled { opacity: .35; cursor: not-allowed; }

.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel__dots button {
  width: 8px; height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--border-strong);
  transition: width .3s var(--ease), background-color .3s var(--ease);
}
.carousel__dots button.is-active { width: 26px; border-radius: var(--r-pill); background: var(--brand); }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq__inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.faq__aside .btn { margin-top: 26px; }

.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item h3 { margin: 0; }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 4px;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--brand-dark); }

.faq__icon {
  position: relative;
  width: 34px; height: 34px;
  flex: none;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--primary);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.faq__icon::before { width: 13px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 13px; }

.faq__q[aria-expanded="true"] .faq__icon { background: var(--brand); border-color: var(--brand); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--white); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
/* Le bouton est dans un <h3> : on cible l'item, pas le frère du bouton. */
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; min-height: 0; }
.faq__a-inner p { padding: 0 60px 26px 4px; font-size: var(--fs-sm); margin: 0; }

/* --------------------------------------------------------------------------
   17. BLOG
   -------------------------------------------------------------------------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.post { display: flex; flex-direction: column; gap: 12px; }

.post__media {
  display: block;
  border-radius: var(--r-l);
  overflow: hidden;
}
.post__media img {
  width: 100%;
  aspect-ratio: 3/2;
  transition: transform .6s var(--ease);
}
.post:hover .post__media img { transform: scale(1.05); }

.post__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.post__meta span:not(:first-child) { color: var(--mute); font-weight: 500; letter-spacing: 0; text-transform: none; }
.post__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mute); }

.post__title { font-size: 1.05rem; line-height: 1.3; }
.post__title a:hover { color: var(--brand-dark); }
.post__date { font-size: var(--fs-xs); color: var(--mute); }

/* --------------------------------------------------------------------------
   18. CTA FINALE
   -------------------------------------------------------------------------- */
.cta {
  padding-block: var(--space-section);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta__inner { text-align: center; max-width: 1000px; margin-inline: auto; }
.cta__title {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 16px;
  text-wrap: balance;
}
.cta__text  { font-size: var(--fs-lead); max-width: 62ch; margin: 0 auto 26px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(40px, 4.6vw, 64px) 26px;
  background: var(--bg-dark);
  color: var(--mute);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo img { width: 46px; height: 46px; background: none; object-fit: contain; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer__logo-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--white);
}
.footer__logo-sub {
  margin-top: 3px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--white);
}
.footer__brand .btn { margin-top: 4px; }
.footer__tagline { margin: 18px 0 24px; font-size: var(--fs-sm); max-width: 40ch; }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
}
.footer__col-title {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: var(--fs-sm); transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--white); }

.footer__social { display: flex !important; gap: 10px; margin-top: 20px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: var(--white);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: var(--fs-xs);
}
.footer__bottom p { margin: 0; }
.footer__made { color: var(--white); font-weight: 600; letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   20. ANIMATIONS AU SCROLL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* --------------------------------------------------------------------------
   20 bis. PLACEHOLDER D'IMAGE MANQUANTE (temporaire — à retirer en production)
   -------------------------------------------------------------------------- */
img.is-placeholder {
  background:
    repeating-linear-gradient(45deg, #f4eef2 0 12px, #e9dee6 12px 24px);
  min-height: 120px;
  border-radius: inherit;
}
.approach__media img.is-placeholder{ aspect-ratio: 5/6;  width: 100%; }
.work__media img.is-placeholder,
.post__media img.is-placeholder    { aspect-ratio: 3/2;  width: 100%; }
.testimonial__author img.is-placeholder { width: 44px; height: 44px; min-height: 0; border-radius: 50%; }

/* --------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .blog__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonial   { flex: 0 0 calc((100% - 24px) / 2); }
  .footer__top   { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  :root { --nav-h: 68px; }

  /* Navigation mobile */
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 28px var(--gutter) 40px;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
  }
  .nav__menu.is-open { transform: translateX(0); visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { justify-content: space-between; padding: 15px 4px; font-size: 1.05rem; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav__link:hover, .nav__link.is-active { background: none; }
  .nav__drop-toggle { width: 100%; }

  .nav__drop {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav__item--has-drop.is-open .nav__drop { display: block; }

  .nav__mobile-cta { display: grid; gap: 10px; }
  .nav__actions .nav__login,
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }

  .pillars__grid,
  .journey__list,
  .pricing__grid { grid-template-columns: 1fr; }

  .promoter__grid,
  .approach__inner,
  .faq__inner { grid-template-columns: 1fr; }

  .promoter__visual,
  .promoter__photo { min-height: 0; }
  .promoter__photo { aspect-ratio: 4/3; }
  .promoter__actions { margin-bottom: 32px; }

  .approach__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.approach__media { order: -1; max-width: 520px; }

  .plan--featured { order: -1; }

  .service { grid-template-columns: 60px 1fr 46px; gap: 16px; }
  .service__link { width: 40px; height: 40px; }
}

@media (max-width: 640px) {
  .works__grid,
  .blog__grid  { grid-template-columns: 1fr; }
  .testimonial { flex: 0 0 100%; }
  .promoter__stats { grid-template-columns: 1fr; }
  .stat-card__pill { display: none; }
  .promoter__photo { aspect-ratio: 1/1; }
  .hero__title { max-width: none; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn--sm { width: auto; }
  .hero__actions .btn,
  .cta__actions .btn { flex: 1 1 100%; }
  .faq__a-inner p { padding-right: 10px; }
}

/* --------------------------------------------------------------------------
   22. PRÉFÉRENCES UTILISATEUR
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .nav, .marquee-band, .cta, .footer__social { display: none; }
  body { color: #000; }
}

/* ==========================================================================
   23. COMPOSANTS DES PAGES INTERNES
   ========================================================================== */

/* --- Utilitaire ------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- En-tête de page -------------------------------------------------- */
.pagehead {
  padding-block: clamp(32px, 3.4vw, 52px) clamp(20px, 2.2vw, 32px);
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(206,0,136,.09) 0%, rgba(206,0,136,0) 70%),
    var(--bg);
}
.pagehead--slim { padding-bottom: clamp(20px, 2.4vw, 32px); }

.pagehead__title {
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.pagehead__lead {
  max-width: 58ch;
  margin-top: 22px;
  font-size: var(--fs-lead);
  line-height: 1.7;
}

/* --- Fil d'Ariane ----------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--mute);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb [aria-current] { color: var(--brand); }

/* --- Filtres et puces ------------------------------------------------- */
.filters { padding-bottom: clamp(20px, 3vw, 36px); }
.filters__list { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: var(--white); }

.catalog__count {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--mute);
}

/* --- Article à la une ------------------------------------------------- */
.featured-post { padding-bottom: 0; }

.fpost {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(18px, 2vw, 26px);
  overflow: hidden;
}
.fpost__media { display: block; border-radius: var(--r-l); overflow: hidden; }
.fpost__media img { width: 100%; aspect-ratio: 3/2; transition: transform .6s var(--ease); }
.fpost:hover .fpost__media img { transform: scale(1.03); }

.fpost__title {
  margin: 14px 0 16px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}
.fpost__title a:hover { color: var(--brand); }
.fpost__text { font-size: var(--fs-sm); margin-bottom: 22px; }

.fpost__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  color: var(--mute);
}

/* --- Pagination ------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
}
.pagination__item {
  display: grid;
  place-items: center;
  min-width: 42px; height: 42px;
  padding-inline: 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-s);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.pagination__item:hover { border-color: var(--brand); color: var(--brand); }
.pagination__item.is-active { background: var(--brand); border-color: var(--brand); color: var(--white); }
.pagination__item svg { width: 15px; height: 15px; }

/* --- Tableau comparatif ----------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.ctable {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
}
.ctable th, .ctable td {
  padding: 16px 20px;
  text-align: center;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border);
}
.ctable thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-primary);
}
.ctable tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}
.ctable tbody tr:last-child th,
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable__hl { background: var(--brand-soft); }

.ctable td[data-yes]::before {
  content: "";
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 8 3 3 5-6' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.ctable td[data-no]::before {
  content: "";
  display: inline-block;
  width: 18px; height: 2px;
  vertical-align: middle;
  background: var(--border-strong);
}

.pricing__switchwrap { text-align: center; margin-bottom: clamp(24px, 2.8vw, 36px); }

/* --- Paiement Mobile Money -------------------------------------------- */
.momo {
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(206,0,136,.22);
  border-radius: var(--r-xl);
  background: var(--brand-soft);
}
.momo__head { max-width: 62ch; margin-bottom: 22px; }
.momo__title { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 12px; }
.momo__text { font-size: var(--fs-sm); line-height: 1.7; margin: 0; }

.momo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.momo__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: var(--r-l);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.momo__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }

.momo__plan {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.momo__price { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0 0 14px; }
.momo__card .btn { margin-top: auto; }

.momo__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--r-l);
  background: var(--white);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.momo__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: #25d366;
  color: #06301a;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.momo__wa:hover { transform: translateY(-2px); filter: brightness(1.06); }
.momo__wa svg { width: 17px; height: 17px; }

/* --- Formulaires ------------------------------------------------------ */
.cform { display: grid; gap: 18px; }

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cform__field { display: grid; gap: 8px; }
.cform__field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
}

.cform__field input,
.cform__field select,
.cform__field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-m);
  background: var(--white);
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--primary);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.cform__field textarea { resize: vertical; min-height: 120px; }
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(206,0,136,.12);
}
.cform__field input[aria-invalid="true"],
.cform__field select[aria-invalid="true"],
.cform__field textarea[aria-invalid="true"] { border-color: #d13b3b; }

.cform__hint { margin: 0; font-size: var(--fs-xs); color: var(--mute); }

.cform__check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--fs-xs);
  line-height: 1.55;
}
.cform__check--inline { font-size: var(--fs-sm); align-items: center; }
.cform__check input { width: 17px; height: 17px; flex: none; margin-top: 2px; accent-color: var(--brand); }
.cform__check a { color: var(--primary); font-weight: 600; border-bottom: 1px solid var(--brand); }

.cform__status { margin: 0; font-size: var(--fs-sm); font-weight: 600; min-height: 1.4em; }
.cform__status[data-state="ok"]    { color: var(--brand); }
.cform__status[data-state="error"] { color: #d13b3b; }

/* --- Page contact ----------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
  gap: clamp(24px, 3vw, 44px);
}

.contact__form-wrap { padding: clamp(26px, 3vw, 42px); }
.contact__form-wrap:hover { transform: none; box-shadow: none; border-color: var(--border); }
.contact__title { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.contact__sub { margin: 8px 0 26px; font-size: var(--fs-sm); }

.contact__aside { display: grid; gap: 16px; }

.infocard {
  display: flex;
  gap: 16px;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  background: var(--bg-secondary);
}
.infocard--alert { background: var(--brand-soft); border-color: rgba(206,0,136,.2); }
.infocard--wa { background: #eafaf0; border-color: rgba(37,211,102,.32); }
.infocard--wa .infocard__icon { color: #128c4b; }
.infocard--wa .infocard__link { color: #128c4b; }

.infocard__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: var(--r-m);
  background: var(--white);
  color: var(--brand);
}
.infocard__icon svg { width: 21px; height: 21px; }

.infocard__title { font-size: 1.02rem; margin-bottom: 5px; }
.infocard__link { font-size: var(--fs-sm); font-weight: 600; color: var(--brand); }
.infocard__link:hover { color: var(--brand-dark); }
.infocard__note { margin: 6px 0 0; font-size: var(--fs-xs); line-height: 1.55; }
.infocard__social { display: grid; gap: 7px; margin-top: 12px; }
.infocard__social a { font-size: var(--fs-xs); font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--brand); }
.infocard .link-arrow { margin-top: 12px; font-size: var(--fs-xs); }

/* --- Pages connexion et inscription ----------------------------------- */
.auth { padding-block: clamp(40px, 5vw, 80px); }

.auth__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 32px);
}

.auth__panel {
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--white);
}

.auth__logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.auth__logo img { width: 42px; height: 42px; background: none; object-fit: contain; }
.auth__logo-text { display: flex; flex-direction: column; line-height: 1; }
.auth__logo-mark { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--brand); }
.auth__logo-sub { margin-top: 2px; font-size: .6rem; font-weight: 700; letter-spacing: .3em; color: var(--primary); }

.auth__title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.auth__sub { margin: 10px 0 30px; font-size: var(--fs-sm); }

.auth__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.auth__forgot { font-size: var(--fs-sm); font-weight: 600; color: var(--brand); }
.auth__forgot:hover { color: var(--brand-dark); }

.auth__switch { margin-top: 26px; font-size: var(--fs-sm); text-align: center; }
.auth__switch a { color: var(--brand); font-weight: 600; }

.auth__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--bg-dark);
  color: rgba(255,255,255,.62);
}
.auth__aside-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.auth__list { display: grid; gap: 16px; }
.auth__list li { display: flex; align-items: flex-start; gap: 13px; font-size: var(--fs-sm); }
.auth__list .approach__check { margin-top: 2px; }

/* --- Pages légales ---------------------------------------------------- */
.legal__inner { max-width: 76ch; }

.legal__notice {
  padding: 18px 22px;
  margin-bottom: 40px;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-m) var(--r-m) 0;
  background: var(--brand-soft);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.legal__notice strong { display: block; color: var(--primary); margin-bottom: 4px; }

.legal h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: var(--fs-sm); line-height: 1.75; }

.legal__list { display: grid; gap: 10px; margin: 0 0 1em; }
.legal__list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.legal__list strong { color: var(--primary); }
.legal a { color: var(--brand); font-weight: 600; }
.legal a:hover { color: var(--brand-dark); }

/* --- Responsive des pages internes ------------------------------------ */
@media (max-width: 991px) {
  .fpost,
  .contact__grid,
  .auth__grid { grid-template-columns: 1fr; }
  .auth__aside { order: -1; }
  .momo__grid { grid-template-columns: 1fr; }
  .momo__foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .cform__row { grid-template-columns: 1fr; }
  .chip { font-size: var(--fs-xs); padding: 8px 14px; }
  .filters__list { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .fpost__foot { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   24. ÉCOSYSTÈME ET VIGNETTES DE MARQUE
   ========================================================================== */

/* --- Vignette de repli quand la formation n'a pas d'image -------------- */
.work__media--brand {
  display: grid;
  place-items: center;
  aspect-ratio: 3/2;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(248,29,146,.22) 0%, rgba(248,29,146,0) 60%),
    var(--bg-dark);
}
.work__media--brand img {
  width: 42%;
  max-width: 130px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: none;
  transition: transform .5s var(--ease);
}
.work:hover .work__media--brand img { transform: scale(1.06); }

/* --- Écosystème du groupe --------------------------------------------- */
.eco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 24px);
}

.eco__card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 44px);
  border-radius: var(--r-xl);
  background: var(--bg-dark);
  color: rgba(255,255,255,.62);
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease);
}
.eco__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 100% 0%, rgba(248,29,146,.26) 0%, rgba(248,29,146,0) 62%);
  pointer-events: none;
}
.eco__card:hover { transform: translateY(-4px); }

.eco__tag {
  align-self: flex-start;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.09);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.eco__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 14px;
}

.eco__text {
  flex: 1;
  margin-bottom: 26px;
  font-size: var(--fs-sm);
  line-height: 1.72;
}

.eco__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.eco__link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.eco__link:hover { background: var(--brand-light); transform: translateY(-2px); }
.eco__link:hover svg { transform: translate(2px, -2px); }

@media (max-width: 767px) {
  .eco__grid { grid-template-columns: 1fr; }
}

/* Vignettes de marque, en attendant les visuels definitifs ---------------- */
.post__media--brand,
.fpost__media--brand {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(248,29,146,.22) 0%, rgba(248,29,146,0) 60%),
    var(--bg-dark);
}
.post__media--brand  { aspect-ratio: 3/2; }
.fpost__media--brand { aspect-ratio: 3/2; }
.post__media--brand img,
.fpost__media--brand img {
  width: 40%;
  max-width: 130px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: none;
  transition: transform .5s var(--ease);
}
.post:hover .post__media--brand img,
.fpost:hover .fpost__media--brand img { transform: scale(1.06); }

/* ==========================================================================
   25. BLOCS DE CONVERSION
   ========================================================================== */

/* --- Héros : badge non cliquable et rangée de boutons ------------------- */
.hero__pill--static { cursor: default; }
.hero__pill--static:hover { transform: none; }
.hero__pill--static:hover .hero__pill-ico { transform: none; }

.hero__desc {
  max-width: 44ch;
  margin: 14px 0 0;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.55;
  color: rgba(255,255,255,.8);
  text-shadow: 0 1px 12px rgba(20,6,15,.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* --- Méthode : listes de compétences et repère de temps ----------------- */
.pillar__list {
  display: grid;
  gap: 9px;
  width: 100%;
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pillar__list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-xs);
  line-height: 1.5;
}
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.pillar__time {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--brand-dark);
}

/* --- Mobile Money en ligne sur l'accueil -------------------------------- */
.momo--inline {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 3.2vw, 44px);
}
.momo--inline .momo__title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.momo--inline .momo__text { font-size: var(--fs-sm); margin: 0; }

.momo__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.momo__links .btn { width: 100%; background: var(--white); }
.momo__links .momo__wa { justify-content: center; }

/* --- Bandeau de réassurance -------------------------------------------- */
.reassure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: clamp(24px, 2.8vw, 34px);
  border-top: 1px solid var(--border);
}
.reassure li { display: flex; align-items: flex-start; gap: 12px; }
.reassure__ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: var(--r-m);
  background: var(--brand-soft);
  color: var(--brand);
}
.reassure__ico svg { width: 19px; height: 19px; }
.reassure strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--primary);
  line-height: 1.25;
}
.reassure span {
  display: block;
  margin-top: 3px;
  font-size: var(--fs-xs);
  line-height: 1.4;
}

/* --- Pour vous ou pas --------------------------------------------------- */
.fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 26px);
}

.fit__col {
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--r-l);
  background: var(--white);
  border: 1px solid var(--border);
}
.fit__col--yes { border-color: rgba(206,0,136,.3); }

.fit__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: var(--fs-h3);
}

.fit__badge {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
}
.fit__badge svg { width: 16px; height: 16px; }
.fit__badge--yes { background: var(--brand); color: var(--white); }
.fit__badge--no  { background: var(--bg-primary); color: var(--mute); }

.fit__list { display: grid; gap: 12px; }
.fit__list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.fit__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.fit__col--no .fit__list li::before { background: var(--border-strong); }

/* --- Bande écosystème, après l'appel à l'action ------------------------- */
.ecoband {
  padding-block: clamp(24px, 2.8vw, 38px);
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.ecoband__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
}
.ecoband__label {
  margin: 0;
  flex: none;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
}
.ecoband__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  flex: 1;
}
.ecoband__list a {
  display: block;
  padding: 8px 0;
  transition: color .25s var(--ease);
}
.ecoband__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--primary);
}
.ecoband__list span {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}
.ecoband__list a:hover strong { color: var(--brand); }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .momo--inline { grid-template-columns: 1fr; }
  .reassure { grid-template-columns: repeat(2, 1fr); }
  .fit__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .momo__links { grid-template-columns: 1fr; }
  .reassure { grid-template-columns: 1fr; }
  .hero__title { max-width: 9em; }
  .hero__actions { margin-top: 18px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .ecoband__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ecoband__list { flex-direction: column; gap: 6px; }
}
