/* ═══════════════════════════════════════════
   ACADEMIE STRATEGIE DIRIGEANTS — style.css
   Police : Inter (Google Fonts)
   Couleurs : #784a37 #f1dda5 #f8eed2 #deb377 #9b7080 #253443 #1a2332
═══════════════════════════════════════════ */
:root {
  --brown:    #784a37;
  --brown-dk: #5a3218;
  --brown-lt: #9e6040;
  --gold:     #c8920b;
  --gold-txt: #f1dda5;
  --cream:    #f8eed2;
  --orange:   #deb377;
  --caramel:  #deb376;
  --mauve:    #9b7080;
  --mauve-dk: #7a5565;
  --navy:     #1a2332;
  --navy-lt:  #253443;
  --txt-dark: #253443;
  --txt-mid:  #555;
  --txt-body: #3d3d3d;
  --foot-bg:  #1a1a1a;
  --white:    #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--txt-dark); background: #fff; overflow-x: hidden; max-width: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 4rem 0; }
.section--sm{ padding: 2.5rem 0; }
.bg-cream   { background: var(--cream); }
.bg-orange  { background: var(--orange); }
.bg-brown   { background: var(--brown); }
.bg-dark    { background: var(--foot-bg); }
.bg-navy    { background: var(--navy); }
.text-center{ text-align: center; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120,74,55,.15);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 66px;
}
.nav-logo img,
.nav-inner > a > img { height: 44px; width: auto; flex-shrink: 0; }
.nav-inner > a { flex-shrink: 0; line-height: 0; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  display: block; padding: .35rem .6rem;
  font-size: .7rem; font-weight: 700;
  color: var(--txt-dark); text-transform: uppercase;
  letter-spacing: .04em; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-right {
  display: flex; gap: .6rem; align-items: center; flex-shrink: 0;
}
.nav-right a,
.btn-nav-full {
  white-space: nowrap; font-size: .73rem; font-weight: 700;
  padding: .45rem .9rem; border-radius: 6px; transition: all .2s;
  display: inline-block;
}
.btn-nav-full {
  background: var(--brown); color: #fff;
}
.btn-nav-full:hover { background: var(--brown-dk); }

/* ── HERO (accueil Académie) ── */
.hero {
  margin-top: 66px; position: relative;
  min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--brown-dk) 60%, var(--brown) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,146,11,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(155,112,128,.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; text-align: center;
  padding: 3rem 2rem;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold-txt); opacity: .7; margin-bottom: .8rem;
}
.hero-content h1 {
  font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1.3;
  max-width: 800px; margin: 0 auto;
}
.hero-content h1 em {
  font-style: normal; color: var(--gold-txt);
}
.hero-sub {
  font-size: .95rem; line-height: 1.72;
  color: rgba(255,255,255,.75); max-width: 620px;
  margin: 1rem auto 0;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  margin-top: 66px; padding: 3.5rem 0 2.5rem;
}
.page-hero--cream  { background: var(--cream); }
.page-hero--orange { background: var(--orange); }
.page-hero--brown  { background: var(--brown); }
.page-hero--dark   { background: var(--foot-bg); }
.page-hero--navy   { background: var(--navy); }
.eyebrow {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--mauve); margin-bottom: .6rem;
}
.page-hero--brown .eyebrow,
.page-hero--navy .eyebrow { color: rgba(241,221,165,.6); }
.page-hero--dark .eyebrow  { color: rgba(241,221,165,.5); }
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--brown);
  line-height: 1.3; max-width: 780px;
}
.page-hero--brown h1,
.page-hero--dark h1,
.page-hero--navy h1 { color: var(--gold-txt); }
p.lead,
.page-hero p.lead {
  margin-top: .8rem; font-size: .95rem;
  line-height: 1.72; color: var(--txt-mid); max-width: 680px;
}
.page-hero--brown p.lead,
.page-hero--dark p.lead,
.page-hero--navy p.lead { color: rgba(255,255,255,.8); }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; justify-content: center; gap: 3rem;
  padding: 1.5rem 0; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--gold-txt); line-height: 1;
}
.stat-label {
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.65); margin-top: .3rem;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1.9rem; border-radius: 30px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .03em; transition: all .18s; white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(180deg, #f5a623 0%, #e07b00 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(224,123,0,.35);
}
.btn-orange:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 6px 18px rgba(224,123,0,.45); }
.btn-brown {
  background: linear-gradient(180deg, #a0663d 0%, #784a37 50%, #5a3218 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(90,50,24,.35);
}
.btn-brown:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(90,50,24,.45); }
.btn-mauve {
  background: linear-gradient(180deg, #b08898 0%, #9b7080 50%, #7a5565 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(122,85,101,.35);
}
.btn-mauve:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(122,85,101,.45); }
.btn-gold {
  background: linear-gradient(180deg, #e8c347 0%, #c8920b 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(200,146,11,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,146,11,.45); }
.btn-navy {
  background: linear-gradient(180deg, #2d4a66 0%, var(--navy) 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(26,35,50,.35);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,35,50,.45); }
.btn-outline {
  background: transparent; color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-outline-gold {
  background: transparent; color: var(--gold-txt);
  border: 2px solid var(--gold-txt);
}
.btn-outline-gold:hover { background: rgba(241,221,165,.12); }

/* ── SECTION LABEL (barre brune) ── */
.sec-label {
  display: flex; align-items: flex-start;
  gap: .7rem; margin-bottom: 1.3rem;
}
.sec-label::before {
  content: ''; display: block; width: 7px; min-height: 28px;
  background: var(--brown); border-radius: 4px;
  flex-shrink: 0; margin-top: 3px;
}
.sec-label h2, .sec-label h3 {
  font-size: 1.12rem; font-weight: 700;
  color: var(--brown); line-height: 1.35;
}

/* ── PARCOURS GRID ── */
.parcours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.parcours-card {
  background: #fff; border-radius: 10px; padding: 2rem 1.5rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 3px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.parcours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.parcours-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.parcours-icon svg { width: 26px; height: 26px; }
.parcours-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--brown); margin-bottom: .6rem;
}
.parcours-card p {
  font-size: .88rem; line-height: 1.72;
  color: var(--txt-mid); margin-bottom: 1rem;
}
.parcours-link {
  font-size: .82rem; font-weight: 700;
  color: var(--gold); transition: color .2s;
}
.parcours-link:hover { color: var(--brown); }

/* ── FORMATIONS GRID ── */
.formations-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.formation-card {
  background: #fff; border-radius: 10px; padding: 1.5rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.formation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.formation-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--mauve); background: rgba(155,112,128,.1);
  padding: .25rem .7rem; border-radius: 20px;
  margin-bottom: .8rem;
}
.formation-card h3 {
  font-size: .97rem; font-weight: 700;
  color: var(--navy-lt); margin-bottom: .5rem; line-height: 1.35;
}
.formation-card p {
  font-size: .85rem; line-height: 1.7;
  color: var(--txt-mid); margin-bottom: .8rem;
}
.formation-meta {
  display: flex; gap: 1rem; font-size: .75rem;
  font-weight: 600; color: var(--brown); opacity: .7;
}

/* ── MODULES GRID ── */
.modules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.module-card {
  background: #fff; border-radius: 8px; padding: 1.3rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.module-card h4 {
  font-size: .9rem; font-weight: 700;
  color: var(--brown); margin-bottom: .4rem;
}
.module-card p {
  font-size: .82rem; line-height: 1.68;
  color: var(--txt-mid);
}

/* ── BADGES GRID ── */
.badges-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.badge-card {
  background: #fff; border-radius: 10px; padding: 1.8rem 1.3rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .2s;
}
.badge-card:hover { transform: translateY(-3px); }
.badge-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.8rem;
}
.badge-icon svg { width: 28px; height: 28px; }
.badge-card h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--brown); margin-bottom: .5rem;
}
.badge-card p {
  font-size: .83rem; line-height: 1.68;
  color: var(--txt-mid);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: #fff; border-radius: 10px; padding: 1.5rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testimonial p {
  font-size: .9rem; line-height: 1.75;
  color: var(--txt-dark); font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-size: .85rem; font-weight: 700;
  color: var(--brown);
}
.testimonial-role {
  font-size: .75rem; color: var(--txt-mid);
  margin-top: .15rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brown-dk) 100%);
  padding: 3rem 0; text-align: center;
}
.cta-band h2 {
  font-size: 1.5rem; font-weight: 800;
  color: #fff; margin-bottom: .6rem;
}
.cta-band p {
  font-size: .92rem; color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}

