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

  :root {
    --ink: #1a2d5c;
    --navy: #0a1929;
    --deep: #153a5c;
    --orange: #E8890B;
    --orange-hover: #d17a0a;
    --blue: #2d4a7c;
    --blue-bright: #5D5FEF;
    --gold: #E8890B;
    --gold-light: #F7B23D;
    --cream: #F5F0E8;
    --mist: #EEF1F6;
    --white: #ffffff;
    --text: #1a1a1a;
    --muted: #5c6678;
    --accent: #4a6cb5;
    --tag-bg: #E8E6FF;
    --tag-text: #4a4a8a;
    --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
    --font-hero: 'Poppins', 'Inter', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
    --ease-out-back: cubic-bezier(0.22, 1.28, 0.36, 1);
    --nav-topbar-h: 84px;
    --nav-mainbar-h: 48px;
    --nav-h: calc(var(--nav-topbar-h) + var(--nav-mainbar-h)); /* 104px */
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', system-ui, sans-serif !important;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  .page-home {
    background:
      radial-gradient(ellipse 120% 80% at 50% -20%, rgba(93, 95, 239, 0.06), transparent 50%),
      var(--white);
  }

  h1, h2, h3, .section-title, .hero-title, .page-sub-hero h1,
  .nav-link-top, .nav-trigger, .service-name, .news-card-title {
    font-family: var(--font-display);
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(10, 25, 41, 0.10); }

  /* ── TOP BAR: Contact | Logo | CTA ── */
  .nav-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--nav-topbar-h);
    padding: 0 clamp(16px, 4vw, 48px);
    border-bottom: 1px solid rgba(26, 45, 92, 0.07);
  }
  .nav-topbar-left {
    display: flex;
    align-items: center;
  }
  .nav-topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1.5px solid rgba(26, 45, 92, 0.12);
    transition: color .2s, border-color .2s, background .2s;
  }
  .nav-topbar-contact svg { width: 15px; height: 15px; flex-shrink: 0; }
  .nav-topbar-contact:hover { color: var(--ink); border-color: var(--blue-bright); background: rgba(93,95,239,0.04); }
  .nav-topbar-contact.active,
  .nav-topbar-contact[aria-current="page"] { color: var(--ink); border-color: var(--blue-bright); }

  .nav-logo {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.3s var(--ease-out-expo);
  }
  .nav-logo:hover { transform: scale(1.02); }
  .nav-logo img { height: 76px; width: auto; max-width: 400px; display: block; object-fit: contain; }

  .nav-topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  .nav-translate-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(26, 45, 92, 0.18);
    background: rgba(255, 255, 255, 0.9);
  }
  .nav-translate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .nav-translate:hover {
    transform: translateY(-1px);
  }
  .nav-translate.is-active {
    background: var(--orange);
    color: #fff;
  }

  /* ── CTA button (top right) ── */
  .nav-cta-members {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; border-radius: 999px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
    color: #fff;
    font-size: 12.5px; font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
    box-shadow: 0 4px 18px rgba(26, 45, 92, 0.28);
  }
  .nav-cta-members svg { width: 15px; height: 15px; flex-shrink: 0; }
  .nav-cta-members:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 28px rgba(26, 45, 92, 0.38); }
  .nav-cta-arrow { font-size: 14px; margin-left: 2px; }

  /* Legacy nav-cta (for PHP pages via Contact link) */
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 999px;
    background: linear-gradient(135deg, #f59e1b 0%, var(--orange) 50%, #d97706 100%);
    color: #fff;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(232, 137, 11, 0.35);
  }
  .nav-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
  .nav-cta:hover {
    background: linear-gradient(135deg, #fbbf24 0%, var(--orange-hover) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(232, 137, 11, 0.45);
  }
  .nav-cta.active,
  .nav-cta[aria-current="page"] {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 6px 22px rgba(232, 137, 11, 0.55);
  }

  /* ── MAIN NAV BAR: nav links row ── */
  .nav-mainbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--nav-mainbar-h);
    padding: 0 clamp(12px, 3vw, 40px);
    position: relative;
  }
  .nav-burger {
    display: none;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    color: var(--ink);
    position: absolute;
    left: clamp(12px, 3vw, 40px);
  }
  .nav-burger:hover { background: rgba(26, 45, 92, 0.06); }
  .nav-burger svg { width: 22px; height: 22px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .nav-item { position: relative; }
  .nav-item--dropdown { position: static; }
  .nav-item > a.nav-link-top {
    text-decoration: none; font-size: 13px; font-weight: 500;
    color: var(--muted);
    transition: color .2s;
    position: relative;
    padding: 8px 12px 10px;
    white-space: nowrap;
    display: inline-flex; align-items: center;
  }
  .nav-item > a.nav-link-top::after {
    content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
    height: 2px; background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s;
  }
  .nav-item > a.nav-link-top:hover { color: var(--ink); }
  .nav-item > a.nav-link-top:hover::after { transform: scaleX(1); }
  .nav-item > a.nav-link-top.active { color: var(--ink); font-weight: 700; }
  .nav-item > a.nav-link-top.active::after {
    transform: scaleX(1);
    background: var(--orange);
  }
  /* Home icon link */
  .nav-link-home { padding: 8px 14px 10px; }
  .nav-link-home svg { width: 18px; height: 18px; }
  .nav-link-home::after { left: 14px; right: 14px; }

  .nav-trigger.nav-trigger--active { color: var(--ink); font-weight: 700; }
  .nav-trigger.nav-trigger--active::after {
    transform: scaleX(1);
    background: var(--orange);
  }

  .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 12px 10px;
    border-radius: 0;
    white-space: nowrap;
    transition: color .2s;
    position: relative;
  }
  .nav-trigger::after {
    content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
    height: 2px; background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s;
  }
  .nav-trigger:hover { color: var(--ink); }
  .nav-trigger:hover::after { transform: scaleX(1); }
  .nav-chevron { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s; }
  .nav-item--dropdown.is-open .nav-chevron { transform: rotate(180deg); }

  /* ── MEGA-MENU (JS-controlled via .is-open) ── */
  .nav-item--dropdown::after { display: none; }

  .nav-mega {
    position: absolute;
    top: 100%; /* = bottom of #nav (fixed positioned) */
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--ink);
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
    box-shadow: 0 24px 64px rgba(10, 25, 41, 0.14), 0 4px 16px rgba(10, 25, 41, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    transform: translateY(-4px);
    z-index: 200;
  }
  .nav-item--dropdown.is-open .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-mega-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
  }
  .nav-mega-left {
    background: linear-gradient(155deg, #1a2d5c 0%, #2d4a7c 100%);
    border-right: none;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-mega-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
  }
  .nav-mega-icon svg { width: 22px; height: 22px; }
  .nav-mega-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
  }
  .nav-mega-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
  }
  .nav-mega-links {
    list-style: none;
    padding: 16px 20px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    column-gap: 0;
    align-content: flex-start;
  }
  .nav-mega-links.nav-mega-links--cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    align-content: start;
  }
  .nav-mega-links li { margin: 0; }
  .nav-mega-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: background .15s, color .15s;
    white-space: nowrap;
  }
  .nav-mega-links a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--blue-bright);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity .15s;
  }
  .nav-mega-links a:hover { background: rgba(93, 95, 239, 0.07); color: var(--ink); }
  .nav-mega-links a:hover::before { opacity: 1; }
  .nav-mega-links a.active,
  .nav-mega-links a[aria-current="page"] {
    background: rgba(93, 95, 239, 0.08);
    color: var(--ink);
    font-weight: 600;
  }
  .nav-mega-links a.active::before,
  .nav-mega-links a[aria-current="page"]::before { opacity: 1; }
  .nav-mega-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 12px 4px;
    pointer-events: none;
  }
  .nav-mega-group-label:first-child { padding-top: 4px; }

  /* Legacy .nav-dropdown — hidden everywhere, mega replaces it */
  .nav-dropdown { display: none !important; }
  .nav-end { display: none; } /* removed — replaced by nav-topbar layout */

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: min(100vh, 920px);
    padding-top: var(--nav-h);
    padding-bottom: clamp(56px, 10vh, 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }
  .hero.hero--minimal {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-color: var(--deep);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.45s var(--ease-out-expo), transform 6s ease-out;
    pointer-events: none;
    transform: scale(1.08);
    will-change: opacity, transform;
  }
  .hero-slide.is-active {
    opacity: 1;
    z-index: 1;
    animation: heroSlideKen 18s ease-in-out infinite alternate;
  }
  .hero-slide.is-leaving {
    z-index: 0;
    animation: heroSlideFadeOut 1.25s ease both;
  }
  /* Bandeau d’accueil sans carrousel : fond figé (pas de zoom / Ken Burns). */
  .hero-carousel--static .hero-slide,
  .hero-carousel--static .hero-slide.is-active {
    animation: none;
    transform: scale(1);
    will-change: auto;
    transition: none;
  }
  .hero-carousel-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(160deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 25, 41, 0.80) 38%, rgba(0, 0, 0, 0.94) 100%),
      radial-gradient(ellipse 90% 70% at 20% 30%, rgba(93, 95, 239, 0.16), transparent 52%),
      radial-gradient(ellipse 70% 60% at 85% 75%, rgba(232, 137, 11, 0.14), transparent 48%);
  }
  /* Voile renforcé en bas à gauche pour titres courts en gros caractères (style bandeau type ASAC) */
  .hero--minimal .hero-carousel-scrim {
    background:
      radial-gradient(ellipse 130% 90% at 18% 88%, rgba(0, 0, 0, 0.78) 0%, transparent 52%),
      linear-gradient(160deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 25, 41, 0.80) 38%, rgba(0, 0, 0, 0.94) 100%),
      radial-gradient(ellipse 90% 70% at 20% 30%, rgba(93, 95, 239, 0.16), transparent 52%),
      radial-gradient(ellipse 70% 60% at 85% 75%, rgba(232, 137, 11, 0.14), transparent 48%);
  }
  /* Bandeau figé : voile plus léger pour laisser voir la photo ; décor atténué. */
  .hero.hero--minimal:has(.hero-carousel--static) .hero-carousel-scrim {
    background:
      radial-gradient(ellipse 130% 90% at 18% 88%, rgba(0, 0, 0, 0.42) 0%, transparent 55%),
      linear-gradient(160deg, rgba(0, 0, 0, 0.38) 0%, rgba(10, 25, 41, 0.42) 42%, rgba(0, 0, 0, 0.52) 100%),
      radial-gradient(ellipse 90% 70% at 20% 30%, rgba(93, 95, 239, 0.10), transparent 55%),
      radial-gradient(ellipse 70% 60% at 85% 75%, rgba(232, 137, 11, 0.08), transparent 52%);
  }
  .hero:has(.hero-carousel--static) .hero-mesh {
    opacity: 0.42;
  }
  .hero:has(.hero-carousel--static) .hero-orb {
    opacity: 0.28;
  }
  /* Plus de carrousel : masquer la barre si encore présente (anciennes pages PHP). */
  .hero:has(.hero-carousel--static) .hero-carousel-bar {
    display: none !important;
  }
  .hero-carousel-bar {
    position: absolute;
    bottom: clamp(18px, 4vw, 36px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 25, 41, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .hero-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s var(--ease-spring);
  }
  .hero-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  .hero-carousel-btn:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
  }
  .hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
  }
  .hero-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.25s, background 0.25s, width 0.25s;
  }
  .hero-carousel-dot.is-active {
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(232, 137, 11, 0.55);
  }
  .hero-carousel-dot:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
  }
  .hero-mesh {
    position: absolute;
    inset: -20%;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(circle at 30% 20%, rgba(93, 95, 239, 0.15) 0%, transparent 42%),
      radial-gradient(circle at 70% 80%, rgba(232, 137, 11, 0.12) 0%, transparent 40%);
    animation: meshPulse 14s ease-in-out infinite alternate;
    opacity: 0.9;
  }
  .hero-noise {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .hero-decor {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out-expo);
    will-change: transform;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 14s ease-in-out infinite;
  }
  .hero-orb--1 {
    width: min(45vw, 420px);
    height: min(45vw, 420px);
    background: radial-gradient(circle, rgba(232, 137, 11, 0.65), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
  }
  .hero-orb--2 {
    width: min(38vw, 360px);
    height: min(38vw, 360px);
    background: radial-gradient(circle, rgba(93, 95, 239, 0.55), transparent 70%);
    bottom: 5%;
    left: -8%;
    animation-delay: -4s;
    animation-duration: 18s;
  }
  .hero-orb--3 {
    width: min(30vw, 280px);
    height: min(30vw, 280px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
    top: 40%;
    left: 35%;
    animation-delay: -2s;
    animation-duration: 12s;
    opacity: 0.4;
  }
  .hero-orb--4 {
    width: min(22vw, 200px);
    height: min(22vw, 200px);
    background: radial-gradient(circle, rgba(247, 178, 61, 0.45), transparent 68%);
    bottom: 25%;
    right: 12%;
    animation-delay: -6s;
    animation-duration: 11s;
    opacity: 0.45;
  }

  .hero-inner {
    position: relative; z-index: 5;
    max-width: 920px;
    padding: 56px 24px 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-inner--left { justify-content: flex-start; text-align: left; }
  .hero-inner--right { justify-content: flex-end; text-align: right; }
  .hero-inner--center { justify-content: center; text-align: center; }
  .hero-inner--split {
    max-width: 1180px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    text-align: left;
  }
  .hero-inner--carousel {
    max-width: 960px;
    width: 100%;
  }
  .hero-inner--carousel .hero-actions {
    justify-content: center;
  }
  .hero-inner--minimal {
    max-width: 100%;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 clamp(20px, 4vw, 56px) clamp(88px, 14vh, 140px);
  }
  .hero--minimal .hero-copy {
    max-width: min(100%, 52rem);
    width: 100%;
    padding: 0;
  }
  .hero-title--minimal {
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .hero-title--minimal .hero-line--brand {
    font-family: var(--font-hero);
    font-weight: 700;
    font-size: clamp(2.75rem, 10vw, 6rem);
    color: #fff;
    text-shadow: 0 4px 48px rgba(0, 0, 0, 0.5);
    padding-bottom: 0.08em;
  }
  .hero-title--minimal .hero-line--brand.hero-line--full-name {
    font-size: clamp(1.15rem, 2.6vw, 2rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
    max-width: min(100%, 38rem);
    display: block;
  }
  .hero-title--minimal .hero-line--subtitle {
    font-family: var(--font-hero);
    font-weight: 600;
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    max-width: 42rem;
  }
  .hero--minimal .hero-actions {
    margin-top: clamp(20px, 3.5vh, 32px);
  }
  .hero-slide-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    animation: heroBadgeIn 0.8s var(--ease-out-expo) both;
  }
  .hero-inner.is-text-enter .hero-slide-meta {
    animation: heroBadgeIn 0.7s var(--ease-out-expo) both;
  }
  .hero-slide-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 999px;
  }
  .hero-slide-category::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    box-shadow: 0 0 10px rgba(232, 137, 11, 0.7);
    animation: badgePulse 2.4s ease-in-out infinite;
  }
  .hero-slide-date {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
  }
  .hero-inner.is-text-enter .hero-title .hero-line {
    animation: heroLineSwap 0.7s var(--ease-out-expo) both;
  }
  .hero-inner.is-text-enter .hero-title .hero-line--2 {
    animation-delay: 0.08s;
  }
  .hero-inner.is-text-enter .hero-actions {
    animation: heroFadeUp 0.8s var(--ease-out-expo) both;
  }
  .hero-inner--left .hero-actions { justify-content: flex-start; }
  .hero-inner--right .hero-actions { justify-content: flex-end; }
  .hero-copy {
    min-width: 0;
    max-width: 460px;
    width: min(100%, 460px);
    padding: clamp(16px, 3vw, 30px);
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: heroBadgeIn 1s var(--ease-out-expo) 0.05s both;
  }
  .hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    box-shadow: 0 0 16px rgba(232, 137, 11, 0.85);
    animation: badgePulse 2.4s ease-in-out infinite;
  }

  .hero-title {
    font-family: var(--font-hero);
    font-size: clamp(32px, 3.8vw, 42px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .hero-inner--center .hero-title { font-size: clamp(28px, 4.6vw, 44px); }
  .hero-inner--left .hero-title,
  .hero-inner--right .hero-title { font-size: clamp(24px, 3.6vw, 38px); }
  .page-home .hero .hero-title {
    font-family: var(--font-hero);
    font-weight: 400;
  }
  .hero-title .hero-line {
    display: block;
    opacity: 0;
    transform: translateY(36px) rotateX(12deg);
    transform-origin: left center;
    animation: heroLineIn 1.05s var(--ease-out-expo) forwards;
  }
  .hero-line--1 { animation-delay: 0.12s; }
  .hero-line--2 { animation-delay: 0.28s; }
  .hero-line--3 { animation-delay: 0.44s; }
  /*
   * Ne pas redéfinir `animation` sur .hero-accent : ça écrase heroLineIn de .hero-line
   * (même spécificité) → la ligne 2 restait à opacity: 0.
   * Accent en couleur unie + léger halo (fiable partout, pas de background-clip:text).
   */
  .hero-title .hero-accent {
    display: block;
    color: var(--gold-light);
    -webkit-text-fill-color: var(--gold-light);
    padding-bottom: 0.06em;
    text-shadow:
      0 2px 28px rgba(232, 137, 11, 0.45),
      0 0 1px rgba(255, 255, 255, 0.35);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .hero-desc {
    font-size: clamp(15px, 1.75vw, 17px);
    line-height: 1.78;
    color: rgba(255,255,255,0.88);
    max-width: 440px;
    margin: 22px auto 0;
    text-align: inherit;
    opacity: 0;
    animation: heroLineIn 1s var(--ease-out-expo) 0.55s forwards;
  }
  .hero-actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
    margin-top: 36px;
    opacity: 0;
    animation: heroLineIn 1s var(--ease-out-expo) 0.72s forwards;
  }
  .hero-inner--split .hero-actions {
    justify-content: flex-start;
  }

  .hero-art-wrap {
    position: relative;
    justify-self: end;
    max-width: min(100%, 400px);
    transition: transform 0.35s var(--ease-out-expo);
    will-change: transform;
  }
  .hero-art-inner {
    position: relative;
    animation: heroArtFloat 9s ease-in-out infinite;
  }
  .hero-art-ring {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: heroRingDrift 20s linear infinite;
    pointer-events: none;
  }
  .hero-art-ring::after {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px dashed rgba(247, 178, 61, 0.22);
    animation: heroRingDrift 28s linear infinite reverse;
  }
  .hero-art-img {
    width: 100%;
    max-height: min(480px, 70vh);
    height: auto;
    aspect-ratio: 440 / 480;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
  }

  @media (max-width: 960px) {
    .hero-inner--split {
      grid-template-columns: 1fr;
      text-align: center;
      max-width: 640px;
    }
    .hero-inner--split .hero-actions {
      justify-content: center;
    }
    .hero-inner--carousel {
      text-align: center;
      max-width: 640px;
    }
    .hero-inner--carousel .hero-actions {
      justify-content: center;
    }
    .hero--minimal .hero-inner--minimal {
      text-align: center;
      align-items: center;
      justify-content: center;
      padding-bottom: clamp(100px, 18vh, 160px);
    }
    .hero--minimal .hero-inner--carousel .hero-actions {
      justify-content: center;
    }
    .hero--minimal .hero-title--minimal .hero-line--subtitle {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-inner--split .hero-desc,
    .hero-inner--carousel .hero-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .hero-inner--split .hero-title .hero-line,
    .hero-inner--carousel .hero-title .hero-line {
      transform-origin: center center;
    }
    .hero-art-wrap {
      justify-self: center;
      order: -1;
      max-width: min(320px, 85vw);
      margin-bottom: 8px;
    }
    .hero-art-inner {
      animation-duration: 7s;
    }
  }

  .btn-primary {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 999px;
    background: linear-gradient(135deg, #6b6ef5 0%, var(--blue-bright) 45%, #4a4de0 100%);
    color: #fff;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
    box-shadow:
      0 8px 28px rgba(93, 95, 239, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }
  .btn-primary--shine .btn-shine {
    position: absolute;
    inset: 0;
    translate: -100% 0;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: btnShineSweep 4.5s ease-in-out infinite;
    pointer-events: none;
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
      0 16px 40px rgba(93, 95, 239, 0.55),
      0 0 48px rgba(232, 137, 11, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
  .btn-primary .arrow { transition: transform 0.35s var(--ease-spring); position: relative; z-index: 1; }
  .btn-primary:hover .arrow { transform: translateX(6px); }
  .btn-primary > :not(.btn-shine) { position: relative; z-index: 1; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff; font-size: 14px; font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
  }
  .btn-ghost--glass:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.85);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  /* ── ACTUALITÉS ── */
  .actualites {
    padding: 88px 8vw 100px;
    background:
      radial-gradient(ellipse 80% 50% at 100% 0%, rgba(93, 95, 239, 0.04), transparent 55%),
      var(--white);
    position: relative;
  }
  .actualites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 95, 239, 0.2), rgba(232, 137, 11, 0.35), rgba(93, 95, 239, 0.2), transparent);
  }
  .actualites-filters {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
  }
  .filter-pill {
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    background: var(--tag-bg);
    color: var(--tag-text);
    transition: background .2s, color .2s, box-shadow .2s;
  }
  .filter-pill:hover { background: #ddd9ff; }
  .filter-pill.is-active {
    background: var(--blue-bright);
    color: #fff;
    box-shadow: 0 4px 14px rgba(93, 95, 239, 0.35);
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 92, 0.08);
    box-shadow: 0 8px 30px rgba(10, 25, 41, 0.06);
    transition: transform 0.45s var(--ease-out-back), box-shadow 0.45s var(--ease-out-expo), border-color 0.3s;
  }
  .page-home .news-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
      0 28px 56px rgba(10, 25, 41, 0.12),
      0 0 0 1px rgba(93, 95, 239, 0.08),
      0 0 60px rgba(93, 95, 239, 0.06);
    border-color: rgba(93, 95, 239, 0.12);
  }
  .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 25, 41, 0.1);
  }
  .news-card.hidden { display: none; }
  .news-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--mist);
  }
  .news-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.75s var(--ease-out-expo);
  }
  .news-card:hover .news-card-img-wrap img {
    transform: scale(1.07);
  }
  .news-card-tag {
    position: absolute; top: 12px; right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: var(--tag-bg);
    color: var(--tag-text);
  }
  .news-card-body { padding: 22px 22px 20px; }
  .news-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .news-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .news-card-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
    font-size: 12px;
    color: var(--muted);
  }
  .news-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .news-card-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
  .news-card-link {
    margin-left: auto;
    font-weight: 600;
    color: var(--blue-bright);
    text-decoration: none;
    font-size: 13px;
  }
  .news-card-link:hover { text-decoration: underline; }

  /* ── ACCÈS RAPIDE ── */
  .acces-rapide {
    padding: 88px 8vw 96px;
    background: var(--cream);
  }
  .acces-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 48px;
  }
  .acces-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(26, 45, 92, 0.06);
    box-shadow: 0 6px 24px rgba(10, 25, 41, 0.05);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .acces-card--visual {
    padding: 0 18px 22px;
  }
  .acces-card-visual {
    height: 112px;
    margin: -1px -1px 16px -1px;
    border-radius: 16px 16px 0 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s var(--ease-out-expo);
  }
  .acces-card--visual:hover .acces-card-visual {
    transform: scale(1.06);
  }
  .acces-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 25, 41, 0.12);
  }
  .acces-icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    border-radius: 10px;
    background: rgba(93, 95, 239, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-bright);
  }
  .acces-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  .acces-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
  .acces-card p { font-size: 12px; color: var(--muted); line-height: 1.45; }

  /* ── NEWSLETTER ── */
  .newsletter {
    padding: 80px 8vw;
    background: var(--mist);
    text-align: center;
  }
  .newsletter-inner { max-width: 560px; margin: 0 auto; }
  .newsletter-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 28px;
  }
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
  }
  .newsletter-input-wrap {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid rgba(26, 45, 92, 0.12);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
  }
  .newsletter-input-wrap svg { width: 20px; height: 20px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; }
  .newsletter-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 15px;
    padding: 12px 8px 12px 0;
    outline: none;
    min-width: 0;
  }
  .newsletter-form .btn-primary {
    border-radius: 999px;
    box-shadow: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 14px 24px;
  }

  /* ── TICKER ── */
  .ticker {
    background: var(--ink); color: rgba(255,255,255,0.6);
    padding: 14px 0; overflow: hidden;
    border-bottom: 2px solid var(--gold);
  }
  .ticker-track {
    display: flex; gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap; width: max-content;
  }
  .ticker-item {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    padding: 0 40px;
  }
  .ticker-dot {
    width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
  }

  /* ── SECTION HEADER ── */
  .section-header {
    text-align: center; max-width: 640px; margin: 0 auto 70px;
  }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 16px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; width: 24px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(34px, 3.5vw, 52px); font-weight: 600;
    line-height: 1.15; color: var(--ink);
  }
  .page-home .section-title em {
    font-style: italic;
    background: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 40%, var(--blue-bright) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: sectionEmShine 8s ease-in-out infinite;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .about .section-header {
    max-width: min(100%, 48rem);
  }
  .section-title.section-title--about-full {
    font-size: clamp(1.05rem, 2.4vw, 1.6rem);
    line-height: 1.35;
    font-weight: 600;
  }
  .section-sub {
    font-size: 15px; color: var(--muted); margin-top: 16px; line-height: 1.7;
  }

  /* ── SERVICES ── */
  .services {
    padding: 120px 8vw;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(200,164,90,0.12);
    border: 1px solid rgba(200,164,90,0.18);
  }

  .service-card {
    background: var(--white);
    padding: 44px 36px;
    transition: background 0.35s, transform 0.45s var(--ease-out-back), box-shadow 0.4s;
    position: relative; overflow: hidden;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width .4s;
  }
  .service-card:hover {
    background: var(--deep);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(247, 178, 61, 0.12);
  }
  .service-card:hover::before { width: 100%; }
  .service-card:hover .service-icon { background: rgba(200,164,90,0.15); border-color: rgba(200,164,90,.4); }
  .service-card:hover .service-icon svg { stroke: var(--gold); }
  .service-card:hover .service-name { color: #fff; }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.55); }
  .service-card:hover .service-num { color: rgba(200,164,90,0.25); }

  .service-num {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 44px; font-weight: 700; color: rgba(13,27,42,0.04);
    position: absolute; top: 20px; right: 28px; line-height: 1;
    transition: color .3s;
  }
  .service-icon {
    width: 52px; height: 52px; border-radius: 10px;
    border: 1.5px solid rgba(13,27,42,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; transition: all .3s;
  }
  .service-icon svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 1.5; fill: none; transition: stroke .3s; }
  .service-name {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600; color: var(--ink);
    margin-bottom: 12px; transition: color .3s;
  }
  .service-desc {
    font-size: 13.5px; line-height: 1.75; color: var(--muted);
    transition: color .3s;
  }

  /* ── ABOUT BAND ── */
  .about {
    padding: 120px 8vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
    align-items: center;
  }

  .about-visual {
    position: relative; height: 520px;
  }
  .about-card-main {
    position: absolute; top: 0; left: 0; right: 80px; bottom: 80px;
    background: linear-gradient(145deg, var(--deep) 0%, var(--accent) 100%);
    border-radius: 16px; overflow: hidden;
    display: flex; align-items: flex-end;
    box-shadow: 0 24px 60px rgba(10, 25, 41, 0.18);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  }
  .about-visual:hover .about-card-main {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 32px 72px rgba(10, 25, 41, 0.22);
  }
  .about-card-main--photo {
    background-image:
      linear-gradient(145deg, rgba(10, 25, 41, 0.88) 0%, rgba(74, 108, 181, 0.72) 100%),
      url("../img/86733f70-55e7-494a-b210-667bdcbb5dd4.jpg");
    background-size: cover;
    background-position: center;
  }
  .about-card-main::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A45A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .about-card-main-content {
    padding: 32px; position: relative; z-index: 1;
  }
  .about-card-main-content p {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .about-card-main-content h3 {
    font-family: var(--font-display);
    font-size: 24px; color: #fff; font-weight: 600;
  }

  .about-card-float {
    position: absolute; bottom: 0; right: 0;
    width: 220px; height: 200px;
    background: var(--cream); border: 1.5px solid rgba(200,164,90,0.2);
    border-radius: 4px; padding: 28px 24px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 16px 48px rgba(13,27,42,0.08);
  }
  .about-card-float-num {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 56px; font-weight: 700; color: var(--ink);
    line-height: 1;
  }
  .about-card-float-num sup { font-size: 28px; color: var(--gold); }
  .about-card-float-label {
    font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.5;
    text-transform: uppercase; letter-spacing: 1px;
  }

  .about-content .section-header { text-align: left; margin: 0 0 36px; }
  .about-content .section-eyebrow { justify-content: flex-start; }
  .about-body { font-size: 15px; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }

  .about-list { list-style: none; margin: 32px 0; }
  .about-list li {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: var(--text); padding: 12px 0;
    border-bottom: 1px solid rgba(200,164,90,0.12);
  }
  .about-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ── NUMBERS ── */
  .numbers {
    background: var(--ink);
    padding: 80px 8vw;
    position: relative; overflow: hidden;
  }
  .numbers::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(200,164,90,0.12);
  }
  .number-item {
    padding: 50px 40px; text-align: center; background: var(--ink);
    transition: background 0.4s var(--ease-out-expo), transform 0.45s var(--ease-spring);
  }
  .number-item:hover {
    background: rgba(200,164,90,0.08);
    transform: translateY(-4px);
  }
  .page-home .number-value {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 72px);
    font-weight: 700;
    line-height: 1;
    position: relative;
    display: inline-block;
    color: #fff;
    text-shadow:
      0 2px 1px rgba(0, 0, 0, 0.2),
      0 0 42px rgba(247, 178, 61, 0.35),
      0 0 80px rgba(93, 95, 239, 0.12);
    animation: numberGlow 4s ease-in-out infinite;
  }
  .number-value {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 64px; font-weight: 700; color: #fff; line-height: 1;
    position: relative; display: inline-block;
  }
  .number-value .plus { color: var(--gold); font-size: 44px; }
  .number-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-top: 14px;
  }
  .number-rule {
    width: 28px; height: 1.5px; background: var(--gold);
    margin: 14px auto 0;
  }

  /* ── MISSIONS ── */
  .missions {
    padding: 120px 8vw;
    background:
      radial-gradient(ellipse 60% 80% at 0% 50%, rgba(232, 137, 11, 0.06), transparent 55%),
      var(--mist);
  }
  .missions-layout {
    display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-top: 70px;
  }
  .missions-sidebar {
    position: sticky; top: 100px; align-self: start;
  }
  .missions-sidebar--visual {
    border-radius: 20px;
    padding: 40px 36px;
    overflow: hidden;
    position: relative;
    background-image:
      linear-gradient(165deg, rgba(10, 25, 41, 0.94) 0%, rgba(21, 58, 92, 0.82) 100%),
      url("../img/943567f9-2f51-419c-a5b8-98569002d157.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(10, 25, 41, 0.15);
  }
  .missions-sidebar--visual .missions-sidebar-title {
    color: #fff;
    font-family: var(--font-display);
  }
  .missions-sidebar--visual p {
    color: rgba(255, 255, 255, 0.78);
  }
  .missions-sidebar-title {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 600; color: var(--ink); line-height: 1.2;
  }
  .missions-sidebar-title em { font-style: italic; color: var(--gold); }
  .missions-sidebar p {
    font-size: 14px; color: var(--muted); margin-top: 20px; line-height: 1.8;
  }
  .missions-list { display: flex; flex-direction: column; gap: 2px; }
  .mission-item {
    background: var(--white); padding: 36px 36px 36px 44px;
    display: flex; gap: 24px; align-items: flex-start;
    border-left: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s;
  }
  .mission-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(13,27,42,0.06);
  }
  .mission-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px;
    background: var(--cream); border: 1.5px solid rgba(200,164,90,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, border-color .3s;
  }
  .mission-item:hover .mission-icon-wrap { background: var(--ink); border-color: var(--ink); }
  .mission-icon-wrap svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
  .mission-item:hover .mission-icon-wrap svg { stroke: var(--gold); }
  .mission-item h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 8px;
  }
  .mission-item p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 120px 8vw; background: var(--white);
    overflow: hidden;
  }
  .testimonials-track-wrap { overflow: hidden; margin-top: 64px; }
  .testimonials-track {
    display: flex; gap: 24px;
    animation: slideLeft 40s linear infinite;
    width: max-content;
  }
  .testimonials-track:hover { animation-play-state: paused; }

  .testimonial-card {
    width: 360px; flex-shrink: 0;
    background: linear-gradient(165deg, #faf8f4 0%, var(--cream) 100%);
    border: 1px solid rgba(200,164,90,0.15);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    transition: box-shadow 0.45s var(--ease-out-expo), transform 0.45s var(--ease-spring), border-color 0.3s;
  }
  .page-home .testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
      0 24px 48px rgba(10, 25, 41, 0.1),
      0 0 0 1px rgba(93, 95, 239, 0.06);
    border-color: rgba(93, 95, 239, 0.1);
  }
  .testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,42,0.1);
    transform: translateY(-4px);
  }
  .testimonial-quote {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 64px; color: var(--gold); opacity: 0.3;
    line-height: .8; margin-bottom: 16px;
    font-weight: 700;
  }
  .testimonial-text {
    font-size: 14px; line-height: 1.85; color: var(--text); margin-bottom: 32px;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--deep), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px; font-weight: 700; flex-shrink: 0;
  }
  .testimonial-name { font-size: 14px; font-weight: 500; color: var(--ink); }
  .testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* ── JOIN CTA ── */
  .join {
    background: var(--cream); padding: 120px 8vw;
    text-align: center; position: relative; overflow: hidden;
  }
  .join::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .join-ornament {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 180px; font-weight: 700;
    color: rgba(200,164,90,0.06); line-height: 1;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none; user-select: none; white-space: nowrap;
  }
  .join-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .join-content .section-eyebrow { justify-content: center; }
  .join-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(42px, 5vw, 68px); font-weight: 600;
    color: var(--ink); line-height: 1.1; margin-bottom: 24px;
  }
  .join-title em { font-style: italic; color: var(--gold); }
  .join-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 44px; }
  .join-actions { display: flex; align-items: center; gap: 16px; justify-content: center; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.75);
    padding: 56px 6vw 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px 16px;
    margin-bottom: 30px;
    align-items: start;
  }
  .footer-col .footer-sub { margin-top: 14px; }
  .footer-col .footer-sub:first-of-type { margin-top: 0; }
  .footer-brand-logo { margin-bottom: 12px; }
  .footer-brand-logo img { height: 44px; width: auto; }
  .footer-brand-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 24px; color: #fff; font-weight: 600; margin-bottom: 16px;
  }
  .footer-brand-title span { color: var(--orange); }
  .footer-brand-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.48); }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.34); margin-bottom: 14px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 7px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.56); text-decoration: none; font-size: 13px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-social { display: flex; gap: 10px; margin-top: 14px; }
  .footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: background .2s;
  }
  .footer-social a:hover { background: rgba(255,255,255,0.15); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 12.5px; color: rgba(255,255,255,0.64); margin-bottom: 10px;
  }
  .footer-contact-item svg { width: 15px; height: 15px; stroke: var(--orange); stroke-width: 1.5; fill: none; flex-shrink: 0; margin-top: 2px; }
  .footer-bottom {
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11.5px; color: rgba(255,255,255,0.38);
  }
  .footer-bottom a { color: var(--orange); text-decoration: none; font-weight: 600; }
  .footer-bottom a:hover { text-decoration: underline; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes slideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes countUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroKenBurns {
    0% { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1.5%, -1%); }
  }
  @keyframes heroSlideKen {
    0% { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.12) translate(-0.8%, -0.5%); }
  }
  @keyframes heroSlideFadeOut {
    from { opacity: 1; transform: scale(1.06); }
    to { opacity: 0; transform: scale(1.02); }
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.05); }
    66% { transform: translate(-8px, 10px) scale(0.98); }
  }
  @keyframes meshPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.85; }
    100% { transform: scale(1.06) translate(-2%, 1%); opacity: 1; }
  }
  @keyframes heroLineIn {
    from {
      opacity: 0;
      transform: translateY(40px) rotateX(10deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotateX(0deg);
    }
  }
  @keyframes heroLineSwap {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes heroFadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes heroArtFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  @keyframes heroRingDrift {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes heroBadgeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(232, 137, 11, 0.65); transform: scale(1); }
    50% { box-shadow: 0 0 22px rgba(247, 178, 61, 0.95); transform: scale(1.08); }
  }
  @keyframes btnShineSweep {
    0%, 40% { transform: translateX(-120%); }
    60%, 100% { transform: translateX(120%); }
  }
  @keyframes numberGlow {
    0%, 100% {
      text-shadow:
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 0 36px rgba(247, 178, 61, 0.28),
        0 0 72px rgba(93, 95, 239, 0.1);
    }
    50% {
      text-shadow:
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 0 56px rgba(247, 178, 61, 0.55),
        0 0 100px rgba(93, 95, 239, 0.18);
    }
  }
  @keyframes sectionEmShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  /* Scroll reveal */
  .page-home .reveal {
    opacity: 0;
    transform: translateY(48px) scale(0.97);
    filter: blur(8px);
    transition:
      opacity 1s var(--ease-out-expo),
      transform 1s var(--ease-out-back),
      filter 1s var(--ease-out-expo);
  }
  .page-home .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(6px);
    transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo), filter 0.85s var(--ease-out-expo);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }

  /* Responsive */
  @media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .acces-grid { grid-template-columns: repeat(3, 1fr); }
    .about { grid-template-columns: 1fr; }
    .about-visual { height: 340px; margin-bottom: 0; }
    .missions-layout { grid-template-columns: 1fr; }
    .missions-sidebar { position: static; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
  }
  /* Contact link shown only in mobile menu */
  .nav-item--mobile-contact { display: none; }

  @media (max-width: 1100px) {
    nav { overflow: visible; }
    nav.nav-open { z-index: 500; }
    /* Topbar on mobile: logo centered, burger right, contact hidden */
    .nav-topbar {
      z-index: 520;
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }
    .nav-topbar-left { display: none !important; }
    .nav-logo {
      grid-column: 2;
      justify-content: center;
      margin: 0 auto;
    }
    .nav-topbar-right {
      grid-column: 3;
      justify-content: flex-end;
      justify-self: end;
      gap: 6px;
    }
    .nav-translate-switch { margin-right: 2px; }
    .nav-cta-members { display: none !important; }
    .nav-burger { display: inline-flex !important; }
    /* Contact visible in mobile menu */
    .nav-item--mobile-contact { display: block; }
    /* Mega panel: reset to static/accordion on mobile */
    .nav-mega {
      position: static !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      transform: none !important;
      box-shadow: none;
      border-top: 1px solid rgba(26, 45, 92, 0.06);
      border-bottom: none;
      border-left: none;
      display: none;
      background: transparent;
    }
    .nav-item--dropdown.nav-sub-open .nav-mega { display: block; }
    .nav-mega-inner { grid-template-columns: 1fr; padding: 0; }
    .nav-mega-left { display: none; }
    .nav-mega-links { padding: 0 0 12px 12px; }
    .nav-mega-links.nav-mega-links--cols { grid-template-columns: 1fr; }
    .nav-mega-links a { padding: 10px 8px; font-size: 14px; border-radius: 0; }
    .nav-mega-links a::before { display: none; }
    .nav-mega-group-label { padding: 12px 8px 4px; }
    /* The mainbar becomes the full-screen overlay on mobile */
    .nav-mainbar {
      position: fixed;
      inset: var(--nav-topbar-h) 0 0 0;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      height: auto;
      padding: 16px 20px max(32px, env(safe-area-inset-bottom, 0px));
      background: rgba(255, 255, 255, 0.99);
      backdrop-filter: blur(12px);
      -webkit-overflow-scrolling: touch;
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
      min-height: calc(100vh - var(--nav-topbar-h));
      min-height: calc(100dvh - var(--nav-topbar-h));
      border-bottom: 1px solid rgba(26, 45, 92, 0.08);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform .25s, opacity .25s, visibility .25s;
      z-index: 510;
      box-sizing: border-box;
    }
    nav.nav-open .nav-mainbar {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .nav-links {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: 0;
    }
    .nav-item { width: 100%; border-bottom: 1px solid rgba(26, 45, 92, 0.06); }
    .nav-item > a.nav-link-top,
    .nav-trigger {
      width: 100%;
      justify-content: space-between;
      padding: 14px 4px;
      font-size: 15px;
    }
    .nav-trigger::after { display: none; }
    .nav-item > a.nav-link-top::after { display: none; }
    .nav-dropdown { display: none !important; }
  }

  @media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .acces-grid { grid-template-columns: 1fr; }
    .news-card-meta { flex-direction: column; align-items: flex-start; }
    .news-card-link { margin-left: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* Sous-pages (contenu interne) */
  main.page-sub {
    padding-top: var(--nav-h);
    min-height: 50vh;
    background:
      radial-gradient(ellipse 70% 50% at 100% 0%, rgba(93, 95, 239, 0.04), transparent 50%),
      var(--white);
  }
  .page-sub-hero {
    position: relative;
    isolation: isolate;
    color: var(--white);
    padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 72px);
    min-height: min(55vh, 460px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    /* Photo de fond par défaut — chaque page surcharge avec son propre style */
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
  }
  .page-sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(160deg, rgba(8,20,40,0.82) 0%, rgba(10,30,55,0.65) 50%, rgba(8,20,40,0.88) 100%);
    animation: heroKenBurns 24s ease-in-out infinite alternate;
  }
  .page-sub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse 80% 60% at 0% 100%, rgba(232,137,11,0.18), transparent 55%),
      radial-gradient(ellipse 60% 50% at 100% 0%, rgba(93,95,239,0.12), transparent 50%);
    pointer-events: none;
  }
  .page-sub-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 32px rgba(0,0,0,0.4);
    animation: fadeUp 0.9s 0.1s both;
    color: #fff !important;
  }
  .page-sub-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 680px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 16px rgba(0,0,0,0.35);
    animation: fadeUp 0.9s 0.22s both;
    color: rgba(255,255,255,0.88);
  }
  /* Breadcrumb décoratif dans hero pages */
  .page-sub-hero-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    animation: fadeUp 0.7s 0s both;
  }
  .page-sub-hero-breadcrumb span { color: rgba(255,255,255,0.4); }
  /* Ligne décorative sous le titre */
  .page-sub-hero h1::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(232,137,11,0.3));
    border-radius: 2px;
    margin-top: 14px;
    animation: slideRight 0.8s 0.5s both;
  }
  @keyframes slideRight {
    from { width: 0; opacity: 0; }
    to   { width: 52px; opacity: 1; }
  }
  /** Sous-pages : contenu sur toute la largeur utile (gouttières latérales uniquement) */
  .page-sub-content {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 56px) clamp(48px, 6vw, 80px);
  }
  .page-sub-content.event-detail .event-detail-intro {
    max-width: 720px;
  }
  .page-sub-content h2 {
    font-size: 1.28rem;
    color: var(--ink);
    margin: 28px 0 12px;
    font-weight: 600;
  }
  .page-sub-content h2:first-child { margin-top: 0; }
  .page-sub-content h3 {
    font-size: 1.1rem;
    color: var(--deep);
    margin: 20px 0 8px;
    font-weight: 600;
  }
  .page-sub-content p,
  .page-sub-content li {
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 12px;
  }
  .page-sub-content ul,
  .page-sub-content ol {
    padding-left: 1.35em;
    margin: 12px 0 18px;
  }
  .page-sub-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .page-sub-content a:hover { color: var(--orange); }
  /* Cartes cliquables: ne pas souligner tout le contenu. */
  .page-sub-content a.event-card,
  .page-sub-content a.ev-card {
    text-decoration: none;
  }

  /* Annuaires ASAC (membres : assureurs / réassureurs) */
  .asac-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 0.5rem;
    align-items: stretch;
  }
  .asac-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26,45,92,0.10), 0 1px 4px rgba(26,45,92,0.06);
    transition: transform 0.22s cubic-bezier(.25,.8,.25,1), box-shadow 0.22s cubic-bezier(.25,.8,.25,1), border-color 0.22s;
    will-change: transform;
  }
  .asac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(26,45,92,0.18), 0 4px 12px rgba(26,45,92,0.10);
    border-color: var(--primary);
  }
  .asac-card-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f8f9fc;
    border-bottom: 1px solid var(--border);
  }
  .asac-card-logo img {
    max-width: 180px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
  }
  .asac-card-logo--empty span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    background: var(--primary);
  }
  .asac-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  /* Card body typography */
  .asac-card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
  }
  /* Icon rows */
  .asac-field {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--muted);
  }
  .asac-field:last-child { margin-bottom: 0; }
  .asac-field-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    color: var(--primary);
    opacity: 0.7;
  }
  .asac-field-val { flex: 1; line-height: 1.55; }
  /* Multiple phone numbers — each on its own line */
  .asac-phone-num {
    display: block;
    font-variant-numeric: tabular-nums;
  }
  /* Clickable card hint */
  .mbr-card--link { cursor: pointer; }
  .mbr-card--link .mbr-card-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.2s;
    pointer-events: none;
  }
  .asac-link-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
  }
  .mbr-card--link:hover .asac-link-badge {
    opacity: 1;
    transform: scale(1);
  }
  .asac-link-badge svg { width: 13px; height: 13px; }
  @media (prefers-reduced-motion: reduce) {
    .asac-card { transition: none; }
    .asac-card:hover { transform: none; }
  }

  /* Contenu « Le courtier » : listes et tableaux */
  .courtier-intro {
    font-size: 1.02rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
    padding: 16px 18px;
    background: var(--mist);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    line-height: 1.6;
  }
  .courtier-intro a { font-weight: 600; }
  .courtier-highlight {
    font-size: 1rem;
    color: #334155;
    margin: 0 0 1.1rem;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 137, 11, 0.08) 0%, rgba(93, 95, 239, 0.08) 100%);
    border: 1px solid rgba(26, 45, 92, 0.1);
    line-height: 1.6;
  }

  .courtier-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin: 10px 0 28px;
  }
  .courtier-pillar {
    padding: 16px 16px 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(26, 45, 92, 0.1);
    box-shadow: 0 8px 24px rgba(10, 25, 41, 0.06);
  }
  .courtier-pillar h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--ink);
  }
  .courtier-pillar .list-arrow {
    margin: 0;
  }
  .courtier-pillar .list-arrow > li {
    margin-bottom: 0.5em;
    font-size: 0.94rem;
  }

  .page-sub-content ul.list-tick {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 22px;
  }
  .page-sub-content ul.list-tick li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.55;
  }
  .page-sub-content ul.list-tick li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
  }

  .page-sub-content ul.list-arrow {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 22px;
  }
  .page-sub-content ul.list-arrow > li {
    position: relative;
    padding-left: 1.35em;
    margin-bottom: 0.75em;
    line-height: 1.6;
  }
  .page-sub-content ul.list-arrow > li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
  }

  ol.courtier-numbered {
    padding-left: 1.35em;
    margin: 14px 0 24px;
    line-height: 1.6;
  }
  ol.courtier-numbered li { margin-bottom: 0.65em; }

  ol.courtier-agrement-list {
    padding-left: 1.5em;
    margin: 16px 0 28px;
    line-height: 1.55;
  }
  ol.courtier-agrement-list li { margin-bottom: 0.55em; }

  .courtier-table-wrap {
    overflow-x: auto;
    margin: 20px 0 32px;
    border-radius: 12px;
    border: 1px solid rgba(26, 45, 92, 0.1);
    -webkit-overflow-scrolling: touch;
  }
  .courtier-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.95rem;
  }
  .courtier-table th,
  .courtier-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
    vertical-align: top;
  }
  .courtier-table th {
    background: var(--mist);
    font-weight: 600;
    color: var(--ink);
  }
  .courtier-table tbody tr:last-child td {
    border-bottom: none;
  }

  .page-sub-content--doc ul { margin-bottom: 1rem; }
  .page-sub-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9em;
    background: var(--mist);
    padding: 0.12em 0.45em;
    border-radius: 6px;
    color: var(--deep);
  }
  .page-sub-pre {
    margin: 16px 0 24px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.55;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .page-sub-pre code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    white-space: pre;
  }

  .download-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
  }
  .download-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    padding: 18px 22px;
    border: 1px solid rgba(26, 45, 92, 0.1);
    border-radius: 14px;
    margin-bottom: 12px;
    background: var(--white);
    box-shadow: 0 4px 18px rgba(10, 25, 41, 0.05);
    transition: box-shadow 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
  }
  .download-row:hover {
    box-shadow: 0 10px 32px rgba(10, 25, 41, 0.09);
    transform: translateY(-2px);
  }
  .download-row-main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }
  .download-row-title {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
  }
  .download-row-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.45;
  }
  .file-type {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
  .file-type--pdf {
    background: rgba(200, 48, 63, 0.12);
    color: #9e2a36;
  }
  .file-type--xlsx {
    background: rgba(32, 150, 95, 0.14);
    color: #1a7a4e;
  }
  .file-type--docx {
    background: rgba(45, 90, 180, 0.12);
    color: #2d4a8f;
  }
  .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--blue-bright);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
  }
