/* =========================================
   LA FORMATION WORDPRESS — main.css
   Dimitri Rougier — Formateur depuis 2005
   WordPress theme styles
   ========================================= */

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

:root {
  --navy:        #0F2040;
  --navy-mid:    #1A3460;
  --navy-light:  #243E73;
  --blue:        #1D6BE8;
  --blue-hover:  #155bca;
  --blue-light:  #EBF2FE;
  --accent:      #F4A300;
  --accent-light:#FEF4DC;
  --white:       #FFFFFF;
  --gray-50:     #F7F8FA;
  --gray-100:    #EEF0F4;
  --gray-200:    #D8DCE8;
  --gray-400:    #9AA3B8;
  --gray-600:    #5A6480;
  --gray-800:    #1E2436;
  --success:     #0E7A55;
  --success-bg:  #E6F5EF;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      14px;
  --radius-sm:   9px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-xs:   0 1px 4px rgba(15,32,64,0.07);
  --shadow:      0 4px 20px rgba(15,32,64,0.08), 0 1px 4px rgba(15,32,64,0.05);
  --shadow-md:   0 8px 32px rgba(15,32,64,0.11), 0 2px 8px rgba(15,32,64,0.06);
  --shadow-lg:   0 16px 56px rgba(15,32,64,0.14), 0 4px 16px rgba(15,32,64,0.08);
  --shadow-blue: 0 8px 32px rgba(29,107,232,0.25);
  --max-w:       1160px;
  --nav-h:       72px;
  --transition:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -120px; left: 16px; z-index: 9999;
  background: var(--blue); color: white;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ── SCREEN READER ONLY ── */
.sr-only,
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  clip: auto; height: auto; width: auto;
  overflow: visible; white-space: normal;
  background: var(--blue); color: white;
  padding: 10px 20px; z-index: 9999;
  top: 0; left: 0; position: absolute;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
}