/* ── BRIDGE (lien externe) ── */
.bridge {
  display: flex; align-items: center; gap: .8rem;
  background: var(--cream); border-radius: 8px;
  padding: 1rem 1.2rem; margin-top: 1.2rem;
  border: 1px solid rgba(120,74,55,.15);
  transition: box-shadow .2s;
}
.bridge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.bridge-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
}
.bridge-icon svg { width: 20px; height: 20px; }
.bridge-text {
  font-size: .85rem; font-weight: 600;
  color: var(--brown); line-height: 1.4;
}
.bridge-text span {
  display: block; font-size: .72rem; font-weight: 400;
  color: var(--txt-mid); margin-top: .15rem;
}

/* ── CONTENT 2-COL (pages internes) ── */
.content-2col {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 3rem; align-items: start;
}
.content-2col.reverse { grid-template-columns: 2fr 3fr; }
.content-text h2 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--brown); margin-bottom: .9rem; line-height: 1.35;
}
.content-text p {
  font-size: .95rem; line-height: 1.75;
  color: var(--txt-dark); margin-bottom: .75rem;
}
.content-text p strong { font-weight: 700; }
.content-text p em { font-style: italic; }

/* ── ASIDE CARDS ── */
.aside-card {
  border-radius: 8px; padding: 1.6rem; margin-bottom: 1rem;
}
.aside-brown { background: var(--brown); }
.aside-navy  { background: var(--navy); }
.aside-mauve { background: var(--mauve); }
.aside-gold  { background: linear-gradient(135deg, #e8c347, #c8920b); }
.aside-cream { background: var(--cream); border: 1px solid rgba(120,74,55,.2); }
.aside-card h3 {
  font-size: .97rem; font-weight: 700;
  color: var(--gold-txt); margin-bottom: .6rem;
}
.aside-card p {
  font-size: .85rem; line-height: 1.72;
  color: rgba(255,255,255,.85);
}
.aside-cream h3 { color: var(--brown); }
.aside-cream p  { color: var(--txt-dark); }
.aside-gold h3  { color: #fff; }
.aside-gold p   { color: rgba(255,255,255,.9); }

/* ── AVANTAGES LIST ── */
.avantages { margin: .8rem 0 1.3rem; list-style: none; padding: 0; }
.avantages li {
  padding-left: 1.4rem; position: relative;
  font-size: .92rem; line-height: 1.65;
  color: var(--txt-dark); margin-bottom: .55rem;
}
.avantages li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23784a37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  position: absolute; left: 0; top: .1rem;
}
.avantages--white li { color: rgba(255,255,255,.9); }
.avantages--white li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f1dda5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ── INTRO GRID ── */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.intro-col img.main-photo {
  width: 100%; border-radius: 6px; margin-bottom: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.intro-col h3 {
  font-size: 1.22rem; font-weight: 700;
  color: var(--brown); margin-bottom: .8rem; line-height: 1.3;
}
.intro-col p {
  font-size: .97rem; line-height: 1.68;
  color: var(--txt-dark); margin-bottom: .65rem;
}

/* ── BULLET ── */
.bullet {
  display: flex; align-items: flex-start;
  gap: .55rem; margin-bottom: .45rem;
}
.bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brown); flex-shrink: 0; margin-top: 6px;
}
.bullet span {
  font-size: .95rem; line-height: 1.55; color: var(--txt-dark);
}

/* ── CARDS ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.8rem;
}
.card {
  background: #fff; border: 1px solid rgba(120,74,55,.13);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.09);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.card .card-photo { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.card-body { padding: 1.3rem; }
.card-body h3 {
  font-size: 1.02rem; font-weight: 700;
  color: var(--brown); margin-bottom: .6rem; line-height: 1.3;
}
.card-body p {
  font-size: .9rem; line-height: 1.65;
  color: var(--txt-dark); margin-bottom: 1rem;
}

/* ── CTA SPLIT (accueil) ── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-block { padding: 2.2rem 3rem; text-align: center; }
.cta-block h2 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--brown); margin-bottom: 1.3rem; line-height: 1.25;
}
.cta-cream  { background: var(--cream); }
.cta-orange { background: var(--orange); }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem;
}
.step {
  background: #fff; border-radius: 8px; padding: 1.3rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brown); color: #fff;
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
}
.step h4 {
  font-size: .85rem; font-weight: 700;
  color: var(--brown); margin-bottom: .4rem; line-height: 1.3;
}
.step p { font-size: .78rem; line-height: 1.65; color: var(--txt-dark); }

/* ── DOMAINES / POLES ── */
.domaines-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
}
.domaine {
  background: var(--cream); border-radius: 8px; padding: 1.3rem;
  border: 1px solid rgba(120,74,55,.1);
  transition: transform .2s, box-shadow .2s;
}
.domaine:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.domaine-ico { font-size: 1.6rem; margin-bottom: .7rem; }
.domaine h4 {
  font-size: .88rem; font-weight: 700;
  color: var(--brown); margin-bottom: .4rem;
}
.domaine p { font-size: .8rem; line-height: 1.65; color: var(--txt-dark); }
.domaine--dark { background: var(--brown); }
.domaine--dark h4 { color: #fff; }
.domaine--dark p  { color: rgba(255,255,255,.85); }

/* ── TARIFS ── */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.tarif {
  background: #fff; border-radius: 10px; padding: 2rem;
  text-align: center; border: 1px solid rgba(120,74,55,.15);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s;
}
.tarif:hover { transform: translateY(-3px); }
.tarif--featured {
  background: var(--brown);
  border-color: var(--brown);
  transform: scale(1.03);
}
.tarif--featured:hover { transform: scale(1.03) translateY(-3px); }
.tarif-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--gold-txt); color: var(--brown-dk);
  padding: .25rem .8rem; border-radius: 20px;
  margin-bottom: .8rem;
}
.tarif-price {
  font-size: 2.2rem; font-weight: 800;
  color: var(--brown); line-height: 1; margin-bottom: .2rem;
}
.tarif--featured .tarif-price { color: var(--gold-txt); }
.tarif-period {
  font-size: .78rem; color: var(--txt-mid); margin-bottom: 1rem;
}
.tarif--featured .tarif-period { color: rgba(255,255,255,.6); }
.tarif-dur {
  font-size: 2rem; font-weight: 800; color: var(--brown); margin-bottom: .5rem;
}
.tarif--featured .tarif-dur { color: var(--gold-txt); }
.tarif-sep {
  height: 1px; background: rgba(120,74,55,.12);
  margin: 1rem 0; border: none;
}
.tarif--featured .tarif-sep { background: rgba(255,255,255,.15); }
.tarif h4 {
  font-size: .97rem; font-weight: 700; color: var(--brown); margin-bottom: .7rem;
}
.tarif--featured h4 { color: #fff; }
.tarif p { font-size: .85rem; line-height: 1.7; color: var(--txt-dark); }
.tarif--featured p { color: rgba(255,255,255,.85); }
.tarif .avantages li { font-size: .82rem; text-align: left; }
.tarif--featured .avantages li { color: rgba(255,255,255,.9); }
.tarif--featured .avantages li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f1dda5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}
.member { text-align: center; }
.avatar {
  width: 130px; height: 140px; border-radius: 6px;
  background: #ede0d8; margin: 0 auto .8rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.member .name { font-size: .85rem; font-weight: 700; color: var(--txt-mid); }
.member .role { font-size: .75rem; color: var(--mauve); margin-top: .2rem; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(255,255,255,.55); border-radius: 8px;
  padding: 1rem 1.3rem; margin-top: 1rem;
  font-weight: 700; font-size: .97rem; color: var(--brown); line-height: 1.5;
}
.note-italic {
  font-size: .83rem; font-style: italic; color: #666; margin-top: .5rem;
}
.price-big {
  font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.price-sub {
  font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .3rem;
}

/* ── ACCORDION (FAQ) ── */
.accordion { border: 1px solid rgba(120,74,55,.15); border-radius: 8px; overflow: hidden; }
.acc-item   { border-bottom: 1px solid rgba(120,74,55,.1); }
.acc-item:last-child { border-bottom: none; }
.acc-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .93rem; font-weight: 700; color: var(--brown);
  transition: background .18s;
}
.acc-header:hover { background: rgba(248,238,210,.5); }
.acc-arrow { font-size: .8rem; transition: transform .25s; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 1.3rem;
}
.acc-item.open .acc-body { max-height: 600px; padding: 0 1.3rem 1.1rem; }
.acc-body p {
  font-size: .9rem; line-height: 1.75; color: var(--txt-dark);
  margin-bottom: .5rem;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .8rem; font-weight: 700; color: var(--brown);
  text-transform: uppercase; letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif; font-size: .9rem;
  padding: .65rem 1rem; border-radius: 6px;
  border: 1.5px solid rgba(120,74,55,.25);
  background: #fff; color: var(--txt-dark);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--brown);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: var(--foot-bg); padding: 2.8rem 0 1.5rem; }
.foot-inner {
  display: grid; grid-template-columns: 1.5fr 3fr 1fr;
  gap: 2rem; align-items: start; margin-bottom: 2rem;
}
.foot-brand .foot-logo { height: 50px; margin-bottom: .9rem; border-radius: 8px; }
.foot-brand-name {
  font-size: .95rem; font-weight: 700; color: var(--gold-txt);
  margin-bottom: .4rem;
}
.foot-brand-name span {
  display: block; font-size: .75rem; font-weight: 400;
  color: rgba(241,221,165,.6); margin-top: .1rem;
}
.foot-brand p { font-size: .82rem; line-height: 1.72; color: var(--gold-txt); opacity: .8; }
.foot-social { display: flex; gap: .65rem; margin-top: .9rem; }
.foot-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); transition: background .2s;
}
.foot-social a:hover { background: rgba(255,255,255,.15); }
.foot-social a svg { width: 18px; height: 18px; }
.foot-social img { width: 32px; height: 32px; border-radius: 50%; }
.foot-links { display: flex; gap: 3rem; }
.foot-col h4 {
  font-size: .78rem; font-weight: 700; color: var(--caramel);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem;
}
.foot-col a {
  display: block; font-size: .78rem;
  color: rgba(241,221,165,.65); margin-bottom: .45rem; transition: color .2s;
}
.foot-col a:hover { color: var(--gold-txt); }
.foot-cta { display: flex; flex-direction: column; gap: .7rem; }
.foot-cta .btn { display: block; text-align: center; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.foot-bottom p { font-size: .72rem; color: rgba(255,255,255,.35); }
.foot-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.foot-bottom a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════
   HAMBURGER + DRAWER MOBILE
══════════════════════════════════════════════ */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: .5rem;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; top: 66px;
  background: rgba(0,0,0,.35); z-index: 298;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid var(--brown);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 299; overflow-y: auto;
  max-height: calc(100vh - 66px);
}
.nav-drawer.open { display: block; }