.btn-download:link,
.btn-download:visited {
  color: #fff;
}
.btn-download svg {
  color: inherit;
  stroke: currentColor;
}
  .btn-download:hover {
    background: #4a4de0;
    color: #fff;
    transform: translateY(-1px);
  }
  .doc-folder-note {
    font-size: 14px;
    color: var(--muted);
    padding: 16px 18px;
    background: var(--mist);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    margin-bottom: 28px;
    line-height: 1.65;
  }
  .doc-folder-note code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88em;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.1em 0.4em;
    border-radius: 4px;
  }

  .members-table-wrap {
    overflow-x: auto;
    margin: 24px 0 32px;
    border-radius: 12px;
    border: 1px solid rgba(26, 45, 92, 0.1);
    -webkit-overflow-scrolling: touch;
  }
  .members-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 13px;
  }
  .members-table--membres {
    min-width: 1100px;
  }
  .members-table th,
  .members-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
    vertical-align: top;
  }
  .members-table th {
    background: var(--mist);
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
  }
  .members-table tbody tr:hover {
    background: rgba(93, 95, 239, 0.04);
  }
  .bureau-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .bureau-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
    line-height: 1.55;
  }
  .bureau-list strong {
    color: var(--ink);
  }

  .page-sub-content figure.page-sub-figure {
    margin: 28px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 25, 41, 0.1);
    border: 1px solid rgba(26, 45, 92, 0.08);
  }
  /* Logo FIAC : pas de cercle sur le <figure> (sinon la légende est coupée par overflow:hidden). */
  .page-sub-content figure.page-sub-figure--fiac-logo {
    overflow: visible;
    max-width: min(340px, 100%);
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .page-sub-content figure.page-sub-figure--fiac-logo img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: auto;
    max-width: min(320px, 100%);
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(26, 45, 92, 0.1);
    box-shadow: 0 12px 40px rgba(10, 25, 41, 0.1);
  }
  .page-sub-content figure.page-sub-figure--fiac-logo figcaption {
    margin-top: 14px;
    padding: 0 4px 4px;
    text-align: center;
    line-height: 1.45;
    font-size: 0.88rem;
    background: transparent;
    color: var(--muted);
    max-width: 100%;
    white-space: normal;
  }

  /* Page FIAC : pleine largeur utile, logo à gauche / texte à droite */
  main.page-sub--fiac .page-sub-hero.fiac-hero {
    min-height: 0;
    padding: clamp(32px, 5vw, 56px) clamp(16px, 5vw, 72px);
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  main.page-sub--fiac .page-sub-hero.fiac-hero .page-sub-lead {
    max-width: none;
  }
  .page-sub-content--fiac {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(28px, 4vw, 48px) clamp(16px, 5vw, 72px) clamp(48px, 6vw, 80px);
  }
  .fiac-split {
    display: grid;
    grid-template-columns: minmax(260px, min(38vw, 420px)) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
    width: 100%;
  }
  .fiac-split__media {
    position: sticky;
    top: 88px;
    min-width: 0;
  }
  .fiac-split__media .page-sub-figure--fiac-logo {
    margin-left: 0;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
  }
  .fiac-split__main {
    min-width: 0;
  }
  .fiac-split__main > h2:first-child {
    margin-top: 0;
  }
  @media (max-width: 900px) {
    .fiac-split {
      grid-template-columns: 1fr;
    }
    .fiac-split__media {
      position: static;
    }
    .fiac-split__media .page-sub-figure--fiac-logo {
      margin-left: auto;
      margin-right: auto;
      max-width: min(300px, 85vw);
    }
  }
  .page-sub-content figure.page-sub-figure img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    transition: transform 0.7s var(--ease-out-expo);
  }
  .page-sub-content figure.page-sub-figure:hover img {
    transform: scale(1.03);
  }
  .page-sub-content figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 10px 14px 14px;
    background: var(--mist);
  }

  /* ── FIAC : Key facts bar ── */
  .fiac-keyfacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
    padding: 0;
  }
  .fiac-keyfact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 48px);
    flex: 1 1 160px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  .fiac-keyfact:last-child { border-right: none; }
  .fiac-keyfact__icon { font-size: 1.5rem; line-height: 1; }
  .fiac-keyfact__value {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
  }
  .fiac-keyfact__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ── FIAC : Acronyme ── */
  .fiac-acronym {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 22px;
  }
  .fiac-acronym__letter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: var(--mist);
    border: 1px solid rgba(26,45,92,0.1);
    border-radius: 10px;
    padding: 8px 14px;
  }
  .fiac-acronym__char {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
  }
  .fiac-acronym__word {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
  }

  /* ── FIAC : Sections ── */
  .fiac-section {
    margin-bottom: clamp(40px, 6vw, 72px);
  }
  .fiac-section--full {
    width: 100%;
    margin-top: clamp(40px, 6vw, 72px);
  }
  .fiac-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(232,137,11,0.1);
    border: 1px solid rgba(232,137,11,0.25);
  }
  .fiac-section h2 {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .fiac-section-intro {
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 28px;
    max-width: 680px;
  }

  /* ── FIAC : Ecosystem box ── */
  .fiac-ecosystem-box {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 16px;
    background: var(--mist);
    border: 1px solid rgba(26,45,92,0.1);
  }
  .fiac-ecosystem-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .fiac-ecosystem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid rgba(26,45,92,0.08);
    transition: box-shadow 0.2s;
  }
  .fiac-ecosystem-item:last-child { margin-bottom: 0; }
  .fiac-ecosystem-item--active {
    background: linear-gradient(135deg, #fffbe6 0%, #fff8d6 100%);
    border-color: rgba(232,137,11,0.3);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(232,137,11,0.12);
  }
  .fiac-ecosystem-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 6px;
    min-width: 58px;
    text-align: center;
    flex-shrink: 0;
  }
  .fiac-ecosystem-badge--cima { background: #e0e8ff; color: #2d4a7c; }
  .fiac-ecosystem-badge--fanaf { background: #e6f4ea; color: #1e5c32; }
  .fiac-ecosystem-badge--fiac { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: #fff; }

  /* ── FIAC : Missions grid ── */
  .fiac-missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .fiac-mission-card {
    padding: 22px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(26,45,92,0.09);
    box-shadow: 0 2px 16px rgba(10,25,41,0.05);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  }
  .fiac-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10,25,41,0.12);
  }
  .fiac-mission-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(93,95,239,0.1) 0%, rgba(45,74,124,0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .fiac-mission-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue-bright);
  }
  .fiac-mission-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
    font-family: var(--font-display);
  }
  .fiac-mission-card p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
  }

  /* ── FIAC : Countries grid ── */
  .fiac-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }
  .fiac-country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(26,45,92,0.09);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
  }
  .fiac-country:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,25,41,0.09);
  }
  .fiac-country--highlight {
    background: linear-gradient(135deg, #fffbe6 0%, #fff8d6 100%);
    border-color: rgba(232,137,11,0.35);
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(232,137,11,0.1);
  }
  .fiac-countries-note {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
  }

  /* ── FIAC : Governance ── */
  .fiac-governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
  }
  .fiac-gov-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26,45,92,0.1);
    box-shadow: 0 4px 24px rgba(10,25,41,0.07);
  }
  .fiac-gov-card__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 24px 18px;
  }
  .fiac-gov-card--ag .fiac-gov-card__header { background: linear-gradient(135deg, #1a2d5c 0%, #2d4a7c 100%); }
  .fiac-gov-card--bureau .fiac-gov-card__header { background: linear-gradient(135deg, #153a5c 0%, #1a5280 100%); }
  .fiac-gov-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fiac-gov-icon svg { width: 22px; height: 22px; stroke: #fff; }
  .fiac-gov-card__header h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 4px;
    font-family: var(--font-display);
  }
  .fiac-gov-badge {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-weight: 600;
  }
  .fiac-gov-list {
    list-style: none;
    padding: 18px 24px 22px;
    margin: 0;
    background: var(--white);
  }
  .fiac-gov-list li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(26,45,92,0.07);
    padding-left: 18px;
    position: relative;
  }
  .fiac-gov-list li:last-child { border-bottom: none; }
  .fiac-gov-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }

  /* ── FIAC : Election box ── */
  .fiac-election-box {
    margin: 20px 0 24px;
    border-radius: 16px;
    border: 1px solid rgba(93,95,239,0.15);
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
    padding: 20px 24px;
  }
  .fiac-election-box__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .fiac-election-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .fiac-election-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(93,95,239,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(93,95,239,0.08);
  }
  .fiac-election-icon svg { width: 18px; height: 18px; stroke: var(--blue-bright); }
  .fiac-election-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    font-family: var(--font-display);
  }
  .fiac-election-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
  }

  /* ── FIAC : Mandate ── */
  .fiac-mandate {
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border: 1px solid rgba(93,95,239,0.15);
    padding: 24px 28px 28px;
  }
  .fiac-mandate__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-bright);
    margin-bottom: 20px;
  }
  .fiac-mandate__team {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
  .fiac-mandate__member {
    background: var(--white);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(93,95,239,0.12);
    box-shadow: 0 2px 12px rgba(93,95,239,0.06);
  }
  .fiac-mandate__member--president {
    background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
    border-color: transparent;
  }
  .fiac-mandate__member--president .fiac-mandate__role,
  .fiac-mandate__member--president .fiac-mandate__name,
  .fiac-mandate__member--president .fiac-mandate__country { color: #fff; }
  .fiac-mandate__member--president .fiac-mandate__role { color: rgba(255,255,255,0.65); }
  .fiac-mandate__member--cameroun { border-color: rgba(232,137,11,0.25); background: linear-gradient(135deg, #fffbe6 0%, #fff8d6 100%); }
  .fiac-mandate__role {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .fiac-mandate__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .fiac-mandate__country {
    font-size: 0.82rem;
    color: var(--muted);
  }

  /* ── FIAC : Presidents timeline ── */
  .fiac-presidents-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 28px;
  }
  .fiac-presidents-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(232,137,11,0.15) 100%);
  }
  .fiac-president-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px 20px 0;
    position: relative;
  }
  .fiac-president-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(26,45,92,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--muted);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: -24px;
    box-shadow: 0 2px 8px rgba(10,25,41,0.08);
    font-family: var(--font-display);
  }
  .fiac-president-item--current .fiac-president-num {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,137,11,0.3);
  }
  .fiac-president-info {
    flex: 1;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(26,45,92,0.09);
    box-shadow: 0 2px 12px rgba(10,25,41,0.05);
  }
  .fiac-president-item--current .fiac-president-info {
    background: linear-gradient(135deg, #fffbe6 0%, #fff8d6 100%);
    border-color: rgba(232,137,11,0.3);
    box-shadow: 0 4px 20px rgba(232,137,11,0.12);
  }
  .fiac-president-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-display);
    margin-bottom: 4px;
  }
  .fiac-president-country {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .fiac-president-desc {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 6px 0 0;
    line-height: 1.55;
  }
  .fiac-president-current-badge {
    flex-shrink: 0;
    align-self: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(232,137,11,0.25);
  }

  /* ── FIAC : Vision & axes ── */
  .fiac-vision-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
    margin-bottom: 16px;
  }
  .fiac-vision-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fiac-vision-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.9); }
  .fiac-vision-banner__content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .fiac-vision-banner__title {
    color: #fff;
    font-size: 1.05rem;
    font-family: var(--font-display);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .fiac-vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .fiac-vision-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.82);
    padding: 7px 0 7px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    line-height: 1.45;
  }
  .fiac-vision-list li:last-child { border-bottom: none; }
  .fiac-vision-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
  }
  .fiac-axes-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .fiac-axe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(26,45,92,0.09);
    box-shadow: 0 2px 12px rgba(10,25,41,0.05);
    transition: transform 0.22s var(--ease-out-expo), box-shadow 0.22s;
    text-align: center;
  }
  .fiac-axe:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(10,25,41,0.12);
  }
  .fiac-axe__icon { font-size: 1.8rem; flex-shrink: 0; }
  .fiac-axe__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
  }

  /* ── FIAC : Back link ── */
  .fiac-back-link {
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(26,45,92,0.08);
  }
  .fiac-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(45,74,124,0.2);
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .fiac-btn-back:hover {
    background: var(--ink);
    color: #fff;
    border-color: transparent;
    transform: translateX(-4px);
  }

  /* ── FIAC responsive ── */
  @media (max-width: 768px) {
    .fiac-keyfact { flex: 1 1 130px; }
    .fiac-missions-grid { grid-template-columns: 1fr 1fr; }
    .fiac-countries-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .fiac-governance-grid { grid-template-columns: 1fr; }
    .fiac-mandate__team { grid-template-columns: 1fr; }
    .fiac-vision-banner { flex-direction: column; align-items: flex-start; }
    .fiac-vision-banner__content { flex-direction: column; align-items: flex-start; gap: 12px; }
    .fiac-axes-row { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .fiac-presidents-timeline { padding-left: 16px; }
    .fiac-president-item { flex-wrap: wrap; }
    .fiac-president-current-badge { width: 100%; text-align: center; margin-top: 8px; }
  }
  @media (max-width: 480px) {
    .fiac-missions-grid { grid-template-columns: 1fr; }
    .fiac-keyfact { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .fiac-keyfact:last-child { border-bottom: none; }
  }

  /* ── Page contact (presque pleine largeur écran) ── */
  .page-sub-content.contact-page {
    max-width: min(1920px, calc(100vw - 2 * clamp(14px, 3.5vw, 56px)));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(20px, 3vw, 36px) clamp(14px, 3.5vw, 56px) clamp(40px, 5vw, 80px);
    box-sizing: border-box;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px 32px;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .contact-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 28px 30px 30px;
    border-radius: 16px;
    border: 1px solid rgba(26, 45, 92, 0.1);
    box-shadow: 0 4px 24px rgba(10, 25, 41, 0.06);
  }
  .contact-panel--form {
    background: var(--white);
  }
  .contact-panel--info {
    background: linear-gradient(165deg, var(--mist) 0%, rgba(245, 248, 252, 0.98) 100%);
    justify-content: space-between;
  }
  .contact-panel h2 {
    margin: 0 0 6px;
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .contact-panel--form > h2::after,
  .contact-info-top h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 12px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(232, 137, 11, 0.35));
  }
  .contact-form-hint {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 14px 0 22px;
    line-height: 1.55;
  }
  .contact-form-hint code {
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(26, 45, 92, 0.06);
  }
  .contact-req { color: var(--orange); font-weight: 600; }
  .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .contact-field {
    margin-bottom: 16px;
  }
  .contact-field--message {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    min-height: 140px;
  }
  .contact-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
  }
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    font: inherit;
    font-size: 15px;
    padding: 11px 14px;
    border: 1px solid rgba(26, 45, 92, 0.14);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .contact-field--message textarea {
    flex: 1;
    min-height: 140px;
    resize: vertical;
    line-height: 1.55;
  }
  .contact-field input:focus,
  .contact-field select:focus,
  .contact-field textarea:focus {
    outline: none;
    border-color: rgba(232, 137, 11, 0.55);
    box-shadow: 0 0 0 3px rgba(232, 137, 11, 0.12);
  }
  .contact-field--hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .contact-actions {
    padding-top: 8px;
  }
  .contact-actions .btn-primary {
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }
  .contact-feedback {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin: 0 0 18px;
  }
  .contact-feedback--success {
    background: rgba(34, 160, 107, 0.12);
    color: #1a6b47;
    border: 1px solid rgba(34, 160, 107, 0.35);
  }
  .contact-feedback--error {
    background: rgba(200, 80, 60, 0.1);
    color: #8a3020;
    border: 1px solid rgba(200, 80, 60, 0.35);
  }
  .contact-info-top h2 {
    margin-bottom: 0;
  }
  .contact-address {
    font-style: normal;
    line-height: 1.65;
    margin: 18px 0 0;
    color: var(--text);
    font-size: 0.98rem;
  }
  .contact-details {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
  }
  .contact-details li {
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
  }
  .contact-details li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .contact-details strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
  }
  .contact-details a {
    font-weight: 600;
    font-size: 1.02rem;
  }
  .contact-note {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    margin-top: auto;
    padding-top: 22px;
    line-height: 1.65;
    border-top: 1px solid rgba(26, 45, 92, 0.1);
  }
  .contact-map-block {
    padding: clamp(22px, 2.5vw, 32px) clamp(20px, 2.5vw, 36px) clamp(26px, 3vw, 36px);
    border-radius: 16px;
    border: 1px solid rgba(26, 45, 92, 0.1);
    background: var(--white);
    box-shadow: 0 4px 24px rgba(10, 25, 41, 0.06);
    width: 100%;
    box-sizing: border-box;
  }
  .contact-map-block h2 {
    margin: 0 0 18px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
  }
  .contact-map-block h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(232, 137, 11, 0.35));
  }
  .contact-map-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 92, 0.1);
    background: var(--mist);
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: clamp(280px, 42vh, 560px);
    max-height: min(620px, 58vh);
  }
  .contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .contact-map-link {
    margin: 16px 0 0;
    font-size: 0.92rem;
  }
  .contact-map-link a {
    font-weight: 600;
  }
  @media (max-width: 900px) {
    .page-sub-content.contact-page {
      max-width: 100%;
      padding-left: clamp(14px, 4vw, 24px);
      padding-right: clamp(14px, 4vw, 24px);
    }
    .contact-layout {
      grid-template-columns: 1fr;
    }
    .contact-panel {
      padding: 24px 22px 26px;
    }
    .contact-note {
      margin-top: 20px;
    }
    .contact-map-frame {
      aspect-ratio: 4 / 3;
      min-height: 260px;
      max-height: none;
    }
  }

  @media (max-width: 768px) {
    .reveal { filter: none; }
  }

  /* ── Événements (liste + détail) ── */
  .events-page-context {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
  }
  .events-page-context .events-page-section + .events-page-section {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(26, 45, 92, 0.1);
  }

  .events-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin: 0;
    padding: 0;
  }

  .event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 92, 0.1);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(10, 25, 41, 0.06);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo);
  }
  .event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 25, 41, 0.1);
  }

  .event-card-media {
    aspect-ratio: 16 / 10;
    background: var(--mist);
    overflow: hidden;
  }
  .event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .event-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(135deg, var(--mist) 0%, rgba(93, 95, 239, 0.08) 100%);
  }

  .event-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  .event-card-date {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.02em;
  }
  .event-card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
  }
  .event-card-excerpt {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
    flex: 1;
  }
  .event-card-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
  }
  .event-card:hover .event-card-cta {
    text-decoration: underline;
  }

  .page-sub-hero--event .event-detail-kicker {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 600;
  }
  .page-sub-hero--event .event-detail-kicker a {
    color: var(--accent);
    text-decoration: none;
  }
  .page-sub-hero--event .event-detail-kicker a:hover {
    text-decoration: underline;
  }

  .event-detail-intro {
    margin-bottom: 28px;
    line-height: 1.65;
    color: var(--text);
  }
  .event-detail-intro p {
    margin: 0 0 12px;
  }

  .event-detail-heading {
    font-size: 1.25rem;
    color: var(--ink);
    margin: 32px 0 16px;
  }
  .event-detail-heading:first-of-type {
    margin-top: 0;
  }

  .event-videos {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 8px;
  }
  .event-video-wrap {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 92, 0.1);
    background: #0a1929;
  }
  .event-video-wrap video {
    display: block;
    width: 100%;
    max-height: min(70vh, 560px);
    background: #000;
  }
  .event-media-caption {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--white);
  }

  .event-gallery {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
  }
  .event-gallery-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 92, 0.08);
    line-height: 0;
    transition: box-shadow 0.2s ease;
  }
  .event-gallery-link:hover {
    box-shadow: 0 8px 24px rgba(10, 25, 41, 0.12);
  }
  .event-gallery-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .event-detail-empty {
    color: var(--muted);
    font-style: italic;
  }
  .event-detail-back {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 45, 92, 0.1);
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide.is-active,
    .page-sub-hero::before {
      animation: none !important;
      transform: none !important;
      transition-duration: 0.01ms !important;
    }
    .hero-mesh { animation: none; }
    .hero-orb { animation: none; }
    .hero-title .hero-line,
    .hero-desc,
    .hero-actions,
    .hero-badge {
      animation: none;
      opacity: 1;
      transform: none;
    }
    .hero-title .hero-accent {
      animation: none;
      background: none;
      color: var(--gold-light);
      -webkit-text-fill-color: var(--gold-light);
      background-clip: unset;
    }
    .hero-art-inner { animation: none; }
    .hero-art-ring,
    .hero-art-ring::after { animation: none; }
    .hero-badge-dot { animation: none; }
    .btn-primary--shine .btn-shine { animation: none; display: none; }
    .page-home .number-value {
      animation: none;
      text-shadow: none;
    }
    .page-home .section-title em {
      animation: none;
      color: var(--gold);
      -webkit-text-fill-color: var(--gold);
      background: none;
      background-clip: unset;
    }
    .reveal,
    .page-home .reveal {
      filter: none;
      transition-duration: 0.01ms;
      opacity: 1;
      transform: none;
    }
    .page-sub-hero h1,
    .page-sub-lead {
      animation: none;
      opacity: 1;
    }
    .testimonials-track { animation: none; }
    .ticker-track { animation: none; }
  }

  /* ── Assistant APCAR (chat) ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .apcar-chat {
    position: relative;
    z-index: 280;
    font-family: var(--font-display);
  }

  .apcar-chat-fab {
    position: fixed;
    bottom: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--deep) 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(10, 25, 41, 0.28);
    transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
  }
  .apcar-chat-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(10, 25, 41, 0.35);
  }
  .apcar-chat-fab:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }
  .apcar-chat-fab-icon svg {
    display: block;
    opacity: 0.95;
  }

  .apcar-chat-panel {
    position: fixed;
    bottom: clamp(72px, 12vh, 100px);
    right: clamp(16px, 4vw, 28px);
    width: min(100vw - 32px, 400px);
    max-height: min(560px, 70vh);
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 25, 41, 0.18);
    border: 1px solid rgba(26, 45, 92, 0.12);
    overflow: hidden;
  }
  .apcar-chat-panel[hidden] {
    display: none !important;
  }

  .apcar-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--ink) 0%, #1e3a5f 100%);
    color: var(--white);
  }
  .apcar-chat-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
  }
  .apcar-chat-close {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s;
  }
  .apcar-chat-close:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .apcar-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    background: var(--mist);
    min-height: 200px;
    max-height: 360px;
  }

  .apcar-chat-msg {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
  }
  .apcar-chat-msg--bot {
    background: var(--white);
    border: 1px solid rgba(26, 45, 92, 0.08);
    margin-right: 12px;
  }
  .apcar-chat-msg--user {
    background: rgba(74, 108, 181, 0.12);
    border: 1px solid rgba(74, 108, 181, 0.2);
    margin-left: 24px;
    text-align: right;
  }
  .apcar-chat-msg-p {
    margin: 0 0 0.65em;
  }
  .apcar-chat-msg-p:last-child {
    margin-bottom: 0;
  }
  .apcar-chat-msg-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(26, 45, 92, 0.08);
  }
  .apcar-chat-msg-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
  }
  .apcar-chat-msg-links a:hover {
    text-decoration: underline;
    color: var(--orange);
  }

  .apcar-chat-form {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(26, 45, 92, 0.1);
    background: var(--white);
  }
  .apcar-chat-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(26, 45, 92, 0.15);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
  }
  .apcar-chat-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 108, 181, 0.2);
  }
  .apcar-chat-send {
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s;
  }
  .apcar-chat-send:hover {
    background: var(--orange-hover);
  }

  @media (max-width: 480px) {
    .apcar-chat-panel {
      bottom: 72px;
      right: 12px;
      left: 12px;
      width: auto;
      max-height: 65vh;
    }
    .apcar-chat-fab-label {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }
  }

  .apcar-chat-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 16px 12px;
    background: var(--mist);
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
  }
  .apcar-chat-hint {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--deep);
    background: var(--white);
    border: 1px solid rgba(26, 45, 92, 0.12);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }
  .apcar-chat-hint:hover {
    border-color: var(--accent);
    background: rgba(74, 108, 181, 0.06);
  }
  .apcar-chat-hint:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
  }

  @media print {
    .apcar-chat {
      display: none !important;
    }
  }

/* ── Presidents — feuille de route (roadmap) ──────────────────────────────── */
.pres-roadmap-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem 0 1.25rem;
  flex-wrap: wrap;
}
.pres-roadmap-header__line {
  flex: 1;
  min-width: 48px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 108, 181, 0.35), transparent);
}
.pres-roadmap-header__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(74, 108, 181, 0.75);
  white-space: nowrap;
}

