  @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,500;0,600;0,700;1,600&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: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-hero: 'Instrument Serif', Georgia, 'Times New Roman', 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);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    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; align-items: center; justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 48px);
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26, 45, 92, 0.08);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(10, 25, 41, 0.08); }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.3s var(--ease-out-expo);
  }
  .nav-logo:hover {
    transform: scale(1.02);
  }
  .nav-logo img { height: 40px; width: auto; max-width: min(200px, 42vw); display: block; object-fit: contain; object-position: left center; }

  .nav-burger {
    display: none;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    color: var(--ink);
    z-index: 2;
  }
  .nav-burger:hover { background: rgba(26, 45, 92, 0.06); }
  .nav-burger svg { width: 24px; height: 24px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px 12px;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1;
    margin: 0 12px;
  }
  .nav-item { position: relative; }
  .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 10px 10px;
    white-space: nowrap;
  }
  .nav-item > a.nav-link-top::after {
    content: ''; position: absolute; bottom: 4px; left: 10px; right: 10px;
    height: 2px; background: var(--blue-bright);
    transform: scaleX(0);
    transition: transform .25s;
  }
  .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: 600; }
  .nav-item > a.nav-link-top.active::after { transform: scaleX(1); }

  .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 10px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color .2s, background .2s;
  }
  .nav-trigger:hover { color: var(--ink); background: rgba(93, 95, 239, 0.06); }
  .nav-chevron { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; }
  .nav-item--dropdown:hover .nav-chevron,
  .nav-item--dropdown:focus-within .nav-chevron { transform: rotate(180deg); }

  /* Pont invisible entre le bouton et le menu (sinon le survol se perd dans le vide) */
  .nav-item--dropdown::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: max(100%, 280px);
    height: 14px;
    z-index: 199;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    min-width: 260px;
    max-width: min(90vw, 320px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(10, 25, 41, 0.12);
    border: 1px solid rgba(26, 45, 92, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease, visibility .15s ease;
    z-index: 200;
  }
  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown li { margin: 0; }
  .nav-dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .nav-dropdown a:hover { background: rgba(93, 95, 239, 0.08); color: var(--ink); }
  .nav-dropdown li.nav-dropdown-label {
    list-style: none;
    padding: 10px 18px 4px;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    pointer-events: none;
  }
  .nav-dropdown li.nav-dropdown-label:first-child { margin-top: 0; padding-top: 4px; }

  .nav-end {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 101;
  }

  .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);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: min(100vh, 920px);
    padding-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-color: var(--deep);
    background-image:
      linear-gradient(160deg, rgba(10, 25, 41, 0.82) 0%, rgba(21, 58, 92, 0.45) 42%, rgba(10, 25, 41, 0.88) 100%),
      radial-gradient(ellipse 90% 70% at 20% 30%, rgba(93, 95, 239, 0.22), transparent 52%),
      radial-gradient(ellipse 70% 60% at 85% 75%, rgba(232, 137, 11, 0.2), transparent 48%),
      url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    will-change: transform;
    animation: heroKenBurns 28s ease-in-out infinite alternate;
  }
  .hero-mesh {
    position: absolute;
    inset: -20%;
    z-index: 1;
    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: 2;
    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: 1;
    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: 3;
    max-width: 920px;
    padding: 56px 24px 72px;
  }
  .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-copy {
    min-width: 0;
  }
  .hero-badge {
    display: inline-flex;
    align-items: 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, 4.8vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .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; }
  .hero-title .hero-accent {
    background: linear-gradient(105deg, #fff 0%, #F7B23D 35%, #E8890B 55%, #c9d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: heroShimmer 7s ease-in-out infinite;
    padding-bottom: 0.06em;
    filter: drop-shadow(0 4px 24px rgba(232, 137, 11, 0.25));
  }
  .hero-desc {
    font-size: clamp(15px, 1.85vw, 18px);
    line-height: 1.78;
    color: rgba(255,255,255,0.88);
    max-width: 540px;
    margin: 28px 0 0;
    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%;
    height: auto;
    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-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .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); }
  .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("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80");
    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("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=900&q=80");
    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: 80px 8vw 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.15fr) repeat(5, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 48px;
  }
  .footer-col .footer-sub { margin-top: 14px; }
  .footer-col .footer-sub:first-of-type { margin-top: 0; }
  .footer-brand-logo { margin-bottom: 16px; }
  .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: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.45); }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 20px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-social { display: flex; gap: 14px; margin-top: 20px; }
  .footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    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: 18px; height: 18px; fill: currentColor; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px;
  }
  .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: 32px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,0.3);
  }
  .footer-bottom a { color: var(--orange); text-decoration: none; }

  /* ── 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 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 heroShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  @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; }
  }
  @media (max-width: 1100px) {
    .nav-item--dropdown::after {
      display: none;
    }
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0;
      padding: 16px 20px 32px;
      flex-direction: column;
      align-items: stretch;
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      overflow-y: auto;
      border-bottom: 1px solid rgba(26, 45, 92, 0.08);
      box-shadow: 0 16px 40px rgba(10, 25, 41, 0.08);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform .25s, opacity .25s, visibility .25s;
      z-index: 102;
    }
    nav.nav-open .nav-links {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .nav-burger { display: inline-flex; }
    .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-item > a.nav-link-top::after { display: none; }
    .nav-dropdown {
      position: static;
      transform: none !important;
      left: auto;
      min-width: 0;
      max-width: none;
      box-shadow: none;
      border: none;
      border-radius: 0;
      padding: 0 0 12px 12px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      display: none;
    }
    .nav-item--dropdown.nav-sub-open .nav-dropdown { display: block; }
    .nav-item--dropdown:hover .nav-dropdown { display: none; }
    .nav-item--dropdown.nav-sub-open:hover .nav-dropdown { display: block; }
    .nav-item--dropdown:focus-within .nav-dropdown { display: none; }
    .nav-item--dropdown.nav-sub-open:focus-within .nav-dropdown { display: block; }
  }

  @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: 72px;
    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(48px, 8vw, 88px) clamp(20px, 5vw, 48px) clamp(32px, 5vw, 56px);
    min-height: min(52vh, 420px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  .page-sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(125deg, rgba(10, 25, 41, 0.92) 0%, rgba(21, 58, 92, 0.78) 45%, rgba(10, 25, 41, 0.88) 100%),
      url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
  }
  .page-sub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse 90% 70% at 90% 20%, rgba(232, 137, 11, 0.18), transparent 55%),
      radial-gradient(ellipse 60% 50% at 10% 80%, rgba(93, 95, 239, 0.15), transparent 50%);
    pointer-events: none;
  }
  .page-sub-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.9s 0.1s both;
  }
  .page-sub-lead {
    font-size: 1.08rem;
    opacity: 0.95;
    max-width: 720px;
    line-height: 1.65;
    position: relative;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
    animation: fadeUp 0.9s 0.22s both;
  }
  .page-sub-content {
    max-width: 840px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px) clamp(18px, 4vw, 40px) clamp(48px, 6vw, 80px);
  }
  .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); }

  .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: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 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);
  }
  .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);
  }

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

  @media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .page-sub-hero::before {
      animation: none;
      transform: none;
    }
    .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;
    }
    .page-sub-hero h1,
    .page-sub-lead {
      animation: none;
      opacity: 1;
    }
    .testimonials-track { animation: none; }
    .ticker-track { animation: none; }
  }
