/* ============================================================================
 * PROLEAN ACADEMY — Phase 12 · Alignement « Claude Design »
 * Canvas blanc · anthracite · orange logo #E87722 · Inter Tight + Inter + JetBrains Mono
 * Porté du bundle de design (claude.ai/design). Recréation Django/Tailwind/Alpine.
 *
 * Convention anti-collision : les primitives génériques de la réf sont préfixées
 *   .pa-btn / .pa-card / .pa-pill / .pa-section / .pa-container / .pa-rating
 * (car training_detail.html etc. utilisent des .btn/.card/.container nus en héritant
 *  d'academy/_base.html). Les classes composant uniques (.hero, .svc-card, .cat-*,
 *  .nav, .promo-bar, .ft-*, .fa-*, .mt-*, .sh-*, .t-*) restent fidèles à la réf.
 * ========================================================================== */

/* ---------- Polices self-hostées (Inter déjà déclaré dans academy-theme.css) ---------- */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/InterTight-Variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2-variations');
}

/* ============================================================================
 * TOKENS (réf tokens.css) — palette logo : blanc / anthracite / orange
 * ========================================================================== */
:root {
  /* Surfaces — canvas blanc + gris clair alterné */
  --ink-0: #ffffff;          /* BODY BG */
  --ink-1: #f8f9fa;          /* sections alternées / cards claires */
  --ink-2: #ffffff;          /* card blanche surélevée */
  --ink-3: #f1f3f5;          /* hover gris clair */
  --ink-4: #e9ecef;          /* divider / chip */

  /* Anthracite — hero / footer / blocs sombres */
  --graphite-0: #2a2c2f;
  --graphite-1: #36383c;
  --graphite-2: #44464a;
  --on-graphite: #f1f3f5;

  /* Acier — captions / bordures / icônes secondaires */
  --steel-0: #8a8d8f;
  --steel-1: #a8acb0;
  --steel-2: #c2c6c9;
  --steel: var(--steel-0);
  --steel-light: var(--steel-1);

  /* Lignes — fines hairlines anthracite sur blanc */
  --line-1: rgba(42, 44, 47, 0.08);
  --line-2: rgba(42, 44, 47, 0.14);
  --line-3: rgba(42, 44, 47, 0.24);
  --line-orange: rgba(232, 119, 34, 0.45);
  --line-d1: rgba(255, 255, 255, 0.10);
  --line-d2: rgba(255, 255, 255, 0.18);
  --line-g1: rgba(255, 255, 255, 0.10);
  --line-g2: rgba(255, 255, 255, 0.18);

  /* Texte — anthracite + acier (fort contraste) */
  --text-1: #34363a;          /* titres */
  --text-2: #4a4b4c;          /* corps */
  --text-3: #6b7280;          /* atténué — assombri WCAG AA sur blanc (4.83:1), utilisé pour copie descriptive */
  --text-4: #abb0b3;          /* faible */

  /* Orange logo */
  --orange: #e87722;
  --orange-hot: #f3a333;
  --orange-deep: #d9670f;
  --orange-darker: #b85510;
  --orange-soft: rgba(232, 119, 34, 0.12);
  --orange-line: rgba(232, 119, 34, 0.42);
  --orange-glow: rgba(232, 119, 34, 0.40);

  /* Dégradés */
  --grad-orange: linear-gradient(95deg, #e87722 0%, #f3a333 100%);
  --grad-logo: linear-gradient(95deg, #d9670f 0%, #e87722 22%, #f3a333 46%, #8a8d8f 74%, #44464a 100%);
  --grad-logo-soft: linear-gradient(90deg, rgba(232,119,34,0.5) 0%, rgba(243,163,51,0.4) 35%, rgba(138,141,143,0.32) 70%, rgba(68,70,74,0.28) 100%);

  /* Signal vert (badges « Session ouverte ») */
  --green: #1c7b4f;
  --green-soft: rgba(28, 123, 79, 0.10);
  --green-line: rgba(28, 123, 79, 0.32);

  /* Typographie */
  --font-display: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Espacement */
  --gutter: clamp(20px, 4vw, 56px);
  --container: 1320px;

  /* Rayons — tight industriel */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Ombres */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 38px -22px rgba(42,44,47,0.18);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,0.9) inset, 0 28px 56px -22px rgba(42,44,47,0.26);
  --shadow-orange: 0 10px 28px -10px var(--orange-glow);
}

/* ============================================================================
 * CANVAS — s'applique aux pages academy (academy-v12.css chargé via academy/_base)
 * ========================================================================== */
body {
  background: var(--ink-0);
  color: var(--text-2);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  border-top: 3px solid var(--orange);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(243,163,51,0.10), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(42,44,47,0.04), transparent 70%);
}
::selection { background: var(--orange); color: #fff; }

/* ============================================================================
 * TYPOGRAPHIE UTILITAIRE
 * ========================================================================== */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--text-1);
}
.t-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-darker);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.t-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--orange); }
.t-mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.t-grad {
  background: var(--grad-logo);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================================
 * LAYOUT — .pa-section / .pa-container (préfixés anti-collision)
 * ========================================================================== */
.pa-section { position: relative; padding: clamp(72px, 9vw, 140px) var(--gutter); }
.pa-container { max-width: var(--container); margin: 0 auto; position: relative; }
.pa-section-divider { border-top: 1px solid var(--line-1); }

.bg-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(42,44,47,0.08) 1px, transparent 0);
  background-size: 28px 28px;
}
.hash-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3);
}
.hash-row::before, .hash-row::after { content: ""; height: 1px; background: var(--line-2); flex: 1; }

/* ============================================================================
 * BOUTONS — .pa-btn* (préfixés)
 * ========================================================================== */