.presidents-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0 2rem;
  position: relative;
}

.presidents-timeline--desc {
  gap: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 241, 246, 0.65) 48%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(26, 45, 92, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 40px rgba(26, 45, 92, 0.05);
}

.presidents-timeline--desc .pres-step--1,
.presidents-timeline--desc .pres-step--2,
.presidents-timeline--desc .pres-step--3,
.presidents-timeline--desc .pres-step--4,
.presidents-timeline--desc .pres-step--5,
.presidents-timeline--desc .pres-step--6 {
  margin-left: 0;
}

/* ── Roadmap : axe central + cartes en zigzag ── */
.presidents-roadmap.presidents-timeline--desc {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(0.75rem, 2vw, 1.5rem);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(232, 137, 11, 0.09), transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(74, 108, 181, 0.08), transparent 50%),
    linear-gradient(175deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 244, 250, 0.88) 50%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(26, 45, 92, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px rgba(26, 45, 92, 0.07);
}

.presidents-roadmap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  z-index: 0;
  background: linear-gradient(
    180deg,
    #e8b24d 0%,
    #c9d4ec 38%,
    #7a93c4 72%,
    #4a6288 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 28px rgba(74, 108, 181, 0.22),
    0 6px 20px rgba(26, 45, 92, 0.12);
  opacity: 0.95;
}

