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

/* ==============================
   WAOU Formations — OpenClassrooms-Inspired Redesign
   Warm · Human · Clear · Inviting
   ============================== */

/* === Reset & Base === */
html { scroll-behavior: smooth; font-size: 130%; }
*, *::before, *::after { box-sizing: border-box; }

/* Animated gradient background for body */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Noise grain overlay */
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* Glow pulse for interactive elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(39,84,138,.15); }
  50% { box-shadow: 0 0 35px rgba(39,84,138,.25); }
}

/* Float animation for blobs */
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: var(--gray-800);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* === CSS Variables === */
:root {
  /* New palette: Marine + Gold */
  --violet-50: #F3F3E0;
  --violet-100: #E8E8D0;
  --violet-200: #cde0f5;
  --violet-400: #3A6FA0;
  --violet-500: #27548A;
  --violet-600: #27548A;
  --violet-700: #183B4E;
  --violet-800: #0F2A3A;
  --amber-50: #FFF8E7;
  --amber-100: #F0D48A;
  --amber-200: #DDA853;
  --amber-400: #DDA853;
  --amber-500: #C4942E;
  --amber-600: #A67C1E;
  --gray-50: #F3F3E0;
  --gray-100: #E8E8D0;
  --gray-200: #D5D5C0;
  --gray-300: #B8B8A0;
  --gray-400: #8A8A70;
  --gray-500: #5C5C48;
  --gray-600: #3D3D2E;
  --gray-700: #183B4E;
  --gray-800: #183B4E;
  --gray-900: #0F2A3A;
  --green-600: #059669;
  --radius: 0.625rem;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* ==============================
   HEADER — Clean, OpenClassrooms style
   ============================== */
.site-header {
  background: #183B4E;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .3s;
}
.site-header::after {
  display: none;
}
/* Filet doré sous le header sur les pages formation */
.is-formation-page .site-header::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #DDA853 0%, rgba(221,168,83,0) 52%);
  pointer-events: none;
  z-index: 1001;
}
body { padding-top: 72px; display: flex; flex-direction: column; min-height: 100vh; }
.site-footer { margin-top: auto; }


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-center {
  display: none;
}
@media (min-width: 768px) {
  .header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
}