/* ── FOCUS VISIBLE ── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible { border-radius: 3px; }
button:focus-visible { border-radius: var(--radius-sm); }
.faq-q:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
  border-radius: var(--radius);
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(34px, 5.5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; margin-bottom: 18px; }
h3 { font-size: clamp(19px, 2.5vw, 23px); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
p  { color: var(--gray-600); margin-bottom: 18px; line-height: 1.78; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 600; }
a { color: var(--blue); transition: color 0.18s; }
a:hover { color: var(--blue-hover); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-intro {
  font-size: 17px; color: var(--gray-600);
  max-width: 600px; margin-bottom: 56px;
  line-height: 1.82;
}

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--gray-100);
  height: var(--nav-h);
  transition: box-shadow 0.3s var(--transition);
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(15,32,64,0.08), 0 1px 4px rgba(15,32,64,0.04);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.82; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, #1558c0 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(29,107,232,0.35);
}
.logo-icon svg { width: 19px; height: 19px; fill: white; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-600);
  font-size: 14px; font-weight: 500;
  transition: color 0.18s;
  position: relative;
  padding: 6px 12px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.24s var(--transition);
  transform-origin: center;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-sep {
  width: 1px; height: 22px;
  background: var(--gray-200);
  margin: 0 8px 0 16px;
  flex-shrink: 0;
}
.nav-end {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; margin-left: 4px;
}
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-600);
  padding: 7px 10px; border-radius: 8px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
  font-weight: 500;
}
.nav-phone:hover { color: var(--navy); background: var(--gray-50); }
.nav-cta {
  background: linear-gradient(135deg, #2878F0 0%, #1456C9 100%);
  color: white;
  border: none; border-radius: 100px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform 0.18s var(--transition), box-shadow 0.18s, filter 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(29,107,232,0.18), 0 4px 14px rgba(29,107,232,0.22);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(29,107,232,0.22), 0 8px 24px rgba(29,107,232,0.30);
  filter: brightness(1.06);
}
.nav-cta svg { transition: transform 0.22s var(--transition); flex-shrink: 0; }
.nav-cta:hover svg { transform: translateX(3px); }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  cursor: pointer; border: none; background: none; padding: 8px;
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--gray-100); }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.28s var(--transition);
  transform-origin: center;
}
nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
nav.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile {
  position: fixed; inset: 0; z-index: 198;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,18,36,0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: white;
  display: flex; flex-direction: column;
  box-shadow: -16px 0 64px rgba(15,32,64,0.18);
  transform: translateX(100%);
  transition: transform 0.36s var(--transition);
  overflow-y: auto;
}
.nav-mobile.open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.nav-mobile-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-600);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.nav-mobile-close:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--navy); }
.nav-mobile-nav {
  flex: 1;
  padding: 16px 0;
  display: flex; flex-direction: column;
}
.nav-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--gray-800);
  font-size: 17px; font-weight: 600;
  font-family: var(--font-head);
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { background: var(--gray-50); color: var(--blue); }
.nav-mobile-link.active { color: var(--blue); }
.nav-mobile-link svg { color: var(--gray-400); flex-shrink: 0; transition: transform 0.2s var(--transition), color 0.15s; }
.nav-mobile-link:hover svg { transform: translateX(3px); color: var(--blue); }
.nav-mobile-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 16px;
  flex-shrink: 0;
}
.nav-mobile-contact {
  display: flex; flex-direction: column; gap: 10px;
}
.nav-mobile-contact a {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-600); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.nav-mobile-contact a:hover { color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.16s var(--transition), box-shadow 0.18s;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.08s; }
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 2px 10px rgba(29,107,232,0.22);
}
.btn-primary:hover {
  background: var(--blue-hover); color: white;
  box-shadow: var(--shadow-blue);
}
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  box-shadow: 0 4px 16px rgba(29,107,232,0.12);
}
.btn-white { background: white; color: var(--navy); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gray-50); box-shadow: var(--shadow-md); color: var(--navy); }
.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── HERO (shared) ── */
.hero-section {
  background: var(--navy);
  padding: 92px 0 84px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; right: -80px; top: -100px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(29,107,232,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; left: -40px; bottom: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,163,0,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,163,0,0.14); border: 1px solid rgba(244,163,0,0.28);
  color: var(--accent); border-radius: 100px;
  padding: 7px 18px; font-size: 13px; font-weight: 600; margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(244,163,0,0.6);
}
.hero-section h1 { color: white; margin-bottom: 22px; }
.hero-section h1 em { color: var(--accent); font-style: normal; }
.hero-section .lead {
  color: rgba(255,255,255,0.68); font-size: 18px;
  max-width: 560px; margin-bottom: 40px; line-height: 1.82;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO LAYOUT GRIDS ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trainer-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.trainer-avatar {
  width: 200px; height: 200px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(29,107,232,0.28) 0%, rgba(29,107,232,0.08) 100%);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 0;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-600); font-weight: 500;
  white-space: nowrap;
}
.trust-divider {
  width: 1px; height: 16px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.28s var(--transition), transform 0.28s var(--transition), border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.card-featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(29,107,232,0.06);
}
.card-featured:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(29,107,232,0.1);
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-600); }
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-icon svg { width: 10px; height: 10px; stroke: var(--success); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── TAGS ── */
.tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.02em; }
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-amber  { background: var(--accent-light); color: #7A4A00; }
.tag-gray   { background: var(--gray-100); color: var(--gray-600); }
.tag-green  { background: var(--success-bg); color: var(--success); }
.tag-row    { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

/* ── SECTION SPACING ── */
section { padding: 92px 0; }
section.bg-gray { background: var(--gray-50); }
section.bg-navy { background: var(--navy); }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── STAT BOX ── */
.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.stat-box:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.2);
}
.stat-num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: white; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; font-weight: 500; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-100);
  padding: 13px 0;
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-400); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.55);
  padding: 0 0 32px;
}
.footer-top-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #5fa8ff 55%, var(--accent) 100%);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 64px 5% 52px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { color: white; margin-bottom: 18px; display: inline-flex; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.42);
  line-height: 1.8; max-width: 280px;
}
.footer-contact {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,0.42); text-decoration: none;
  font-size: 14px; display: flex; align-items: center; gap: 8px;
  transition: color 0.18s;
}
.footer-contact a:hover { color: white; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: white; margin-bottom: 18px; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: rgba(255,255,255,0.42); text-decoration: none;
  font-size: 14px; transition: color 0.18s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 28px 5% 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom span { color: rgba(255,255,255,0.32); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.18s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--gray-800);
  background: white; outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,107,232,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 1px rgba(29,107,232,0.08); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--navy); user-select: none;
  gap: 16px; transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--transition), background 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--blue); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-a { display: none; padding: 0 24px 22px; font-size: 15px; color: var(--gray-600); line-height: 1.82; }