.nav-drawer nav a {
  display: block; padding: .85rem 1.5rem;
  font-size: .78rem; font-weight: 700;
  color: var(--txt-dark); text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(120,74,55,.08);
  transition: color .15s, background .15s;
}
.nav-drawer nav a:hover { color: var(--brown); background: var(--cream); }

.nav-drawer .drawer-cta {
  padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.nav-drawer .drawer-cta a {
  display: block; text-align: center; border-radius: 6px;
  padding: .65rem 1rem; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  transition: opacity .2s;
}
.nav-drawer .drawer-cta a:hover { opacity: .85; }
.nav-drawer .drawer-cta .dc-rdv   { background: var(--gold); color: #fff; }
.nav-drawer .drawer-cta .dc-login  { background: transparent; color: var(--brown); border: 1.5px solid var(--brown); }
.nav-drawer .drawer-cta .dc-join   { background: var(--brown); color: #fff; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .domaines-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid    { grid-template-columns: repeat(2,1fr); }
  .badges-grid   { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav-links     { display: none; }
  .nav-burger    { display: flex; }
  .nav-right     { display: none; }

  .intro-grid, .cta-split, .content-2col, .content-2col.reverse,
  .tarifs-grid, .foot-inner, .parcours-grid,
  .formations-grid, .modules-grid, .testimonials-grid,
  .badges-grid { grid-template-columns: 1fr; }

  .cards-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .foot-links    { flex-direction: column; gap: 1.5rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .form-grid     { grid-template-columns: 1fr; }
  .stats-bar     { gap: 1.5rem; }
  .tarif--featured { transform: none; }
  .tarif--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 580px) {
  .cards-grid, .team-grid, .domaines-grid,
  .steps-grid, .parcours-grid { grid-template-columns: 1fr; }

  .hero { min-height: 340px; }
  .hero-content { padding: 2rem 1rem; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-sub { font-size: .85rem; }
  .stats-bar { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }

  .section { padding: 2.5rem 0; }
  .cta-block { padding: 1.5rem 1.2rem; }
  .tarif { padding: 1.4rem; }
  .aside-card { padding: 1.2rem; }
  .foot-bottom { flex-direction: column; text-align: center; }
}