@media (prefers-reduced-motion: no-preference) {
  .presidents-roadmap::before {
    animation: presRoadmapGlow 8s ease-in-out infinite alternate;
  }
}

@keyframes presRoadmapGlow {
  from { filter: saturate(1) brightness(1); box-shadow: 0 0 28px rgba(74, 108, 181, 0.22), 0 6px 20px rgba(26, 45, 92, 0.12); }
  to   { filter: saturate(1.08) brightness(1.03); box-shadow: 0 0 36px rgba(232, 137, 11, 0.18), 0 8px 24px rgba(26, 45, 92, 0.1); }
}

@media (prefers-reduced-motion: reduce) {
  .presidents-roadmap::before {
    animation: none !important;
  }
}

.pres-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0;
  position: relative;
}

.presidents-roadmap .pres-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.35rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem 0;
  padding: 0.65rem 0 1.35rem;
  z-index: 1;
}

.presidents-roadmap .pres-step:last-child {
  padding-bottom: 0.35rem;
}

.presidents-roadmap .pres-step-num {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.presidents-roadmap .pres-step-card {
  grid-row: 1;
  max-width: 100%;
  width: 100%;
}

.presidents-roadmap .pres-step:nth-child(odd) .pres-step-card {
  grid-column: 3;
  justify-self: start;
}

.presidents-roadmap .pres-step:nth-child(even) .pres-step-card {
  grid-column: 1;
  justify-self: end;
}

.presidents-roadmap .pres-step::after {
  display: none;
}

/* Timeline simple (sans roadmap) : fil entre pastilles */
.presidents-timeline--desc:not(.presidents-roadmap) .pres-step {
  padding: 0.35rem 0 0.85rem;
}

.presidents-timeline--desc:not(.presidents-roadmap) .pres-step:last-child {
  padding-bottom: 0;
}

.pres-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(1.375rem - 0.5px);
  top: 3.1rem;
  bottom: 0.15rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(74, 108, 181, 0.22) 0%,
    rgba(74, 108, 181, 0.08) 55%,
    rgba(74, 108, 181, 0.04) 100%
  );
  z-index: 0;
  border-radius: 1px;
}