.faq-item.open .faq-a { display: block; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s var(--transition), transform 0.25s var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); font-style: italic; margin-bottom: 22px; line-height: 1.82; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light) 0%, #daeafd 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue);
  flex-shrink: 0; border: 2px solid rgba(29,107,232,0.12);
}
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.author-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ── BLOG HERO CARD ── */
.blog-hero-card {
  background: var(--navy); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 340px;
  box-shadow: var(--shadow-lg); margin-bottom: 52px;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.blog-hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), 0 20px 60px rgba(15,32,64,0.18); }
.blog-hero-img {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 90px;
  position: relative; overflow: hidden;
}
.blog-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(244,163,0,0.12) 0%, transparent 60%);
}
.blog-hero-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-hero-body .blog-meta { color: rgba(255,255,255,0.42); margin-bottom: 14px; }
.blog-hero-body h2 { color: white; font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 14px; }
.blog-hero-body p { color: rgba(255,255,255,0.62); font-size: 15px; margin-bottom: 26px; }

/* ── BLOG CARDS ── */
.blog-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.28s var(--transition), transform 0.28s var(--transition), border-color 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-5px);
  border-color: var(--gray-200);
}
.blog-card-img {
  height: 210px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative; overflow: hidden;
}
.blog-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(29,107,232,0.2) 0%, transparent 55%);
}
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(15,32,64,0.45));
}
.blog-card-img span { position: relative; z-index: 1; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 12px; color: var(--gray-400); margin-bottom: 12px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.blog-cat-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--blue-light); color: var(--blue);
  padding: 3px 10px; border-radius: 100px;
}
.blog-card-body h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.32; }
.blog-card-body p { font-size: 14px; flex: 1; line-height: 1.72; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none; margin-top: 20px;
  transition: gap 0.22s var(--transition), color 0.18s;
}
.blog-read-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.22s var(--transition); }
.blog-read-more:hover { gap: 12px; color: var(--blue-hover); }
.blog-read-more:hover svg { transform: translateX(3px); }

/* ── BLOG CATEGORIES FILTER ── */
.categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--gray-200); background: white;
  color: var(--gray-600);
  transition: background 0.16s, color 0.16s, border-color 0.16s, box-shadow 0.16s;
  font-family: var(--font-body);
}
.cat-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.cat-btn.active {
  background: var(--blue); color: white;
  border-color: var(--blue);
  box-shadow: 0 3px 12px rgba(29,107,232,0.25);
}

/* ── ARTICLE ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 64px 5%; }
.article-body h2 { margin: 44px 0 18px; font-size: clamp(22px, 2.8vw, 28px); }
.article-body h3 { margin: 30px 0 14px; font-size: clamp(18px, 2vw, 21px); }
.article-body p { font-size: 16px; color: var(--gray-600); margin-bottom: 22px; line-height: 1.82; }
.article-body ul, .article-body ol { padding-left: 24px; color: var(--gray-600); margin-bottom: 22px; }
.article-body li { margin-bottom: 9px; font-size: 16px; line-height: 1.78; }
.article-callout {
  background: var(--blue-light); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; margin: 32px 0; font-size: 15px; color: var(--navy);
  line-height: 1.72;
}
.article-callout strong { color: var(--navy); }

/* ── ARTICLE TOC ── */
.article-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 40px;
}
.article-toc h4 { margin-bottom: 16px; font-size: 15px; color: var(--navy); }
.article-toc ol { padding-left: 20px; }
.article-toc li { margin-bottom: 6px; }
.article-toc a { color: var(--blue); font-size: 14px; text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

/* ── CTA CARD ── */
.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl); padding: 52px 48px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(29,107,232,0.2) 0%, transparent 68%);
  pointer-events: none;
}

/* ── BACK TO TOP ── */
.btn-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(15,32,64,0.3);
  opacity: 0; transform: translateY(14px) scale(0.8);
  transition: opacity 0.3s, transform 0.3s var(--transition), background 0.2s;
  pointer-events: none;
}
.btn-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.btn-top:hover { background: var(--blue); box-shadow: var(--shadow-blue); }
.btn-top svg { width: 22px; height: 22px; fill: white; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 201;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, #5fa8ff 100%);
  transition: width 0.1s;
}