.pa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.005em;
  border: 1px solid transparent; border-radius: var(--r-md);
  cursor: pointer; transition: all 0.18s ease; white-space: nowrap;
}
.pa-btn-primary, .pa-btn-orange { background: var(--grad-orange); color: #fff; font-weight: 700; box-shadow: var(--shadow-orange); }
.pa-btn-primary:hover, .pa-btn-orange:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 16px 34px -10px var(--orange-glow); color: #fff; }
.pa-btn-ghost { background: transparent; color: var(--text-1); border-color: var(--line-3); }
.pa-btn-ghost:hover { background: var(--ink-3); border-color: var(--text-3); }
.pa-btn-dark { background: var(--graphite-1); color: #fff; border-color: transparent; }
.pa-btn-dark:hover { background: var(--graphite-0); }
.pa-btn-cream { background: #fff; color: var(--text-1); border-color: transparent; }
.pa-btn-cream:hover { background: var(--ink-3); }

/* ============================================================================
 * CARD / PILL primitives — .pa-card / .pa-pill* (préfixés)
 * ========================================================================== */
.pa-card { background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-md); box-shadow: var(--shadow-card); }
.pa-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 99px; border: 1px solid var(--line-2);
  color: var(--text-2); background: var(--ink-2);
}
.pa-pill-orange { color: var(--orange-darker); border-color: var(--orange-line); background: var(--orange-soft); }
.pa-pill-green { color: var(--green); border-color: var(--green-line); background: var(--green-soft); }
.pa-pill-teal { color: var(--text-2); border-color: var(--line-2); background: var(--ink-3); }
.pa-pill-cream { color: var(--text-2); border-color: var(--line-2); background: var(--ink-1); }

.pa-rating { display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================================
 * ANIMATIONS + REVEAL + SCROLL PROGRESS
 * ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer { to { background-position: -200% center; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(109,213,140,0); } }
@keyframes spin { to { transform: rotate(360deg); } }

[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(.2,.7,.2,1), transform 0.75s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.3s; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad-orange); z-index: 100; will-change: transform;
}

.pa-focusable:focus-visible, .pa-section :focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ============================================================================
 * PROMO BAR + NAV + MEGA + MOBILE  (réf nav.jsx)
 * ========================================================================== */
.promo-bar { background: var(--graphite-0); border-bottom: 1px solid var(--line-1); font-size: 12.5px; }
.promo-inner { max-width: var(--container); margin: 0 auto; padding: 9px var(--gutter); display: flex; align-items: center; gap: 14px; }
.promo-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(232,119,34,0.22); animation: promo-pulse 2s ease-in-out infinite; }
@keyframes promo-pulse { 50% { box-shadow: 0 0 0 8px rgba(232,119,34,0); } }
.promo-text { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.75); flex: 1; }
.promo-contact { display: inline-flex; align-items: center; gap: 8px; }
.promo-phone { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; font-weight: 500; padding: 4px 6px; }
.promo-phone:hover { color: var(--orange-hot); }
.promo-phone svg { color: var(--orange); }
.promo-wa { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: #25D366; color: #fff; border-radius: 99px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; }
.promo-wa:hover { background: #20bd5a; }
@media (max-width: 640px) { .promo-text { display: none; } .promo-contact { flex: 1; justify-content: space-between; } }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.22s ease;
}
.nav-scrolled { background: rgba(255,255,255,0.95); border-bottom-color: var(--line-2); box-shadow: 0 1px 0 var(--line-1), 0 8px 24px -16px rgba(42,44,47,0.18); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.nav-brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--text-1); }
.brand-sub { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.nav-links { display: flex; gap: 4px; justify-content: center; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-2); border-radius: var(--r-md); transition: all 0.15s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--text-1); background: var(--ink-1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-mode { display: inline-flex; }
@media (max-width: 1280px) { .nav-mode { display: none; } }
.nav-wa { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #25D366; color: #fff; border-radius: var(--r-md); transition: all 0.15s ease; }
.nav-wa:hover { background: #20bd5a; transform: translateY(-1px); }
.nav-cart { background: var(--ink-1); color: var(--text-1); position: relative; }
.nav-cart:hover { background: var(--ink-3); color: var(--orange-darker); }
.nav-cart-badge { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 99px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); }
.nav-login { font-size: 13.5px; color: var(--text-2); padding: 8px 4px; }
.nav-login:hover { color: var(--text-1); }
.nav-btn { padding: 10px 18px; font-size: 13px; }
.nav-burger { display: none; background: transparent; border: 1px solid var(--line-2); color: var(--text-1); padding: 8px; border-radius: var(--r-md); }

.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--ink-1); border-bottom: 1px solid var(--line-1); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 0.18s ease, transform 0.22s ease; }
.mega.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-inner { max-width: var(--container); margin: 0 auto; padding: 32px var(--gutter); display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.mega-left .t-eyebrow, .mega-right .t-eyebrow { display: block; margin-bottom: 18px; }
.mega-list { display: flex; flex-direction: column; gap: 2px; }
.mega-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: var(--r-md); transition: background 0.12s ease; }
.mega-item:hover { background: var(--ink-2); }
.mega-label { font-size: 14px; font-weight: 500; color: var(--text-1); }
.mega-right { display: flex; flex-direction: column; gap: 10px; }
.mega-feature { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 14px; padding: 12px; background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-md); transition: all 0.15s ease; }
.mega-feature:hover { border-color: var(--orange-line); transform: translateX(2px); }
.mega-feature-img { width: 80px; height: 56px; background-size: cover; background-position: center; border-radius: var(--r-sm); }
.mega-feature-text { display: flex; flex-direction: column; gap: 3px; }
.mega-feature-text strong { font-size: 13.5px; color: var(--text-1); }
.mega-feature-text span { font-size: 11.5px; color: var(--text-3); }

.mobile-menu { display: none; background: var(--ink-1); border-top: 1px solid var(--line-1); padding: 12px var(--gutter); flex-direction: column; }
.mobile-menu.is-open { display: flex; }
.mobile-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 4px; font-size: 15px; border-bottom: 1px solid var(--line-1); color: var(--text-1); }
.mobile-contact { display: flex; flex-direction: column; gap: 12px; padding: 18px 4px 8px; }
.mobile-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--text-1); }
.mobile-phone svg { color: var(--orange); }
.mobile-wa { width: 100%; }
@media (max-width: 1080px) { .nav-links { display: none; } }
@media (max-width: 760px) { .nav-login { display: none; } .nav-burger { display: inline-flex; } }

/* ============================================================================
 * MODE TOGGLE B2C/B2B  (réf atoms.jsx ModeToggle)
 * ========================================================================== */
