/* ============================================================
   OstéoBio — Design System (maquette Claude Design mai 2026)
   Jaune #FFD140 · Navy #0A1628 · Plus Jakarta Sans + Inter
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --teal:        #FFD140;
  --teal-dark:   #C99F1F;
  --teal-soft:   #FFF6D8;
  --teal-glow:   rgba(255,209,64,0.35);

  --navy:   #0A1628;
  --navy-2: #0F2240;
  --navy-3: #071020;

  --text:       #1A2B45;
  --muted:      #6B7A90;
  --line:       rgba(10,22,40,0.08);
  --line-strong:rgba(10,22,40,0.14);

  --page:   #F4F8F6;
  --page-2: #EEF3FA;
  --white:  #FFFFFF;

  --glass-bg:       rgba(255,255,255,0.72);
  --glass-bg-strong:rgba(255,255,255,0.88);
  --glass-bg-tinted:rgba(255,246,216,0.55);
  --glass-border:   rgba(255,255,255,0.45);
  --glass-blur:     blur(16px) saturate(1.8);

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --shadow-card:       0 8px 32px rgba(10,22,40,0.08);
  --shadow-card-hover: 0 16px 48px rgba(10,22,40,0.14), 0 4px 12px rgba(255,209,64,0.10);
  --shadow-cta:        0 4px 16px rgba(255,209,64,0.35);
  --shadow-header:     0 2px 20px rgba(10,22,40,0.08);

  --r-card: 16px;
  --r-btn:  10px;
  --r-pill: 50px;
  --r-img:  14px;

  --container-max: 1200px;
  --container-pad: 24px;
}

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(135deg, var(--page) 0%, var(--page-2) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section         { padding: 80px 0; }
.section--tight  { padding: 56px 0; }
.section--navy   { background: var(--navy); }
.section--page   { background: var(--page); }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px,5vw,48px); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(24px,4vw,32px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(18px,2.5vw,22px); font-weight: 600; color: var(--teal-dark); line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; color: var(--navy); }
p  { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--teal); color: var(--navy);
  padding: 8px 16px; border-radius: var(--r-btn);
  font-size: 14px; font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-btn);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none; white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal); color: var(--navy);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,209,64,0.45); color: var(--navy);
}
.btn-outline {
  background: transparent; color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-outline:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-doctolib {
  background: var(--teal); color: var(--navy);
  box-shadow: 0 4px 12px rgba(255,209,64,0.3);
}
.btn-doctolib:hover { background: var(--teal-dark); color: var(--navy); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-pill { border-radius: var(--r-pill); }

/* ── Eyebrow chip ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--teal-soft); color: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow--light {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Glass ───────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  border-radius: var(--r-card);
}
.glass--strong  { background: var(--glass-bg-strong); }
.glass--tinted  { background: var(--glass-bg-tinted); }

/* ── Card ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider { width: 56px; height: 4px; border-radius: 2px; background: var(--teal); margin-bottom: 24px; }

/* ── Stats ───────────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700; color: var(--teal);
  line-height: 1; letter-spacing: -0.03em;
}
.stat-label { color: var(--muted); font-size: 14px; font-weight: 500; }

/* ── Topbar ──────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__left  { display: flex; align-items: center; gap: 20px; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__item  { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.topbar__item:hover { color: var(--teal); }
.topbar__sep   { color: rgba(255,255,255,0.4); }
.topbar__social a { display: flex; align-items: center; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar__social a:hover { color: var(--teal); }
.topbar__social { display: flex; gap: 14px; }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 800;
  background: var(--white);
  box-shadow: var(--shadow-header);
}
.site-header__logo-row {
  display: flex; justify-content: center; align-items: center;
  padding: 20px 32px 12px;
}
.site-header__logo-row img { height: 52px; width: auto; }
.site-logo { display: flex; align-items: center; }

.site-header__nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Primary Nav ─────────────────────────────────────────────── */
.primary-nav {
  grid-column: 2;
  display: flex; align-items: center; gap: 2px; flex-wrap: nowrap;
}
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 12px;
  font-size: 14px; font-weight: 600; color: var(--text);
  border-radius: 8px; transition: all 0.2s;
  white-space: nowrap; cursor: pointer;
}
.primary-nav__link:hover,
.primary-nav__item.is-active .primary-nav__link {
  color: var(--teal-dark); background: var(--teal-soft);
}
.primary-nav__link svg { transition: transform 0.2s; }
.primary-nav__item.has-dropdown:hover .primary-nav__link svg,
.primary-nav__item.has-dropdown:focus-within .primary-nav__link svg { transform: rotate(180deg); }