/* ─────────────────────────────────────────────
   PAGE-SPECIFIC STYLES
   ───────────────────────────────────────────── */

/* ── FORMATIONS PAGE ── */
.formation-full {
  background: white; border: 1px solid var(--gray-100);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 40px;
}
.formation-header {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; padding: 36px 36px 28px; align-items: start;
  border-bottom: 1px solid var(--gray-100);
}
.formation-body { padding: 36px; }
.formation-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.formation-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.meta-box {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.meta-box-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.meta-box-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 3px; }
.price-block { background: var(--navy); border-radius: var(--radius); padding: 24px; text-align: center; }
.price-block .price { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: white; }
.price-block .price-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top:4px; margin-bottom:18px; }
.level-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 10px;
}
.level-deb { background: var(--success-bg); color: var(--success); }
.level-int { background: var(--blue-light); color: var(--blue); }
.level-adv { background: #F3E8FF; color: #7E22CE; }
.level-all { background: var(--accent-light); color: #7A4A00; }
.programme-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.programme-list li { font-size: 14px; color: var(--gray-600); display: flex; align-items: flex-start; gap: 10px; }
.programme-list li::before { content: '▸'; color: var(--blue); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.anchor-nav {
  background: white; border-bottom: 1px solid var(--gray-100);
  padding: 0; position: sticky; top: 70px; z-index: 100;
}
.anchor-nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 5%;
  display: flex; gap: 4px; overflow-x: auto;
}
.anchor-nav a {
  padding: 14px 16px; font-size: 13px; font-weight: 500;
  color: var(--gray-600); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: .15s;
}
.anchor-nav a:hover { color: var(--blue); }

/* ── FINANCEMENT PAGE ── */
.fin-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 28px;
}
.fin-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; gap: 20px; align-items: flex-start;
}
.fin-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.fin-body { padding: 36px; }
.steps-visual { display: flex; flex-direction: column; gap: 0; }
.step-row { display: flex; gap: 20px; align-items: flex-start; position: relative; }
.step-row:not(:last-child)::before {
  content: '';
  position: absolute; left: 19px; top: 40px;
  width: 2px; height: calc(100% + 4px);
  background: var(--gray-200); z-index: 0;
}
.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-content { padding: 8px 0 24px; flex: 1; }
.step-content h4 { margin-bottom: 4px; }
.step-content p { font-size: 14px; margin: 0; }
.opco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.opco-pill {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--navy); text-align: center;
}
.qualiopi-block {
  background: var(--success-bg); border: 1.5px solid rgba(14,122,85,0.25);
  border-radius: var(--radius-lg); padding: 32px 36px;
  display: flex; gap: 24px; align-items: flex-start;
}
.qualiopi-badge {
  width: 72px; height: 72px; border-radius: 14px;
  background: white; border: 2px solid rgba(14,122,85,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; flex-shrink: 0;
}

/* ── FORMATEUR PAGE ── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200); z-index: 0;
}
.timeline-item { display: flex; gap: 24px; position: relative; padding-bottom: 32px; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  color: white; position: relative; z-index: 1;
}
.timeline-content h4 { margin-bottom: 4px; padding-top: 8px; }
.timeline-content p { font-size: 14px; }
.comp-category { margin-bottom: 28px; }
.comp-category h4 { margin-bottom: 12px; color: var(--navy); }
.comp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.comp-pill {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--gray-100);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--navy);
  box-shadow: var(--shadow);
}
.comp-level { width: 8px; height: 8px; border-radius: 50%; }
.level-expert { background: var(--success); }
.level-avance { background: var(--blue); }
.valeur-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; box-shadow: var(--shadow);
}
.valeur-icon { font-size: 36px; margin-bottom: 14px; }

/* ── LEGAL PAGES ── */
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 { font-size: clamp(20px, 2.5vw, 26px); margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.legal-body h2:first-child { margin-top: 0; border-top: none; }
.legal-body h3 { font-size: 17px; color: var(--navy); margin: 24px 0 10px; }
.legal-body p, .legal-body li { font-size: 15px; color: var(--gray-600); line-height: 1.85; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--blue); }
.info-block {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 20px 24px; margin: 16px 0;
}
.info-block p { margin: 0; }
.info-block p + p { margin-top: 6px; }

/* CGV price table */
.price-table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px;
}
.price-table th {
  background: var(--navy); color: white; padding: 12px 16px;
  text-align: left; font-family: var(--font-head); font-weight: 700;
}
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--gray-50); }

