/* ═══════════════════════════════════════════════
   MONKEY LAB — Feuille de style partagée
   Charte : Bleu #23429F · Jaune #E6A911
   Typo  : Inter
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --jaune:    #E6A911;
  --jaune-50: #F2D488;
  --jaune-30: #F8E9B8;
  --jaune-10: #FCF6E7;
  --bleu:     #23429F;
  --bleu-d:   #1a3280;
  --bleu-50:  #91A0CF;
  --bleu-30:  #C4CBE7;
  --bleu-10:  #E9ECF7;
  --vert:     #B5C166;
  --vert-10:  #EEF1DB;
  --vert-30:  #D4DC9A;
  --rose:     #C89BA7;
  --blanc:    #FFFFFF;
  --bg:       #F6F7FB;
  --txt:      #0D1540;
  --txt2:     #3D4A7A;
  --txt3:     #7B87B0;
  --bord:     #D8DDEF;
  --fd:       'Inter', sans-serif;
  --fb:       'Inter', sans-serif;
  --r:        12px;
  --rl:       24px;
  --mx:       1200px;
  --pad:      0 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--blanc); color: var(--txt); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container { max-width: var(--mx); margin: 0 auto; padding: var(--pad); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bord);
}
.nav-inner {
  max-width: var(--mx); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; display: block; }
.logo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--jaune); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: .85rem; font-weight: 500; color: var(--txt2); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--bleu); }
.nav-cta { background: var(--bleu) !important; color: var(--blanc) !important; padding: 9px 20px; border-radius: 100px; font-weight: 700 !important; font-size: .82rem !important; transition: background .2s, box-shadow .2s !important; }
.nav-cta:hover { background: var(--bleu-d) !important; box-shadow: 0 6px 20px rgba(35,66,159,.25) !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--txt); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ═══════════════════════════════════════════════
   HERO — FIX FULL WIDTH
   Le fond bleu doit être sur un wrapper full-width.
   Le contenu (grid) est centré à l'intérieur.
═══════════════════════════════════════════════ */
.hero-wrapper {
  /* FIX #1 : wrapper full-width pour le fond bleu */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  background: var(--bleu);
  overflow: hidden;
}

/* Déco : dégradés d'ambiance */
.hero-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(230,169,17,.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero-wrapper::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 280px; height: 280px;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* Le hero est maintenant le conteneur centré à l'intérieur du wrapper */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--mx);
  margin: 0 auto;
  padding: 75px 48px 45px;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 560px);
  align-items: center;
  gap: 64px;
}

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--jaune-50); margin-bottom: 18px; }
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--jaune); }
.hero h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.05; letter-spacing: -.025em; color: var(--blanc); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--jaune); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,.72); max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BOUTONS ── */
.btn-jaune { background: var(--jaune); color: var(--txt); padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s; }
.btn-jaune:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,169,17,.42); }
.btn-outline-w { background: transparent; color: var(--blanc); border: 1.5px solid rgba(255,255,255,.3); padding: 14px 28px; border-radius: 100px; font-weight: 500; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, background .2s; }
.btn-outline-w:hover { border-color: var(--jaune); background: rgba(230,169,17,.1); }
.btn-bleu { background: var(--bleu); color: var(--blanc); padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: .875rem; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, box-shadow .2s; border: none; cursor: pointer; font-family: var(--fb); }
.btn-bleu:hover { background: var(--bleu-d); box-shadow: 0 6px 20px rgba(35,66,159,.3); }

/* ── MONKI FRAME ── */
.monki-frame {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 3/4;
  border-radius: var(--rl) var(--rl) 100px var(--rl);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.18);
}
.monki-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-tag { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); background: var(--jaune); color: var(--txt); font-family: var(--fd); font-weight: 700; font-size: .8rem; padding: 10px 22px; border-radius: 100px; white-space: nowrap; box-shadow: 0 6px 20px rgba(230,169,17,.38); }
.hero-badge { position: absolute; background: var(--blanc); border-radius: var(--r); padding: 10px 14px; box-shadow: 0 6px 20px rgba(0,0,0,.12); display: flex; align-items: center; gap: 8px; }
.hero-badge.b1 { top: 16px; right: -16px; }
.hero-badge.b2 { bottom: 52px; left: 16px; }
.hero-badge .bicon { font-size: 1.3rem; }
.hero-badge strong { display: block; font-size: .82rem; font-weight: 700; color: var(--txt); }
.hero-badge span { font-size: .68rem; color: var(--txt3); }

