/* ============================================================
   EDUKAL FORMATIONS — main.css
   Style : Hero-Centric · Trust & Authority
   Rythme : dark-navy / blanc / fond-clair / blanc / dark-navy / dark-navy-profond
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --bleu:       #1A3A6B;
  --bleu-deep:  #0b1e3d;
  --bleu-dk:    #122d58;
  --orange:     #E86A1A;
  --orange-dk:  #c55a12;
  --fond:       #F5F7FA;
  --texte:      #333333;
  --muted:      #6b7280;
  --border:     #E2E8F0;
  --white:      #ffffff;

  /* Typographie */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Échelle de type */
  --text-xs:   0.72rem;
  --text-sm:   0.85rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.5rem;

  /* Rayons */
  --radius-sm: 0.375rem;
  --radius:    0.65rem;
  --radius-lg: 1.2rem;

  /* Élévation (Trust & Authority — 5 niveaux) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(26,58,107,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 18px rgba(26,58,107,.10), 0 1px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 36px rgba(26,58,107,.13), 0 2px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 24px 52px rgba(26,58,107,.16), 0 4px 10px rgba(0,0,0,.06);

  /* Timing */
  --t-fast:   150ms;
  --t-base:   220ms;
  --t-slow:   380ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--texte);
  background: #fff;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.2;
}

a { color: var(--bleu); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%; left: 1rem;
  background: var(--bleu);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ── Focus rings (WCAG AA) ──────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-bleu   { color: var(--bleu)   !important; }
.text-white  { color: #fff          !important; }

/* ── Boutons ────────────────────────────────────────────────── */
.btn-orange,
.btn-bleu,
.btn-white,
.btn-white-outline,
.btn-bleu-outline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition:
    background-color var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn-orange  { background: var(--orange);   color: #fff !important; border-color: var(--orange);  }
.btn-orange:hover {
  background: var(--orange-dk); border-color: var(--orange-dk); color: #fff !important;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,26,.38);
}

.btn-bleu    { background: var(--bleu);     color: #fff !important; border-color: var(--bleu);    }
.btn-bleu:hover {
  background: var(--bleu-dk); border-color: var(--bleu-dk); color: #fff !important;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,107,.38);
}

.btn-white   { background: #fff; color: var(--bleu) !important; border-color: #fff; }
.btn-white:hover {
  background: rgba(255,255,255,.9); color: var(--bleu) !important;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.25);
}

.btn-white-outline { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
.btn-white-outline:hover {
  background: rgba(255,255,255,.12); border-color: #fff; color: #fff !important;
  transform: translateY(-2px);
}

.btn-bleu-outline { background: transparent; color: var(--bleu) !important; border-color: var(--bleu); }
.btn-bleu-outline:hover {
  background: var(--bleu); color: #fff !important; transform: translateY(-2px);
}

/* ── Section eyebrow label ──────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
/* Centré */
.section-eyebrow.centered {
  display: flex;
  justify-content: center;
}
/* Sur fond sombre */
.section-eyebrow.light {
  color: rgba(255,255,255,.75);
}
.section-eyebrow.light::before,
.section-eyebrow.light::after {
  background: rgba(255,255,255,.45);
}

/* ── Section title ──────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: var(--orange);
  margin-top: 0.6rem;
  border-radius: 2px;
}
.section-title.centered::after { margin-left: auto; margin-right: auto; }
.section-title.light { color: #fff; }
.section-title.light::after { background: var(--orange); }

/* ── SVG Shape dividers ─────────────────────────────────────── */
.shape-divider {
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.shape-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   HEADER / TOPBAR / NAVBAR
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1040; }

.header-topbar {
  background: var(--bleu-deep);
  padding: 0.3rem 0;
  font-size: var(--text-xs);
}
.topbar-phone {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-fast);
  cursor: pointer;
}
.topbar-phone:hover { color: var(--orange); }
.topbar-social {
  color: rgba(255,255,255,.6);
  margin-left: 1rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--t-fast);
  cursor: pointer;
}
.topbar-social:hover { color: var(--orange); }

.navbar { padding-top: 0.35rem; padding-bottom: 0.35rem; background: #fff; }
.navbar-brand img { height: 46px; width: auto; }
.navbar-toggler { cursor: pointer; }

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.77rem;
  color: var(--bleu) !important;
  padding: 0.45rem 0.5rem !important;
  position: relative;
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.5rem; right: 0.5rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--orange) !important; }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

/* Badge CDI animé */
.nav-cdi { white-space: nowrap; }
.badge-cdi {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 50px;
  margin-left: 0.25rem;
  vertical-align: middle;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232,106,26,.4); }
  50%       { transform: scale(1.12); box-shadow: 0 0 0 4px rgba(232,106,26,0); }
}