.presidents-roadmap .pres-step:not(:last-child)::after {
  display: none;
}

.pres-step-num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #3d5a80 0%, #5c7aa6 100%);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(61, 90, 128, 0.2),
    0 0 0 3px rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.pres-step:hover .pres-step-num {
  transform: scale(1.06);
  box-shadow:
    0 4px 18px rgba(61, 90, 128, 0.28),
    0 0 0 4px rgba(255, 255, 255, 0.98);
}

.pres-step-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 45, 92, 0.08);
  border-radius: 18px;
  padding: 1.05rem 1.2rem 1.1rem;
  margin-bottom: 0;
  flex: 1;
  max-width: min(100%, 520px);
  box-shadow:
    0 4px 24px rgba(26, 45, 92, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.presidents-roadmap .pres-step-card {
  max-width: min(100%, 380px);
}

.pres-step-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(26, 45, 92, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  border-color: rgba(74, 108, 181, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.pres-step-card--current {
  border-color: rgba(232, 137, 11, 0.35);
  background: linear-gradient(150deg, rgba(255, 250, 238, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow:
    0 8px 32px rgba(232, 137, 11, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 40px rgba(232, 137, 11, 0.08);
}

.pres-step-card--current:hover {
  border-color: rgba(232, 137, 11, 0.45);
}

.pres-step-card--current .pres-step-num {
  background: linear-gradient(155deg, #f0b84a 0%, #f5d078 55%, #e09a2e 100%);
  color: #1a2433;
  box-shadow:
    0 4px 16px rgba(232, 137, 11, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.98),
    0 0 24px rgba(232, 137, 11, 0.25);
}

.pres-step-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(74, 108, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(74, 108, 181, 0.85);
}

.pres-step-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  opacity: 0.88;
}

.pres-step-card--current .pres-step-icon {
  background: rgba(232, 137, 11, 0.12);
  color: #b8740c;
}

.pres-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.pres-step-order {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(74, 108, 181, 0.82);
}

.pres-step-card--current .pres-step-order {
  color: rgba(160, 95, 12, 0.95);
}

.pres-step-name {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(10, 25, 41, 0.92);
  line-height: 1.45;
}

.pres-step-dates {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(75, 85, 99, 0.88);
  letter-spacing: 0.01em;
}

.pres-step-org {
  font-size: 0.8rem;
  color: rgba(107, 114, 128, 0.92);
  margin-top: 0.1rem;
}

.pres-badge {
  display: inline-block;
  background: rgba(232, 137, 11, 0.16);
  color: #8a5a0f;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: normal;
  margin-left: 0.35rem;
  vertical-align: middle;
  border: 1px solid rgba(232, 137, 11, 0.2);
}

@media (max-width: 820px) {
  .presidents-roadmap::before {
    left: 1.5rem;
    transform: none;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 6px;
  }
  .presidents-roadmap .pres-step {
    grid-template-columns: 2.85rem 1fr;
    padding-left: 0.25rem;
  }
  .presidents-roadmap .pres-step-num {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .presidents-roadmap .pres-step-card {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    max-width: 100%;
  }
  .presidents-roadmap .pres-step:nth-child(odd) .pres-step-card,
  .presidents-roadmap .pres-step:nth-child(even) .pres-step-card {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .pres-roadmap-header__label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-align: center;
    white-space: normal;
    max-width: 20rem;
    line-height: 1.4;
  }
  .presidents-timeline--desc {
    padding: 1.1rem 0.9rem;
    border-radius: 16px;
  }
  .presidents-roadmap.presidents-timeline--desc {
    padding: 1.25rem 0.85rem;
  }
  .pres-step-card {
    max-width: 100%;
    padding: 0.95rem 1rem;
  }
  .pres-step-num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.88rem;
  }
  .presidents-timeline--desc:not(.presidents-roadmap) .pres-step:not(:last-child)::after {
    left: calc(1.25rem - 0.5px);
  }
}

/* ── Pagination membres ──────────────────────────────── */
.membres-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.membres-pagination button {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border: 1.5px solid rgba(26, 45, 92, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}

.membres-pagination button:hover {
  background: rgba(74, 108, 181, 0.08);
  border-color: var(--accent);
}

.membres-pagination button.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.membres-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.membres-page-info {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ── Organigramme bureau ──────────────────────────────── */
.bureau-orgchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 2rem 0;
  font-family: inherit;
}

.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 1.25rem;
  text-align: center;
  min-width: 200px;
  max-width: 280px;
  box-shadow: 0 4px 14px rgba(26,45,92,0.2);
  position: relative;
}

.org-box--gold {
  background: var(--gold);
  color: var(--navy);
}

.org-box-role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  display: block;
  margin-bottom: 0.2rem;
}

.org-box-name {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

.org-connector {
  width: 2px;
  height: 1.5rem;
  background: rgba(26,45,92,0.25);
}

.org-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.org-row-connector {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

/* horizontal bar above row */
.org-hbar {
  height: 2px;
  background: rgba(26,45,92,0.2);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.bureau-siege-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.bureau-siege-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bureau-siege-photos img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ── Organigramme officiel + Commissions support (page bureau) ── */
.bureau-hierarchie-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.75rem, 4.5vw, 3rem);
  align-items: stretch;
  margin: clamp(2rem, 5vw, 3rem) 0 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 246, 255, 0.88) 100%);
  border: 1px solid rgba(26, 45, 92, 0.1);
  box-shadow:
    0 4px 24px rgba(18, 58, 115, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bureau-hierarchie-visual-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  height: 100%;
  min-height: 0;
}

.bureau-hierarchie-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8890b;
}

.bureau-hierarchie-visual-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.bureau-hierarchie-visual-desc {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44ch;
}

.bureau-hierarchie-visual-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  outline-offset: 4px;
}

.bureau-hierarchie-visual-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.45);
}

.bureau-hierarchie-visual-frame {
  display: block;
  position: relative;
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(132deg, #e8890b 0%, #f0a04a 18%, #5d5fef 52%, #123a73 100%);
  box-shadow:
    0 18px 50px rgba(18, 58, 115, 0.28),
    0 4px 14px rgba(232, 137, 11, 0.18);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.bureau-hierarchie-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.2) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bureau-hierarchie-shimmer 4.5s ease-in-out infinite;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.bureau-hierarchie-visual-link:hover .bureau-hierarchie-visual-frame,
.bureau-hierarchie-visual-link:focus-visible .bureau-hierarchie-visual-frame {
  transform: translateY(-4px) perspective(900px) rotateX(1deg);
  box-shadow:
    0 26px 64px rgba(18, 58, 115, 0.35),
    0 8px 22px rgba(232, 137, 11, 0.22);
}

.bureau-hierarchie-visual-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 17px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1f3d 0%, #123a73 50%);
  line-height: 0;
  /* Hauteur max à l’écran : évite une colonne gauche interminable ; version complète via lien */
  max-height: min(72vh, 920px);
}

.bureau-hierarchie-visual-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 920px);
  display: block;
  object-fit: contain;
  vertical-align: bottom;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.bureau-hierarchie-visual-link:hover .bureau-hierarchie-visual-inner img {
  transform: scale(1.04);
}