/* ── Dropdown ────────────────────────────────────────────────── */
.dropdown {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px; background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: 0 16px 40px rgba(10,22,40,0.14);
  padding: 8px; opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s; z-index: 900;
  /* Délai de fermeture pour laisser le temps de traverser le gap */
  transition-delay: 0s;
}
.primary-nav__item.has-dropdown:hover .dropdown,
.primary-nav__item.has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
/* Bridge invisible qui comble le gap entre le lien et le dropdown */
.primary-nav__item.has-dropdown::before {
  content: ''; position: absolute;
  top: 100%; left: -8px; right: -8px; height: 16px;
  background: transparent;
}
.dropdown__link {
  display: block; padding: 9px 14px;
  font-size: 13.5px; color: var(--text); border-radius: 8px;
  transition: all 0.2s;
}
.dropdown__link:hover { background: var(--teal-soft); color: var(--navy); padding-left: 18px; }

/* ── Header CTAs ─────────────────────────────────────────────── */
.header-ctas {
  display: flex; align-items: center; gap: 10px;
  justify-content: flex-end;
}

/* ── Hamburger ───────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px; padding: 0;
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────────── */
.mobile-drawer__overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 850; opacity: 0; transition: opacity .25s;
}
.mobile-drawer__overlay.is-open { display: block; opacity: 1; }
.mobile-drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 92vw); height: 100dvh;
  background: var(--white); z-index: 900;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__header { display: flex; align-items: center; justify-content: space-between; }
.mobile-drawer__header img { height: 40px; }
.mobile-drawer__close { padding: 8px; color: var(--muted); border-radius: 8px; }
.mobile-drawer__close:hover { background: var(--page); }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link--top { display: block; padding: 12px 16px; font-weight: 600; border-radius: 8px; color: var(--text); }
.mobile-nav__link--top:hover { background: var(--teal-soft); }
.mobile-nav__group { border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.mobile-nav__toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 16px; font-weight: 600; font-size: 15px; text-align: left; }
.mobile-nav__toggle svg { transition: transform .25s; }
.mobile-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav__sub { display: none; border-top: 1px solid var(--line); background: var(--page); }
.mobile-nav__sub.is-open { display: block; }
.mobile-nav__link { display: block; padding: 10px 20px; font-size: 14px; color: var(--muted); }
.mobile-nav__link:hover { color: var(--teal-dark); }
.mobile-nav__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.mobile-nav__ctas .btn { justify-content: center; }

/* ── Main ────────────────────────────────────────────────────── */
#main-content { min-height: 50vh; }

/* ════════════════════════════════════════════════════════════════
   HOMEPAGE — Section par section
   ════════════════════════════════════════════════════════════════ */