/* ── STATS BAR ── */
/* FIX #2 CONTRASTE : Stats bar en bleu foncé pour trancher avec le hero bleu */
.stats-bar {
  background: var(--bleu-d);
  border-bottom: none;
  padding: 28px 48px;
}
.stats-inner { max-width: var(--mx); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--fd); font-size: 1.9rem; font-weight: 800; color: var(--jaune); line-height: 1; margin-bottom: 3px; }
.stat-l { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ── PAGE HERO (sous-pages) ── */
.page-hero { background: var(--bleu); padding: 110px 48px 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(230,169,17,.15) 0%, transparent 55%); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,420px); gap: 32px; align-items: center; }
.page-hero-img { width: 100%; max-width: 420px; }
.page-hero-img img { width: 100%; max-height: 520px; object-fit: contain; height: auto; border-radius: var(--rl); box-shadow: 0 28px 60px rgba(0,0,0,.18); display: block; }
.page-hero .breadcrumb { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--jaune); }
.page-hero h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.02em; color: var(--blanc); margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--jaune); }
.page-hero p { font-size: 1rem; line-height: 1.72; color: rgba(255,255,255,.72); max-width: 580px; }

/* ── SECTION ── */
.section { padding: 88px 0; }
.section-inner { max-width: var(--mx); margin: 0 auto; padding: var(--pad); }

/* FIX #2 CONTRASTE : alternance forte blanc / gris / bleu */
.bg-grey { background: var(--bg); }
.bg-bleu { background: var(--bleu-10); }
.bg-jaune { background: var(--jaune-10); }

/* Section sombre — contraste marqué */
.bg-dark {
  background: var(--txt); /* #0D1540 quasi-noir */
}
.bg-dark .section-title { color: var(--blanc); }
.bg-dark .section-sub { color: rgba(255,255,255,.65); }
.bg-dark .section-tag { color: var(--jaune); }
.bg-dark .section-tag::before { background: var(--jaune); }

.section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bleu); margin-bottom: 12px; }
.section-tag::before { content: ''; width: 16px; height: 2px; background: var(--jaune); }
.section-title { font-family: var(--fd); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.12; letter-spacing: -.02em; color: var(--txt); margin-bottom: 14px; }
.section-title em { font-style: normal; color: var(--bleu); }
.section-title .hl { color: var(--jaune); }
.section-sub { font-size: .95rem; line-height: 1.75; color: var(--txt2); max-width: 540px; margin-bottom: 48px; }
.txt-center { text-align: center; }
.txt-center .section-sub { margin-left: auto; margin-right: auto; }
.txt-center .section-tag { justify-content: center; }

/* ── CARDS GÉNÉRIQUES ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }

.card { background: var(--blanc); border: 1.5px solid var(--bord); border-radius: var(--rl); padding: 30px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.card:hover { border-color: var(--bleu-30); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(35,66,159,.08); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--txt); }
.card p { font-size: .875rem; line-height: 1.7; color: var(--txt2); }
.card-bleu { background: var(--bleu); border-color: transparent; color: var(--blanc); }
.card-bleu h3, .card-bleu p { color: rgba(255,255,255,.9); }
.card-bleu:hover { border-color: rgba(255,255,255,.2); }

.card-bleu1 { background: var(--bleu-10); border-color: var(--bleu-30); }
.card-bleu1 h3, .card-bleu1 p, .card-bleu1 span { color: var(--txt); }
.card-bleu1 .card-icon { color: var(--bleu-d); }
.card-bleu1:hover { border-color: var(--bleu); }

.card-bleu2 { background: var(--bleu-30); border: none; color: var(--txt); }
.card-bleu2 h3, .card-bleu2 p, .card-bleu2 span { color: var(--txt); }
.card-bleu2 .card-icon { color: var(--bleu-d); }
.card-bleu2:hover { box-shadow: 0 10px 28px rgba(35,66,159,.08); }

.card-bleu3 { background: var(--bleu); border-color: transparent; color: rgba(255,255,255,.95); }
.card-bleu3 h3, .card-bleu3 p, .card-bleu3 span { color: rgba(255,255,255,.95); }
.card-bleu3 .card-icon { color: rgba(255,255,255,.95); }
.card-bleu3:hover { border-color: rgba(255,255,255,.2); }

/* FIX #3 : RSE card — vert à la place du jaune */
.card-vert {
  background: var(--vert-10);       /* #EEF1DB — vert très doux */
  border-color: var(--vert-30);     /* #D4DC9A */
}
.card-vert h3 { color: #3a4a00; }
.card-vert p { color: #4a5c1a; }
.card-vert:hover { border-color: var(--vert); box-shadow: 0 14px 36px rgba(181,193,102,.15); }

/* Garde card-jaune pour d'éventuels autres usages mais ne l'utilise plus sur RSE */
.card-jaune { background: var(--jaune-10); border-color: var(--jaune-30); }

/* ── CTA REVEILLE — FIX #5 image Monki ── */
.cta-reveille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: var(--blanc);
  border: 1.5px solid var(--bord);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(35,66,159,.08);
}
.cta-reveille-img {
  height: 460px;
  overflow: hidden;
  background: var(--bleu); /* fallback si image absente */
}
.cta-reveille-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.cta-reveille:hover .cta-reveille-img img { transform: scale(1.03); }
.cta-reveille-txt { padding: 52px 52px 52px 48px; }

/* Section "Réveillez" — fond légèrement coloré pour contraster avec les sections voisines */
.section-reveille {
  background: var(--bleu-10); /* bleu très clair — rupture visuelle */
  padding: 80px 0;
}

/* ── COACHING CTA — séparation claire ── */
/* FIX #4 : on s'assure que le coaching CTA a un padding-top généreux */
.section-coaching {
  background: var(--bleu);
  padding: 96px 0;
  margin-top: 0;
}
.section-coaching .coaching-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,380px);
  gap: 46px;
  align-items: center;
}
.section-coaching .coaching-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-coaching .coaching-img {
  max-width: 380px;
  width: 100%;
  margin-left: auto;
}
.section-coaching .coaching-img img {
  width: 100%;
  height: auto;
  border-radius: var(--rl);
  display: block;
  box-shadow: 0 22px 52px rgba(0,0,0,.18);
}