.mt { position: relative; display: inline-flex; padding: 4px; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 99px; overflow: hidden; isolation: isolate; }
.mt-slider { position: absolute; top: 4px; bottom: 4px; width: calc(50% - 4px); background: var(--orange); border-radius: 99px; transition: transform 0.32s cubic-bezier(.4,0,.2,1); z-index: 0; box-shadow: 0 4px 14px -6px var(--orange-glow); }
.mt-slider-b2c { transform: translateX(0); }
.mt-slider-b2b { transform: translateX(calc(100% + 0px)); }
.mt-opt { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: transparent; border: 0; color: var(--text-3); font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.005em; cursor: pointer; transition: color 0.22s ease; flex: 1; justify-content: center; white-space: nowrap; }
.mt-opt.is-active { color: #fff; }
.mt-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-4); transition: background 0.22s ease; }
.mt-opt.is-active .mt-dot { background: #fff; }
.mt-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; padding: 2px 5px; border-radius: 3px; background: rgba(255,255,255,0.10); color: inherit; opacity: 0.65; }
.mt-hero { padding: 5px; background: var(--ink-1); border-color: var(--line-2); box-shadow: 0 6px 18px -12px rgba(42,44,47,0.4); }
.mt-hero .mt-opt { padding: 11px 22px; font-size: 13.5px; }

/* ============================================================================
 * SECTION HEADER  (réf atoms.jsx SectionHeader)
 * ========================================================================== */