/* ── Hero split ──────────────────────────────────────────────── */
.hero-split {
  padding: 32px 0 0;
}
.hero-split__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: 24px; overflow: hidden;
  min-height: 560px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.15);
}
.hero-split__left {
  background: var(--navy);
  padding: 64px 56px 56px;
  color: var(--white);
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-split__glow {
  position: absolute; top: -120px; left: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,64,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split__eyebrow { margin-bottom: 20px; }
.hero-split__title {
  font-size: clamp(36px,4.5vw,56px); line-height: 1.05;
  margin-bottom: 24px; max-width: 560px;
}
.hero-split__title span { color: var(--teal); }
.hero-split__body {
  font-size: 17px; color: rgba(255,255,255,0.78);
  line-height: 1.65; max-width: 480px; margin-bottom: 36px;
}
.hero-split__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-split__stats {
  display: flex; gap: 40px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-split__stat-val {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-split__stat-val span { font-size: 22px; color: var(--teal); }
.hero-split__stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-split__right { position: relative; overflow: hidden; min-height: 400px; }
.hero-split__right img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-split__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.5) 100%);
}
.hero-split__event-card {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
}
.hero-split__event-date {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--teal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.hero-split__event-date-day { font-size: 22px; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.hero-split__event-date-month { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.hero-split__event-label { font-size: 12px; color: var(--teal-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.hero-split__event-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.hero-split__event-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: auto;
}
.hero-split__dots { position: absolute; top: 24px; right: 24px; display: flex; gap: 6px; }
.hero-split__dot { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.4); }
.hero-split__dot:first-child { width: 24px; background: var(--white); }
.hero-split__dot:not(:first-child) { width: 8px; }

/* ── Quick links ─────────────────────────────────────────────── */
.quick-links { padding: 32px 0 0; }
.quick-links__grid {
  padding: 8px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.quick-link {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  color: var(--text); text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.quick-link:last-child { border-right: none; }
.quick-link:hover { background: var(--teal-soft); }
.quick-link__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark); flex-shrink: 0;
}
.quick-link__title { font-weight: 600; color: var(--navy); }
.quick-link__sub { font-size: 13px; color: var(--muted); }

/* ── Formations ──────────────────────────────────────────────── */
.formations-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.formation-card--featured { display: flex; flex-direction: column; }
.formation-card--featured .card-img-wrap { position: relative; height: 280px; overflow: hidden; }
.formation-card--featured .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.formation-card--featured .card-badge { position: absolute; top: 16px; left: 16px; }
.formation-card--featured .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.formation-card--featured .card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.formation-card--featured .card-tag { padding: 6px 12px; border-radius: 6px; background: var(--page); font-size: 13px; color: var(--text); font-weight: 500; }
.formation-card--featured .card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.formation-card--featured .card-footer-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.formation-card--featured .card-footer-val { font-weight: 600; color: var(--navy); }

.formation-card--continue {
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-soft) 100%);
}
.formation-card--online {
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  background: var(--navy); color: var(--white);
}
.formation-card--online h3 { color: var(--teal); }
.formation-card--online p { color: rgba(255,255,255,0.78); }

.card-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); color: var(--teal-dark);
}
.formation-card--online .card-icon-wrap { background: rgba(255,209,64,0.15); color: var(--teal); }

.card-checklist { list-style: none; padding: 0; margin: 0; }
.card-checklist li { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 6px; }

/* ── Clinique ────────────────────────────────────────────────── */
.clinique-split {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 24px; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-card);
}
.clinique-split__img { position: relative; min-height: 460px; }
.clinique-split__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clinique-split__body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.clinique-split__stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.clinique-split__stat { padding: 20px; }
.clinique-split__stat .stat-num { font-size: 36px; }