.header-right {
  display: none;
}
@media (min-width: 768px) { .header-right { display: flex; align-items: center; justify-content: flex-end; } }

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  transition: opacity .2s;
}
.site-logo:hover { opacity: .7; }
.header-logo-img { display: block; max-height: 36px; width: auto; object-fit: contain; }
.site-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.site-name-accent { color: #DDA853; }
.site-tagline {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { .site-nav { display: flex; } }

.site-nav a {
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover {
  color: #fff;
}
.site-nav a.current-menu-item,
.site-nav a[aria-current="page"] {
  color: #DDA853;
  border-bottom: 2px solid #DDA853;
}

a.btn-mydad {
  background: linear-gradient(135deg, #DDA853, #C4942E) !important;
  color: #183B4E !important;
  padding: 0.5rem 1.15rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
  border: none;
  display: inline-block;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
a.btn-mydad:hover {
  background: linear-gradient(135deg, #C4942E, #A67C1E) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(221,168,83,.3);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.7); font-size: 1rem; padding: 0.6rem 0; font-weight: 500; }
.mobile-nav > a:hover { color: #fff; }

/* Accordéon formations mobile */
.mobile-formations-section { display: flex; flex-direction: column; }
.mobile-formations-toggle {
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.7); font-size: 1rem; font-weight: 500;
  padding: 0.6rem 0; font-family: inherit; width: 100%;
  transition: color .2s;
}
.mobile-formations-toggle:hover { color: #fff; }
.mobile-formations-toggle svg { transition: transform .25s; flex-shrink: 0; }
.mobile-formations-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-formations-toggle[aria-expanded="true"] { color: #DDA853; }
.mobile-formations-list {
  display: none; flex-direction: column; gap: 0;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(221,168,83,.3);
  margin: 0.25rem 0 0.5rem;
}
.mobile-formations-list.open { display: flex; }
.mobile-formation-link {
  color: rgba(255,255,255,.55) !important; font-size: 0.9rem !important;
  padding: 0.45rem 0 !important; font-weight: 400 !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-formation-link:hover { color: #DDA853 !important; }

/* ==============================
   NAV DROPDOWN — Formations mega-menu
   ============================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color .2s;
}
.nav-dropdown-toggle:hover { color: #fff; }
.nav-dropdown-toggle svg { transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-toggle { color: #fff; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 650px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 1100;
  padding: 1.5rem;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
}

.nav-dropdown-col {
  padding-right: 1.5rem;
  border-right: 1px solid var(--gray-200);
}

.nav-dropdown-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 0.25rem;
}
.nav-dropdown-sublabel {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 0;
}

.nav-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: background .15s;
}
.nav-dropdown-item:hover { background: var(--gray-50); }
.nav-dropdown-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}
.nav-dropdown-item span {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* Mobile formations in nav */
.mobile-formations-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
}
.mobile-formations-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
  padding: 0.3rem 0;
}
.mobile-formation-link {
  color: var(--gray-600);
  font-size: 0.9rem;
  padding: 0.4rem 0 0.4rem 0.75rem;
  font-weight: 500;
  border-left: 2px solid var(--gray-200);
  transition: all .15s;
}
.mobile-formation-link:hover {
  border-left-color: var(--violet-600);
  color: var(--violet-600);
}

/* ==============================
   FOOTER — Dark, clean
   ============================== */
.site-footer {
  background: linear-gradient(160deg, #183B4E 0%, #1E4D66 100%);
  color: #fff;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(221,168,83,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(163,196,232,.06) 0%, transparent 50%);
  pointer-events: none;
}
.footer-blob {
  position: absolute;
  pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite;
}
.footer-blob--2 { animation-delay: -6s; }
.footer-blob--1 {
  width: 250px;
  height: 250px;
  top: -60px;
  right: -40px;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  opacity: .07;
}
.footer-blob--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 10%;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  opacity: .07;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo img { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.footer-col h3 { font-size: 0.72rem; font-weight: 700; color: #DDA853; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col p { color: rgba(255,255,255,.75); font-size: 0.85rem; line-height: 1.7; margin: 0 0 0.5rem; }
.footer-address { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-address svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.45); }

.footer-contact-name { font-weight: 700; color: #fff !important; }
.footer-contact-role { font-size: 0.8rem; color: rgba(255,255,255,.6) !important; }
.footer-link { display: flex; align-items: center; gap: 0.5rem; color: #5A8DB8; font-size: 0.85rem; margin-top: 0.5rem; transition: color .2s; }
.footer-link:hover { color: #DDA853; }
.footer-qualiopi { font-size: 0.8rem; color: rgba(255,255,255,.5); margin-top: 1.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(221,168,83,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  position: relative;
  z-index: 2;
}
.footer-bottom p { margin: 0; }
.footer-legal-links { display: flex; gap: 1.5rem; font-size: 0.75rem; }
.footer-legal-links a { color: #5A8DB8; transition: color .2s; }
.footer-legal-links a:hover { color: #DDA853; }

/* ==============================
   HOME - HERO — Warm, clear, OpenClassrooms style
   ============================== */
.home-hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: #FAFAF9;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.violet-text {
  color: var(--violet-600);
}

.hero-intro {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 36rem;
  margin: 0 0 2rem;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 768px) { .hero-cta-row { flex-direction: row; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--violet-600), var(--violet-400));
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(39,84,138,.2);
  animation: glowPulse 3s ease-in-out infinite;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--violet-700), var(--violet-500)); color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(39,84,138,.35); animation: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gray-600);
  padding: 0.85rem 1.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--gray-300);
  transition: all .25s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gray-800); color: var(--gray-800); }

.hero-illustration {
  flex: 0 0 350px;
  display: none;
  position: relative;
}
@media (min-width: 768px) { .hero-illustration { display: block; } }
@media (min-width: 1024px) { .hero-illustration { flex: 0 0 420px; } }

.hero-illustration-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

/* PSH — Vague + ligne décorative */

.psh-wave-section {
  position: relative;
  background: #ffffff;
  padding-bottom: 2rem;
}
.psh-wave {
  display: none;
}

/* Section divider — gradient line */
.section-divider {
  height: 3px;
  background: linear-gradient(to right, transparent 5%, #DDA853 30%, #27548A 50%, #DDA853 70%, transparent 95%);
  opacity: .3;
}
/* Gold line divider between navy sections */
.section-divider-gold {
  height: 1px;
  background: linear-gradient(to right, transparent 10%, rgba(221,168,83,.2) 30%, rgba(221,168,83,.3) 50%, rgba(221,168,83,.2) 70%, transparent 90%);
}
.psh-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
}
.psh-line-bar {
  height: 2px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(to var(--dir, right), transparent, #A3C4E8, #cde0f5, transparent);
  opacity: .4;
  border-radius: 1px;
}
.psh-line-bar:first-child { --dir: right; }
.psh-line-bar:last-child { --dir: left; }
.psh-line-content {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.psh-line-content svg {
  width: 20px;
  height: 20px;
}
.psh-line-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  font-weight: 500;
}
.psh-line-dot {
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
}
.psh-line-link {
  color: var(--violet-600);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.psh-line-link:hover {
  color: var(--violet-700);
}
@media (max-width: 600px) {
  .psh-line { flex-direction: column; gap: .5rem; }
  .psh-line-bar { display: none; }
  .psh-line-content { flex-wrap: wrap; justify-content: center; }
}

/* ==============================
   BANNER SLIDER
   ============================== */
.banner-slider {
  position: relative;
  overflow: hidden;
  margin: -72px 0 0;
  padding: 0;
  line-height: 0;
}


.banner-track {
  position: relative;
  height: 632px;
  line-height: normal;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 72px;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  height: 632px;
  background: #ffffff;
  overflow: hidden;
}
/* Option A (with image): only blob-1 visible, no extra radial gradients */
.banner-slide:has(.banner-bg-image) .banner-blob--2 {
  display: none;
}

/* Option B (no image): gradient bg, centered, blobs repositioned */
.banner-slide:not(:has(.banner-bg-image)) {
  background: #ffffff;
  justify-content: center;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-blob--1 {
  width: 280px;
  height: 280px;
  top: -70px;
  left: auto;
  right: -50px;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-blob--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: auto;
  left: -20px;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 80px;
  text-align: center;
  left: 0;
  transform: none;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-btns {
  justify-content: center;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-stats {
  justify-content: center;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  white-space: normal;
}
.banner-slide:not(:has(.banner-bg-image)) .banner-desc {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.banner-slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
  height: 632px;
  overflow: hidden;
}

/* Banner background image — right half only like mockup */
.banner-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Gradient overlay — sits on image area, fades left edge into cream */
.banner-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  background: linear-gradient(to right, #ffffff 0%, #ffffffee 15%, #ffffff88 40%, transparent 70%);
}

/* Banner tag */
.banner-tag {
  display: inline-block;
  background: rgba(39,84,138,.08);
  border: 1px solid rgba(39,84,138,.12);
  color: #27548A;
  padding: 0.35rem 1rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Organic blobs on banner */
.banner-blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 14s ease-in-out infinite;
}
.banner-blob--2 { animation-delay: -5s; animation-duration: 18s; }
.banner-blob--1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -30px;
  background: linear-gradient(135deg, #DDA853, #C4942E);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  opacity: .08;
}
.banner-blob--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 40%;
  background: linear-gradient(135deg, #27548A, #183B4E);
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  opacity: .06;
}

/* Banner buttons row */
.banner-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #27548A;
  padding: 0.85rem 2rem;
  border-radius: 22px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid rgba(39,84,138,.2);
  transition: all .25s;
}
.banner-btn-outline:hover { border-color: #27548A; background: rgba(39,84,138,.05); }

/* Banner stats */
.banner-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(39,84,138,.08);
}
.banner-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #183B4E;
}
.banner-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(24,59,78,.4);
  margin-top: 0.15rem;
}

@media (max-width: 767px) {
  /* Banner : hauteur flexible */
  .banner-track,
  .banner-slide,
  .banner-slide.active { height: auto; min-height: 420px; }

  /* Banner : image en fond plein + overlay sombre */
  .banner-bg-image { width: 100%; opacity: .18; }
  .banner-gradient { width: 100%; background: linear-gradient(to bottom, #ffffff 40%, transparent 100%); }

  /* Banner : contenu centré, padding réduit */
  .banner-content { max-width: 100%; padding: 40px 1.5rem 36px; text-align: center; margin: 0 auto; }
  .banner-title { text-align: center; }
  .banner-desc { text-align: center; }
  .banner-btns { justify-content: center; }
  .banner-stats { justify-content: center; gap: 1.5rem; }
  .banner-stat-value { font-size: 1.25rem; }

  /* No-image banner : autoriser le retour à la ligne */
  .banner-slide:not(:has(.banner-bg-image)) .banner-title { white-space: normal; font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
}

.banner-content {
  max-width: 620px;
  position: relative;
  z-index: 5;
  padding: 48px 0 48px 48px;
}

.banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #183B4E;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.banner-title em {
  font-style: normal;
  color: #DDA853;
}

.banner-desc {
  font-size: 1rem;
  color: rgba(24,59,78,.72);
  line-height: 1.65;
  margin: 0 0 1.75rem;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #27548A, #183B4E);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 22px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 15px rgba(39,84,138,.2);
}
.banner-btn:hover { background: linear-gradient(135deg, #183B4E, #27548A); color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(39,84,138,.35); }

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(39,84,138,.2);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.banner-dot.active { background: #27548A; transform: scale(1.3); }

/* Banner arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(39,84,138,.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(39,84,138,.12);
  color: #27548A;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.banner-arrow:hover { background: rgba(39,84,138,.12); }
.banner-arrow--prev { left: 1.5rem; }
.banner-arrow--next { right: 1.5rem; }
@media (max-width: 767px) {
  .banner-arrow { width: 36px; height: 36px; }
  .banner-arrow svg { width: 18px; height: 18px; }
}

/* ==============================
   WHY SECTION — Overlapping gradient cards
   ============================== */
.why-section {
  padding: 4rem 0 calc(4rem + 60px);
  background: linear-gradient(150deg, #183B4E, #1E4D66);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  z-index: 1;
}
.why-section .section-title { color: #ffffff; }
.why-section .section-subtitle { color: rgba(255,255,255,.65); }

.why-blob {
  position: absolute;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.why-blob--1 {
  width: 220px;
  height: 220px;
  top: -70px;
  left: 50%;
  background: linear-gradient(135deg, #DDA853, #C4942E);
  opacity: .08;
}

/* Titre highlight */
.why-highlight {
  position: relative;
  display: inline;
  color: #DDA853;
}

/* Cards layout */
.why-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border-radius: 16px;
  margin: 0 -6px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.why-card:hover { flex: 2; z-index: 3; }

/* Blue card */
.why-card--blue {
  background: linear-gradient(160deg, #27548A, #1E4D66);
  z-index: 1;
}
.why-card--blue .why-card-step { color: rgba(255,255,255,.5); }
.why-card--blue h3 { color: #fff; }
.why-card--blue p { color: rgba(255,255,255,.6); }

/* Gold card — center, elevated */
.why-card--gold {
  background: linear-gradient(160deg, #DDA853, #C4942E);
  z-index: 2;
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(221,168,83,.2);
}
.why-card--gold:hover { flex: 2; transform: scale(1.04); }
.why-card--gold .why-card-step { color: rgba(24,59,78,.4); }
.why-card--gold h3 { color: #183B4E; }
.why-card--gold p { color: rgba(24,59,78,.6); }

/* Navy card */
.why-card--navy {
  background: linear-gradient(160deg, #183B4E, #0F2A3A);
  z-index: 1;
}
.why-card--navy .why-card-step { color: rgba(221,168,83,.5); }
.why-card--navy h3 { color: #DDA853; }
.why-card--navy p { color: rgba(255,255,255,.5); }

.why-card-step {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 0.75rem;
}

.why-card-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .why-cards { flex-direction: column; align-items: center; gap: 1rem; }
  .why-card { margin: 0; max-width: 320px; width: 100%; }
  .why-card--gold { transform: none; }
  .why-card--gold:hover { transform: translateY(-4px); }
}

/* ==============================
   FORMATIONS SECTION
   ============================== */
.formations-section {
  position: relative;
  padding: 3.5rem 0;
  background: #ffffff;
}

.section-header { text-align: center; margin-bottom: 2rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--violet-50);
  color: var(--violet-600);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #183B4E;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.formations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 90rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .formations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .formations-grid { grid-template-columns: repeat(3, 1fr); }
}

.formation-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(24,59,78,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.formation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(24,59,78,.15);
}

.formation-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

/* Image area */
.formation-card-img {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #183B4E, #1e5a78);
  overflow: hidden;
  flex-shrink: 0;
}
.formation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.formation-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(24,59,78,.45));
}

/* Body */
.formation-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.formation-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #DDA853;
  margin: 0 0 .4rem;
}

.formation-card-title {
  font-size: .95rem;
  font-weight: 800;
  color: #183B4E;
  margin: 0 0 .5rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.formation-card-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.formation-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.formation-card-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.formation-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #DDA853;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 6px;
  transition: background .2s, gap .2s;
}
.formation-card:hover .formation-card-cta {
  background: #c8943d;
  gap: .5rem;
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  display: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  opacity: .12;
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 340px;
}

.cta-text {
  flex: 1;
}

/* New full-width CTA layout */
.cta-section {
  display: flex;
  align-items: stretch;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}

.cta-text-col {
  flex: 0 0 50%;
  padding: calc(3.5rem + 60px) 3rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #183B4E;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.cta-image {
  flex: 0 0 50%;
  display: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-image { display: block; } }
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
@media (max-width: 767px) {
  .cta-section { flex-direction: column; }
  .cta-text-col { padding: 2.5rem 1.5rem; }
  .cta-image { display: block; flex: 0 0 220px; width: 100%; clip-path: none; }
}

@media (max-width: 767px) {
  .cta-content { flex-direction: column; }
}

/* ==============================
   FAQ SECTION
   ============================== */
/* ==============================
   FAQ SECTION — Split navy glassmorphism
   ============================== */
.faq-section {
  position: relative;
  padding: calc(4rem + 60px) 0 4rem;
  background: linear-gradient(160deg, #183B4E 0%, #1E4D66 50%, #183B4E 100%);
  overflow: hidden;
  margin-top: -60px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  z-index: 4;
}
.faq-blob {
  position: absolute;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.faq-blob--1 {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
  background: linear-gradient(135deg, #DDA853, #C4942E);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  opacity: .05;
}

/* Split layout */
.faq-layout {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header centré */
.faq-left {
  text-align: center;
  margin-bottom: 40px;
}
.faq-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #DDA853;
  margin-bottom: 8px;
}
.faq-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.faq-title em {
  font-style: normal;
  color: #DDA853;
}
.faq-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Reclamation button inline */
.faq-reclam {
  display: inline-block;
}
.faq-reclam h3,
.faq-reclam p { display: none; }
.faq-reclam-btn {
  display: inline-block;
  background: linear-gradient(135deg, #DDA853, #C4942E);
  color: #183B4E;
  padding: 10px 26px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.faq-reclam-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(221,168,83,.25);
}

/* Accordion 2 colonnes flex indépendantes */
.faq-right {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ items — glassmorphism */
.faq-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(255,255,255,.05);
  transition: all .3s;
}
.faq-item:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(221,168,83,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.faq-item.open {
  background: rgba(255,255,255,.14);
  border-color: rgba(221,168,83,.2);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q-text {
  flex: 1;
}
.faq-q-text h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0;
  transition: color .2s;
}
.faq-item.open .faq-q-text h3 { color: #fff; }

.faq-category {
  font-size: 0.8rem;
  font-weight: 800;
  color: #DDA853;
  background: rgba(221,168,83,.12);
  padding: 6px 14px;
  border-radius: 10px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.faq-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,.3);
  transition: transform .3s, color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #DDA853; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease-out;
}
.faq-item.open .faq-answer { max-height: 600px; transition: max-height .45s ease-in; }
.faq-answer-inner {
  padding: 0 22px 18px;
}
.faq-answer-inner p {
  color: rgba(255,255,255,.45);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .faq-right { flex-direction: column; }
  .faq-left { margin-bottom: 24px; }
}

/* ==============================
   QUI SOMMES-NOUS PAGE
   ============================== */
.page-hero {
  position: relative;
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #183B4E 0%, #1E4D66 40%, #183B4E 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(221,168,83,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(163,196,232,.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-blob {
  position: absolute;
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%;
  opacity: .15;
  pointer-events: none;
}
.page-hero-blob--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
}
.page-hero-blob--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.page-hero-overlay { display: none; }
.page-hero-content { position: relative; z-index: 10; max-width: 50rem; margin: 0 auto; text-align: center; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(163,196,232,.15), rgba(221,168,83,.1));
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(221,168,83,.2);
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #5A8DB8;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.4); max-width: 36rem; margin: 0 auto; line-height: 1.7; }

.page-hero-wave {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: -1px;
}
.page-hero-wave path { fill: #1E4D66; }

/* Sections */
.section-py { padding: 3.5rem 0; }
.section-bg-white { background: #fff; }
.section-bg-dark {
  background: linear-gradient(160deg, #183B4E 0%, #1E4D66 100%);
  color: #fff;
  position: relative;
}
.section-bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(221,168,83,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(163,196,232,.06) 0%, transparent 50%);
  pointer-events: none;
}
.section-bg-light { background: #fff; position: relative; overflow: hidden; }
.section-bg-light::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #cde0f5, #A3C4E8);
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  opacity: .15;
  pointer-events: none;
}

.presenter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .presenter-grid { grid-template-columns: auto 1fr; } }

.qualiopi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #e7e5e4;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet-600);
}

.founder-card {
  background: #E8E8D0;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1.5px solid #E8E8D0;
}
.founder-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--gray-800); letter-spacing: -0.02em; }
.founder-role { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--gray-500); }
.founder-role::before { content: '•'; color: var(--violet-600); font-size: 0.7rem; flex-shrink: 0; }

.blockquote {
  padding-left: 1.5rem;
  border-left: 3px solid var(--violet-600);
}
.blockquote p { color: var(--gray-500); font-style: italic; line-height: 1.8; }

.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet-700);
  background: linear-gradient(135deg, #F3F3E0, #fefce8);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid #E8E8D0;
}

/* Mission book */
.book-layout {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}
@media (min-width: 1024px) { .book-layout { grid-template-columns: 1fr 1fr; } }

.book-left { background: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.book-left h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--gray-800); line-height: 1; letter-spacing: -0.04em; }
.book-left p { color: var(--gray-400); line-height: 1.7; font-size: 0.92rem; }
.book-divider { width: 3rem; height: 3px; background: var(--violet-600); border-radius: 9999px; margin: 1.5rem 0; }
.book-page-num { color: #e7e5e4; font-size: 0.8rem; letter-spacing: .1em; font-weight: 300; }

.book-right { background: #F3F3E0; padding: 3rem; }
.book-right .sub-label { font-size: 0.65rem; font-weight: 700; color: #5A8DB8; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2rem; }

.commitment-item { display: flex; gap: 1rem; align-items: flex-start; }
.commitment-item + .commitment-item { margin-top: 1.5rem; }
.commitment-icon {
  background: linear-gradient(135deg, rgba(163,196,232,.15), rgba(221,168,83,.1));
  border: 1px solid rgba(163,196,232,.15);
  padding: 0.5rem;
  border-radius: 10px;
  flex-shrink: 0;
  color: #5A8DB8;
}
.commitment-item h3 { font-size: 0.92rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.2rem; }
.commitment-item p { color: var(--gray-500); font-size: 0.82rem; line-height: 1.6; }

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 90rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }

.advantage-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f3f4f6;
  padding: 1.5rem;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(39,84,138,.08); border-color: #E8E8D0; }

.advantage-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
}
.advantage-icon.blue { background: linear-gradient(135deg, #cde0f5, #A3C4E8); color: var(--violet-600); }
.advantage-icon.indigo { background: linear-gradient(135deg, #F3F3E0, #cde0f5); color: #A67C1E; }
.advantage-icon.cyan { background: linear-gradient(135deg, #E8E8D0, #cde0f5); color: #27548A; }
.advantage-icon.teal { background: linear-gradient(135deg, #cde0f5, #A3C4E8); color: var(--violet-600); }
.advantage-icon.orange { background: linear-gradient(135deg, #F3F3E0, #cde0f5); color: #A67C1E; }
.advantage-icon.rose { background: linear-gradient(135deg, #E8E8D0, #cde0f5); color: #27548A; }
.advantage-icon.green { background: linear-gradient(135deg, #cde0f5, #A3C4E8); color: var(--violet-600); }
.advantage-icon.purple { background: linear-gradient(135deg, #F3F3E0, #cde0f5); color: #A67C1E; }

.advantage-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.advantage-card p { color: var(--gray-400); font-size: 0.8rem; line-height: 1.6; flex: 1; }
.advantage-bar {
  height: 3px;
  border-radius: 9999px;
  margin-top: 1rem;
  width: 0;
  transition: width 1s ease-out;
}
.advantage-bar.animated { width: 100%; }
.advantage-bar.blue { background: linear-gradient(to right, #5A8DB8, #27548A); }
.advantage-bar.indigo { background: linear-gradient(to right, #A3C4E8, #cde0f5); }
.advantage-bar.cyan { background: linear-gradient(to right, #A3C4E8, #27548A); }
.advantage-bar.teal { background: linear-gradient(to right, #5A8DB8, #27548A); }
.advantage-bar.orange { background: linear-gradient(to right, #A3C4E8, #cde0f5); }
.advantage-bar.rose { background: linear-gradient(to right, #A3C4E8, #27548A); }
.advantage-bar.green { background: linear-gradient(to right, #5A8DB8, #27548A); }
.advantage-bar.purple { background: linear-gradient(to right, #A3C4E8, #cde0f5); }

/* ==============================
   ABOUT PAGE — Alt Design
   ============================== */

/* Hero — Light gradient */
/* ── Qui sommes-nous : Option C Minimaliste ── */
.about-intro {
  background: #ffffff;
  padding: calc(4rem + 72px) 0 calc(4.5rem + 70px);
  margin-top: -72px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), 0 100%);
  position: relative;
  z-index: 1;
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about-intro-inner { grid-template-columns: 1fr 380px; gap: 1.5rem; align-items: center; }
}
.about-intro-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #DDA853;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-intro-eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: #DDA853;
  display: block;
  flex-shrink: 0;
}
.about-intro-divider {
  width: 3rem;
  height: 3px;
  background: linear-gradient(to right, #DDA853, #C4942E);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.about-intro-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #183B4E;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.about-intro-title em {
  font-style: normal;
  color: #DDA853;
}
.about-intro-text {
  font-size: 1.05rem;
  color: rgba(24,59,78,.6);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 34rem;
}

.about-intro-right {
  display: flex;
  justify-content: center;
}
.about-founder-card {
  background: linear-gradient(160deg, #183B4E, #1E4D66);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221,168,83,.15);
  box-shadow: 0 20px 56px rgba(24,59,78,.18);
  width: 100%;
}
.about-founder-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(221,168,83,.1), transparent 70%);
  border-radius: 50%;
}
.about-founder-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(221,168,83,.25);
}
.about-founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-founder-avatar--initials {
  background: linear-gradient(135deg, #DDA853, #C4942E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #183B4E;
}
.about-founder-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: #DDA853;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 0.4rem;
}
.about-founder-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.about-founder-roles {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.about-founder-roles span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Mission — Cards layout */
/* ── Mission & Engagements — Option B : Crème + numéros dorés ── */
.about-mission {
  padding: calc(5rem + 70px) 0 calc(5rem + 70px);
  background: linear-gradient(150deg, #183B4E, #1E4D66);
  margin-top: -70px;
  clip-path: polygon(0 0, 100% 70px, 100% calc(100% - 70px), 0 100%);
  position: relative;
  z-index: 2;
}
.about-mission-header {
  text-align: center;
  margin-bottom: 1rem;
}
.about-mission-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  color: #DDA853;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.about-mission-eyebrow::before,
.about-mission-eyebrow::after {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: #DDA853;
  display: block;
}
.about-mission-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
}
.about-mission-title em { font-style: normal; color: #DDA853; }

/* Citation sans fond */
.about-mission-quote {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 2.5rem;
  text-align: center;
}
.about-mission-quote::before { display: none; }
.about-mission-mark { display: none; }
.about-mission-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  padding-left: 0;
  max-width: 100%;
  margin: 0;
}

/* Cards grille avec numéros */
.about-commits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) { .about-commits-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .about-commits-grid { grid-template-columns: repeat(2, 1fr); } }

.about-commit-card {
  background: #fff;
  border: 1px solid rgba(24,59,78,.07);
  border-left: 4px solid #DDA853;
  border-radius: 0 16px 16px 0;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(24,59,78,.07);
  transition: transform .25s, box-shadow .25s;
}
.about-commit-card:nth-child(even) {
  border-left-color: #27548A;
}
.about-commit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24,59,78,.12);
}
.about-commit-num {
  font-size: 3rem;
  font-weight: 900;
  color: #DDA853;
  opacity: .3;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.about-commit-card:nth-child(even) .about-commit-num {
  color: #27548A;
}
.about-commit-card-body { flex: 1; }
.about-commit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #183B4E;
  margin-bottom: 0.4rem;
}
.about-commit-card p {
  font-size: 0.85rem;
  color: rgba(24,59,78,.55);
  line-height: 1.7;
}
/* Cards glow subtly on navy bg */
.about-mission .about-commit-card {
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

/* Avantages — Option B : crème + cartes blanches icônes colorées */
.about-adv-section {
  background: #ffffff;
  padding: calc(3.5rem + 70px) 0 calc(3.5rem + 70px);
  margin-top: -70px;
  clip-path: polygon(0 0, 100% 70px, 100% calc(100% - 70px), 0 100%);
  position: relative;
  z-index: 3;
}
.about-adv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(39,84,138,.07);
  border: 1px solid rgba(39,84,138,.12);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #27548A;
  margin-bottom: 1rem;
}
.about-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-adv-grid { grid-template-columns: repeat(3, 1fr); } }

.about-adv-card {
  background: #fff;
  border: 1px solid rgba(24,59,78,.06);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(24,59,78,.05);
}
.about-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(24,59,78,.1);
  border-color: rgba(221,168,83,.3);
}
/* Icon badge */
.about-adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.about-adv-icon--gold   { background: rgba(221,168,83,.13); }
.about-adv-icon--blue   { background: rgba(39,84,138,.10); }
.about-adv-icon--indigo { background: rgba(126,158,232,.13); }
.about-adv-icon--green  { background: rgba(74,191,160,.13); }
.about-adv-icon--teal   { background: rgba(74,158,232,.13); }
.about-adv-icon--orange { background: rgba(245,158,66,.13); }
.about-adv-icon--rose   { background: rgba(232,126,158,.13); }

/* Titre + logo sur la même ligne */
.about-adv-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 2.8rem;
}
.about-adv-img img {
  max-height: 24px;
  max-width: 60px;
  object-fit: contain;
  display: block;
}

/* Big golden stat */
.about-adv-stat {
  font-size: 1.5rem;
  font-weight: 900;
  color: #DDA853;
  line-height: 1.1;
}
.about-adv-card p {
  color: rgba(24,59,78,.5);
  font-size: 0.82rem;
  line-height: 1.65;
  flex: 1;
}

/* Infos légales — Option C : blanc + accent doré + badges certif */
.about-legals {
  padding: calc(4rem + 70px) 0 5rem;
  background: #fff;
  margin-top: -70px;
  clip-path: polygon(0 0, 100% 70px, 100% 100%, 0 100%);
  position: relative;
  z-index: 4;
}
.about-legals-inner {
  max-width: 64rem;
  margin: 0 auto;
}

/* Header : texte gauche + badges droite */
.about-legals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.about-legals-header-left { flex: 1; }
.about-legals-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  color: #27548A;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 0.5rem;
}
.about-legals-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #183B4E;
  margin-bottom: 0.3rem;
}
.about-legals-sub {
  font-size: 0.85rem;
  color: rgba(24,59,78,.4);
}
.about-legals-badges {
  display: flex;
  gap: 0.75rem;
}
.about-legals-cert-badge {
  background: linear-gradient(135deg, #183B4E, #1E4D66);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  text-align: center;
  min-width: 110px;
}
.about-legals-cert-name {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #DDA853;
  line-height: 1.2;
}
.about-legals-cert-label {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 0.25rem;
}

/* Grille */
.about-legals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) { .about-legals-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .about-legals-grid { grid-template-columns: repeat(2, 1fr); } }

/* Carte avec barre dorée */
.about-legal-card {
  border: 1px solid rgba(24,59,78,.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.about-legal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(24,59,78,.08);
}
.about-legal-card-accent {
  height: 3px;
  background: linear-gradient(to right, #DDA853, #F5C84A);
}
.about-legal-card-body {
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-legal-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: #F3F3E0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
}
.about-legal-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(24,59,78,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.about-legal-value {
  font-weight: 700;
  color: #183B4E;
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-word;
}
.about-legal-link {
  color: #27548A;
  text-decoration: none;
}
.about-legal-link:hover { text-decoration: underline; }

/* ==============================
   QUI SOMMES-NOUS — Responsive
   ============================== */
@media (max-width: 767px) {
  /* Réduire les diagonales sur petit écran */
  .about-intro {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
    padding-bottom: calc(3rem + 36px);
  }
  .about-mission {
    margin-top: -36px;
    padding: calc(3rem + 36px) 0 calc(3rem + 36px);
    clip-path: polygon(0 0, 100% 36px, 100% calc(100% - 36px), 0 100%);
  }
  .about-adv-section {
    margin-top: -36px;
    padding: calc(2.5rem + 36px) 0 calc(2.5rem + 36px);
    clip-path: polygon(0 0, 100% 36px, 100% calc(100% - 36px), 0 100%);
  }
  .about-legals {
    margin-top: -36px;
    padding: calc(2.5rem + 36px) 0 2.5rem;
    clip-path: polygon(0 0, 100% 36px, 100% 100%, 0 100%);
  }
  /* Titres */
  .about-intro-title  { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
  .about-mission-title { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
  /* Tags : retour à la ligne */
  .about-intro-left .tags { flex-wrap: wrap; gap: 0.4rem; }
  /* Fondateur : centré */
  .about-intro-right { display: flex; justify-content: center; }
  .about-founder-card { max-width: 300px; width: 100%; }
  /* Mission : 1 col */
  .about-commits-grid { grid-template-columns: 1fr; gap: 1rem; }
  /* Avantages : 1 col */
  .about-adv-grid { grid-template-columns: 1fr; }
  /* Légales header : empiler */
  .about-legals-header { flex-direction: column; align-items: flex-start; }
  /* Légales grid : 1 col (déjà défini mais on s'assure) */
  .about-legals-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-adv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   CONTACT/TEAM — Horizontal rows
   ============================== */
/* Organigramme Navy section */
/* ── Organigramme — Option C : Crème + cartes navy + avatars vifs ── */
.organigramme-navy {
  padding: calc(3.5rem + 60px) 0 calc(3.5rem + 60px);
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  margin-top: -60px;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  z-index: 3;
}
.organigramme-blob { display: none; }

/* ── Team grid ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  justify-content: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Team card ─────────────────────────────────────────── */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #183B4E, #1E4D66);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 28px rgba(24,59,78,.14);
  text-align: center;
  padding: 4px 16px 20px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.team-card { color: inherit; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(24,59,78,.2); }

/* Accent bar */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  flex-shrink: 0;
}
.team-card.blue::before   { background: linear-gradient(to right, #4A9EE8, #27548A); }
.team-card.teal::before   { background: linear-gradient(to right, #DDA853, #F5C84A); }
.team-card.gold::before   { background: linear-gradient(to right, #DDA853, #C4942E); }
.team-card.orange::before { background: linear-gradient(to right, #F59E42, #E07820); }
.team-card.rose::before   { background: linear-gradient(to right, #E87E9E, #C4536E); }
.team-card.indigo::before { background: linear-gradient(to right, #7E9EE8, #4A6BC4); }
.team-card.purple::before { background: linear-gradient(to right, #A87EE8, #7850C4); }
.team-card.green::before  { background: linear-gradient(to right, #4ABFA0, #2D9E80); }
.team-card.red::before    { background: linear-gradient(to right, #E8604A, #C43A28); }

/* ── Avatar ───────────────────────────────────────────── */
.team-avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 12px;
  font-size: 1.4rem;
  font-weight: 800;
}
.team-avatar.blue   { background: linear-gradient(135deg,#4A9EE8,#27548A); color:#fff; box-shadow:0 4px 14px rgba(74,158,232,.45); }
.team-avatar.teal   { background: linear-gradient(135deg,#DDA853,#F5C84A); color:#183B4E; box-shadow:0 4px 14px rgba(221,168,83,.45); }
.team-avatar.gold   { background: linear-gradient(135deg,#DDA853,#C4942E); color:#183B4E; box-shadow:0 4px 14px rgba(221,168,83,.45); }
.team-avatar.orange { background: linear-gradient(135deg,#F59E42,#E07820); color:#fff; box-shadow:0 4px 14px rgba(245,158,66,.45); }
.team-avatar.rose   { background: linear-gradient(135deg,#E87E9E,#C4536E); color:#fff; box-shadow:0 4px 14px rgba(232,126,158,.45); }
.team-avatar.indigo { background: linear-gradient(135deg,#7E9EE8,#4A6BC4); color:#fff; box-shadow:0 4px 14px rgba(126,158,232,.45); }
.team-avatar.purple { background: linear-gradient(135deg,#A87EE8,#7850C4); color:#fff; box-shadow:0 4px 14px rgba(168,126,232,.45); }
.team-avatar.green  { background: linear-gradient(135deg,#4ABFA0,#2D9E80); color:#fff; box-shadow:0 4px 14px rgba(74,191,160,.45); }
.team-avatar.red    { background: linear-gradient(135deg,#E8604A,#C43A28); color:#fff; box-shadow:0 4px 14px rgba(232,96,74,.45); }
.team-avatar--photo { background: none; box-shadow: none; overflow: hidden; }
.team-avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* ── Name ─────────────────────────────────────────────── */
.team-name-row { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; margin-bottom: 6px; min-height: 3rem; }
.team-name { font-size: 1rem; font-weight: 800; color: #fff; text-align: center; margin: 0; line-height: 1.3; }
.team-linkedin { color: rgba(255,255,255,.5); display: flex; align-items: center; transition: color .2s; flex-shrink: 0; }
.team-linkedin:hover { color: #0A66C2; }

/* ── Role ─────────────────────────────────────────────── */
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  margin-bottom: 4px;
}
.team-card.blue   .team-role { color: #7DC4F5; }
.team-card.teal   .team-role { color: #DDA853; }
.team-card.gold   .team-role { color: #DDA853; }
.team-card.orange .team-role { color: #F5C080; }
.team-card.rose   .team-role { color: #F5A8C0; }
.team-card.indigo .team-role { color: #A8C0F5; }
.team-card.purple .team-role { color: #C8A8F5; }
.team-card.green  .team-role { color: #80D8C0; }
.team-card.red    .team-role { color: #F5A098; }

/* ── Department ───────────────────────────────────────── */
.team-dept {
  font-size: 0.68rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  width: 100%;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* ── Contact ──────────────────────────────────────────── */
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-bottom: 12px;
}
.team-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
}
.team-contact-link:hover { background: rgba(221,168,83,.18); border-color: rgba(221,168,83,.45); color: #DDA853; }
.team-contact-link svg { flex-shrink: 0; opacity: .85; width: 12px; height: 12px; }

/* ── Tasks ────────────────────────────────────────────── */
.team-tasks {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: left;
  width: 100%;
}
.team-tasks ul { list-style: none; padding: 0; margin: 0; }
.team-tasks li {
  font-size: 0.77rem;
  color: rgba(255,255,255,.42);
  margin-bottom: 5px;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.team-tasks li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: #DDA853;
  font-weight: 700;
  line-height: 1.5;
}

/* ==============================
   FORMATION DETAIL (fd-*)
   ============================== */
.fd-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(24,59,78,.22);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .fd-hero { border-radius: 8px; }
}
.fd-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.fd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #183B4E 38%, rgba(24,59,78,.78) 62%, rgba(24,59,78,.22) 100%);
  z-index: 1;
  pointer-events: none;
}
.fd-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
}
.fd-hero-stats {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.fd-stat-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 0.35rem 0.8rem;
  text-align: center;
}
.fd-stat-pill .fd-stat-val {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: #DDA853;
  line-height: 1;
}
.fd-stat-pill .fd-stat-lbl {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}
.fd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.4);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}
.fd-breadcrumb-link { color: inherit; display: flex; align-items: center; gap: 0.25rem; transition: color .2s; }
.fd-breadcrumb-link:hover { color: #fff; }
.fd-breadcrumb-current { color: rgba(255,255,255,.8); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 20rem; }

.fd-badges { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.fd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.fd-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  max-width: 36rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.fd-hero-desc { color: rgba(255,255,255,.52); font-size: 0.92rem; max-width: 32rem; line-height: 1.65; }

/* ── Formation page background ── */
.fd-page { background: #ffffff; padding-top: 1rem; padding-bottom: 3rem; }

.fd-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 1024px) { .fd-layout { grid-template-columns: 1fr 320px; } }

.fd-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(24,59,78,.08);
  padding: 0 1.75rem;
  counter-reset: fd-sec;
}

.fd-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(24,59,78,.05);
}
.fd-section-last { border-bottom: none; }

/* Numbered section head — large ghost number + title */
.fd-section-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  counter-increment: fd-sec;
}
.fd-section-head::before {
  content: counter(fd-sec, decimal-leading-zero);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(24,59,78,.07);
  flex-shrink: 0;
  width: 3rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
/* hide icons — replaced by counter */
.fd-section-icon { display: none; }

.fd-section h2 { font-size: 1rem; font-weight: 800; color: #183B4E; margin: 0; padding-top: 0.5rem; letter-spacing: -0.02em; }
.fd-section-note { font-size: 0.82rem; color: rgba(24,59,78,.45); font-style: italic; margin-bottom: 0.75rem; margin-left: 3.85rem; }
.fd-text { color: rgba(24,59,78,.55); font-size: 0.85rem; line-height: 1.7; margin-left: 3.85rem; }

.fd-checklist { list-style: none; padding: 0; margin: 0 0 0 3.85rem; display: flex; flex-direction: column; gap: 0.45rem; }
.fd-checklist li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.85rem; color: rgba(24,59,78,.6); line-height: 1.55; }
.fd-check-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #DDA853;
  flex-shrink: 0; margin-top: 0.35rem;
}
.fd-check-dot::after { display: none; }

.fd-access-boxes { display: flex; flex-direction: column; gap: 0.75rem; }
.fd-gray-box { background: #f9fafb; border-radius: 12px; padding: 0.85rem; border: 1px solid #f0f0f0; }
.fd-box-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.2rem; }
.fd-box-text { font-size: 0.82rem; color: var(--gray-600); }

.fd-members { display: flex; flex-direction: column; gap: 0.75rem; }
.fd-member-card { background: #f9fafb; border-radius: 12px; padding: 1rem; border: 1px solid #f0f0f0; }
.fd-member-name { font-weight: 800; color: var(--gray-800); margin: 0 0 0.2rem; }
.fd-member-role { font-size: 0.82rem; color: var(--violet-600); font-weight: 500; margin: 0 0 0.2rem; }
.fd-member-details { font-size: 0.75rem; color: var(--gray-500); margin: 0.4rem 0 0; line-height: 1.5; }
.fd-member-contact { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid #ebebeb; }
.fd-equipe-contact { border-top: 1px solid #f5f5f4; padding-top: 0.75rem; margin-top: 0.4rem; }
.fd-equipe-contact-name { font-weight: 600; color: var(--gray-800); margin: 0.4rem 0; }
.fd-equipe-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--violet-600); margin-top: 0.3rem; text-decoration: none; }
.fd-equipe-link:hover { color: var(--violet-600); }
.fd-referent-sep { border-top: 1px solid rgba(39,84,138,.08); margin-top: 0.6rem; padding-top: 0.6rem; }

.fd-accessibility-box { background: rgba(39,84,138,.04); border-radius: 12px; padding: 1rem; border: 1px solid rgba(39,84,138,.08); }
.fd-accessibility-box .fd-text { margin-bottom: 0.75rem; }
.fd-referent-box { background: #fff; border-radius: 10px; padding: 0.85rem; border: 1.5px solid rgba(39,84,138,.12); }

/* Sidebar */
.fd-sidebar-sticky { position: sticky; top: 5.5rem; display: flex; flex-direction: column; gap: 0.85rem; }

.fd-cta-card {
  background: linear-gradient(145deg,#183B4E,#1E4D66);
  border-radius: 16px;
  padding: 1.75rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fd-cta-card::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(221,168,83,.08), transparent 70%);
}
.fd-cta-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.35); margin-bottom: 0.6rem; }
.fd-cta-title { font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.fd-cta-desc { font-size: 0.82rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 1.25rem; }
.fd-cta-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg,#DDA853,#C4942E);
  color: #183B4E; border: none; border-radius: 20px;
  padding: 0.75rem 1rem; font-weight: 800; font-size: 0.82rem; cursor: pointer; transition: all .25s; text-align: center;
}
.fd-cta-btn:hover { opacity: .9; transform: translateY(-1px); }

.fd-info-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 14px rgba(24,59,78,.07); padding: 1.5rem; }
.fd-card-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #27548A; margin-bottom: 0.85rem; }
.fd-card-sub { font-size: 0.82rem; color: rgba(24,59,78,.45); margin-bottom: 0.85rem; }

.fd-info-rows { display: flex; flex-direction: column; gap: 0.85rem; }
.fd-info-row { display: flex; align-items: flex-start; gap: 0.6rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(24,59,78,.05); }
.fd-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.fd-info-icon-wrap { padding: 0.35rem; background: #f9fafb; border-radius: 8px; flex-shrink: 0; color: #183B4E; }
.fd-info-key { font-size: 0.6rem; color: rgba(24,59,78,.4); font-weight: 600; margin: 0 0 0.1rem; text-transform: uppercase; letter-spacing: .04em; }
.fd-info-val { font-size: 0.85rem; font-weight: 700; color: #183B4E; margin: 0; }
.fd-info-sub { font-size: 0.7rem; color: rgba(24,59,78,.45); margin: 0.1rem 0 0; }

.fd-financing-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.3rem; }
.fd-financing-tags span {
  font-size: 0.65rem; font-weight: 600; color: var(--violet-600); background: rgba(39,84,138,.06);
  padding: 0.2rem 0.5rem; border-radius: 6px; border: 1px solid rgba(39,84,138,.1);
}

.fd-contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
.fd-contact-link { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.fd-contact-link:hover .fd-contact-icon { background: rgba(39,84,138,.1); }
.fd-contact-link:hover span { color: var(--violet-600); }
.fd-contact-icon { padding: 0.3rem; background: rgba(39,84,138,.06); border-radius: 8px; flex-shrink: 0; color: var(--violet-600); transition: background .2s; }
.fd-contact-link span { font-size: 0.82rem; color: var(--gray-500); transition: color .2s; }

.fd-docs { display: flex; flex-direction: column; gap: 0.2rem; }
.fd-doc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  width: 100%; padding: 0.65rem; background: none; border: none; border-radius: 10px;
  cursor: pointer; text-align: left; transition: background .15s;
}
.fd-doc-btn:hover { background: #F3F3E0; }
.fd-doc-btn:hover svg:last-child { color: var(--violet-600); }
.fd-doc-left { display: flex; align-items: center; gap: 0.5rem; }
.fd-doc-left svg { color: var(--gray-400); flex-shrink: 0; }
.fd-doc-left span { font-size: 0.82rem; font-weight: 500; color: var(--gray-600); }
.fd-doc-btn > svg:last-child { color: #d6d3d1; flex-shrink: 0; transition: color .15s; }

/* ==============================
   MODALS
   ============================== */
.fd-modal-overlay {
  position: fixed; inset: 0; background: rgba(31,41,55,.6); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.fd-modal-overlay.open { opacity: 1; pointer-events: all; }
.fd-modal-box {
  background: #fff; border-radius: 20px; width: 100%; max-width: 580px; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 25px 60px rgba(0,0,0,.2);
  transform: scale(.95) translateY(1rem); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.fd-modal-overlay.open .fd-modal-box { transform: scale(1) translateY(0); }
.fd-modal-header {
  background: var(--gray-800); color: #fff; padding: 1.75rem; border-radius: 20px 20px 0 0; position: relative;
}
.fd-modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: rgba(255,255,255,.4); cursor: pointer; padding: 0.3rem; border-radius: 6px; transition: all .15s;
}
.fd-modal-close:hover { background: rgba(255,255,255,.08); color: #fff; }
.fd-modal-tag { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--violet-400); margin-bottom: 0.25rem; }
.fd-modal-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.02em; }
.fd-modal-body { padding: 1.75rem; }

.fd-form-section { margin-bottom: 1.25rem; }
.fd-form-section-title {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--violet-800); display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem;
}
.fd-step-num {
  width: 1.1rem; height: 1.1rem; background: rgba(39,84,138,.08); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: var(--violet-600); flex-shrink: 0;
}
.fd-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 600px) { .fd-form-grid-2 { grid-template-columns: 1fr; } }
.fd-form-field--full { grid-column: 1 / -1; }
.fd-form-field { margin-bottom: 0.6rem; }
.fd-form-field label { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.2rem; }
.fd-field-wrap { position: relative; }
.fd-field-wrap svg { position: absolute; left: 0.65rem; top: 50%; transform: translateY(-50%); color: #d6d3d1; pointer-events: none; }
.fd-field-wrap input { padding-left: 2rem; }
.fd-form-field input,
.fd-form-field textarea,
.fd-form-field select {
  width: 100%; padding: 0.55rem 0.75rem; border: 1.5px solid #e7e5e4; border-radius: 10px;
  font-size: 0.82rem; color: var(--gray-800); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s; box-sizing: border-box;
}
.fd-form-field input:focus,
.fd-form-field textarea:focus,
.fd-form-field select:focus { border-color: var(--violet-600); box-shadow: 0 0 0 3px rgba(39,84,138,.06); background: #fff; }
.fd-form-field textarea { resize: none; }

.fd-checkboxes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.fd-checkbox-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--gray-600); cursor: pointer; }

.fd-form-confirm { background: #f9fafb; border-radius: 12px; padding: 0.85rem; margin-bottom: 0.85rem; border: 1px solid #f0f0f0; }
.fd-confirm-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.fd-confirm-label span { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }

.fd-form-btns { display: flex; gap: 0.6rem; padding-top: 0.4rem; }
.fd-btn-cancel {
  flex: 1; padding: 0.65rem 1rem; border: 1.5px solid #e7e5e4; background: #fff;
  border-radius: 12px; font-size: 0.82rem; font-weight: 600; color: var(--gray-500); cursor: pointer; transition: all .15s;
}
.fd-btn-cancel:hover { background: #F3F3E0; }
.fd-btn-submit {
  flex: 1; padding: 0.65rem 1rem; background: var(--gray-800); border: none; border-radius: 12px;
  font-size: 0.82rem; font-weight: 700; color: #fff; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.fd-btn-submit:hover:not(:disabled) { background: var(--violet-600); }
.fd-btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.fd-spinner { width: 0.9rem; height: 0.9rem; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: fd-spin .6s linear infinite; }
@keyframes fd-spin { to { transform: rotate(360deg); } }

.fd-success { text-align: center; padding: 2.5rem 1rem; }
.fd-success-icon { width: 3.5rem; height: 3.5rem; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #16a34a; }
.fd-success h3 { font-size: 1.15rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.4rem; }
.fd-success p { font-size: 0.82rem; color: var(--gray-400); }
.fd-success-note { font-size: 0.7rem; color: #d6d3d1; margin-top: 0.85rem; }


/* ==============================
   ANIMATIONS
   ============================== */
/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) scale(.9);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.rotate-in.visible { opacity: 1; transform: rotate(0) scale(1); }

.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.slide-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: .35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: .4s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: .45s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: .5s; }

.blur-in {
  opacity: 0;
  filter: blur(8px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), filter .8s cubic-bezier(.4,0,.2,1);
}
.blur-in.visible { opacity: 1; filter: blur(0); }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==============================
   UTILITY
   ============================== */
.text-center { text-align: center; }
.max-w-5xl { max-width: 64rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.hosmony-highlight {
  display: inline-block;
  color: var(--violet-600);
  font-weight: 700;
  background: rgba(39,84,138,.06);
  padding: 0.15rem 0.6rem;
  border-radius: 8px;
  cursor: default;
}

/* Document pages */
.document-page { padding: 4rem 0; background: #fff; }
.document-page h1 { font-size: 2.25rem; font-weight: 800; color: var(--gray-800); margin-bottom: 2rem; letter-spacing: -0.04em; }
.document-page h2 { font-size: 1.15rem; font-weight: 800; color: var(--gray-800); margin: 2rem 0 1rem; letter-spacing: -0.02em; }
.document-page p, .document-page li { color: var(--gray-500); line-height: 1.8; font-size: 0.92rem; }
.document-page ul { padding-left: 1.5rem; }
.print-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gray-800); color: #F3F3E0;
  padding: 0.65rem 1.25rem; border-radius: 20px; font-weight: 700; border: none; cursor: pointer;
  font-size: 0.85rem; transition: all .2s; margin-bottom: 2rem;
}
.print-btn:hover { background: var(--violet-600); color: #fff; }

@media print {
  .site-header, .site-footer, .print-btn, .print-hidden, .fd-sidebar { display: none !important; }
  body { font-size: 12pt; }
}

/* Contact Form 7 */
.waou-contact-form-wrap .wpcf7-form .cf7-row { margin-bottom: 1.25rem; }
.waou-contact-form-wrap .wpcf7-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: .375rem; }
.waou-contact-form-wrap .wpcf7-form input[type="text"],
.waou-contact-form-wrap .wpcf7-form input[type="email"],
.waou-contact-form-wrap .wpcf7-form input[type="tel"],
.waou-contact-form-wrap .wpcf7-form textarea {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid #e7e5e4; border-radius: 12px;
  font-size: .9rem; color: var(--gray-800); background: #F3F3E0; transition: border-color .2s, background .2s;
  font-family: inherit; box-sizing: border-box;
}
.waou-contact-form-wrap .wpcf7-form input:focus,
.waou-contact-form-wrap .wpcf7-form textarea:focus { outline: none; border-color: var(--violet-600); background: #fff; box-shadow: 0 0 0 3px rgba(39,84,138,.06); }
.waou-contact-form-wrap .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.waou-contact-form-wrap .wpcf7-form input[type="submit"] {
  width: 100%; padding: .8rem 2rem; background: var(--gray-800); color: #F3F3E0; border: none;
  border-radius: 20px; font-size: .9rem; font-weight: 700; cursor: pointer; transition: all .25s; margin-top: .5rem;
}
.waou-contact-form-wrap .wpcf7-form input[type="submit"]:hover { background: var(--violet-600); color: #fff; }
.waou-contact-form-wrap .wpcf7-response-output { margin-top: 1rem; padding: .75rem 1rem; border-radius: 10px; font-size: .82rem; }

/* ==============================
   PAGE FORMATIONS (pf-*)
   ============================== */
.pf-page {
  background: #ffffff;
  min-height: 60vh;
  padding: 2rem 0 4rem;
}
.pf-header {
  margin-bottom: 1.5rem;
}
.pf-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #183B4E;
  margin: 0 0 .3rem;
  letter-spacing: -.02em;
}
.pf-header p {
  color: #6b7280;
  font-size: .9rem;
  margin: 0;
}
.pf-search-wrap {
  margin-bottom: .75rem;
}
.pf-search {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border-radius: 10px;
  padding: .65rem 1rem;
  box-shadow: 0 2px 10px rgba(24,59,78,.08);
  border: 2px solid rgba(24,59,78,.08);
  max-width: 480px;
  transition: border-color .2s;
}
.pf-search:focus-within {
  border-color: #DDA853;
}
.pf-search svg {
  flex-shrink: 0;
  color: #9ca3af;
}
.pf-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: clamp(.65rem, 2vw, .9rem);
  color: #374151;
  background: transparent;
  font-family: inherit;
}
.pf-search input::placeholder {
  color: #9ca3af;
}
.pf-count {
  font-size: .8rem;
  color: #6b7280;
  margin: 0 0 1.25rem;
}
.pf-card-wrap[hidden] {
  display: none;
}
.pf-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
  font-size: .9rem;
}
@media (max-width: 767px) {
  .pf-search { max-width: 100%; }
}

/* ==============================
   ÉVALUATION FIN DE FORMATION (eval-*)
   ============================== */
.eval-section {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid #f3f4f6;
}
.eval-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.eval-header {
  text-align: center;
  margin-bottom: 2rem;
}
.eval-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #183B4E;
  margin: 0 0 .4rem;
  letter-spacing: -.02em;
}
.eval-subtitle {
  color: #6b7280;
  font-size: .9rem;
  margin: 0;
}
.eval-profile-label {
  font-size: .85rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 .75rem;
}
.eval-profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 2rem;
}
.eval-profile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1rem .75rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.eval-profile-btn:hover {
  border-color: #183B4E;
  transform: translateY(-2px);
}
.eval-profile-btn.active {
  border-color: #183B4E;
  background: #183B4E;
}
.eval-profile-btn.active .eval-profile-name,
.eval-profile-btn.active .eval-profile-desc {
  color: #fff;
}
.eval-profile-icon { font-size: 1.5rem; }
.eval-profile-name {
  font-size: .8rem;
  font-weight: 700;
  color: #183B4E;
}
.eval-profile-desc {
  font-size: .7rem;
  color: #9ca3af;
}
.eval-questions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.eval-q { display: flex; flex-direction: column; gap: .4rem; }
.eval-q-label {
  font-size: .88rem;
  font-weight: 600;
  color: #374151;
}
.eval-stars {
  display: flex;
  gap: .25rem;
}
.eval-star {
  font-size: 1.6rem;
  color: #d1d5db;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s, transform .1s;
}
.eval-star.active,
.eval-star.hover { color: #DDA853; }
.eval-star:hover { transform: scale(1.15); }
.eval-textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .88rem;
  font-family: inherit;
  color: #374151;
  resize: vertical;
  transition: border-color .2s;
}
.eval-textarea:focus {
  outline: none;
  border-color: #DDA853;
}
.eval-q--radio .eval-radio-group {
  display: flex;
  gap: 1.5rem;
}
.eval-q--radio label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: #374151;
  cursor: pointer;
}
.eval-submit-wrap {
  margin-top: 2rem;
  text-align: center;
}
.eval-submit-btn {
  background: #183B4E;
  color: #fff;
  border: none;
  padding: .85rem 2.5rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.eval-submit-btn:hover { background: #DDA853; }
.eval-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.eval-success {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  color: #166534;
  font-weight: 700;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .eval-profiles { grid-template-columns: repeat(2, 1fr); }
  .eval-profile-desc { display: none; }
}

/* ==============================
   NOTES FORMATIONS (rating)
   ============================== */
.formation-card-rating {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .5rem;
}
.formation-card-stars .star-filled { color: #DDA853; }
.formation-card-stars .star-empty  { color: #d1d5db; }
.formation-card-rating-val {
  font-size: .78rem;
  font-weight: 700;
  color: #183B4E;
}
.formation-card-rating-count {
  font-size: .72rem;
  color: #9ca3af;
}
.fd-hero-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.fd-hero-stars .star-filled { color: #DDA853; font-size: 1.2rem; }
.fd-hero-stars .star-empty  { color: rgba(255,255,255,.3); font-size: 1.2rem; }
.fd-hero-rating-val {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.fd-hero-rating-count {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
}

/* ==============================
   MOBILE HERO (remplace bannière sur mobile)
   ============================== */
.mobile-hero {
  display: none; /* caché sur desktop */
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 36px 24px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(24,59,78,.08);
}
.mh-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mh-blob--1 {
  width: 200px; height: 200px;
  top: -80px; right: -60px;
  background: rgba(221,168,83,.08);
}
.mh-blob--2 {
  width: 140px; height: 140px;
  bottom: -50px; left: -40px;
  background: rgba(24,59,78,.05);
}
.mh-inner { position: relative; z-index: 2; }
.mh-tag {
  display: inline-block;
  background: rgba(24,59,78,.07);
  border: 1px solid rgba(24,59,78,.15);
  color: #183B4E;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .06em;
}
.mh-title {
  color: #183B4E;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
}
.mh-title em { color: #DDA853; font-style: normal; }
.mh-desc {
  color: rgba(24,59,78,.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.mh-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.mh-btn-primary {
  display: block;
  background: #DDA853;
  color: #183B4E;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.mh-btn-outline {
  display: block;
  border: 1.5px solid #183B4E;
  color: #183B4E;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.mh-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(24,59,78,.1);
  padding-top: 16px;
}
.mh-stat-val {
  display: block;
  color: #DDA853;
  font-size: 1.3rem;
  font-weight: 800;
}
.mh-stat-lbl {
  display: block;
  color: rgba(24,59,78,.45);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==============================
   MOBILE / TABLET — Sections cachées
   ============================== */

/* --- Mobile (≤767px) --- */
@media (max-width: 767px) {

  /* Mobile hero : visible sur mobile, remonte sous le header fixe */
  .mobile-hero { display: block; margin-top: -72px; padding-top: calc(72px + 16px); }

  /* Banner slider : masqué sur mobile */
  .banner-slider { display: none !important; }

  /* Footer : simplification */
  .footer-col:nth-child(1) h3 { display: none; }               /* nom du site */
  .footer-col:nth-child(1) p  { display: none; }               /* description + adresse */
  .footer-logo { text-align: center; margin-bottom: 0; }       /* logo centré */
  .footer-col:nth-child(3) { display: none; }                  /* colonne Handicap */
  .footer-badges { display: none !important; }                  /* badges partenaires */
  .footer-grid { grid-template-columns: 1fr; }                  /* 1 seule colonne */

  /* Footer bottom : empiler verticalement */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-legal-links { flex-direction: column; gap: 0.4rem; }
  .footer-legal-links span[aria-hidden], .footer-legal-links > span { display: none; }
}

/* --- Tablet (768px – 1023px) --- */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Banner slider : hauteur réduite */
  .banner-slider { min-height: 320px; }
  .banner-slide  { min-height: 320px; padding: 2rem 0; }

  /* Footer : 2 colonnes, sans la 3e (Handicap) */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col:nth-child(3) { display: none; }
  .footer-address { display: none !important; }
}