/* ── FORMATION CARDS ── */
.fgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 18px; min-height: 160px; }
.fcard { background: var(--blanc); border: 1.5px solid var(--bord); border-radius: var(--rl); padding: 26px; transition: border-color .25s, transform .25s, box-shadow .25s; cursor: pointer; }
.fcard:hover { border-color: var(--bleu-30); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(35,66,159,.07); }
.fcat { display: inline-flex; align-items: center; gap: 5px; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.fcat.n1 { background: var(--bleu-10); color: var(--bleu); border: 1px solid var(--bleu-30); }
.fcat.n2 { background: var(--jaune-10); color: #7a5800; border: 1px solid var(--jaune-30); }
.fcat.n3 { background: #f0f4e8; color: #4a5c00; border: 1px solid #d4dc9a; }
.fcat.orga { background: #fdf0f3; color: #7a3a47; border: 1px solid var(--rose); }
.fcat.rse { background: #f0f8ee; color: #2d6a2d; border: 1px solid #a8d5a2; }
.fcard h3 { font-family: var(--fd); font-size: .98rem; font-weight: 700; margin-bottom: 8px; color: var(--txt); line-height: 1.3; }
.fcard .fdesc { font-size: .82rem; color: var(--txt2); line-height: 1.65; margin-bottom: 14px; }
.fmeta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.fmeta span { font-size: .74rem; color: var(--txt3); }
.flink { font-size: .76rem; color: var(--bleu); font-weight: 600; cursor: pointer; transition: text-decoration .1s; }
.flink:hover { text-decoration: underline; }

/* ── TABS ── */
.tabs { display: flex; gap: 7px; flex-wrap: wrap; }
.tab { padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--bord); background: var(--blanc); color: var(--txt2); font-size: .8rem; font-weight: 500; cursor: pointer; font-family: var(--fb); transition: all .2s; }
.tab.active, .tab:hover { background: var(--bleu); border-color: var(--bleu); color: var(--blanc); font-weight: 700; }

/* ── SPINNER ── */
.floader { grid-column: 1/-1; padding: 48px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--txt3); font-size: .875rem; }
.spinner { width: 20px; height: 20px; border: 2px solid var(--bleu-30); border-top-color: var(--bleu); border-radius: 50%; animation: spin .7s linear infinite; }

/* ── MODAL FORMATION DETAIL ── */
.fmodal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,21,64,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.fmodal-box {
  background: var(--blanc);
  border-radius: var(--rl);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(13,21,64,.22);
}
.fmodal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.6rem;
  color: var(--txt3); cursor: pointer; line-height: 1;
  transition: color .2s;
}
.fmodal-close:hover { color: var(--txt); }
.fmodal-box h2 { font-family: var(--fd); font-size: 1.4rem; font-weight: 800; color: var(--txt); margin: 12px 0 0; line-height: 1.2; }
.fmodal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; background: var(--bg); border-radius: var(--r); padding: 20px; }
.fmodal-meta-item { display: flex; flex-direction: column; gap: 3px; }
.fmodal-meta-label { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt3); }
.fmodal-meta-item span:last-child { font-size: .88rem; font-weight: 600; color: var(--txt); }
.fmodal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; border-top: 1px solid var(--bord); padding-top: 24px; }