/* ── Agenda + News ───────────────────────────────────────────── */
.agenda-news-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
}
.section-subhead { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.section-subhead a { color: var(--teal-dark); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-card {
  display: grid; grid-template-columns: 200px 1fr; overflow: hidden;
  color: inherit; text-decoration: none;
}
.news-card__img { overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.news-card__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.news-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.35; }

.agenda-list { display: flex; flex-direction: column; gap: 16px; }
.agenda-card { padding: 20px; display: flex; gap: 16px; align-items: center; }
.agenda-card__date {
  width: 60px; height: 64px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.agenda-card__date--highlight { background: var(--teal); color: var(--navy); }
.agenda-card__date--normal { background: var(--white); border: 1px solid var(--line); color: var(--navy); }
.agenda-card__day { font-size: 22px; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.agenda-card__month { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.agenda-card__cat { font-size: 12px; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 4px; }
.agenda-card__title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 4px; }
.agenda-card__time { font-size: 13px; color: var(--muted); }

/* ── EFA Section ─────────────────────────────────────────────── */
.efa-glass { padding: 48px 56px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: center; }
.efa-pôles { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.efa-pole { padding: 16px 18px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.efa-pole__dot { width: 8px; height: 8px; border-radius: 4px; margin-bottom: 8px; }
.efa-pole__sub { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.efa-pole__name { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.efa-logo-box { padding: 16px 20px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; }
.efa-logo-box img { height: 60px; }

/* ── Profs ───────────────────────────────────────────────────── */
.profs-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.prof-card { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.prof-card__img-wrap {
  width: 100%; aspect-ratio: 1;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  position: relative; box-shadow: var(--shadow-card);
}
.prof-card__img-wrap--featured { border: 3px solid var(--teal); }
.prof-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.prof-card__badge {
  position: absolute; bottom: 8px; left: 8px;
  padding: 4px 10px; border-radius: 50px;
  background: var(--teal); color: var(--navy);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.prof-card__name { font-weight: 600; color: var(--navy); font-size: 14px; text-align: center; }
.prof-card__role { font-size: 12px; color: var(--muted); text-align: center; }

/* ── Social ──────────────────────────────────────────────────── */
.social-section-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center; }
.social-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.social-card {
  padding: 24px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 16px;
}
.social-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.social-card__count { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.social-card__label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════════════════════════════════
   PAGES INTÉRIEURES
   ════════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  height: 380px; border-radius: 0 0 24px 24px; overflow: hidden; margin-bottom: 56px;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.65) 100%);
}
.page-hero__fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.page-hero__content {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad) 48px;
}
.breadcrumbs { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 16px; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--white); font-weight: 500; }

.page-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; padding-bottom: 80px; }
.entry-content h2 { font-size: 26px; margin: 40px 0 16px; }
.entry-content h3 { font-size: 20px; margin: 32px 0 12px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.entry-content ul li { margin-bottom: 6px; }
.entry-content strong { color: var(--navy); }
.entry-content a { color: var(--teal-dark); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px; background: var(--teal-soft);
  border-radius: 0 8px 8px 0; margin: 28px 0; font-style: italic;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.entry-content th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-size: 14px; }
.entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 15px; }
.entry-content tr:nth-child(even) td { background: var(--page); }

/* ── Sidebar CTA ─────────────────────────────────────────────── */
.sidebar-cta { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.sidebar-cta h4 { font-family: var(--font-display); margin-bottom: 4px; }
.sidebar-cta .btn { justify-content: center; width: 100%; }
.sidebar-sticky { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; }

/* ── Blog ────────────────────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card__thumb { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__cats { display: flex; gap: 8px; margin-bottom: 12px; }
.post-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-dark); background: var(--teal-soft); padding: 4px 10px; border-radius: 100px; }
.post-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.post-card__title a:hover { color: var(--teal-dark); }
.post-card__excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.post-card__footer { padding: 0 24px 24px; display: flex; align-items: center; justify-content: space-between; }
.post-card__date { font-size: 12px; color: var(--muted); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { margin-top: 0; }
.footer-main { background: var(--navy); color: rgba(255,255,255,0.78); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.4fr; gap: 56px; }
.footer-logo { height: 48px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-col h4 {
  color: var(--white); margin-bottom: 16px;
  font-size: 14px; font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; font-size: 14px; line-height: 2; }
.footer-col ul a { color: rgba(255,255,255,0.78); }
.footer-col ul a:hover { color: var(--teal); }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-efa {
  background: var(--navy-2); padding: 28px 0;
  color: rgba(255,255,255,0.7); font-size: 13px;
}
.footer-efa .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-efa-left { display: flex; align-items: center; gap: 20px; }
.footer-efa-link { color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.footer-legal { background: var(--navy-3); padding: 20px 0; color: rgba(255,255,255,0.55); font-size: 12px; }
.footer-legal .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-legal__links { display: flex; gap: 20px; }

/* ── Forms CF7 ───────────────────────────────────────────────── */
.wpcf7-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--navy); }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--line-strong); border-radius: 8px;
  background: var(--white); font-size: 15px;
  transition: border-color 0.2s;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--teal-dark); }