.bureau-hierarchie-visual-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #123a73;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
}

.bureau-hierarchie-visual-open svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@keyframes bureau-hierarchie-shimmer {
  0%,
  100% {
    background-position: 160% 50%;
  }
  50% {
    background-position: -40% 50%;
  }
}

.bureau-commissions-wrap {
  --commission-accent: linear-gradient(160deg, #e8890b 0%, #f5a84a 40%, #f0c078 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(0.65rem, 1.8vw, 1.1rem) clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(236, 242, 255, 0.88) 42%, rgba(225, 235, 252, 0.65) 100%);
  box-shadow:
    0 4px 28px rgba(18, 45, 92, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.bureau-commissions-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 60% at 100% 0%, rgba(232, 137, 11, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(93, 95, 239, 0.11) 0%, transparent 50%);
}

.bureau-commissions-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  z-index: 1;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #123a73 0%, #5d5fef 45%, #e8890b 100%);
  opacity: 0.9;
  pointer-events: none;
}

.bureau-commissions-head {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
}

.bureau-commissions-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c45a12;
  opacity: 0.95;
}

.bureau-commissions-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.38rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(115deg, #0f2850 0%, #123a73 38%, #2a4a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bureau-commissions-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  max-width: 36ch;
}

.bureau-commissions-grid {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(11px, 1.6vh, 15px);
}

.bureau-commission-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0 0.85rem;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 2px 16px rgba(18, 45, 92, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.bureau-commission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 137, 11, 0.45), rgba(93, 95, 239, 0.2), rgba(18, 58, 115, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bureau-commission-card:hover {
  transform: translateY(-4px) scale(1.008);
  box-shadow:
    0 14px 40px rgba(18, 58, 115, 0.13),
    0 4px 14px rgba(232, 137, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.95);
}

.bureau-commission-card:hover::before {
  opacity: 0.75;
}

.bureau-commission-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  padding: 0.85rem 0.45rem;
  background: var(--commission-accent);
  color: #fff;
}

.bureau-commission-accent span {
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.bureau-commission-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 0.95rem 0.92rem 0.25rem;
  min-width: 0;
}

.bureau-commission-name {
  display: block;
  font-weight: 700;
  font-size: 0.99rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.bureau-commission-role {
  display: block;
  font-size: 0.86rem;
  line-height: 1.52;
  color: #334155;
}

.bureau-commission-org {
  display: inline;
  font-weight: 600;
  color: #64748b;
  font-size: 0.84rem;
}

@media (max-width: 960px) {
  .bureau-hierarchie-split {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .bureau-hierarchie-visual-inner,
  .bureau-hierarchie-visual-inner img {
    max-height: min(58vh, 720px);
  }

  .bureau-commissions-wrap {
    min-height: 0;
  }

  .bureau-commissions-grid {
    min-height: 0;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bureau-hierarchie-visual-frame::after {
    animation: none;
    opacity: 0.2;
  }
  .bureau-hierarchie-visual-frame,
  .bureau-hierarchie-visual-inner img,
  .bureau-commission-card {
    transition: none;
  }
  .bureau-hierarchie-visual-link:hover .bureau-hierarchie-visual-frame,
  .bureau-hierarchie-visual-link:focus-visible .bureau-hierarchie-visual-frame {
    transform: none;
  }
  .bureau-hierarchie-visual-link:hover .bureau-hierarchie-visual-inner img {
    transform: none;
  }
  .bureau-commission-card:hover {
    transform: none;
  }
  .bureau-commission-card::before {
    opacity: 0.35;
  }
}

/* ══════════════════════════════════════════════════════════
   REFONTE VISUELLE — APCAR 2026
   ══════════════════════════════════════════════════════════ */

/* ── Override: Services cards — couleurs distinctives ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: none;
  border: none;
  row-gap: 0;
}

.service-card {
  border-radius: 0;
  border: none;
  border-top: 3px solid transparent;
  transition: background 0.35s, transform 0.45s var(--ease-out-back), box-shadow 0.4s, border-color 0.3s;
  box-shadow: none;
}

/* Couleur distincte par service */
.service-card:nth-child(1) { border-top-color: #5D5FEF; }
.service-card:nth-child(2) { border-top-color: var(--gold); }
.service-card:nth-child(3) { border-top-color: #22c55e; }
.service-card:nth-child(4) { border-top-color: #f97316; }
.service-card:nth-child(5) { border-top-color: #06b6d4; }
.service-card:nth-child(6) { border-top-color: #a855f7; }

.service-card:nth-child(1) .service-icon { border-color: rgba(93,95,239,0.25); background: rgba(93,95,239,0.07); }
.service-card:nth-child(1) .service-icon svg { stroke: #5D5FEF; }
.service-card:nth-child(2) .service-icon { border-color: rgba(232,137,11,0.25); background: rgba(232,137,11,0.07); }
.service-card:nth-child(2) .service-icon svg { stroke: var(--gold); }
.service-card:nth-child(3) .service-icon { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.07); }
.service-card:nth-child(3) .service-icon svg { stroke: #22c55e; }
.service-card:nth-child(4) .service-icon { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.07); }
.service-card:nth-child(4) .service-icon svg { stroke: #f97316; }
.service-card:nth-child(5) .service-icon { border-color: rgba(6,182,212,0.25); background: rgba(6,182,212,0.07); }
.service-card:nth-child(5) .service-icon svg { stroke: #06b6d4; }
.service-card:nth-child(6) .service-icon { border-color: rgba(168,85,247,0.25); background: rgba(168,85,247,0.07); }
.service-card:nth-child(6) .service-icon svg { stroke: #a855f7; }

.service-card {
  border-left: 1px solid rgba(26,45,92,0.05);
  border-bottom: 1px solid rgba(26,45,92,0.05);
}

/* ── Override: About card float — photo à la place du N°1 ── */
.about-card-float {
  background: var(--ink);
  border: none;
  border-radius: 12px;
  padding: 24px 20px;
  gap: 0;
  box-shadow: 0 20px 56px rgba(10,25,41,0.22);
}
.about-card-float-label {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.6;
}
.about-card-float::before {
  content: '✦';
  display: block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

/* ── Override: Numbers — plus d'icônes, meilleur fond ── */
.numbers {
  background:
    linear-gradient(135deg, #0a1929 0%, #112240 50%, #0a1929 100%);
  position: relative;
  overflow: hidden;
}
.numbers::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(93,95,239,0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(232,137,11,0.1), transparent 50%);
  pointer-events: none;
}
.numbers-grid {
  background: none;
  border: none;
  gap: 2px;
}
.number-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  position: relative;
}
.number-item:hover {
  background: rgba(232,137,11,0.08);
  border-color: rgba(232,137,11,0.25);
  transform: translateY(-6px);
}
.number-label {
  font-size: 12px;
  line-height: 1.5;
}

/* ── BANDEAU PARALLAX ── */
.parallax-band {
  position: relative;
  height: clamp(320px, 45vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-band-bg {
  position: absolute;
  inset: -40px;
  background-image: url('img/events/assemble generale apcar/WhatsApp Image 2026-04-01 at 03.21.39.jpeg');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  transition: transform 0.1s linear;
}
.parallax-band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,25,41,0.88) 0%, rgba(21,58,92,0.72) 50%, rgba(10,25,41,0.90) 100%);
}
.parallax-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 clamp(20px, 8vw, 80px);
  max-width: 800px;
}
.parallax-band-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.parallax-band-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 36px;
  color: #fff;
}
.parallax-band-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── GALERIE ÉVÉNEMENTS ── */
/* ── ÉVÉNEMENTS HOMEPAGE ── */
.ev-section {
  padding: 100px clamp(24px, 7vw, 100px) 90px;
  background: var(--white);
  position: relative;
}
.ev-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,137,11,0.3), transparent);
}
.ev-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.ev-header .section-title { margin-bottom: 0; }
.ev-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--gold);
  transition: gap 0.25s, color 0.2s;
}
.ev-see-all svg { width: 16px; height: 16px; transition: transform 0.25s; }
.ev-see-all:hover { color: var(--gold); }
.ev-see-all:hover svg { transform: translateX(4px); }

.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Card */
.ev-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,45,92,0.06);
  border: 1px solid rgba(26,45,92,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.ev-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26,45,92,0.13);
}

/* Image */
.ev-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}
.ev-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.ev-card:hover .ev-card-img img { transform: scale(1.07); }

/* Badge */
.ev-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.ev-card-badge--navy { background: var(--ink); }
.ev-card-badge--teal { background: #0e7490; }

/* Body */
.ev-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  flex: 1;
}
.ev-card-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ev-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 12px;
}
.ev-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 auto;
  flex: 1;
  padding-bottom: 20px;
}
.ev-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
  border-top: 1px solid rgba(26,45,92,0.07);
  padding-top: 16px;
}
.ev-card-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.ev-card:hover .ev-card-link { color: var(--gold); gap: 10px; }
.ev-card:hover .ev-card-link svg { transform: translateX(3px); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease-spring);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-gold .arrow { transition: transform 0.3s var(--ease-spring); }
.btn-outline-gold:hover .arrow { transform: translateX(6px); }

/* ── Amélioration about-card-main photo ── */
.about-card-main--photo {
  background-image:
    linear-gradient(145deg, rgba(10,25,41,0.55) 0%, rgba(74,108,181,0.45) 100%),
    url("../img/events/assemble generale apcar/WhatsApp Image 2026-04-01 at 03.21.04.jpeg");
  background-size: cover;
  background-position: center;
}

/* ── Amélioration missions sidebar photo ── */
.missions-sidebar--visual {
  background-image:
    linear-gradient(165deg, rgba(10,25,41,0.88) 0%, rgba(21,58,92,0.72) 100%),
    url("../img/events/journee porte ouverte bafoussa du 29 avril 2025/WhatsApp Image 2026-03-28 at 02.55.14.jpeg");
  background-size: cover;
  background-position: center;
}

/* ── Amélioration: section acces-rapide fond ── */
.acces-rapide {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(93,95,239,0.05), transparent 60%),
    var(--cream);
}
.acces-card--visual:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 56px rgba(10,25,41,0.14);
}

/* ── Amélioration: newsletter ── */
.newsletter {
  background:
    linear-gradient(135deg, #f0f4ff 0%, var(--cream) 50%, #fff8ee 100%);
  border-top: 1px solid rgba(93,95,239,0.1);
  border-bottom: 1px solid rgba(232,137,11,0.15);
}

/* ── Scroll reveal avancé ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Publications: videotheque */
.pub-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.pub-video-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pub-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}
.pub-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
}
.pub-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pub-video-link {
  margin: 10px 2px 2px;
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .pub-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .pub-video-grid { grid-template-columns: 1fr; }
}

/* ── Page sub-hero: ajouter photo de fond ── */
.page-sub-hero {
  position: relative;
  overflow: hidden;
}
.page-sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, rgba(93,95,239,0.08), transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(232,137,11,0.07), transparent 55%);
  pointer-events: none;
}

/* ── Galerie responsive ── */
@media (max-width: 900px) {
  .galerie-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gal-item--wide { grid-column: span 1; }
}
@media (max-width: 540px) {
  .galerie-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gal-item--tall { grid-row: span 1; }
  .parallax-band { height: 280px; }
}

/* ── Pages intérieures : illustrations & visuels ── */

/* Ken Burns sur toutes les photos de hero */
.page-sub-hero--img {
  background-size: cover;
  background-position: center;
  animation: pageHeroKen 18s ease-in-out infinite alternate;
}
@keyframes pageHeroKen {
  from { background-size: 110%; }
  to   { background-size: 120%; }
}
@media (prefers-reduced-motion: reduce) {
  .page-sub-hero--img { animation: none; background-size: cover; }
}