.sh { margin-bottom: 56px; }
.sh-meta { margin-bottom: 18px; }
.sh-meta, .sh-row, .sh-sub { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.sh.is-in .sh-meta { opacity: 1; transform: none; transition-delay: 0ms; }
.sh.is-in .sh-row  { opacity: 1; transform: none; transition-delay: 90ms; }
.sh.is-in .sh-sub  { opacity: 1; transform: none; transition-delay: 180ms; }
.sh-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.sh-title { font-size: clamp(36px, 4.8vw, 64px); max-width: 18ch; margin: 0; }
.sh-sub { color: var(--text-3); font-size: 17px; line-height: 1.55; max-width: 56ch; margin: 18px 0 0; }
.sh-center { text-align: center; }
.sh-center .sh-title, .sh-center .sh-sub { margin-left: auto; margin-right: auto; }
.sh-center .sh-row { justify-content: center; }
.sh-action { flex-shrink: 0; padding-bottom: 12px; }
@media (max-width: 760px) { .sh-row { flex-direction: column; align-items: flex-start; } }

/* ============================================================================
 * FLOTTANTS — WhatsApp + S'inscrire (desktop colonne) · barre sticky (mobile)
 * (réf float.jsx, adapté : ajout bouton S'inscrire desktop demandé par le user)
 * ========================================================================== */
.fa-stack { position: fixed; right: 24px; bottom: 24px; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fa-wa, .fa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 22px 0 16px; border-radius: 99px;
  font-weight: 700; font-size: 14px; color: #fff;
  opacity: 0; transform: translateY(20px) scale(0.92); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.15s ease, filter 0.15s ease;
}
.fa-stack.is-show .fa-wa, .fa-stack.is-show .fa-cta { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fa-wa { background: #25D366; box-shadow: 0 16px 34px -10px rgba(37,211,102,0.55), 0 4px 12px -4px rgba(0,0,0,0.25); position: relative; }
.fa-wa:hover { background: #20bd5a; color: #fff; }
.fa-cta { background: var(--grad-orange); box-shadow: var(--shadow-orange); }
.fa-cta:hover { filter: brightness(1.05); color: #fff; }
.fa-wa-label, .fa-cta-label { white-space: nowrap; }
.fa-wa-ping { position: absolute; inset: 0; border-radius: 99px; border: 2px solid #25D366; animation: fa-ping 2.4s ease-out infinite; pointer-events: none; }
@keyframes fa-ping { 0% { transform: scale(1); opacity: 0.6; } 70%,100% { transform: scale(1.35); opacity: 0; } }

.fa-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 12px 12px 18px; background: var(--graphite-0); border-radius: var(--r-lg);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  transform: translateY(140%); transition: transform 0.32s cubic-bezier(.2,.7,.2,1);
}
.fa-bar.is-show { transform: translateY(0); }
.fa-bar-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fa-bar-title { color: #fff; font-size: 14px; font-weight: 700; }
.fa-bar-sub { color: rgba(255,255,255,0.6); font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.02em; }
.fa-bar-actions { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.fa-bar-wa { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: #25D366; color: #fff; border-radius: var(--r-md); }
.fa-bar-cta { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 18px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 13.5px; border-radius: var(--r-md); box-shadow: var(--shadow-orange); white-space: nowrap; }
@media (max-width: 760px) { .fa-stack { display: none; } .fa-bar { display: flex; } }

/* ============================================================================
 * FOOTER — newsletter + colonnes + wordmark géant  (réf footer.jsx)
 * ========================================================================== */
.ft { background: var(--ink-0); border-top: 1px solid var(--line-1); position: relative; overflow: hidden; }
.ft-news { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; padding: 64px var(--gutter); border-bottom: 1px solid var(--line-1); }
.ft-news-left .t-eyebrow { margin-bottom: 18px; display: inline-flex; }
.ft-news-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; margin: 0 0 12px; line-height: 1.04; }
.ft-news-sub { color: var(--text-3); font-size: 14.5px; margin: 0; max-width: 50ch; }
.ft-news-form { display: flex; align-items: stretch; background: var(--ink-1); border: 1px solid var(--line-2); border-radius: var(--r-md); overflow: hidden; max-width: 480px; margin-left: auto; }
.ft-news-form input { flex: 1; padding: 16px 18px; background: transparent; border: 0; color: var(--text-1); font-family: var(--font-body); font-size: 14px; }
.ft-news-form input::placeholder { color: var(--text-3); }
.ft-news-form input:focus { outline: none; }
.ft-news-form:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.ft-news-form button { padding: 16px 22px; background: var(--orange); color: #fff; border: 0; font-family: var(--font-body); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.ft-news-form button:hover { background: var(--orange-hot); }
.ft-news-success { display: inline-flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--green-soft); border: 1px solid var(--green-line); border-radius: var(--r-md); color: var(--green); font-size: 14px; max-width: 480px; margin-left: auto; }
.ft-news-success-icon { width: 32px; height: 32px; background: rgba(28,123,79,0.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

.ft-main { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding: 64px var(--gutter); }
.ft-brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ft-brand img { width: 44px; height: 44px; object-fit: contain; }
.ft-brand-text { display: flex; flex-direction: column; line-height: 1; }
.ft-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-1); }
.ft-brand-sub { font-size: 9.5px; letter-spacing: 0.18em; color: var(--text-3); margin-top: 4px; }
.ft-brand-desc { color: var(--text-3); font-size: 14px; line-height: 1.6; margin: 0 0 24px; max-width: 44ch; }
.ft-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; align-items: center; }
.ft-cities-label { font-size: 10px; color: var(--text-3); letter-spacing: 0.16em; margin-right: 4px; }
.ft-city { padding: 5px 10px; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: 3px; font-size: 12px; color: var(--text-2); }
.ft-city:hover { color: var(--orange); border-color: var(--orange-line); }
.ft-certs-row { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 16px; border-top: 1px dashed var(--line-1); }
.ft-cert-mini { padding: 4px 8px; font-size: 10px; letter-spacing: 0.1em; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-darker); border-radius: 3px; }
.ft-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col-title { font-size: 10.5px; color: var(--text-3); letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 4px; font-weight: 500; }
.ft-col a { font-size: 13.5px; color: var(--text-2); padding: 2px 0; }
.ft-col a:hover { color: var(--orange); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px var(--gutter); border-top: 1px solid var(--line-1); font-size: 12px; color: var(--text-3); flex-wrap: wrap; gap: 16px; }
.ft-legal { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ft-sep { color: var(--text-4); }
.ft-meta { display: inline-flex; align-items: center; gap: 22px; }
.ft-locale { font-family: var(--font-mono); font-size: 11px; padding: 4px 10px; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: 3px; letter-spacing: 0.08em; }
.ft-socials { display: inline-flex; gap: 14px; }
.ft-social { font-size: 12px; color: var(--text-3); }
.ft-social:hover { color: var(--orange); }
.ft-wordmark { padding: 0 var(--gutter) 20px; line-height: 0.8; overflow: hidden; }
.ft-wordmark span { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(80px, 18vw, 260px); letter-spacing: -0.06em; background: var(--grad-logo); background-size: 200% auto; animation: shimmer 8s linear infinite; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; opacity: 0.5; line-height: 0.85; text-align: center; }
@media (max-width: 980px) {
  .ft-news { grid-template-columns: 1fr; gap: 24px; }
  .ft-news-form, .ft-news-success { margin-left: 0; }
  .ft-main { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
 * HERO — stage anthracite + carte « Inscription express »  (réf hero.jsx)
 * ========================================================================== */
.hero { position: relative; padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(56px, 7vw, 100px); overflow: hidden; background: linear-gradient(135deg, #202225 0%, #2a2c2f 45%, var(--graphite-1) 100%); color: #fff; }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(rgba(138,141,143,0.5) 1px, transparent 1px); background-size: 18px 18px; opacity: 0.12; }
.hero-glow { position: absolute; top: -20%; right: -5%; z-index: 0; pointer-events: none; width: 540px; height: 540px; background: radial-gradient(circle, rgba(232,119,34,0.22), transparent 65%); filter: blur(20px); }
/* Phase 13 : photo de marque en fond du hero + voile sombre (texte lisible a gauche, photo visible a droite) */
.hero-photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-photo-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(100deg, rgba(20,21,23,0.97) 0%, rgba(22,24,27,0.93) 36%, rgba(24,26,29,0.66) 68%, rgba(26,28,31,0.5) 100%); }
@media (max-width: 880px) {
  .hero-photo img { object-position: 66% center; }
  .hero-photo-veil { background: linear-gradient(180deg, rgba(20,21,23,0.93) 0%, rgba(22,24,27,0.9) 52%, rgba(24,26,29,0.88) 100%); }
}
.hero-container { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.hero-toggle { display: inline-flex; align-items: center; gap: 14px; margin-bottom: clamp(28px, 4vw, 44px); animation: fadeUp 0.5s both; }
.hero-toggle-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-left { display: flex; flex-direction: column; gap: 22px; }
.hero-eye { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--orange-hot); animation: fadeUp 0.5s both; text-transform: uppercase; }
.hero-eye-dot { width: 7px; height: 7px; border-radius: 50%; background: #6dd58c; box-shadow: 0 0 0 3px rgba(109,213,140,0.25); animation: pulse 2s ease-in-out infinite; }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 68px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; margin: 0; color: #fff; max-width: 16ch; }
.hero-title .hl { background: var(--grad-orange); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 5s linear infinite; }
.hero-line-1 { animation: fadeUp 0.7s 0.1s both; display: inline-block; }
.hero-line-2 { animation: fadeUp 0.7s 0.22s both; display: inline-block; }
.hero-line-3 { animation: fadeUp 0.7s 0.34s both; display: inline-block; }
.hero-sub { font-size: clamp(15px, 1.2vw, 17px); color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 56ch; margin: 0; animation: fadeUp 0.7s 0.46s both; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 480px; animation: fadeUp 0.7s 0.56s both; }
.hero-stat { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); }
.hero-stat-val { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--orange-hot); line-height: 1; letter-spacing: -0.02em; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; animation: fadeUp 0.7s 0.66s both; }
.hero-cta-primary { padding: 15px 24px; font-size: 14.5px; }
.hero-cta-ghost { display: inline-flex; align-items: center; gap: 9px; padding: 15px 22px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-md); color: #fff; font-weight: 600; font-size: 14px; transition: background 0.15s ease; }
.hero-cta-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }
.hero-reassure { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 18px; margin-top: 2px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeUp 0.7s 0.76s both; }
.hero-reassure span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,0.62); }
.hero-reassure svg { color: #6dd58c; flex-shrink: 0; }
.hero-right { animation: fadeUp 0.7s 0.4s both; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-title { max-width: 100%; } }
@media (max-width: 560px) { .hero-toggle { flex-direction: column; align-items: flex-start; gap: 10px; } .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; } .hero-stat { padding: 12px 10px; } .hero-cta-ghost, .hero-cta-primary { flex: 1; justify-content: center; } }

/* Carte capture « Inscription express » */
.hcard { position: relative; background: #fff; border-radius: var(--r-lg); padding: 28px 26px 24px; box-shadow: 0 40px 80px -28px rgba(0,0,0,0.5), 0 12px 28px -16px rgba(0,0,0,0.4); }
.hcard-badge { position: absolute; top: -13px; right: 24px; display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 99px; box-shadow: 0 8px 18px -6px rgba(28,123,79,0.5); }
.hcard-badge-dot { width: 6px; height: 6px; background: #6dd58c; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hcard-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text-1); margin: 0 0 6px; }
.hcard-sub { font-size: 13px; color: var(--text-3); line-height: 1.5; margin: 0 0 20px; }
.hcard-form { display: flex; flex-direction: column; gap: 13px; }
.hcard-field { display: flex; flex-direction: column; gap: 6px; }
.hcard-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.hcard-input-wrap { position: relative; display: flex; align-items: center; }
.hcard-icon { position: absolute; left: 12px; color: var(--steel-0); pointer-events: none; }
.hcard-chevron { position: absolute; right: 12px; color: var(--steel-0); transform: rotate(90deg); pointer-events: none; }
.hcard-input-wrap input, .hcard-input-wrap select { width: 100%; padding: 11px 14px 11px 36px; background: var(--ink-1); border: 1px solid var(--line-2); border-radius: var(--r-md); color: var(--text-1); font-family: var(--font-body); font-size: 14px; transition: border-color 0.15s ease, background 0.15s ease; -webkit-appearance: none; appearance: none; }
.hcard-input-wrap select { cursor: pointer; padding-right: 32px; }
.hcard-input-wrap input::placeholder { color: var(--text-4); }
.hcard-input-wrap input:focus, .hcard-input-wrap select:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px var(--orange-soft); }
.hcard-submit { margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 14.5px; border: 0; border-radius: var(--r-md); box-shadow: var(--shadow-orange); cursor: pointer; transition: filter 0.15s ease, transform 0.15s ease; }
.hcard-submit:hover:not(:disabled) { filter: brightness(1.05); transform: translateY(-1px); }
.hcard-submit:disabled { opacity: 0.7; cursor: wait; }
.hcard-spinner { width: 13px; height: 13px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
.hcard-secure { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--text-3); margin-top: 4px; }
.hcard-secure svg { color: var(--steel-0); }
.hcard-success { text-align: center; padding: 14px 4px 6px; }
.hcard-success-icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; }
.hcard-success-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-1); margin: 0 0 8px; }
.hcard-success-text { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin: 0 0 18px; }
.hcard-wa { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 12px; background: #25D366; color: #fff; font-weight: 600; font-size: 13.5px; border-radius: var(--r-md); }
.hcard-wa:hover { background: #20bd5a; color: #fff; }
.hcard-reset { background: 0; border: 0; color: var(--orange-darker); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; margin-top: 14px; cursor: pointer; }

/* ============================================================================
 * BANDEAU ENTREPRISES (marquee)  (réf pillars.jsx CompaniesStrip)
 * ========================================================================== */
.strip { padding: 40px 0 56px; border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1); background: var(--ink-1); position: relative; }
.strip::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 3px; background: var(--grad-logo); opacity: 0.9; }
.strip-head { display: flex; justify-content: space-between; align-items: center; padding: 0 var(--gutter); margin-bottom: 32px; max-width: var(--container); margin-left: auto; margin-right: auto; }
.strip-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; color: var(--text-2); }
.strip-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.strip-since { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); letter-spacing: 0.18em; }
.strip-marquee { position: relative; overflow: hidden; }
.strip-track { display: flex; gap: 56px; align-items: center; width: max-content; animation: marquee 60s linear infinite; }
.strip-logo { display: inline-flex; align-items: center; justify-content: center; height: 36px; flex-shrink: 0; }
.strip-logo-word { font-family: var(--font-display); font-size: clamp(17px, 1.7vw, 22px); font-weight: 600; letter-spacing: -0.012em; color: var(--text-2); white-space: nowrap; padding: 6px 12px; border-left: 2px solid var(--steel-1); opacity: 0.85; transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease; }
.strip-logo:hover .strip-logo-word { color: var(--text-1); border-left-color: var(--orange); opacity: 1; }
.strip-fade { position: absolute; top: 0; bottom: 0; width: 140px; pointer-events: none; }
.strip-fade-l { left: 0; background: linear-gradient(90deg, var(--ink-1), transparent); }
.strip-fade-r { right: 0; background: linear-gradient(-90deg, var(--ink-1), transparent); }
@media (max-width: 640px) { .strip-head { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ============================================================================
 * POUR QUI (audiences)  (réf pillars.jsx Audiences)
 * ========================================================================== */
.aud { background: var(--ink-0); }
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card { display: flex; flex-direction: column; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: var(--r-md); overflow: hidden; transition: all 0.25s ease; height: 100%; position: relative; box-shadow: 0 18px 36px -22px rgba(0,0,0,0.4); }
.aud-card.is-active { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange-line), 0 30px 50px -22px rgba(232,119,34,0.30), 0 18px 36px -22px rgba(42,44,47,0.2); }
.aud-card.is-active .aud-cta { color: var(--orange); }
.aud-card:hover { border-color: var(--line-3); transform: translateY(-3px); }
.aud-card:hover .aud-img > div, .aud-card:hover .aud-img { background-size: 106%; }
.aud-card:hover .aud-cta { color: var(--orange); }
.aud-img { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center; overflow: hidden; transition: background-size 0.6s cubic-bezier(.2,.7,.2,1); }
.aud-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(6,6,6,0.8) 100%), linear-gradient(135deg, rgba(6,6,6,0.4) 0%, transparent 50%); }
.aud-tag { position: absolute; top: 16px; left: 16px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; color: #fff; padding: 4px 8px; background: rgba(6,6,6,0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid var(--line-2); border-radius: 3px; }
.aud-active-tag { position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: #fff; padding: 5px 10px; background: var(--orange); border-radius: 3px; font-weight: 600; }
.aud-active-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.aud-num { position: absolute; right: 16px; bottom: 12px; font-family: var(--font-display); font-size: 64px; font-weight: 700; color: #fff; opacity: 0.12; line-height: 1; }
.aud-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.aud-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0; }
.aud-desc { font-size: 14.5px; color: var(--text-3); line-height: 1.55; margin: 0; flex: 1; }
.aud-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-1); font-weight: 500; padding-top: 14px; border-top: 1px dashed var(--line-2); transition: color 0.2s ease; }
@media (max-width: 900px) { .aud-grid { grid-template-columns: 1fr; } }