.wpcf7-form textarea { min-height: 130px; resize: vertical; }
.wpcf7-submit {
  background: var(--teal); color: var(--navy);
  padding: 13px 32px; border-radius: var(--r-btn);
  font-size: 15px; font-weight: 600;
  align-self: flex-start; transition: all 0.2s;
  box-shadow: var(--shadow-cta);
}
.wpcf7-submit:hover { background: var(--teal-dark); }
.wpcf7-response-output { padding: 12px 16px; border-radius: 8px; font-size: 14px; border: none !important; }

/* ════════════════════════════════════════════════════════════════
   COMPOSANTS PAGES INTÉRIEURES (maquette pages-all.jsx)
   ════════════════════════════════════════════════════════════════ */

/* ── Lead paragraph ──────────────────────────────────────────── */
.lead {
  font-size: 19px; line-height: 1.65; color: var(--text);
  margin-bottom: 32px; font-weight: 400;
}

/* ── Section heading block ───────────────────────────────────── */
.h2block { margin: 56px 0 24px; }
.h2block .eyebrow { margin-bottom: 12px; }
.h2block h2 { margin: 0; }

/* ── Pull quote ──────────────────────────────────────────────── */
.pull-quote {
  position: relative; padding: 28px 32px 28px 56px;
  margin: 32px 0; border-left: 4px solid var(--teal);
  background: var(--teal-soft); border-radius: 0 12px 12px 0;
}
.pull-quote::before {
  content: '\201C'; position: absolute; left: 20px; top: 20px;
  font-size: 48px; line-height: 1; color: var(--teal); opacity: 0.6;
  font-family: Georgia, serif;
}
.pull-quote p {
  font-size: 18px; line-height: 1.6; color: var(--navy);
  font-style: italic; margin: 0;
}
.pull-quote .pull-source { margin-top: 12px; font-size: 13px; color: var(--muted); font-weight: 600; font-style: normal; }

/* ── CheckList ───────────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px;
}
.check-list li::before {
  content: '';
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-soft); flex-shrink: 0; margin-top: 2px;
  background-image: 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='%23C99F1F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Info card row (stat cards) ──────────────────────────────── */
.info-card-row {
  display: grid; gap: 16px; margin: 24px 0;
}
.info-card-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-card-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-card-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
}
.info-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
}
.info-card__value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.info-card__label { font-size: 14px; color: var(--muted); }

/* ── Année UE row ────────────────────────────────────────────── */
.annee-ue {
  padding: 14px 18px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.annee-ue__left { display: flex; gap: 12px; align-items: center; }
.annee-ue__code {
  font-family: ui-monospace, monospace; font-size: 12px;
  padding: 3px 8px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal-dark); font-weight: 600;
}
.annee-ue__title { font-weight: 600; color: var(--navy); }
.annee-ue__right { display: flex; gap: 16px; align-items: center; }
.annee-ue__type { font-size: 12px; color: var(--muted); }
.annee-ue__hours { font-weight: 600; color: var(--teal-dark); font-family: var(--font-display); }

/* ── Pillar cards (3-col) ────────────────────────────────────── */
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
.pillar-card { padding: 32px; text-align: center; }
.pillar-card__icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.pillar-card h3 { color: var(--navy); margin-bottom: 12px; }
.pillar-card p { color: var(--muted); margin: 0; font-size: 15px; }

/* ── Step list (numbered) ────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.step-item { padding: 20px 24px; display: flex; gap: 24px; align-items: center; }
.step-item__num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--teal); line-height: 1; min-width: 64px;
}
.step-item__title { font-weight: 600; color: var(--navy); font-size: 17px; margin-bottom: 4px; }
.step-item__body { color: var(--muted); font-size: 15px; margin: 0; }
.step-item__badge {
  padding: 4px 12px; border-radius: 50px;
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: 12px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
}

/* ── 2-col glass grid ────────────────────────────────────────── */
.glass-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.glass-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 16px 0; }
.glass-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 16px 0; }