/* Politique de confidentialité */
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.right-card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 18px 20px;
}
.right-card h3 { font-size: 15px; margin-bottom: 6px; }
.right-card p { font-size: 13px; margin: 0; }
.data-table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px;
}
.data-table th {
  background: var(--navy); color: white; padding: 12px 16px;
  text-align: left; font-family: var(--font-head); font-weight: 700;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-50); }

/* ─────────────────────────────────────────────
   WORDPRESS NATIVE CLASSES
   ───────────────────────────────────────────── */

/* Alignments */
.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}
.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignwide {
  margin-left: calc(-5% - 1px);
  margin-right: calc(-5% - 1px);
}
.alignfull {
  margin-left: calc(-5% - 1px);
  margin-right: calc(-5% - 1px);
  max-width: calc(100% + 10% + 2px);
  width: calc(100% + 10% + 2px);
}

/* Captions */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}
.wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.wp-caption-text,
.wp-caption .wp-caption-dd {
  margin: 0;
  padding: 0.5em 0;
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}

/* Sticky post */
.sticky {
  border-left: 3px solid var(--blue);
  padding-left: 20px;
}

/* Pagination */
.wp-pagenavi,
.pagination,
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.page-numbers,
.nav-previous a,
.nav-next a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  background: white;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.page-numbers:hover,
.nav-previous a:hover,
.nav-next a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.page-numbers.dots {
  border: none;
  background: none;
  color: var(--gray-400);
}

/* Gutenberg block styles */
.wp-block-image { margin-bottom: 1.5em; }
.wp-block-image img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.wp-block-quote {
  border-left: 4px solid var(--blue);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.wp-block-quote p { color: var(--navy); font-style: italic; margin: 0; }
.wp-block-quote cite { font-size: 13px; color: var(--gray-400); display: block; margin-top: 8px; }
.wp-block-separator { border: none; border-top: 1px solid var(--gray-100); margin: 40px 0; }
.wp-block-code, pre {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 14px;
  overflow-x: auto;
  margin-bottom: 1.5em;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 1.5em;
}
.wp-block-table th {
  background: var(--navy); color: white;
  padding: 12px 16px; text-align: left;
  font-family: var(--font-head); font-weight: 700;
}
.wp-block-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

/* ── MOBILE NAV ANIMATIONS ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .formation-cols { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .trainer-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .trainer-avatar { margin: 0 auto; width: 160px; height: 160px; font-size: 70px; }
  .trainer-hero-grid .hero-actions { justify-content: center; }
  .blog-hero-card { grid-template-columns: 1fr; min-height: auto; }
  .blog-hero-img { height: 200px; font-size: 72px; }
  .blog-hero-body { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .formation-header { grid-template-columns: 1fr; }
  .fin-header { flex-direction: column; }
  .qualiopi-block { flex-direction: column; }
  .rights-grid { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-links { display: none; }
  .nav-end { display: none; }
  .nav-sep { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero-section { padding: 72px 0 64px; }
  .card { padding: 28px; }
  .blog-card-body { padding: 22px; }
  .cta-card { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .formation-body { padding: 24px; }
  .fin-body { padding: 24px; }
  .opco-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  h1 { font-size: clamp(28px, 9vw, 40px); }
  h2 { font-size: clamp(22px, 7vw, 34px); }
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .trust-bar-inner { gap: 12px; }
  .grid-2 { gap: 16px; }
  .formation-meta-grid { grid-template-columns: 1fr; }
  .opco-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .card { padding: 22px; }
  .blog-hero-body { padding: 24px; }
  .categories { gap: 6px; }
  .cat-btn { padding: 7px 16px; font-size: 12px; }
  .opco-grid { grid-template-columns: 1fr 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
}

/* ── PRINT ── */
@media print {
  nav, .btn-top, .skip-link { display: none !important; }
  .hero-section { background: var(--navy) !important; -webkit-print-color-adjust: exact; }
}