/* ============================================================================
 * SERVICES — carrousel 5 cartes plein-cadre  (réf services.jsx, adapté carrousel)
 * ========================================================================== */
.svc { background: var(--ink-1); }
.svc-carousel { position: relative; }
.svc-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 28px; scrollbar-width: none; }
.svc-track::-webkit-scrollbar { display: none; }
.svc-card { position: relative; flex: 0 0 clamp(280px, 30vw, 360px); scroll-snap-align: start; display: flex; flex-direction: column; justify-content: flex-end; min-height: 460px; padding: 26px 24px 24px; border-radius: var(--r-md); border: 1px solid var(--line-2); overflow: hidden; color: #fff; isolation: isolate; box-shadow: 0 22px 44px -26px rgba(0,0,0,0.55); transition: border-color 0.25s ease, box-shadow 0.25s ease; text-decoration: none; }
.svc-card:hover { border-color: var(--orange); }
.svc-card:hover .svc-cta { color: var(--orange-hot); }
.svc-card:hover .svc-img { transform: scale(1.07); }
.svc-img { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.svc-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,21,23,0.45) 0%, rgba(20,21,23,0.05) 30%, rgba(18,19,21,0.78) 66%, rgba(14,15,16,0.94) 100%); }
.svc-top { position: absolute; top: 22px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between; }
.svc-num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; color: rgba(255,255,255,0.85); }
.svc-ico { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; }
.svc-card:hover .svc-ico { background: var(--orange); border-color: var(--orange); color: #fff; }
.svc-body { display: flex; flex-direction: column; gap: 10px; position: relative; }
.svc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--orange-hot); text-transform: uppercase; }
.svc-title { font-family: var(--font-display); font-size: 23px; font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; margin: 0; color: #fff; text-wrap: balance; }
.svc-desc { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.74); margin: 0; }
.svc-points { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.svc-points li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.8); }
.svc-points svg { color: var(--orange-hot); flex-shrink: 0; }
.svc-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.2); font-size: 13px; font-weight: 600; color: #fff; transition: color 0.2s ease; }
@media (max-width: 560px) { .svc-card { flex-basis: 82vw; min-height: 420px; } }