/* ── Tarifs table ────────────────────────────────────────────── */
.tarifs-table { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); }
.tarifs-table__head { display: grid; padding: 16px 24px; background: var(--navy); color: var(--white); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.tarifs-table__row { display: grid; padding: 16px 24px; border-bottom: 1px solid var(--line); align-items: center; }
.tarifs-table__row:last-child { border-bottom: none; }
.tarifs-table__row:nth-child(even) { background: var(--page); }
.tarifs-table .price { font-family: var(--font-display); font-weight: 700; color: var(--teal-dark); }

/* ── Prof grid (4-col inner page) ────────────────────────────── */
.profs-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.prof-card-inner { overflow: hidden; }
.prof-card-inner__img { aspect-ratio: 1; position: relative; overflow: hidden; }
.prof-card-inner__img img { width: 100%; height: 100%; object-fit: cover; }
.prof-card-inner__body { padding: 16px; }
.prof-card-inner__name { font-weight: 600; color: var(--navy); font-size: 14px; }
.prof-card-inner__role { font-size: 12px; color: var(--muted); }

/* ── CTA banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: 32px 40px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  color: var(--white); display: flex; justify-content: space-between;
  align-items: center; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { margin: 0; color: rgba(255,255,255,0.85); }

/* ── Countries grid ──────────────────────────────────────────── */
.countries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 16px 0; }
.country-chip { padding: 16px 20px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); text-align: center; }
.country-chip__sub { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.country-chip__name { font-weight: 600; color: var(--navy); margin-top: 4px; }

/* ── Article content (blog single) ──────────────────────────── */
.article-body h2 { font-size: 26px; margin: 40px 0 16px; }
.article-body h3 { font-size: 20px; margin: 32px 0 12px; }
.article-body p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.article-body ul li { margin-bottom: 6px; }
.article-body blockquote { border-left: 4px solid var(--teal); padding: 16px 24px; background: var(--teal-soft); border-radius: 0 8px 8px 0; margin: 28px 0; font-style: italic; }
.article-body img { border-radius: var(--r-img); margin: 24px 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-header__nav-row { padding: 0 16px 16px; gap: 16px; }
  .primary-nav__link { padding: 10px 10px; font-size: 13px; }
  .profs-grid { grid-template-columns: repeat(4,1fr); }
  .formations-grid { grid-template-columns: 1fr 1fr; }
  .formation-card--online { grid-column: span 2; }
}
@media (max-width: 960px) {
  .primary-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .site-header__nav-row { display: flex; justify-content: flex-end; padding: 8px 24px 16px; }
  .hero-split__inner { grid-template-columns: 1fr; }
  .hero-split__right { min-height: 320px; }
  .quick-links__grid { grid-template-columns: repeat(2,1fr); }
  .formations-grid { grid-template-columns: 1fr; }
  .formation-card--online { grid-column: auto; }
  .clinique-split { grid-template-columns: 1fr; }
  .clinique-split__img { min-height: 280px; }
  .agenda-news-grid { grid-template-columns: 1fr; }
  .profs-grid { grid-template-columns: repeat(3,1fr); }
  .social-section-grid { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: repeat(2,1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .efa-glass { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-split__left { padding: 40px 28px 36px; }
  .hero-split__stats { gap: 24px; }
  .quick-links__grid { grid-template-columns: 1fr; }
  .profs-grid { grid-template-columns: repeat(2,1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-card { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .topbar { display: none; }
  .social-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .info-card-row.cols-4 { grid-template-columns: repeat(2,1fr); }
  .glass-grid-4 { grid-template-columns: repeat(2,1fr); }
  .profs-grid-4 { grid-template-columns: repeat(2,1fr); }
  .countries-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .glass-grid-2, .glass-grid-3, .glass-grid-4 { grid-template-columns: 1fr; }
  .info-card-row.cols-2, .info-card-row.cols-3, .info-card-row.cols-4 { grid-template-columns: repeat(2,1fr); }
  .step-item { flex-wrap: wrap; }
  .cta-banner { flex-direction: column; text-align: center; }
}