/* Photo panel inline dans le contenu */
.page-photo-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 2.5rem 0 3rem;
  background: var(--mist);
  border-radius: 16px;
  overflow: hidden;
}
/* Empêche une colonne image de forcer toute la grille à la largeur intrinsèque de la photo */
.page-photo-panel > * {
  min-width: 0;
}
.page-photo-panel--reverse { direction: rtl; }
.page-photo-panel--reverse > * { direction: ltr; }
/* Conteneur : hauteur fixe + masque ; object-fit sur le <img> uniquement */
.page-photo-panel-img {
  height: 280px;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  display: block;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: rgba(26, 45, 92, 0.06);
}
.page-photo-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Variante : classe directement sur <img> (certaines pages) */
img.page-photo-panel-img {
  object-fit: cover;
  object-position: center;
}
.page-photo-panel-body {
  padding: 28px 32px 28px 8px;
}
.page-photo-panel--reverse .page-photo-panel-body { padding: 28px 8px 28px 32px; }
.page-photo-panel-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-photo-panel-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.page-who-ribbon {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e2642a 0%, #f08b5b 58%, rgba(240, 139, 91, 0.05) 100%);
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.who-apcar-sheet {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid rgba(26, 45, 92, 0.08);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 8px 26px rgba(10, 25, 41, 0.05);
}
.who-apcar-layout {
  display: block;
}
.who-apcar-layout::after {
  content: '';
  display: table;
  clear: both;
}
.who-apcar-aside {
  float: left;
  width: clamp(230px, 29%, 320px);
  margin: 0 clamp(16px, 3vw, 28px) 12px 0;
}
.who-apcar-card {
  margin: 0;
  border: 1px solid rgba(26, 45, 92, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.who-apcar-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.who-apcar-card figcaption {
  padding: 10px 12px;
  background: linear-gradient(90deg, #e66b2e 0%, #f28c56 100%);
  color: #fff;
  line-height: 1.3;
}
.who-apcar-card figcaption strong {
  display: block;
  font-size: 0.88rem;
}
.who-apcar-card figcaption span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.92;
}
.who-apcar-main p {
  margin: 0 0 10px;
  line-height: 1.75;
}
.who-apcar-bullets {
  margin: 4px 0 12px;
  padding-left: 1.15rem;
}
.who-apcar-bullets li {
  margin-bottom: 6px;
  font-weight: 600;
}
.who-apcar-sign {
  margin-top: 16px;
  font-weight: 600;
  text-align: right;
  color: var(--ink);
  line-height: 1.5;
}

/* Grille de features visuelles */
.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 2rem 0;
}
.page-feature-card {
  background: var(--white);
  border: 1.5px solid rgba(26,45,92,0.1);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
a.page-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.page-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,25,41,0.1);
  border-color: var(--gold);
}
.page-feature-card-icon,
.page-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.page-feature-card-icon svg,
.page-feature-icon svg {
  width: 26px; height: 26px;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.page-feature-card h3,
.page-feature-card h4 {
  font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.page-feature-card p {
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
}

/* Bandeau chiffre clé inline */
.page-stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: rgba(26,45,92,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0;
}
.page-stat-item {
  flex: 1 1 140px;
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
}
.page-stat-value, .page-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.page-stat-label, .page-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* Callout box — pas de flex sur le seul texte : sinon chaque nœud / <strong> devient un item et gap crée des trous */
.page-callout {
  display: block;
  background: linear-gradient(135deg, rgba(93,95,239,0.07) 0%, rgba(232,137,11,0.06) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}
.page-callout:has(> svg) {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.page-callout > svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--accent);
  stroke: currentColor;
}
.page-callout strong { color: var(--navy); }

@media (max-width: 640px) {
  .page-photo-panel { grid-template-columns: 1fr; }
  .page-photo-panel-body { padding: 20px; }
  .page-photo-panel--reverse .page-photo-panel-body { padding: 20px; }
  .page-photo-panel-img { height: 200px; }
  .who-apcar-aside {
    float: none;
    width: 100%;
    max-width: 260px;
    margin: 0 0 14px;
  }
  .who-apcar-sign { text-align: left; }
}

/* ══════════════════════════════════════════════════════════
   GRANDE REFONTE VISUELLE v2 — APCAR 2026
   ══════════════════════════════════════════════════════════ */

/* ── ABOUT COLLAGE ── */
.about {
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: visible;
}

.about-collage {
  position: relative;
  height: 580px;
}

.about-collage-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 72%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10,25,41,0.22);
  z-index: 2;
}
.about-collage-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.about-collage:hover .about-collage-main img {
  transform: scale(1.06);
}

.about-collage-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(232,137,11,0.4);
  z-index: 3;
  animation: badgePop 0.6s var(--ease-spring) both;
  animation-delay: 0.8s;
}
.about-collage-badge-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-collage-badge-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.about-collage-side {
  position: absolute;
  right: 0; top: 8%;
  width: 34%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.about-collage-sm {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(10,25,41,0.16);
  aspect-ratio: 4/3;
}
.about-collage-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.about-collage-sm:hover img { transform: scale(1.08); }

/* 3 petites photos positionnées différemment verticalement */
.about-collage-sm--1 { transform: translateY(0); animation: floatSm1 6s ease-in-out infinite; }
.about-collage-sm--2 { transform: translateY(0); animation: floatSm2 7s ease-in-out infinite 0.5s; }
.about-collage-sm--3 { transform: translateY(0); animation: floatSm3 5.5s ease-in-out infinite 1s; }

@keyframes floatSm1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatSm2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatSm3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Éléments décoratifs */
.about-float-ring {
  position: absolute;
  bottom: 10%; left: 60%;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(232,137,11,0.3);
  animation: spinSlow 18s linear infinite;
  z-index: 0;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.about-float-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.about-float-dot--1 {
  width: 14px; height: 14px;
  background: var(--gold);
  opacity: 0.6;
  bottom: 28%; left: 55%;
  animation: dotFloat1 4s ease-in-out infinite;
}
.about-float-dot--2 {
  width: 8px; height: 8px;
  background: #5D5FEF;
  opacity: 0.5;
  top: 15%; right: 5%;
  animation: dotFloat2 5s ease-in-out infinite 0.7s;
}
.about-float-dot--3 {
  width: 18px; height: 18px;
  background: rgba(232,137,11,0.25);
  border: 2px solid var(--gold);
  top: 50%; right: 2%;
  animation: dotFloat1 6s ease-in-out infinite 1.2s;
}
@keyframes dotFloat1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-14px) scale(1.1)} }
@keyframes dotFloat2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(180deg)} }

/* Stats inline dans about */
.about-stats-inline {
  display: flex;
  gap: 16px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}
.about-stat-pill {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 8px 24px rgba(10,25,41,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring);
}
.about-stat-pill:hover { transform: translateY(-4px) scale(1.03); }
.about-stat-pill::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.about-stat-pill-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.about-stat-pill-lbl {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── MARQUEE PHOTOS ── */
.photo-marquee {
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  position: relative;
}
.photo-marquee::before,
.photo-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.photo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.photo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.photo-marquee-track {
  display: flex;
  gap: 8px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.photo-marquee-track:hover { animation-play-state: paused; }
.photo-marquee-track img {
  height: 160px;
  width: 240px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.photo-marquee-track img:hover {
  opacity: 1;
  transform: scale(1.04);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .photo-marquee-track { animation: none; }
}

/* Page d’accueil : mot de la présidente & partenaires */
.home-president {
  padding: clamp(44px, 5.2vw, 64px) 8vw;
  background:
    radial-gradient(ellipse 120% 80% at 84% 20%, rgba(232, 137, 11, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border-top: 1px solid rgba(26, 45, 92, 0.06);
}
.home-president-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3.2vw, 38px);
  align-items: stretch;
}
.home-president-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 58, 115, 0.08);
  box-shadow: 0 18px 42px rgba(10, 25, 41, 0.12);
  min-height: clamp(340px, 42vw, 540px);
}
.home-president-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-president-copy {
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 247, 255, 0.96) 100%);
  border: 1px solid rgba(26, 45, 92, 0.1);
  box-shadow: 0 14px 36px rgba(18, 45, 92, 0.09);
  padding: clamp(20px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.home-president-copy .section-eyebrow {
  margin-bottom: 4px;
}
.home-president-quote {
  margin: 0;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 3px solid var(--gold);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.72;
  color: #283346;
  position: relative;
}
.home-president-quote::before {
  content: '“';
  position: absolute;
  left: -2px;
  top: -8px;
  font-size: 2rem;
  line-height: 1;
  color: rgba(232, 137, 11, 0.28);
  font-family: Georgia, serif;
}
.home-president-quote p {
  margin: 0;
  max-width: 58ch;
}
.home-president-sig {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  color: #5c6678;
}
.partners-strip {
  padding: clamp(56px, 7vw, 88px) 8vw;
  background: var(--white);
}
.partners-strip .section-header {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}
.partners-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 45, 92, 0.1);
  background: var(--mist);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, border-color 0.25s;
}
.partners-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 25, 41, 0.08);
  border-color: rgba(74, 108, 181, 0.35);
}
.partners-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74, 108, 181, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.partners-card-icon svg { width: 22px; height: 22px; }
.partners-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.partners-card-hint {
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 768px) {
  .home-president {
    padding: 34px 5vw 44px;
  }
  .home-president-inner { grid-template-columns: 1fr; }
  .home-president-photo {
    min-height: 0;
  }
  .home-president-copy {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

/* ── SERVICES CARDS v2 ── */
.services {
  padding: 100px 8vw 80px;
  background: var(--white);
  position: relative;
}
.services-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.svc2-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,25,41,0.08);
  border: 1px solid rgba(26,45,92,0.06);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s;
}
.svc2-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 64px rgba(10,25,41,0.16);
}
.svc2-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
}
.svc2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,25,41,0.55) 100%);
}
.svc2-card:hover .svc2-img { transform: scale(1.06); }
.svc2-body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc2-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c, #5D5FEF) 12%, white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.svc2-card:hover .svc2-icon {
  transform: rotate(-8deg) scale(1.15);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--c, #5D5FEF) 40%, transparent);
}
.svc2-icon svg {
  width: 22px; height: 22px;
  stroke: var(--c, #5D5FEF);
  fill: none; stroke-width: 1.8;
}
.svc2-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.svc2-desc {
  font-size: 13px; line-height: 1.75;
  color: var(--muted); flex: 1;
}
.svc2-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px; font-weight: 600;
  color: var(--c, #5D5FEF);
  text-decoration: none;
  transition: gap 0.2s, letter-spacing 0.2s;
}
.svc2-link:hover { letter-spacing: 0.5px; }

/* ── APCAR SPLIT STATS ── */
.apcar-split-stats {
  background: #f5f6f8;
  padding: 80px clamp(24px, 7vw, 100px);
}
.apcar-split-stats-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.apcar-split-stats-img {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(26,45,92,0.12);
}
.apcar-split-stats-img img {
  width: 100%;
  height: clamp(360px, 45vw, 520px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.apcar-split-stats-body {
  display: flex;
  flex-direction: column;
}
.apcar-split-stats-body .section-eyebrow { margin-bottom: 6px; }
.apcar-split-stats-body .section-title { margin-bottom: 48px; }
.apcar-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 36px;
}
.apcar-stat {
  border-top: 2px solid rgba(26,45,92,0.1);
  padding-top: 20px;
}
.apcar-stat-num {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 10px;
}
.apcar-stat-value {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
}
.apcar-stat-value--static { letter-spacing: -2px; }
.apcar-stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.apcar-stat-label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ── INITIATIVES ── */
.initiatives {
  padding: 100px 8vw 80px;
  background: var(--mist);
  position: relative;
}
.initiatives::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.init-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(10,25,41,0.18);
}
.init-card:first-child { height: 480px; margin-top: -30px; }
.init-card:last-child  { height: 460px; margin-top: -20px; }

.init-card-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
  will-change: transform;
}
.init-card:hover .init-card-bg { transform: scale(1.1); }
.init-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,25,41,0.92) 0%, rgba(10,25,41,0.3) 55%, transparent 100%);
  transition: background 0.4s;
}
.init-card:hover .init-card-scrim {
  background: linear-gradient(0deg, rgba(10,25,41,0.95) 0%, rgba(10,25,41,0.5) 60%, rgba(10,25,41,0.1) 100%);
}
.init-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.init-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(232,137,11,0.15);
  border: 1px solid rgba(232,137,11,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.init-card-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
  line-height: 1.3;
}
.init-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
}
.init-card:hover .init-card-desc {
  max-height: 100px;
  opacity: 1;
}
.init-card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,137,11,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, border-color 0.2s, color 0.2s;
}
.init-card:hover .init-card-link {
  opacity: 1;
  transform: translateY(0);
}
.init-card-link:hover { color: #fff; border-color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-collage { height: 440px; }
  .about-collage-main { width: 68%; height: 70%; }
  .services-grid2 { grid-template-columns: repeat(2, 1fr); }
  .apcar-split-stats-inner { grid-template-columns: 1fr; }
  .apcar-split-stats-img img { height: 320px; }
  .initiatives-grid { grid-template-columns: 1fr; gap: 16px; }
  .init-card { height: 300px !important; margin-top: 0 !important; }
  .ev-grid { grid-template-columns: 1fr 1fr; }
  .ev-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
}
@media (max-width: 640px) {
  /* About collage mobile: version minimaliste et lisible */
  .about-collage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .about-collage-main {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(10,25,41,0.12);
  }
  .about-collage-main img {
    transition: none;
  }
  .about-collage:hover .about-collage-main img {
    transform: none;
  }
  .about-collage-side {
    display: none;
  }
  .about-collage-badge {
    position: static;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(232,137,11,0.26);
    animation: none;
  }
  .about-collage-badge-year {
    font-size: 1.35rem;
  }
  .about-collage-badge-text {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .about-stats-inline {
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
  }
  .about-stat-pill {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    border-radius: 10px;
  }
  .about-stat-pill-val {
    font-size: 1.25rem;
  }
  .about-stat-pill-lbl {
    font-size: 9px;
    letter-spacing: 0.6px;
  }
  .services-grid2 { grid-template-columns: 1fr; }
  .apcar-split-stats { padding: 48px 20px; }
  .apcar-split-stats-img img { height: 240px; }
  .apcar-stats-grid { column-gap: 16px; row-gap: 24px; }
  .ev-grid { grid-template-columns: 1fr; }
  .ev-section { padding: 64px 20px; }
  .photo-marquee-track img { height: 110px; width: 160px; }
}

/* ══════════════════════════════════════════════════════
   COMPOSANTS PAGES INTÉRIEURES v3
   ══════════════════════════════════════════════════════ */

/* ── Events mosaic ── */
.page-events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 2rem 0 2.5rem;
}
.page-event-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10,25,41,0.1);
  transition: transform 0.35s var(--ease-out-back), box-shadow 0.35s;
  background: var(--white);
}
.page-event-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 56px rgba(10,25,41,0.16);
}
.page-event-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}
.page-event-card:hover .page-event-img { transform: scale(1.06); }
.page-event-body {
  padding: 18px 18px 20px;
}
.page-event-date {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  background: rgba(232,137,11,0.1);
  border-radius: 999px;
  padding: 3px 10px;
}
.page-event-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.page-event-card p {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ── Page hero animé: Ken Burns bien réglé ── */
.page-sub-hero--img {
  background-size: 110%;
  animation: pageHeroKen 18s ease-in-out infinite alternate;
  overflow: hidden;
}
@keyframes pageHeroKen {
  0%   { background-size: 110%; background-position: center 40%; }
  100% { background-size: 120%; background-position: center 60%; }
}

/* Overlay en dégradé diagonal avec halos colorés pour rendre la photo visible mais lisible */
.page-sub-hero::before {
  background:
    linear-gradient(
      160deg,
      rgba(8,18,38,0.68) 0%,
      rgba(10,28,52,0.45) 45%,
      rgba(8,18,38,0.75) 100%
    );
}

/* ── Déco animée dans hero pages : petites particules géométriques ── */
.page-sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(232,137,11,0.22), transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 5%, rgba(93,95,239,0.15), transparent 50%);
  pointer-events: none;
  animation: heroOrbs 8s ease-in-out infinite alternate;
}
@keyframes heroOrbs {
  from { opacity: 1; }
  to   { opacity: 0.6; }
}

/* Elément flottant décoratif dans hero pages */
.page-sub-hero h1 { z-index: 2; }
.page-sub-lead    { z-index: 2; }
.page-sub-hero-breadcrumb { z-index: 2; }

/* ── Surcharge 2026: hero + fil d'Ariane minimal APCAR ── */
.page-sub-hero {
  min-height: clamp(170px, 22vw, 240px);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 64px) clamp(28px, 4vw, 44px);
  background-image: none !important;
  background-color: #123a73;
}
.page-sub-hero::before {
  background:
    linear-gradient(135deg, rgba(14, 49, 97, 0.96) 0%, rgba(16, 58, 114, 0.94) 100%);
  animation: none;
}
.page-sub-hero::after {
  display: none;
}
.page-sub-hero-breadcrumb {
  display: none;
}
.page-sub-hero-breadcrumb span {
  display: none;
}
.page-sub-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.page-sub-hero h1::after {
  display: none;
}
.page-sub-lead {
  display: none;
}
@media (max-width: 768px) {
  .page-sub-hero {
    min-height: clamp(150px, 36vw, 200px);
    padding-top: clamp(28px, 6vw, 42px);
  }
  .page-sub-hero h1 {
    font-size: clamp(1.5rem, 6.2vw, 2rem);
  }
}

/* ── Galerie grille images dans pages ── */
.page-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 1.5rem 0 2rem;
}
.page-img-grid img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  display: block;
}
.page-img-grid img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ── Séparateur doré animé ── */
.page-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(232,137,11,0.2));
  border-radius: 2px;
  margin: 2rem 0;
}