/* Contrôles de carrousel génériques (services + catalogue) */
.hscroll-ctrl { width: 38px; height: 38px; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--r-md); color: var(--text-1); display: inline-flex; align-items: center; justify-content: center; transition: all 0.15s ease; cursor: pointer; flex-shrink: 0; }
.hscroll-ctrl:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.svc-controls, .tst-controls, .cat-controls { display: flex; align-items: center; gap: 10px; }

/* ============================================================================
 * CATALOGUE — onglets corps de métier + carrousel formations  (réf catalog.jsx)
 * ========================================================================== */
.cat { background: var(--ink-0); }
.cat-all { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--text-2); padding: 8px 12px; border: 1px solid var(--line-2); border-radius: var(--r-md); }
.cat-all:hover { color: var(--text-1); border-color: var(--text-3); }
.cat-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line-1); overflow-x: auto; scrollbar-width: none; margin-bottom: 36px; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 16px 22px; background: transparent; border: 0; color: var(--text-3); font-family: var(--font-body); font-size: 14px; font-weight: 500; white-space: nowrap; cursor: pointer; transition: color 0.15s ease; }
.cat-tab:hover { color: var(--text-1); }
.cat-tab.is-active { color: var(--text-1); }
.cat-tab-underline { position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2px; background: var(--orange); }
.cat-tab-status { font-size: 9px; padding: 3px 7px; letter-spacing: 0.1em; }
.cat-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: var(--r-md); overflow: hidden; margin-bottom: 36px; }
.cat-ov-left { padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.cat-ov-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; margin: 4px 0 0; line-height: 1.04; }
.cat-ov-desc { color: var(--text-3); font-size: 15px; max-width: 56ch; margin: 0; }
.cat-ov-refs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.cat-ov-refs-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; margin-right: 4px; }
.cat-ov-ref { font-family: var(--font-mono); font-size: 11.5px; padding: 5px 10px; background: var(--ink-3); border: 1px solid var(--line-2); border-radius: 3px; letter-spacing: 0.04em; }
.cat-ov-right { position: relative; min-height: 260px; }
.cat-ov-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cat-ov-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-1) 0%, transparent 35%, transparent 70%, rgba(6,6,6,0.45) 100%); }
.cat-ov-meta { position: absolute; bottom: 18px; right: 22px; display: flex; flex-direction: column; gap: 4px; color: rgba(255,255,255,0.92); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-align: right; }
.cat-controls { display: flex; align-items: center; gap: 10px; }
.cat-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 28px; scrollbar-width: none; }
.cat-track::-webkit-scrollbar { display: none; }
.cat-end-card { flex: 0 0 260px; scroll-snap-align: start; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 28px; background: var(--ink-1); border: 1px dashed var(--line-3); border-radius: var(--r-lg); color: var(--text-2); transition: all 0.2s ease; }
.cat-end-card:hover { border-color: var(--orange); color: var(--orange); }
.cat-end-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: inherit; }
.f-card { flex: 0 0 320px; scroll-snap-align: start; display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-lg); overflow: hidden; transition: all 0.2s ease; box-shadow: var(--shadow-card); text-decoration: none; }
.f-card:hover { border-color: var(--orange-line); box-shadow: var(--shadow-card-hover), 0 0 0 1px var(--orange-line); }
.f-head { position: relative; padding: 20px 20px 22px; min-height: 158px; display: flex; flex-direction: column; background-size: cover; background-position: center; color: #fff; overflow: hidden; }
.f-head-deco { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.18), transparent 45%), linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.28) 100%); }
.f-head-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: auto; }
.f-cat { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; background: rgba(0,0,0,0.28); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 99px; }
.f-ref { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.16); padding: 4px 9px; border-radius: 99px; }
.f-title { position: relative; z-index: 1; font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin: 16px 0 0; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 12px rgba(0,0,0,0.25); }
.f-duration { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.88); margin-top: 12px; }
.f-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.f-csf-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.02em; font-weight: 600; color: var(--green); background: var(--green-soft); border: 1px solid var(--green-line); padding: 5px 10px; border-radius: 99px; align-self: flex-start; }
.f-foot { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 14px; margin-top: auto; border-top: 1px dashed var(--line-2); gap: 12px; }
.f-price-label { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; }
.f-price-amount { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--orange-darker); line-height: 1; }
.f-price-unit { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: 0.08em; }
.f-btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 16px; background: var(--grad-orange); border: 0; border-radius: var(--r-md); color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 6px 16px -8px var(--orange-glow); transition: all 0.15s ease; }
.f-card:hover .f-btn { filter: brightness(1.06); transform: translateY(-1px); }
@media (max-width: 900px) { .cat-overview { grid-template-columns: 1fr; } .cat-ov-right { min-height: 200px; } }