/* ── OFFRES COACHING ── */
.offer { background: var(--blanc); border: 1.5px solid var(--bord); border-radius: var(--rl); padding: 28px; position: relative; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.offer:hover { border-color: var(--bleu-30); box-shadow: 0 10px 28px rgba(35,66,159,.07); }
.offer.feat { border-color: var(--bleu); }
.offer.feat::after { content: 'Recommandé'; position: absolute; top: 14px; right: 14px; background: var(--bleu); color: var(--blanc); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.offer h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.offer .odesc { font-size: .83rem; color: var(--txt2); line-height: 1.65; margin-bottom: 14px; }
.oprice { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.oprice-val { font-family: var(--fd); font-size: 1.9rem; font-weight: 800; color: var(--bleu); }
.oprice-det { font-size: .75rem; color: var(--txt3); }
.ofeats { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.ofeats li { display: flex; gap: 8px; font-size: .82rem; color: var(--txt2); }
.ofeats li::before { content: '✓'; color: var(--vert); font-weight: 700; flex-shrink: 0; }
.btn-book { display: block; width: 100%; text-align: center; padding: 12px; border-radius: 100px; font-family: var(--fb); font-size: .85rem; font-weight: 700; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s; }
.btn-book.b { background: var(--bleu); color: var(--blanc); }
.btn-book.b:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(35,66,159,.28); }
.btn-book.j { background: var(--jaune); color: var(--txt); }
.btn-book.j:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(230,169,17,.32); }
.btn-book.g { background: transparent; color: var(--bleu); border: 1.5px solid var(--bleu-30); }
.btn-book.g:hover { border-color: var(--bleu); background: var(--bleu-10); }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 12px; align-items: flex-start; }
.step-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--bleu); color: var(--blanc); font-family: var(--fd); font-weight: 700; font-size: .78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-txt strong { display: block; font-size: .88rem; font-weight: 600; color: var(--txt); }
.step-txt span { font-size: .8rem; color: var(--txt3); }

/* ── FORMULAIRE CONTACT ── */
.cform { background: var(--blanc); border: 1.5px solid var(--bord); border-radius: var(--rl); padding: 40px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.fg label { font-size: .75rem; font-weight: 600; color: var(--txt2); letter-spacing: .04em; }
.fg input, .fg textarea, .fg select { background: var(--bg); border: 1.5px solid var(--bord); border-radius: var(--r); padding: 11px 15px; font-family: var(--fb); font-size: .875rem; color: var(--txt); transition: border-color .2s; outline: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--bleu); background: var(--blanc); }
.fg textarea { min-height: 100px; resize: vertical; }
.btn-submit { width: 100%; padding: 14px; background: var(--bleu); color: var(--blanc); border: none; border-radius: 100px; font-family: var(--fd); font-size: .95rem; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(35,66,159,.28); }

/* ── FOOTER ── */
footer { background: var(--txt); color: rgba(255,255,255,.65); }
.footer-inner { max-width: var(--mx); margin: 0 auto; padding: 56px 48px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand p { font-size: .82rem; line-height: 1.72; }
.foot-col h4 { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 12px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul li a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color .2s; }
.foot-col ul li a:hover { color: var(--jaune); }
.foot-bottom { max-width: var(--mx); margin: 36px auto 0; padding: 16px 48px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; }
.foot-bottom p { font-size: .72rem; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.blog-card { background: var(--blanc); border: 1.5px solid var(--bord); border-radius: var(--rl); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(35,66,159,.09); }
.blog-img { width: 100%; height: 180px; background: var(--bleu-10); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-cat { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bleu); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--fd); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--txt); line-height: 1.35; }
.blog-card .blog-excerpt { font-size: .82rem; color: var(--txt2); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { display: flex; gap: 14px; font-size: .72rem; color: var(--txt3); }
.blog-read-more { font-size: .78rem; font-weight: 600; color: var(--bleu); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px) } to { opacity: 1; transform: translateY(0) } }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4;transform:scale(.85)} }
nav { animation: fadeDown .5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--blanc); border-bottom: 1px solid var(--bord); padding: 20px 24px; gap: 16px; }
  .hero { grid-template-columns: 1fr; padding: 110px 24px 64px; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 14px 0; }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 24px 0; }
  .foot-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 24px; }
  .page-hero { padding: 80px 24px 40px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-img { margin: 0 auto; }
  .stats-bar { padding: 20px 24px; }
  .section-coaching .coaching-grid { grid-template-columns: 1fr; }
  .cta-reveille { grid-template-columns: 1fr; }
  .cta-reveille-img { height: 280px; }
  .cta-reveille-txt { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .frow { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cform { padding: 24px 18px; }
  .fmodal-box { padding: 28px 20px; }
  .fmodal-meta { grid-template-columns: 1fr; }
  .fmodal-actions { flex-direction: column; }
}