/* Contact CTA button in nav */
.nav-link.btn-nav-contact {
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.1rem !important;
  margin-left: 0.4rem;
  cursor: pointer;
}
.nav-link.btn-nav-contact:hover { background: var(--orange-dk); color: #fff !important; }
.nav-link.btn-nav-contact::after { display: none; }

/* Mega-menu */
.dropdown-menu-formations {
  min-width: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  margin-top: 0.5rem;
}
.dropdown-item-formation {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
  white-space: normal;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.dropdown-item-formation:hover { background: var(--fond); }
.di-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--fond);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--bleu);
  font-size: 1.25rem;
  transition: background var(--t-base), color var(--t-base);
}
.dropdown-item-formation:hover .di-icon-wrap { background: var(--bleu); color: #fff; }
.dropdown-item-formation strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--bleu);
  margin-bottom: 0.12rem;
}
.dropdown-item-formation small { color: var(--muted); font-size: var(--text-xs); }


/* ============================================================
   HERO — Split layout (texte gauche, image droite)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--bleu-deep) 0%, var(--bleu) 55%, #1e4a8a 100%);
  overflow: hidden;
  padding: 6rem 0 5rem;
}

/* Formes décoratives */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(232,106,26,.12) 0%, transparent 65%);
}
.hero-shape-2 {
  width: 700px; height: 700px;
  bottom: -350px; left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 60%);
}
/* Ligne verticale orange décorative */
.hero-accent-line {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--orange), transparent 80%);
  opacity: .35;
  pointer-events: none;
}

/* Colonne texte */
.hero-text {
  position: relative;
  z-index: 2;
  padding-right: clamp(1rem, 3vw, 3rem);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
  /* Chaque phrase sur sa propre ligne */
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 0 2.5rem 0;
  line-height: 1.78;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-badge {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-badge i { font-size: 0.85rem; color: #4ade80; }

/* Colonne visuelle */
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Frame décorative orange (décalée derrière l'image) */
.hero-img-frame {
  position: relative;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 16px -14px -14px 16px;
  border: 2px solid rgba(232,106,26,.35);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

/* Zone image hero */
.hero-img-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
}
.hero-img-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-placeholder .img-zone-info {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.45);
  font-size: var(--text-xs);
}
.hero-img-placeholder .img-zone-info i { font-size: 2.5rem; display: block; color: rgba(255,255,255,.2); margin-bottom: 0.4rem; }
.img-size-tag {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,.55);
  margin-top: 0.4rem;
}

/* Wave SVG bas du hero (transition vers blanc) */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }


/* ============================================================
   STATS BAND — Cards blanches flottantes
   ============================================================ */
.stats-band {
  background: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

/* Les 4 stat-cards */
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease, box-shadow var(--t-base), transform var(--t-base);
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) !important;
}

.stat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(26,58,107,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.3rem;
  color: var(--bleu);
}
/* Quand un stat a un grand nombre */
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  /* Navy sur blanc : contraste 11:1 ✓ WCAG AAA */
  color: var(--bleu);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--muted);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.45;
}

/* Délai de stagger via nth-child */
.stats-band .row > *:nth-child(1) .stat-card { transition-delay: 0s; }
.stats-band .row > *:nth-child(2) .stat-card { transition-delay: .08s; }
.stats-band .row > *:nth-child(3) .stat-card { transition-delay: .16s; }
.stats-band .row > *:nth-child(4) .stat-card { transition-delay: .24s; }


/* ============================================================
   PRÉSENTATION — Fond clair, image avec frame décorative
   ============================================================ */