/* ============================================================================
 * DIPLÔMES (4 niveaux) — section dédiée Phase 12
 * ========================================================================== */
.dip { background: var(--ink-1); }
.dip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dip-card { position: relative; display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-md); padding: 26px 22px; box-shadow: var(--shadow-card); transition: all 0.22s ease; overflow: hidden; }
.dip-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-orange); opacity: 0; transition: opacity 0.22s ease; }
.dip-card:hover { transform: translateY(-3px); border-color: var(--orange-line); box-shadow: var(--shadow-card-hover); }
.dip-card:hover::before { opacity: 1; }
.dip-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--orange-darker); text-transform: uppercase; }
.dip-level { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-1); margin: 10px 0 4px; letter-spacing: -0.015em; }
.dip-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.dip-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin: 14px 0 16px; flex: 1; }
.dip-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.dip-meta-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-2); }
.dip-meta-row svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 980px) { .dip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dip-grid { grid-template-columns: 1fr; } }

/* ============================================================================
 * VAE — section explicative (2 colonnes : pitch + étapes)
 * ========================================================================== */
.vae { background: var(--ink-0); }
.vae-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.vae-title { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.06; margin: 16px 0 16px; color: var(--text-1); }
.vae-desc { font-size: 16px; color: var(--text-2); line-height: 1.6; margin: 0 0 24px; max-width: 52ch; }
.vae-steps { display: flex; flex-direction: column; gap: 14px; }
.vae-step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding: 18px 20px; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: var(--r-md); transition: all 0.2s ease; }
.vae-step:hover { border-color: var(--orange-line); transform: translateX(3px); }
.vae-step-num { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--orange-soft); border: 1px solid var(--orange-line); color: var(--orange-darker); font-family: var(--font-display); font-size: 18px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.vae-step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-1); margin: 0 0 4px; }
.vae-step-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .vae-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================================
 * IMMIGRATION — section anthracite (explication + CTA)
 * ========================================================================== */
.imm { background: linear-gradient(135deg, #202225 0%, #2a2c2f 50%, var(--graphite-1) 100%); color: #fff; position: relative; overflow: hidden; }
.imm::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(138,141,143,0.5) 1px, transparent 1px); background-size: 18px 18px; opacity: 0.10; pointer-events: none; }
.imm-glow { position: absolute; bottom: -20%; left: -5%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(232,119,34,0.18), transparent 65%); filter: blur(20px); pointer-events: none; }
.imm-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.imm-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 16px 0 18px; color: #fff; }
.imm-title .hl { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.imm-desc { font-size: 16px; color: rgba(255,255,255,0.74); line-height: 1.6; margin: 0 0 24px; max-width: 54ch; }
.imm-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.imm-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.86); }
.imm-point svg { color: var(--orange-hot); flex-shrink: 0; margin-top: 2px; }
.imm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.imm-stat { padding: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); }
.imm-stat-val { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--orange-hot); line-height: 1; }
.imm-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; display: block; }
@media (max-width: 900px) { .imm-grid { grid-template-columns: 1fr; gap: 32px; } .imm-points { grid-template-columns: 1fr; } }

/* ============================================================================
 * MÉTHODE — timeline 4 étapes
 * ========================================================================== */
.method { background: var(--ink-0); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.method-step { display: flex; flex-direction: column; }
.method-img { position: relative; aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background-size: cover; background-position: center; margin-bottom: 16px; }
.method-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,21,23,0.55) 100%); }
.method-img-tag { position: absolute; bottom: 12px; left: 12px; z-index: 1; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: #fff; }
.method-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--orange-darker); }
.method-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-1); margin: 8px 0 6px; letter-spacing: -0.01em; }
.method-desc { font-size: 13px; color: var(--text-3); line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .method-grid { grid-template-columns: 1fr; } }

/* ============================================================================
 * OUTCOMES — bande anthracite : stats (count-up) + certifications
 * ========================================================================== */