/* ── Bandeau CTA en bas de page ── */
.page-cta-band {
  margin: 3rem -clamp(16px, 4vw, 56px) -clamp(48px, 6vw, 80px);
  padding: 48px clamp(16px, 4vw, 56px);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.page-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(93,95,239,0.15), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(232,137,11,0.12), transparent 50%);
  pointer-events: none;
}
.page-cta-band-text {
  position: relative;
}
.page-cta-band-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.page-cta-band-text p {
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.page-cta-band .btn-primary {
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .page-events-mosaic { grid-template-columns: 1fr; }
  .page-cta-band { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .page-img-grid img { height: 150px; }
}

/* ============================================================
   MEMBERS PAGE — Card grid (.mbr-*)
   ============================================================ */

/* Hero stats strip */
.mbr-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.mbr-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mbr-hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.mbr-hero-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Controls (search + filters) */
.mbr-controls {
  margin: 0 0 32px;
}
.mbr-search-wrap {
  position: relative;
  max-width: 520px;
  margin-bottom: 16px;
}
.mbr-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.mbr-search-input {
  width: 100%;
  padding: 12px 44px 12px 44px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.mbr-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,45,92,0.12);
}
.mbr-search-input::placeholder { color: var(--muted); }
.mbr-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--muted);
  display: flex;
  align-items: center;
}
.mbr-search-clear svg { width: 16px; height: 16px; }
.mbr-search-clear:hover { color: var(--ink); }

/* Filter pills */
.mbr-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.mbr-filter-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mbr-filter-btn:hover { border-color: var(--primary); background: rgba(26,45,92,0.04); }
.mbr-filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.mbr-filter-btn--active .mbr-filter-count { background: rgba(255,255,255,0.25); color: #fff; }
.mbr-filter-count {
  background: rgba(26,45,92,0.08);
  color: var(--muted);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.mbr-result-info {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* —— Liste membres : colonne cartes + colonne carte OSM —— */
.mbr-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.2vw, 2.75rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.mbr-split-list {
  min-width: 0;
}

.mbr-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 137, 11, 0.12) 0%, rgba(93, 95, 239, 0.1) 100%);
  border: 1px solid rgba(26, 45, 92, 0.1);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.mbr-toolbar-icon {
  color: #c45a12;
  flex-shrink: 0;
}

.mbr-toolbar-text {
  line-height: 1.45;
}

.mbr-pager {
  margin: 20px 0 0;
  position: static !important;
}

.mbr-pager-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f5f5f6;
  border: 1px solid rgba(26, 45, 92, 0.08);
}

.mbr-pager-num {
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #111827;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mbr-pager-num:hover {
  transform: translateY(-1px);
}

.mbr-pager-num--current {
  min-width: 36px;
  height: 36px;
  background: #E8890B;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(232, 137, 11, 0.32);
}

.mbr-pager-gap {
  padding: 0 4px;
  color: #111827;
  font-size: 1.1rem;
  user-select: none;
}

.mbr-pager-meta {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.mbr-pager-next {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  cursor: pointer;
  padding: 0 2px;
}

.mbr-pager-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mbr-map-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  min-width: 0;
}

.mbr-map-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 242, 255, 0.94) 55%, rgba(225, 235, 252, 0.88) 100%);
  box-shadow:
    0 16px 48px rgba(18, 45, 92, 0.12),
    0 4px 16px rgba(18, 45, 92, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mbr-map-card-head {
  padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem) 0.75rem;
}

.mbr-map-kicker {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #e8890b 0%, #f0a04a 50%, #123a73 100%);
}

.mbr-map-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f2850;
  line-height: 1.2;
}

.mbr-map-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 40ch;
}

.mbr-leaflet-map {
  height: min(68vh, 620px);
  margin: 12px 12px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(26, 45, 92, 0.08);
}

.mbr-leaflet-map .leaflet-container {
  font-family: inherit;
  background: #dfe7f4;
}

.mbr-map-filter-clear {
  display: block;
  width: calc(100% - 24px);
  margin: 12px 12px 16px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(26, 45, 92, 0.15);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  color: #123a73;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.mbr-map-filter-clear:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Leaflet custom divIcon — pins */
.leaflet-div-icon.apcar-map-divicon {
  border: none;
  background: transparent;
}

.apcar-map-pin {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.apcar-map-pin:hover {
  transform: scale(1.08) translateY(-4px);
}

.apcar-map-pin--active .apcar-map-pin-dot {
  box-shadow:
    0 0 0 4px rgba(232, 137, 11, 0.55),
    0 8px 24px rgba(18, 58, 115, 0.45);
  background: linear-gradient(145deg, #ffb347 0%, #e8890b 100%);
}

.apcar-map-pin-pulse {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  border-radius: 50%;
  background: rgba(232, 137, 11, 0.35);
  animation: apcar-pin-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes apcar-pin-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.apcar-map-pin-dot {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5d5fef 0%, #123a73 100%);
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(18, 58, 115, 0.45);
  z-index: 2;
}

.apcar-map-pin-count {
  position: absolute;
  top: -8px;
  right: -14px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8890b 0%, #f59e0b 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(232, 137, 11, 0.45);
  z-index: 3;
}

.apcar-map-pin-label {
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 45, 92, 0.12);
  font-size: 10px;
  font-weight: 700;
  color: #123a73;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.mbr-split .mbr-grid {
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

@media (max-width: 1100px) {
  .mbr-split {
    grid-template-columns: 1fr;
  }

  .mbr-map-aside {
    position: relative;
    top: auto;
    order: 2;
  }

  .mbr-split-list {
    order: 1;
  }

  .mbr-leaflet-map {
    height: min(52vh, 480px);
  }
}

@media (max-width: 640px) {
  .mbr-pager-inner {
    gap: 8px;
    padding: 10px 12px;
  }
  .mbr-pager-num {
    min-width: 26px;
    height: 26px;
    font-size: 1rem;
  }
  .mbr-pager-num--current {
    min-width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  .mbr-pager-gap,
  .mbr-pager-next {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apcar-map-pin-pulse {
    animation: none;
    opacity: 0.25;
  }

  .apcar-map-pin:hover {
    transform: none;
  }
}

/* ============================================================
   APCAR — Refresh visuel + optimisation légère (2026)
   ============================================================ */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Améliore le coût de rendu des sections longues de l'accueil */
main.page-home > section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

/* Micro refresh typographique */
.section-title {
  letter-spacing: -0.015em;
}
.section-eyebrow {
  letter-spacing: 0.14em;
}

/* Surface plus premium et cohérente sur les blocs/cartes */
:is(
  .about-card-main,
  .partners-card,
  .svc2-card,
  .mbr-card,
  .mbr-map-card,
  .bureau-commissions-wrap,
  .who-apcar-sheet
) {
  border-radius: 18px;
  border: 1px solid rgba(26, 45, 92, 0.08);
  box-shadow:
    0 10px 28px rgba(12, 36, 78, 0.07),
    0 2px 10px rgba(12, 36, 78, 0.04);
}

:is(.partners-card, .svc2-card, .mbr-card, .bureau-commission-card) {
  transition:
    transform 0.28s var(--ease-out-expo),
    box-shadow 0.28s var(--ease-out-expo),
    border-color 0.2s ease;
}

:is(.partners-card, .svc2-card, .mbr-card, .bureau-commission-card):hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 38px rgba(12, 36, 78, 0.12),
    0 4px 14px rgba(12, 36, 78, 0.06);
}

/* CTA plus net, plus moderne */
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(232, 137, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(232, 137, 11, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Footer plus clean/minimal */
footer {
  background:
    radial-gradient(ellipse 140% 100% at 100% 0%, rgba(232, 137, 11, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, #0a1929 0%, #0c1f33 100%);
}

@media (max-width: 768px) {
  main.page-home > section:not(:first-of-type) {
    contain-intrinsic-size: 1px 620px;
  }
}

/* Card grid */
.mbr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch;
}

/* Individual card */
.mbr-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 18px rgba(26,45,92,0.10), 0 1px 4px rgba(26,45,92,0.06);
  transition: transform 0.22s cubic-bezier(.25,.8,.25,1), box-shadow 0.22s cubic-bezier(.25,.8,.25,1), border-color 0.22s;
  will-change: transform;
  animation: mbr-card-in 0.4s ease both;
}
.mbr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(26,45,92,0.18), 0 4px 12px rgba(26,45,92,0.10);
  border-color: var(--primary);
}
@keyframes mbr-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo area */
.mbr-card-logo-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fc;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  position: relative;
}
.mbr-card-logo-img {
  max-height: 68px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
.mbr-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}

/* Card body */
.mbr-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mbr-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.mbr-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.mbr-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.mbr-badge--douala  { background: #dbeafe; color: #1e40af; }
.mbr-badge--yaounde { background: #d1fae5; color: #065f46; }
.mbr-badge--other   { background: #f3e8ff; color: #6b21a8; }

.mbr-card-dir {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mbr-card-dir svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Contact links */
.mbr-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
}
.mbr-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--primary);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s;
}
.mbr-contact-link:hover { color: var(--accent); text-decoration: underline; }
.mbr-contact-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Empty state */
.mbr-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}
.mbr-empty svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.35; }
.mbr-empty p { font-size: 15px; margin: 0; }

/* Download bar */
.mbr-download-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 16px;
}
.mbr-dl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mbr-download-bar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mbr-download-bar span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 2px;
}
.mbr-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: var(--primary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.mbr-dl-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.mbr-dl-btn svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 640px) {
  .mbr-hero-stats { gap: 20px; }
  .mbr-hero-stat-num { font-size: 2rem; }
  .mbr-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
  .mbr-download-bar { padding: 18px 20px; }
  .mbr-dl-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .mbr-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   Journées Portes Ouvertes 2026
══════════════════════════════════════════════════ */
.jpo-section {
  margin: clamp(40px, 6vw, 68px) 0;
}
.jpo-header {
  margin-bottom: 28px;
}
.jpo-badge-officiel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,137,11,0.1);
  border: 1px solid rgba(232,137,11,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.jpo-intro {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
  margin: 8px 0 0;
}

/* Events grid */
.jpo-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.jpo-event {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26,45,92,0.1);
  box-shadow: 0 4px 24px rgba(10,25,41,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}
.jpo-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,25,41,0.13);
}
.jpo-event__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  gap: 2px;
}
.jpo-event__date-block--2 {
  background: linear-gradient(135deg, #153a5c 0%, #1e6b8a 100%);
}
.jpo-event__date-block--3 {
  background: linear-gradient(135deg, #2d1a5c 0%, #5d4aaa 100%);
}
.jpo-event__month {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1;
}
.jpo-event__year {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.jpo-event__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
}
.jpo-event__region {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.jpo-event__city {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 6px;
}
.jpo-event__city svg { stroke: var(--gold); flex-shrink: 0; }
.jpo-event__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 4px 0 auto;
}
.jpo-event__status {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  align-self: flex-start;
}
.jpo-event__status--soon {
  background: rgba(232,137,11,0.12);
  color: var(--gold);
  border: 1px solid rgba(232,137,11,0.3);
}

/* Bouton note ministre */
.jpo-note-btn-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.jpo-note-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  background: var(--white);
  border: 1.5px solid rgba(26,45,92,0.18);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(10,25,41,0.07);
}
.jpo-note-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,45,92,0.2);
  transform: translateY(-2px);
}
.jpo-note-btn svg { flex-shrink: 0; transition: stroke 0.2s; }
.jpo-note-btn:hover svg { stroke: #fff; }

/* Modal lightbox */
.jpo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,25,41,0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.jpo-modal__inner {
  position: relative;
  max-width: min(680px, 95vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.jpo-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.jpo-modal__close:hover { background: rgba(255,255,255,0.28); }
.jpo-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .jpo-events-grid { grid-template-columns: 1fr; }
  .jpo-note-panel { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .jpo-events-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   Page Cotisation & Adhésion
══════════════════════════════════════════════════ */
.cotis-section {
  margin-bottom: clamp(40px, 6vw, 68px);
}
.cotis-section-header {
  margin-bottom: 24px;
}
.cotis-section-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}
.cotis-section-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 700px;
  line-height: 1.65;
  margin: 0;
}
.cotis-section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.cotis-section-badge--once {
  background: rgba(93,95,239,0.1);
  color: var(--blue-bright);
  border: 1px solid rgba(93,95,239,0.2);
}
.cotis-section-badge--annual {
  background: rgba(232,137,11,0.1);
  color: var(--gold);
  border: 1px solid rgba(232,137,11,0.25);
}

/* Total banner */
.cotis-total-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  margin-bottom: 12px;
}
.cotis-total-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.cotis-total-amount {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.cotis-total-currency {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}
.cotis-total-banner__right svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255,255,255,0.2);
}
.cotis-ventil-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 16px;
}

/* Adhésion cards grid */
.cotis-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cotis-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26,45,92,0.1);
  box-shadow: 0 4px 24px rgba(10,25,41,0.07);
  display: flex;
  flex-direction: column;
}
.cotis-card--apcar {
  border-top: 4px solid var(--blue-bright);
}
.cotis-card--fiac {
  border-top: 4px solid var(--gold);
}
.cotis-card__logo {
  padding: 20px 22px 0;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.cotis-card__amount {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  padding: 12px 22px 0;
  line-height: 1;
}
.cotis-card--apcar .cotis-card__amount { color: var(--blue-bright); }
.cotis-card--fiac .cotis-card__amount { color: var(--gold); }
.cotis-card__amount span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.cotis-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  padding: 6px 22px 0;
}
.cotis-card__desc {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 8px 22px 0;
  line-height: 1.55;
  margin: 0;
}
.cotis-card__benefits {
  list-style: none;
  padding: 14px 22px 20px;
  margin: auto 0 0;
  border-top: 1px solid rgba(26,45,92,0.07);
  margin-top: 16px;
}
.cotis-card__benefits li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 5px 0 5px 16px;
  position: relative;
}
.cotis-card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cotis-card--apcar .cotis-card__benefits li::before { background: var(--blue-bright); }
.cotis-card--fiac .cotis-card__benefits li::before { background: var(--gold); }

/* Cotisation annuelle */
.cotis-annual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cotis-annual-card {
  border-radius: 20px;
  border: 1px solid rgba(26,45,92,0.1);
  box-shadow: 0 4px 24px rgba(10,25,41,0.07);
  overflow: hidden;
}
.cotis-annual-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
}
.cotis-annual-card--local .cotis-annual-card__header { background: linear-gradient(135deg, #1a2d5c 0%, #2d4a7c 100%); }
.cotis-annual-card--intl .cotis-annual-card__header  { background: linear-gradient(135deg, #0f3460 0%, #1a5c8a 100%); }
.cotis-annual-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cotis-annual-icon svg { width: 22px; height: 22px; stroke: #fff; }
.cotis-annual-card__type {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}
.cotis-annual-card__sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.cotis-annual-card__price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  padding: 16px 24px 4px;
  color: var(--gold);
}
.cotis-annual-card__price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.cotis-annual-benefits {
  list-style: none;
  padding: 12px 24px 20px;
  margin: 0;
  border-top: 1px solid rgba(26,45,92,0.07);
  margin-top: 12px;
}
.cotis-annual-benefits li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 5px 0 5px 16px;
  position: relative;
}
.cotis-annual-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* FIAC à venir */
.cotis-section--fiac-coming {
  border-radius: 20px;
  background: linear-gradient(135deg, #fffbe6 0%, #fff4cc 100%);
  border: 1px dashed rgba(232,137,11,0.4);
  padding: 28px 32px;
}
.cotis-fiac-coming {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.cotis-fiac-coming__icon { flex-shrink: 0; }
.cotis-fiac-coming__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gold);
  color: #fff;
  margin-bottom: 8px;
}
.cotis-fiac-coming__body h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 10px;
}
.cotis-fiac-coming__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 8px;
}
.cotis-fiac-coming__body p:last-child { margin-bottom: 0; }
.cotis-fiac-coming__body a { color: var(--gold); font-weight: 600; }

/* Responsive */
@media (max-width: 700px) {
  .cotis-cards-grid,
  .cotis-annual-grid { grid-template-columns: 1fr; }
  .cotis-fiac-coming { flex-direction: column; }
  .cotis-total-banner__right { display: none; }
}
.mbr-initials--hidden { display: none !important; }