.section-presentation {
  background: var(--fond);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.singularite-box {
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.75rem;
  margin-top: 2rem;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
  line-height: 1.7;
}

/* Badge Trust & Authority */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--bleu);
  box-shadow: var(--shadow-sm);
}
.trust-badge i { color: #059669; }

/* Frame image avec coins orange */
.img-frame {
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 72px; height: 72px;
  border-top: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-radius: 0 var(--radius) 0 0;
  z-index: 2;
  pointer-events: none;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -14px;
  width: 72px; height: 72px;
  border-bottom: 4px solid rgba(26,58,107,.22);
  border-left: 4px solid rgba(26,58,107,.22);
  border-radius: 0 0 0 var(--radius);
  pointer-events: none;
}
.img-frame-inner {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dce4f3 0%, #c4d0e8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  color: #8899b5;
  font-size: var(--text-xs);
  position: relative;
}
.img-frame-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.img-frame-inner i { font-size: 2.5rem; color: #bbc5d8; position: relative; z-index: 1; }
.img-frame-inner .img-info { position: relative; z-index: 1; }


/* ============================================================
   NOS FORMATIONS — Cards avec zone image 16:9
   ============================================================ */
.section-formations {
  background: #fff;
  padding: 6rem 0;
}

.formation-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.formation-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Zone image 16:9 en header de card */
.formation-card-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--fond) 0%, #d8e2f2 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.4rem;
  color: #9ba8bf;
  font-size: var(--text-xs);
  text-align: center;
  padding: 1rem;
  flex-shrink: 0;
}
.formation-card-img i { font-size: 2rem; color: #bbc5d8; }
.formation-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Barre orange animée au bas de l'image au hover */
.formation-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.formation-card:hover .formation-card-img::after { transform: scaleX(1); }

/* Corps de la card */
.formation-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.formation-card-body h3 { font-size: var(--text-base); margin-bottom: 0.6rem; }
.formation-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.formation-badge {
  background: var(--fond);
  color: var(--bleu);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.formation-card-body p { color: #555; font-size: var(--text-sm); flex-grow: 1; margin-bottom: 0; }
/* Lien orange avec underline (WCAG: couleur seule insuffisante) */
.btn-link-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232,106,26,.38);
  margin-top: 1.25rem;
  transition: gap var(--t-fast), text-decoration-color var(--t-fast);
  cursor: pointer;
}
.btn-link-card:hover {
  color: var(--orange);
  gap: 0.75rem;
  text-decoration-color: var(--orange);
}


/* ============================================================
   POURQUOI EDUKAL — Fond dark navy inversé
   ============================================================ */
.section-pourquoi {
  background: var(--bleu);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
/* Halo décoratif orange */
.section-pourquoi::before {
  content: '';
  position: absolute;
  top: -180px; right: -80px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,106,26,.1) 0%, transparent 65%);
  pointer-events: none;
}
.section-pourquoi::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -60px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  pointer-events: none;
}

/* Card argument sur fond dark */
.argument-card-dark {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.75rem 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  height: 100%;
  transition: background var(--t-base), transform var(--t-base), border-color var(--t-base);
  overflow: hidden;
}
.argument-card-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
/* Grand numéro décoratif en arrière-plan */
.arg-bg-number {
  position: absolute;
  top: -10px; right: -10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,255,255,.05);
  user-select: none;
  pointer-events: none;
}

.arg-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(232,106,26,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--orange);
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  transition: background var(--t-base), color var(--t-base);
}
.argument-card-dark:hover .arg-icon-wrap {
  background: var(--orange); color: #fff;
}

.argument-card-dark h3 {
  color: #fff;
  font-size: var(--text-base);
  margin-bottom: 0.7rem;
  position: relative; z-index: 1;
}
.argument-card-dark p {
  color: rgba(255,255,255,.68);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative; z-index: 1;
}

/* Shape divider blanc en bas de la section pourquoi → vers CTA */
.pourquoi-wave {
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  background: var(--bleu-deep);
  pointer-events: none;
}
.pourquoi-wave svg { display: block; width: 100%; height: 60px; }


/* ============================================================
   CTA SECTION — Dark navy profond avec shape divider en entrée
   ============================================================ */
.section-cta {
  background: linear-gradient(160deg, var(--bleu-deep) 0%, var(--bleu) 100%);
  padding: 5.5rem 0 6rem;
  text-align: center;
  position: relative;
}

.section-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-subtitle {
  color: rgba(255,255,255,.82);
  font-size: var(--text-lg);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.72;
}
.cta-buttons {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 1.5rem;
}
.cta-badge {
  color: rgba(255,255,255,.65);
  font-size: var(--text-sm);
  margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.cta-badge i { color: #4ade80; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bleu-deep);
  color: rgba(255,255,255,.78);
  padding: 4.5rem 0 0;
}
.footer-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.65rem; display: block;
}
.footer-baseline { color: rgba(255,255,255,.52); font-style: italic; font-size: var(--text-sm); margin-bottom: 0; }
.footer-desc { color: rgba(255,255,255,.48); font-size: 0.82rem; line-height: 1.65; margin-top: 0.75rem; }

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-links a:hover { color: var(--orange); }