.out { background: linear-gradient(135deg, #202225 0%, #2a2c2f 55%, var(--graphite-1) 100%); color: #fff; position: relative; overflow: hidden; }
.out::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(138,141,143,0.5) 1px, transparent 1px); background-size: 18px 18px; opacity: 0.1; pointer-events: none; }
.out-inner { position: relative; z-index: 1; }
.out-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.out-stat { padding: 8px 4px; border-left: 2px solid var(--orange); padding-left: 20px; }
.out-stat-val { font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px); font-weight: 800; color: var(--orange-hot); line-height: 1; letter-spacing: -0.03em; }
.out-stat-lbl { display: block; font-size: 13.5px; color: rgba(255,255,255,0.66); margin-top: 10px; max-width: 22ch; }
.out-certs-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.out-certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.out-cert { padding: 16px 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); transition: all 0.2s ease; }
.out-cert:hover { border-color: var(--orange-line); transform: translateY(-2px); }
.out-cert-code { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--orange-hot); }
.out-cert-label { display: block; font-size: 12.5px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.out-cert-fam { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; display: block; }
@media (max-width: 900px) { .out-stats { grid-template-columns: 1fr 1fr; gap: 24px; } .out-certs { grid-template-columns: 1fr 1fr; } }

/* ============================================================================
 * TÉMOIGNAGES — carrousel scroll-snap (réutilise testimonialsCarousel)
 * ========================================================================== */
.tst { background: var(--ink-1); }
.tst-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 28px; scrollbar-width: none; }
.tst-track::-webkit-scrollbar { display: none; }
.tcard-slide { flex: 0 0 min(440px, 86vw); scroll-snap-align: center; transition: transform 0.4s ease, opacity 0.4s ease; }
.tcard-slide:not(.is-active) { opacity: 0.55; transform: scale(0.95); }
.tcard { height: 100%; background: var(--ink-2); border: 1px solid var(--line-1); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.tcard-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard-quote { font-family: var(--font-display); font-size: 19px; font-weight: 500; line-height: 1.4; color: var(--text-1); letter-spacing: -0.01em; margin: 0 0 22px; flex: 1; }
.tcard-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-1); }
.tcard-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--ink-3); }
.tcard-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-1); }
.tcard-role { font-size: 12.5px; color: var(--text-3); }
.tst-controls { display: flex; align-items: center; gap: 10px; }

/* ============================================================================
 * COMMENT ÇA MARCHE — 3 étapes + réassurance
 * ========================================================================== */
.hw { background: var(--ink-0); }
.hw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.hw-card { position: relative; background: var(--ink-1); border: 1px solid var(--line-1); border-radius: var(--r-md); padding: 30px 26px; box-shadow: var(--shadow-card); transition: transform 0.2s ease; }
.hw-card:hover { transform: translateY(-3px); }
.hw-num { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--grad-orange); color: #fff; font-family: var(--font-display); font-size: 24px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-orange); margin-bottom: 18px; }
.hw-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-darker); background: var(--orange-soft); border: 1px solid var(--orange-line); padding: 4px 10px; border-radius: 99px; }
.hw-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text-1); margin: 14px 0 8px; }
.hw-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.55; margin: 0; }
.hw-reassure { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 28px; background: var(--graphite-0); border-radius: var(--r-lg); }
.hw-reassure-text { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 15px; font-weight: 600; }
.hw-reassure-text svg { color: var(--orange-hot); flex-shrink: 0; }
.hw-reassure-actions { display: inline-flex; align-items: center; gap: 10px; }
.hw-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-mono); font-size: 14px; font-weight: 600; padding: 10px 14px; }
.hw-phone svg { color: var(--orange-hot); }
@media (max-width: 760px) { .hw-steps { grid-template-columns: 1fr; } }

/* ============================================================================
 * DEVIS B2B — formulaire
 * ========================================================================== */
.dv { background: var(--ink-1); }
.dv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.dv-title { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; margin: 16px 0 16px; color: var(--text-1); }
.dv-title .hl { color: var(--orange-darker); }
.dv-desc { font-size: 16px; color: var(--text-2); line-height: 1.6; margin: 0 0 22px; max-width: 50ch; }
.dv-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.dv-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-2); }
.dv-bullets svg { color: var(--orange); flex-shrink: 0; }
.dv-form { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-card); }
.dv-form-head { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-1); margin: 0 0 18px; }
.dv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dv-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.dv-field label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.dv-field input, .dv-field select { padding: 12px 14px; background: var(--ink-1); border: 1px solid var(--line-2); border-radius: var(--r-md); color: var(--text-1); font-family: var(--font-body); font-size: 14px; -webkit-appearance: none; appearance: none; }
.dv-field input:focus, .dv-field select:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px var(--orange-soft); }
.dv-submit { width: 100%; margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 14.5px; border: 0; border-radius: var(--r-md); box-shadow: var(--shadow-orange); cursor: pointer; transition: filter 0.15s ease, transform 0.15s ease; }
.dv-submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.dv-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; color: var(--text-3); margin-top: 12px; }
.dv-success { text-align: center; padding: 20px 4px; }
.dv-success-icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .dv-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================================
 * FAQ — accordéon + CTA final
 * ========================================================================== */
.fq { background: var(--ink-0); }
.fq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.fq-list { display: flex; flex-direction: column; }
.fq-item { border-top: 1px solid var(--line-2); }
.fq-item:last-child { border-bottom: 1px solid var(--line-2); }
.fq-item.is-open { background: linear-gradient(90deg, var(--orange-soft), transparent 60%); }
.fq-q { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; width: 100%; padding: 20px 8px; background: 0; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; color: var(--text-1); }
.fq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-3); display: inline-flex; align-items: center; justify-content: center; color: var(--text-2); transition: all 0.2s ease; flex-shrink: 0; }
.fq-item.is-open .fq-icon { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.fq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.28s ease; }
.fq-item.is-open .fq-a-wrap { grid-template-rows: 1fr; }
.fq-a-inner { overflow: hidden; }
.fq-a { font-size: 14.5px; color: var(--text-2); line-height: 1.6; padding: 0 8px 22px; margin: 0; max-width: 60ch; }
@media (max-width: 820px) { .fq-grid { grid-template-columns: 1fr; gap: 24px; } }

/* CTA final — bande gradient orange */
.cta-final { background: var(--grad-orange); position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.12; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: #fff; margin: 0 0 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.55; margin: 0 0 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-btn-light { display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; background: #fff; color: var(--orange-darker); font-weight: 700; font-size: 15px; border-radius: var(--r-md); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.3); transition: transform 0.15s ease; }
.cta-btn-light:hover { transform: translateY(-1px); color: var(--orange-darker); }
.cta-btn-ghost-light { display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; background: rgba(255,255,255,0.14); color: #fff; font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,0.4); border-radius: var(--r-md); transition: background 0.15s ease; }
.cta-btn-ghost-light:hover { background: rgba(255,255,255,0.24); color: #fff; }
.cta-garanties { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 28px; }
.cta-garantie { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.92); font-weight: 500; }

/* ============================================================================
 * RESPECT prefers-reduced-motion (pages academy uniquement)
 * ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  body *, body *::before, body *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .sh-meta, .sh-row, .sh-sub { opacity: 1 !important; transform: none !important; }
}