.badge-cdi-footer {
  background: var(--orange);
  color: #fff;
  font-size: 0.55rem;
  padding: 0.1rem 0.38rem;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 0.2rem;
}

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.68);
}
.footer-contact-item i { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.68); text-decoration: none; transition: color var(--t-fast); cursor: pointer; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 0.65rem; margin-top: 1.1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.footer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 1.1rem 0;
  margin-top: 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-text { color: rgba(255,255,255,.38); font-size: 0.77rem; margin: 0; }
.footer-bottom-text a { color: rgba(255,255,255,.38); text-decoration: none; transition: color var(--t-fast); }
.footer-bottom-text a:hover { color: var(--orange); }
.qualiopi-label {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  color: rgba(255,255,255,.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Délais personnalisables */
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }


/* ============================================================
   MICRO-INTERACTIONS & ANIMATIONS D'ENTRÉE
   ============================================================ */

/* ── Hero : entrée échelonnée au chargement de page ────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-text .section-eyebrow { animation: heroFadeUp 0.65s var(--ease-out) 0.05s both; }
.hero-text h1                { animation: heroFadeUp 0.70s var(--ease-out) 0.18s both; }
.hero-text .hero-subtitle    { animation: heroFadeUp 0.65s var(--ease-out) 0.32s both; }
.hero-text .hero-cta         { animation: heroFadeUp 0.65s var(--ease-out) 0.46s both; }
.hero-text .hero-badges      { animation: heroFadeUp 0.60s var(--ease-out) 0.58s both; }
.hero-visual                 { animation: heroFadeUp 0.80s var(--ease-out) 0.25s both; }

/* ── Navbar : ombre renforcée après défilement ─────────────── */
.site-header .navbar {
  transition: box-shadow var(--t-base);
}
.site-header.header-scrolled .navbar {
  box-shadow: 0 4px 24px rgba(26,58,107,.14) !important;
}

/* ── Formation cards : titre vire à l'orange au hover ─────── */
.formation-card-body h3 {
  transition: color var(--t-base);
}
.formation-card:hover .formation-card-body h3 {
  color: var(--orange);
}

/* ── Stat cards : icône légèrement agrandie au hover ────────── */
.stat-card .stat-icon-wrap {
  transition: transform var(--t-base) var(--ease-out), background var(--t-base);
}
.stat-card:hover .stat-icon-wrap {
  transform: scale(1.12);
  background: rgba(26,58,107,.13);
}

/* ── Menu mobile : items en slide-in échelonné ─────────────── */
@keyframes navItemSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@media (max-width: 1199.98px) {
  .nav-item.nav-anim {
    animation: navItemSlideIn 0.28s var(--ease-out) both;
  }
}


/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .badge-cdi { animation: none; }
  .scroll-reveal { opacity: 1; transform: none; }
  .stat-card { opacity: 1; transform: none; }
  /* Entrée hero : rendu visible immédiatement */
  .hero-text .section-eyebrow,
  .hero-text h1,
  .hero-text .hero-subtitle,
  .hero-text .hero-cta,
  .hero-text .hero-badges,
  .hero-visual { opacity: 1; transform: none; animation: none; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Hamburger menu (< 1200px) */
@media (max-width: 1199.98px) {
  .navbar-collapse .nav-link {
    padding: 0.7rem 1rem !important;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--fond);
  }
  .navbar-collapse .nav-link::after { display: none; }
  .nav-link.btn-nav-contact { margin: 0.75rem 1rem; display: inline-block; }
  .dropdown-menu-formations { min-width: 0; box-shadow: none; border: none; }
}

@media (max-width: 991.98px) {
  .hero { padding: 4.5rem 0 4rem; }
  .hero h1 { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; text-align: center; max-width: 560px; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-text { padding-right: 0; margin-bottom: 2.5rem; }
  .hero-img-frame::after { display: none; }
  .img-frame::before, .img-frame::after { display: none; }
}

@media (max-width: 767.98px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section-formations,
  .section-pourquoi,
  .section-cta { padding: 4rem 0; }
  .section-presentation { padding: 4rem 0; }
  .stats-band { padding: 3rem 0; }
  .site-footer { padding: 3rem 0 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .arg-bg-number { font-size: 5rem; }
}

@media (max-width: 575.98px) {
  .btn-orange, .btn-bleu, .btn-white, .btn-white-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .hero-badge { font-size: 0.7rem; }
}


/* ============================================================
   PAGES INTÉRIEURES — Composants partagés
   ============================================================ */

/* ── Bandeau hero pages intérieures ────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--bleu-deep) 0%, var(--bleu) 60%, #1e4a8a 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-shape-1 {
  width: 500px; height: 500px;
  top: -200px; right: -80px;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.page-hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  max-width: 680px;
  margin: 0 0 1.25rem;
  line-height: 1.72;
}
.page-hero-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  color: rgba(255,255,255,.8);
  font-size: var(--text-xs);
  font-weight: 600;
}
.page-hero-ref i { color: var(--orange); }

/* Badges niveaux dans le bandeau */
.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.page-hero-badge {
  background: rgba(232,106,26,.18);
  border: 1px solid rgba(232,106,26,.35);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.page-hero-badge i { color: var(--orange); font-size: .8rem; }

/* Fil d'Ariane */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
}
.breadcrumb-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t-fast);
}
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-nav span { color: rgba(255,255,255,.35); }
.breadcrumb-nav .current { color: rgba(255,255,255,.75); }

/* ── Bande infos clés (fond blanc avec bordure orange) ──────── */
.section-infos-cles {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--fond);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
}
.info-card > i {
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-card-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 0.2rem;
}
.info-card-value {
  display: block;
  font-size: var(--text-sm);
  color: var(--bleu);
  font-weight: 600;
  font-family: var(--font-display);
  line-height: 1.4;
}

/* ── Corps de page formation (2 colonnes : contenu + sidebar) ── */
.section-formation-body {
  background: var(--fond);
  padding: 5rem 0 6rem;
}

/* Sidebar sticky */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-card h3 {
  font-size: var(--text-base);
  color: var(--bleu);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}
.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
  color: var(--texte);
}
.sidebar-info-item i { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.sidebar-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 0.1rem;
}
.sidebar-cta-group { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.btn-orange.w-100, .btn-bleu-outline.w-100 { width: 100%; text-align: center; justify-content: center; }

/* ── Encadré diplôme (highlight bleu) ──────────────────────── */
.diplome-highlight {
  background: linear-gradient(135deg, #e8f0fc 0%, #dce8fb 100%);
  border-left: 4px solid var(--bleu);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.diplome-highlight > i {
  color: var(--bleu);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.diplome-highlight strong {
  display: block;
  color: var(--bleu);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  margin-bottom: 0.4rem;
}
.diplome-highlight p { color: #444; font-size: var(--text-sm); margin: 0; line-height: 1.7; }

/* ── Encadré évolution (orange) ────────────────────────────── */
.evolution-box {
  background: linear-gradient(135deg, #fff3ea 0%, #fde8d4 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.evolution-box > i { color: var(--orange); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.evolution-box strong { display: block; color: var(--orange); font-family: var(--font-display); font-size: var(--text-sm); margin-bottom: 0.4rem; }
.evolution-box p { color: #555; font-size: var(--text-sm); margin: 0; line-height: 1.7; }

/* ── Accordéon personnalisé ─────────────────────────────────── */
.accordion-edukal .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion-edukal .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--bleu);
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}
.accordion-edukal .accordion-button:not(.collapsed) {
  color: var(--orange);
  background: #fff8f4;
}
.accordion-edukal .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231A3A6B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-edukal .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E86A1A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-edukal .accordion-body {
  font-size: var(--text-sm);
  color: #444;
  line-height: 1.75;
  padding: 0.5rem 1.25rem 1.25rem;
}
.accordion-edukal .accordion-body ul {
  padding-left: 1.25rem;
  margin: 0;
}
.accordion-edukal .accordion-body ul li { margin-bottom: 0.4rem; }

/* ── Tableau Qualiopi / infos ───────────────────────────────── */
.table-edukal {
  font-size: var(--text-sm);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.table-edukal thead th {
  background: var(--bleu);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 0.75rem 1rem;
  border: none;
}
.table-edukal tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #444;
}
.table-edukal tbody tr:last-child td { border-bottom: none; }
.table-edukal tbody tr:nth-child(even) td { background: var(--fond); }
.table-edukal td:first-child { font-weight: 600; color: var(--bleu); }

/* ── Étapes processus (numérotées) ─────────────────────────── */
.process-steps { list-style: none; padding: 0; margin: 0; }
.process-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.process-step-num {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.process-step-content h4 {
  font-size: var(--text-sm);
  color: var(--bleu);
  margin-bottom: 0.3rem;
}
.process-step-content p { font-size: var(--text-sm); color: #555; margin: 0; line-height: 1.7; }

/* ── Cartes avantages (3 colonnes) ──────────────────────────── */
.avantage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.avantage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.avantage-card-icon {
  width: 52px; height: 52px;
  background: rgba(232,106,26,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.avantage-card h3 { font-size: var(--text-base); color: var(--bleu); margin-bottom: 0.5rem; }
.avantage-card p { font-size: var(--text-sm); color: #555; margin: 0; line-height: 1.7; }
.avantage-card .avantage-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--bleu);
  display: block;
  margin-bottom: 0.2rem;
}

/* ── Tableau gagnant/gagnant (2 colonnes) ───────────────────── */
.gagnant-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: var(--text-sm);
}
.gagnant-table thead th {
  padding: 0.9rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.gagnant-table thead th:first-child { background: var(--bleu); color: #fff; }
.gagnant-table thead th:last-child { background: var(--orange); color: #fff; }
.gagnant-table tbody td {
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: #444;
}
.gagnant-table tbody tr:last-child td { border-bottom: none; }
.gagnant-table tbody td:first-child { background: #f0f4fb; }
.gagnant-table tbody td:last-child { background: #fff8f4; }

/* ── Idées reçues (cartes FAQ) ──────────────────────────────── */
.idee-recue-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.idee-recue-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.badge-faux {
  background: #fee2e2; color: #b91c1c;
  font-size: 0.65rem; font-weight: 800;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-family: var(--font-display); letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-vrai {
  background: #dcfce7; color: #166534;
  font-size: 0.65rem; font-weight: 800;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-family: var(--font-display); letter-spacing: .04em;
  text-transform: uppercase;
}
.idee-recue-card h3 { font-size: var(--text-sm); color: #b91c1c; margin-bottom: 0.6rem; line-height: 1.4; }
.idee-recue-card p { font-size: var(--text-sm); color: #444; margin: 0; line-height: 1.7; }

/* ── Timeline 2 phases ──────────────────────────────────────── */
.phase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.phase-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.phase-card.phase-1 { background: var(--fond); border: 1px solid var(--border); }
.phase-card.phase-2 { background: linear-gradient(135deg, #e8f0fc 0%, #dce8fb 100%); border: 1px solid #c0d0ea; }
.phase-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phase-card.phase-1 .phase-label { color: var(--muted); }
.phase-card.phase-2 .phase-label { color: var(--bleu); }
.phase-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: var(--text-sm);
  align-items: flex-start;
}
.phase-row-key { font-weight: 600; color: var(--bleu); min-width: 130px; flex-shrink: 0; font-size: 0.78rem; }
.phase-row-val { color: #444; line-height: 1.5; }
@media (max-width: 767.98px) { .phase-grid { grid-template-columns: 1fr; } }

/* ── Section formation continue modules ─────────────────────── */
.module-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── Page à propos — valeurs ─────────────────────────────────── */
.valeur-card {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.valeur-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.valeur-icon {
  width: 68px; height: 68px;
  background: rgba(26,58,107,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bleu);
  font-size: 1.75rem;
  margin: 0 auto 1.1rem;
  transition: background var(--t-base), color var(--t-base);
}
.valeur-card:hover .valeur-icon { background: var(--bleu); color: #fff; }
.valeur-card h3 { font-size: var(--text-base); color: var(--bleu); margin-bottom: 0.6rem; }
.valeur-card p { font-size: var(--text-sm); color: #555; margin: 0; line-height: 1.7; }

/* ── Formulaire contact ──────────────────────────────────────── */
.contact-tab-selector {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  margin-bottom: 2rem;
}
.contact-tab-btn {
  flex: 1;
  padding: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  background: var(--fond);
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-tab-btn.active { background: var(--bleu); color: #fff; }
.form-edukal label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--bleu);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}
.form-edukal .form-control,
.form-edukal .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  padding: 0.7rem 1rem;
  color: var(--texte);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-edukal .form-control:focus,
.form-edukal .form-select:focus {
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(26,58,107,.12);
  outline: none;
}
.required-star { color: var(--orange); margin-left: 2px; }

/* ── Responsive pages intérieures ───────────────────────────── */
@media (max-width: 991.98px) {
  .sidebar-card { position: static; margin-top: 2rem; }
  .section-formation-body { padding: 3.5rem 0 4rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
}
@media (max-width: 767.98px) {
  .section-infos-cles { padding: 1.75rem 0; }
  .phase-grid { grid-template-columns: 1fr; }
  .gagnant-table thead th, .gagnant-table tbody td { padding: 0.6rem 0.75rem; font-size: 0.8rem; }
}
