
    /* ══════════════════════════════════════════════════════
      VARIABLES & RESET (mobile-first)
    ══════════════════════════════════════════════════════ */
    :root {
      --gold: #C9A96E;
      --gold-light: #E8C87A;
      --ink: #1A1A2E;
      --ink2: #0F0F1A;
      --bg: #0d0d1a;
      --black: #060610;
      --white: #fff;
      --cream: #FAF8F3;
      --gray-100: #F0EEE8;
      --gray-300: #C8C4B8;
      --gray-500: #7A7468;
      --orange: #E87740;
      --orange-pale: #FFF0E8;
      --navy: #0B2545;
      --navy-dark: #06172D;
      --navy-mid: #1A3A5C;
      --shadow-sm: 0 2px 12px rgba(11,37,69,0.07);
      --shadow-md: 0 8px 40px rgba(11,37,69,0.13);
      --shadow-lg: 0 24px 80px rgba(11,37,69,0.18);
      --shadow-orange: 0 8px 32px rgba(230,81,0,0.30);
      --radius: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      --nav-h: 74px;
      --tick-h: 38px;
      --top-h: 37px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--white);
      background: var(--bg);
      overflow-x: hidden;
      line-height: 1.65;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--ink);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px;
    }

    /* ══════════════════════════════════════════════════════
      LOADING BAR
    ══════════════════════════════════════════════════════ */
    #loadingBar,
    #progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--gold), var(--orange));
      z-index: 9999;
      transition: width 0.2s ease, opacity 0.4s ease;
    }

    /* ══════════════════════════════════════════════════════
      3 BARRES STICKY (mobile-first)
    ══════════════════════════════════════════════════════ */
    .three-bars-wrapper {
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    }

    /* BARRE 1 : TICKER */
    .ticker-bar {
      background: linear-gradient(90deg, var(--ink2) 0%, var(--ink) 100%);
      color: var(--white);
      padding: 6px 0;
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    }

    .ticker-inner {
      display: flex;
      align-items: center;
    }

    .ticker-label {
      background: var(--gold);
      color: var(--ink);
      font-family: 'Poppins', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 12px;
      white-space: nowrap;
      margin-right: 12px;
      flex-shrink: 0;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
    }

    .ticker-scroll {
      flex: 1;
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      gap: 32px;
      white-space: nowrap;
      animation: ticker 40s linear infinite;
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    .ticker-item {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.3px;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.88);
    }

    .ticker-item::before {
      content: "◆";
      color: var(--gold);
      font-size: 6px;
    }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* BARRE 2 : TOP BAR (masquée sur mobile) */
    .top-bar {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.55);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      padding: 6px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      display: none;
    }

    .top-left {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .top-right {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .top-bar a {
      color: rgba(255, 255, 255, 0.55);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .top-bar a:hover {
      color: var(--gold);
    }

    .top-date {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--gold);
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 0.5px;
    }

    .top-lang {
      display: flex;
      gap: 4px;
    }

    .top-lang button {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 600;
      cursor: pointer;
      padding: 2px 6px;
      border-radius: 3px;
      letter-spacing: 1px;
      transition: var(--transition);
    }

    .top-lang button.active,
    .top-lang button:hover {
      background: var(--gold);
      color: var(--ink);
    }

    /* BARRE 3 : NAVBAR (mobile-first) */
    .navbar {
      background: #ffffff;
      border-bottom: 3px solid var(--gold);
      position: relative;
      z-index: 10;
      box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 55px;
      gap: 0;
      max-width: 1440px;
      margin: 0 auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
    }

    .nav-logo img {
      width: auto;
      height: 32px;
    }

    .nav-menu {
      display: none;
      align-items: stretch;
      gap: 0;
      margin-left: auto;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 12px;
      height: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: rgba(26, 26, 46, 0.68);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
      transition: var(--transition);
      border-bottom: 3px solid transparent;
      margin-bottom: -3px;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .nav-link svg {
      width: 11px;
      height: 11px;
      transition: transform 0.2s;
      opacity: 0.45;
    }

    .nav-item:hover .nav-link svg {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #ffffff;
      border: 1px solid rgba(201, 169, 110, 0.22);
      border-top: 3px solid var(--gold);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: var(--transition);
      z-index: 50;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
    }

    .nav-item:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      color: rgba(26, 26, 46, 0.65);
      font-weight: 500;
      border-left: 3px solid transparent;
      transition: var(--transition);
    }

    .nav-dropdown a:hover {
      color: var(--gold);
      background: rgba(201, 169, 110, 0.08);
      border-left-color: var(--gold);
      padding-left: 22px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 8px;
      padding-left: 8px;
    }

    /* Boutons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border-radius: 50px;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
    }

    .btn-outline {
      border: 2px solid var(--gold);
      color: var(--gold);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--ink);
    }

    .btn-primary {
      background: var(--gold);
      color: var(--ink);
      border: 2px solid var(--gold);
      font-weight: 800;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-sm {
      padding: 6px 12px;
      font-size: 10px;
    }

    /* Burger (visible sur mobile) */
    .n-burger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
      border: none;
      background: none;
    }

    .n-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* MOBILE MENU */
    .n-mobile {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 85%;
      max-width: 300px;
      background: var(--ink2);
      z-index: 300;
      padding: 70px 24px 28px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      border-left: 1px solid rgba(201, 169, 110, 0.15);
      display: block;
    }

    .n-mobile.open {
      transform: translateX(0);
    }

    .n-mob-link {
      display: block;
      color: var(--white);
      font-weight: 600;
      font-size: 14px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .n-mob-sub {
      padding-left: 16px;
      margin-bottom: 4px;
    }

    .n-mob-link2 {
      display: block;
      color: rgba(255, 255, 255, 0.55);
      font-size: 13px;
      padding: 8px 0;
      transition: var(--transition);
    }

    .n-mob-link2:hover {
      color: var(--gold);
    }

    .n-mob-close {
      position: absolute;
      top: 18px;
      right: 20px;
      font-size: 22px;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ══════════════════════════════════════════════════════
      SECTIONS (mobile-first)
    ══════════════════════════════════════════════════════ */
    section {
      padding: 50px 0;
    }

    /* ── CONTAINER ── */
    .container{max-width:1440px;margin:0 auto;padding:0 16px;}

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: '';
      height: 1.5px;
      background: var(--gold);
      width: 24px;
    }

    .s-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 16px;
    }

    .s-title em {
      font-style: italic;
      color: var(--gold);
    }

    .s-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      max-width: 600px;
      margin-bottom: 32px;
    }

    /* Reveal */
    .rv {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .rv.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 { transition-delay: 0.05s; }
    .d2 { transition-delay: 0.12s; }
    .d3 { transition-delay: 0.2s; }
    .d4 { transition-delay: 0.28s; }

    /* HERO (mobile-first) */
    #hero {
      position: relative;
      min-height: 80vh;
      overflow: hidden;
    }

    .h-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .h-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.45;
    }

    .h-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0B2545 0%, #0d1b2a 40%, #1A3A5C 100%);
      z-index: -1;
    }

    .h-ov1 {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(13, 13, 26, 0.92) 0%, rgba(13, 13, 26, 0.65) 55%, rgba(201, 169, 110, 0.06) 100%);
    }

    .h-ov2 {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at bottom, rgba(201, 169, 110, 0.07) 0%, transparent 60%);
    }

    .h-content {
      position: relative;
      z-index: 2;
      padding: 60px 20px;
      max-width: 100%;
    }

    .h-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.3);
      border-radius: 50px;
      padding: 5px 12px;
      margin-bottom: 20px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .h-bdot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.5); }
    }

    .h-title {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 16px;
    }

    .h-title em {
      font-style: italic;
      color: var(--gold);
    }

    .h-typed-wrap {
      min-height: 60px;
      display: flex;
      align-items: flex-start;
    }

    .h-typed {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 1.15;
      color: var(--gold);
      font-style: italic;
      display: inline;
    }

    .h-cursor {
      display: inline-block;
      width: 2px;
      height: 0.9em;
      background: var(--gold);
      margin-left: 3px;
      vertical-align: text-bottom;
      border-radius: 1px;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .h-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 100%;
    }

    .h-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .btn-p {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      font-weight: 700;
      font-size: 12px;
      transition: var(--transition);
      border: 2px solid var(--gold);
    }

    .btn-p:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
    }

    .btn-g {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: transparent;
      color: var(--white);
      border-radius: 50px;
      font-weight: 600;
      font-size: 12px;
      transition: var(--transition);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-g:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .h-stats {
      display: flex;
      gap: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
    }

    .h-stat {
      text-align: center;
    }

    .h-snum {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--gold);
    }

    .h-slabel {
      font-size: 9px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 4px;
    }

    .h-scroll {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
    }

    .h-scroll-line {
      width: 1px;
      height: 30px;
      background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
      animation: scrollAnim 1.8s ease-in-out infinite;
    }

    @keyframes scrollAnim {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* VUE D'ENSEMBLE */
    #vue-ensemble {
      background: var(--black);
    }

    .vu-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    .vu-img-wrap {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .vu-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: var(--radius-xl);
    }

    .vu-badge {
      position: absolute;
      bottom: -12px;
      right: 16px;
      background: var(--gold);
      color: var(--ink);
      border-radius: var(--radius-lg);
      padding: 12px 18px;
      box-shadow: var(--shadow-orange);
    }

    .vu-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      display: block;
    }

    .vu-badge-lbl {
      font-size: 10px;
      font-weight: 600;
      margin-top: 2px;
      opacity: 0.8;
    }

    .vu-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 32px;
    }

    .vu-stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 12px 16px;
    }

    .vu-stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
    }

    .vu-stat-l {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 3px;
      letter-spacing: 0.5px;
    }

    .vu-list {
      margin-bottom: 28px;
    }

    .vu-list li {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .vu-list li::before {
      content: "✦";
      color: var(--gold);
      font-size: 8px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* MODÈLE ASK */
    #modele {
      background: var(--bg);
    }

    .mo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 40px;
    }

    .mo-card {
      background: var(--black);
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .mo-card:hover {
      background: rgba(201, 169, 110, 0.05);
    }

    .mo-bg-l {
      position: absolute;
      top: -20px;
      right: -10px;
      font-family: 'Playfair Display', serif;
      font-size: 100px;
      font-weight: 900;
      color: rgba(201, 169, 110, 0.04);
      line-height: 1;
      pointer-events: none;
    }

    .mo-pill {
      background: rgba(201, 169, 110, 0.12);
      border: 1px solid rgba(201, 169, 110, 0.25);
      border-radius: 50px;
      padding: 3px 12px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-block;
      margin-bottom: 14px;
    }

    .mo-letter {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }

    .mo-word {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .mo-desc {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .mo-list {
      margin-bottom: 16px;
    }

    .mo-list li {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.5);
      padding: 6px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mo-list li::before {
      content: "→";
      color: var(--gold);
      font-size: 9px;
    }

    .mo-goal {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      font-style: italic;
    }

    /* INFRASTRUCTURES */
    #infrastructures {
      background: var(--ink2);
    }

    .inf-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .inf-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      transition: var(--transition);
    }

    .inf-card:hover {
      border-color: rgba(201, 169, 110, 0.3);
      background: rgba(201, 169, 110, 0.05);
      transform: translateY(-4px);
    }

    .inf-ico {
      font-size: 28px;
      display: block;
      margin-bottom: 14px;
    }

    .inf-title {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .inf-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* NOS ESPACES */
    .esp-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .esp-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      transition: var(--transition);
    }

    .esp-card:hover {
      background: rgba(201, 169, 110, 0.05);
      border-color: rgba(201, 169, 110, 0.25);
      transform: translateY(-4px);
    }

    .esp-ico {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .esp-title {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .esp-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .campus-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    .campus-card {
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.07);
      transition: var(--transition);
    }

    .campus-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .campus-img-wrap {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: linear-gradient(135deg, #0B2545, #1A3A5C);
    }

    .campus-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .campus-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--gold);
      color: var(--ink);
      font-family: 'Poppins', sans-serif;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
    }

    .campus-info {
      padding: 20px;
    }

    .campus-name {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .campus-addr {
      font-size: 12px;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .campus-hours {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .campus-hour-row {
      display: flex;
      justify-content: space-between;
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.55);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding-bottom: 4px;
    }

    /* FORMATIONS */
    #formations {
      background: var(--bg);
    }

    .p-intro {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }

    .p-num {
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      font-weight: 900;
      color: rgba(201, 169, 110, 0.12);
      line-height: 1;
    }

    .p-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      background: rgba(255, 255, 255, 0.05);
    }

    .p-card {
      background: var(--ink2);
      padding: 24px 20px;
      position: relative;
      transition: var(--transition);
      cursor: pointer;
    }

    .p-card:hover {
      background: rgba(201, 169, 110, 0.08);
    }

    .p-arr {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 16px;
      color: var(--gold);
      opacity: 0;
      transition: var(--transition);
    }

    .p-card:hover .p-arr {
      opacity: 1;
    }

    .p-icon {
      font-size: 24px;
      display: block;
      margin-bottom: 10px;
    }

    .p-num2 {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
    }

    .p-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin: 6px 0 12px;
    }

    .p-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .p-tag {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 2px 8px;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* FORMATIONS FLASH */
    #flash {
      background: var(--ink);
    }

    .fl-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }

    .fl-courses {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .fl-course {
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.25);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
    }

    .fl-feats {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }

    .fl-feat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 18px 16px;
    }

    .fl-feat-ico {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .fl-feat-t {
      font-weight: 700;
      font-size: 13px;
      color: var(--white);
      margin-bottom: 5px;
    }

    .fl-feat-d {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .fl-testi {
      background: rgba(201, 169, 110, 0.07);
      border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 18px 20px;
    }

    .fl-testi-q {
      font-style: italic;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .fl-testi-auth {
      font-size: 10px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    /* VACANCES CRÉATIVES */
    #vacances {
      background: var(--bg);
    }

    .vc-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    .vc-activities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 30px;
    }

    .vc-act-card {
      border-radius: var(--radius-md);
      padding: 16px 12px;
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .vc-act-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    }

    .vc-act-ico {
      font-size: 24px;
      margin-bottom: 8px;
      display: block;
    }

    .vc-act-t {
      font-weight: 700;
      font-size: 12px;
      color: #fff;
      margin-bottom: 3px;
    }

    .vc-act-d {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.4;
    }

    /* Couleurs activités */
    .vc-a1 { background: linear-gradient(135deg, #1a0533, #3b0f6e); border-color: rgba(139, 92, 246, .35); }
    .vc-a2 { background: linear-gradient(135deg, #0a1d38, #0e3872); border-color: rgba(59, 130, 246, .35); }
    .vc-a3 { background: linear-gradient(135deg, #0b2010, #1a4020); border-color: rgba(34, 197, 94, .35); }
    .vc-a4 { background: linear-gradient(135deg, #291200, #4d2400); border-color: rgba(249, 115, 22, .35); }
    .vc-a5 { background: linear-gradient(135deg, #261900, #4a3200); border-color: rgba(234, 179, 8, .35); }
    .vc-a6 { background: linear-gradient(135deg, #2a0d22, #4d1a3d); border-color: rgba(236, 72, 153, .35); }
    .vc-a7 { background: linear-gradient(135deg, #002626, #004d4d); border-color: rgba(20, 184, 166, .35); }
    .vc-a8 { background: linear-gradient(135deg, #10002b, #200055); border-color: rgba(99, 102, 241, .35); }
    .vc-a9 { background: linear-gradient(135deg, #280b0b, #4d1515); border-color: rgba(239, 68, 68, .35); }
    .vc-a10 { background: linear-gradient(135deg, #001828, #002e50); border-color: rgba(14, 165, 233, .35); }
    .vc-a11 { background: linear-gradient(135deg, #111e03, #203806); border-color: rgba(132, 204, 22, .35); }
    .vc-a12 { background: linear-gradient(135deg, #1f1000, #3d2200); border-color: rgba(217, 119, 6, .35); }

    /* Tranches d'âge */
    .vc-ages-wrap {
      margin-top: 40px;
    }

    .vc-ages-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 20px;
    }

    .vc-ages-title em {
      font-style: italic;
      color: var(--gold);
    }

    .vc-ages-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .vc-age-card {
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .vc-age-card:hover {
      transform: translateY(-5px);
    }

    .vca1 { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%); }
    .vca2 { background: linear-gradient(135deg, #f7b731 0%, #e0541b 100%); }
    .vca3 { background: linear-gradient(135deg, #0652DD 0%, #1289A7 100%); }
    .vca4 { background: linear-gradient(135deg, #6ab04c 0%, #1e8449 100%); }

    .vc-age-range {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 5px;
    }

    .vc-age-prog {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 10px;
    }

    .vc-age-desc {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.5;
    }

    /* CERTIFICATIONS */
    #certifications {
      background: var(--ink);
    }

    .cert-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .cert-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      text-align: center;
      transition: var(--transition);
    }

    .cert-card:hover {
      border-color: rgba(201, 169, 110, 0.4);
      transform: translateY(-4px);
    }

    .cert-abbr {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .cert-abbr-small {
      font-size: 18px;
    }

    .cert-featured {
      border-color: rgba(201, 169, 110, 0.4) !important;
      background: rgba(201, 169, 110, 0.06) !important;
    }

    .cert-soon {
      opacity: 0.65;
    }

    .cert-badge-soon {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 2px 6px;
      border-radius: 50px;
      vertical-align: middle;
      margin-left: 5px;
      text-transform: uppercase;
    }

    .cert-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .cert-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .cert-levels {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-top: 48px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .cert-level {
      flex: 1;
      text-align: center;
      padding: 22px 10px;
      background: rgba(255,255,255,0.03);
      border-right: 1px solid rgba(255,255,255,0.07);
      display: flex; flex-direction: column; gap: 6px;
    }

    .cert-level:last-child {
      border-bottom: none;
    }

    .cert-level-gold {
      background: rgba(201, 169, 110, 0.1);
    }

    .cert-dur {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 800;
      color: var(--gold);
    }

    .cert-lbl {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
    }

    /* GARANTIES */
    #garanties {
      background: var(--black);
    }

    .ga-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 40px;
    }

    .ga-item {
      background: var(--bg);
      padding: 28px 24px;
      transition: var(--transition);
      position: relative;
    }

    .ga-item:hover {
      background: rgba(201, 169, 110, 0.05);
    }

    .ga-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: var(--transition);
    }

    .ga-item:hover::before {
      transform: scaleX(1);
    }

    .ga-ico {
      font-size: 32px;
      margin-bottom: 14px;
    }

    .ga-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .ga-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* FORMATEURS */
    #formateurs {
      background: var(--bg);
    }

    .fo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .fo-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
    }

    .fo-card:hover {
      border-color: rgba(201, 169, 110, 0.3);
      transform: translateY(-4px);
    }

    .fo-avatar {
      height: 220px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--ink) 0%, var(--navy-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fo-avatar-initials {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--gold);
      position: relative;
      z-index: 1;
    }

    .fo-avatar img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.08);
      transition: filter 0.5s ease, transform 0.55s ease;
    }

    .fo-card:hover .fo-avatar img {
      filter: grayscale(0%) contrast(1);
      transform: scale(1.05);
    }

    .fo-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      padding: 3px 10px;
      font-size: 9px;
      font-weight: 700;
      z-index: 2;
    }

    .fo-body {
      padding: 18px;
    }

    .fo-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .fo-role {
      font-size: 11px;
      color: var(--gold);
      margin-bottom: 6px;
      font-weight: 600;
    }

    .fo-spec {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    /* RÉSEAU */
    #reseau {
      background: var(--ink);
    }

    .res-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 40px;
    }

    .res-stat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      padding: 14px 16px;
    }

    .res-stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--gold);
    }

    .res-stat-l {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 3px;
    }

    .res-logos {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 40px;
      margin-bottom: 32px;
    }

    .res-logo {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70px;
      transition: var(--transition);
    }

    .res-logo:hover {
      border-color: rgba(201, 169, 110, 0.3);
      background: rgb(253, 251, 251);
    }

    .res-logo img {
      max-height: 40px;
      max-width: 100%;
      object-fit: contain;
      filter: brightness(0.7) grayscale(1);
      transition: var(--transition);
    }

    .res-logo:hover img {
      filter: brightness(1) grayscale(0);
    }

    /* TÉMOIGNAGES */
    #temoignages {
      background: var(--bg);
    }

    .testi-wrap {
      overflow: hidden;
      margin-top: 40px;
    }

    .testi-track {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .testi-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: 28px;
      flex: 1;
      min-width: 260px;
      transition: var(--transition);
    }

    .testi-card:hover {
      border-color: rgba(201, 169, 110, 0.3);
      transform: translateY(-4px);
    }

    .testi-q-mark {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      color: rgba(201, 169, 110, 0.15);
      line-height: 0.7;
      display: block;
      margin-bottom: 12px;
    }

    .testi-text {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
      background: rgba(201, 169, 110, 0.15);
      color: var(--gold);
    }

    .testi-name {
      font-weight: 700;
      font-size: 13px;
      color: var(--white);
    }

    .testi-role {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
    }

    .testi-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 10px;
    }

    .testi-star {
      color: var(--gold);
      font-size: 12px;
    }

    /* FAQ */
    #faq {
      background: var(--ink);
    }

    .faq-cats {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 20px;
    }

    .faq-cat {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      transition: var(--transition);
      cursor: pointer;
    }

    .faq-cat.active,
    .faq-cat:hover {
      background: var(--gold);
      color: var(--ink);
      border-color: var(--gold);
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      margin-bottom: 10px;
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item.open {
      border-color: rgba(201, 169, 110, 0.3);
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 18px;
      cursor: pointer;
      font-weight: 600;
      font-size: 13px;
      color: var(--white);
      gap: 12px;
    }

    .faq-icon {
      font-size: 18px;
      color: var(--gold);
      flex-shrink: 0;
      transition: var(--transition);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      padding: 0 18px 14px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      display: none;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      background: #25D366;
      color: var(--white);
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      transition: var(--transition);
    }

    .wa-btn:hover {
      background: #128C7E;
      transform: translateY(-1px);
    }

    /* INSCRIPTION */
    #inscription {
      background: var(--black);
      padding: 50px 20px;
    }

    .insc-section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .inv-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .inv-card {
      padding: 36px 28px;
      background: var(--ink2);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .inv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      transition: var(--transition);
      transform: scaleX(0);
    }

    .inv-card:hover::before {
      transform: scaleX(1);
    }

    .inv-card-insc::before {
      background: var(--gold);
    }

    .inv-card-flash::before {
      background: var(--orange);
    }

    .inv-card-vacances::before {
      background: #42A5F5;
    }

    .inv-card:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .inv-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
    }

    .inv-icon-gold {
      background: rgba(201, 169, 110, 0.12);
    }

    .inv-icon-orange {
      background: rgba(232, 119, 64, 0.12);
    }

    .inv-icon-blue {
      background: rgba(66, 165, 245, 0.12);
    }

    .inv-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .inv-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .inv-card ul {
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .inv-card ul li {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .inv-card ul li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .inv-card-flash ul li::before {
      background: var(--orange);
    }

    .inv-card-vacances ul li::before {
      background: #42A5F5;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      border: 2px solid var(--gold);
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 12px;
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-navy {
      background: var(--navy);
      color: var(--white);
      border: 2px solid var(--navy);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 12px;
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-navy:hover {
      background: var(--navy-mid);
    }

    /* CONTACT */
    #contact {
      background: var(--black);
    }

    .co-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }

    .co-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .co-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .co-ico {
      font-size: 18px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .co-lbl {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .co-val {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
    }

    .co-form-box {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-xl);
      padding: 32px 24px;
    }

    .co-form-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }

    .co-form-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 24px;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .f-group {
      margin-bottom: 16px;
    }

    .f-label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .f-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 10px 14px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      transition: var(--transition);
    }

    .f-input:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.05);
    }

    .f-input::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    .f-input option {
      background: var(--ink2);
    }

    /* FOOTER */
    footer {
      background: var(--ink2);
      padding: 48px 20px 0;
    }

    .foot-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .foot-brand p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.7;
      margin: 12px 0 16px;
      max-width: 100%;
    }

    .foot-col h4 {
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .foot-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .foot-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      transition: var(--transition);
    }

    .foot-links a:hover {
      color: var(--gold);
    }

    .foot-nav-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .foot-nav-bar a {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.3);
      transition: var(--transition);
    }

    .foot-nav-bar a:hover {
      color: var(--gold);
    }

    .foot-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 20px 0;
      text-align: center;
    }

    .foot-copy {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.2);
    }

    .foot-quote {
      font-size: 10px;
      font-style: italic;
      color: rgba(201, 169, 110, 0.3);
    }

    .f-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--gold);
    }

    .foot-btns {
      display: flex;
      gap: 10px;
    }

    .foot-btn {
      padding: 8px 16px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }

    .fb-insc {
      background: rgba(201, 169, 110, 0.1);
      color: var(--gold);
      border: 1px solid rgba(201, 169, 110, 0.22);
    }

    .fb-insc:hover {
      background: var(--gold);
      color: var(--ink);
    }

    .foot-minefop {
      font-size: 10px;
      color: rgba(201, 169, 110, 0.4);
      letter-spacing: 1px;
    }

    /* STICKY FLOATS */
    #btt {
      position: fixed;
      bottom: 16px;
      right: 16px;
      z-index: 300;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
    }

    .btn-download-sticky {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      text-decoration: none;
    }

    .btn-download-sticky:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-fb-sticky {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: #1877F2;
      color: var(--white);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 28px rgba(24, 119, 242, 0.3);
      transition: var(--transition);
      text-decoration: none;
    }

    .btn-fb-sticky:hover {
      background: #0e5fc7;
      transform: translateY(-2px);
    }

    /* MODALS */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
      z-index: 500;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(12px);
      padding: 20px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-box {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 32px 24px;
      max-width: 500px;
      width: 100%;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 20px;
      cursor: pointer;
      color: var(--gray-500);
      transition: var(--transition);
    }

    .modal-close:hover {
      color: var(--orange);
    }

    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .modal-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: #4A5578;
      margin-bottom: 24px;
    }

    .modal-group {
      margin-bottom: 16px;
    }

    .modal-group label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      color: #4A5578;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .modal-group input,
    .modal-group select,
    .modal-group textarea {
      width: 100%;
      border: 1.5px solid #DDE1EA;
      border-radius: var(--radius-md);
      padding: 10px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      color: var(--navy);
      transition: var(--transition);
    }

    .modal-group input:focus,
    .modal-group select:focus,
    .modal-group textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .modal-group textarea {
      resize: none;
      height: 80px;
    }

    .modal-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .btn-gold-modal {
      background: var(--gold);
      color: var(--ink);
      border: 2px solid var(--gold);
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 11px 24px;
      border-radius: 50px;
      font-size: 12px;
      transition: var(--transition);
      cursor: pointer;
      width: 100%;
      justify-content: center;
    }

    .btn-gold-modal:hover {
      background: var(--gold-light);
    }

    /* PROGRAMME MODAL */
    .prog-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.86);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(16px);
      padding: 20px;
    }

    .prog-modal-overlay.open {
      display: flex;
    }

    .prog-modal-box {
      background: var(--ink2);
      border: 1px solid rgba(201, 169, 110, 0.22);
      border-top: 4px solid var(--gold);
      border-radius: var(--radius-xl);
      padding: 32px 24px;
      max-width: 560px;
      width: 100%;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .prog-modal-box::-webkit-scrollbar {
      width: 4px;
    }

    .prog-modal-box::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px;
    }

    .prog-modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 22px;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.35);
      transition: var(--transition);
      background: none;
      border: none;
      line-height: 1;
    }

    .prog-modal-close:hover {
      color: var(--gold);
    }

    .pm-icon {
      font-size: 44px;
      display: block;
      margin-bottom: 14px;
    }

    .pm-num {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .pm-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 5px;
    }

    .pm-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.42);
      margin-bottom: 24px;
      font-style: italic;
    }

    .pm-section {
      margin-bottom: 20px;
    }

    .pm-section-h {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pm-section-h::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(201, 169, 110, 0.18);
    }

    .pm-section p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.7;
    }

    .pm-list {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .pm-list li {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.58);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }

    .pm-list li::before {
      content: '→';
      color: var(--gold);
      font-size: 10px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pm-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }

    .pm-tag {
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.25);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: 10px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .pm-cta {
      margin-top: 24px;
    }

    .pm-cta a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      padding: 10px 22px;
      font-weight: 800;
      font-size: 12px;
      transition: var(--transition);
      text-decoration: none;
    }

    .pm-cta a:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    /* SEARCH OVERLAY */
    .search-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.93);
      z-index: 600;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding-top: 80px;
      backdrop-filter: blur(12px);
    }

    .search-overlay.open {
      display: flex;
    }

    .search-box {
      width: 100%;
      max-width: 90%;
      position: relative;
    }

    .search-input {
      width: 100%;
      padding: 14px 50px 14px 18px;
      font-size: 16px;
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      border: none;
      border-radius: var(--radius-lg);
      color: var(--navy);
    }

    .search-input:focus {
      outline: none;
    }

    .search-close {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      cursor: pointer;
      color: var(--gray-500);
    }

    .search-close:hover {
      color: var(--orange);
    }

    .search-suggs {
      background: var(--white);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      overflow: hidden;
      margin-top: 4px;
    }

    .search-sugg {
      padding: 10px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: #4A5578;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-sugg:hover {
      background: #F7F8FA;
      color: var(--orange);
    }

    .search-sugg::before {
      content: '🔍';
      font-size: 12px;
    }

    /* SUCCESS MODAL */
    .success-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
      z-index: 700;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .success-modal.open {
      display: flex;
    }

    .success-box {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 40px 28px;
      max-width: 420px;
      width: 100%;
      text-align: center;
    }

    .success-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .success-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .success-msg {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: #4A5578;
      line-height: 1.7;
    }

    /* AGENDA (page dédiée) */
    .ask-agenda-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 40px;
    }

    .ask-cal-wrap {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      padding: 20px;
      position: sticky;
      top: 20px;
    }

    .ask-cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .ask-cal-month {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }

    .ask-cal-nav {
      display: flex;
      gap: 5px;
    }

    .ask-cal-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: var(--radius);
      padding: 4px 8px;
      cursor: pointer;
      transition: var(--transition);
      font-size: 11px;
    }

    .ask-cal-btn:hover {
      background: var(--gold);
      color: var(--ink);
      border-color: var(--gold);
    }

    .ask-cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 6px;
    }

    .ask-cal-weekday {
      text-align: center;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--gold);
      padding: 3px 0;
    }

    .ask-cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .ask-cal-day {
      text-align: center;
      font-size: 11px;
      padding: 5px 2px;
      border-radius: 6px;
      cursor: pointer;
      transition: var(--transition);
      color: rgba(255, 255, 255, 0.7);
    }

    .ask-cal-day:hover {
      background: rgba(201, 169, 110, 0.15);
      color: var(--gold);
    }

    .ask-cal-day.today {
      background: var(--gold);
      color: var(--ink);
      font-weight: 700;
    }

    .ask-cal-day.has-event {
      border-bottom: 2px solid var(--gold);
    }

    .ask-cal-day.other-month {
      color: rgba(255, 255, 255, 0.2);
    }

    .ask-cal-legend {
      margin-top: 12px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .ask-legend-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
    }

    .ask-legend-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }

    /* Add event form */
    .ask-add-event {
      background: rgba(201, 169, 110, 0.06);
      border: 1px solid rgba(201, 169, 110, 0.2);
      border-radius: var(--radius-md);
      padding: 16px;
      margin-top: 16px;
    }

    .ask-add-event h4 {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .ask-field {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 8px 10px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      width: 100%;
      margin-bottom: 8px;
      transition: var(--transition);
    }

    .ask-field:focus {
      outline: none;
      border-color: var(--gold);
    }

    .ask-field::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .ask-field option {
      background: var(--ink2);
    }

    .ask-add-btn {
      background: var(--gold);
      color: var(--ink);
      border: none;
      border-radius: var(--radius);
      padding: 8px 14px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
    }

    .ask-add-btn:hover {
      background: var(--gold-light);
    }

    .ask-events-panel {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .ask-tabs {
      display: flex;
      gap: 2px;
      margin-bottom: 20px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 50px;
      padding: 3px;
      width: fit-content;
      flex-wrap: wrap;
    }

    .ask-tab {
      padding: 7px 16px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      color: rgba(255, 255, 255, 0.45);
      border: none;
      background: transparent;
      letter-spacing: 0.3px;
    }

    .ask-tab.active {
      background: var(--gold);
      color: var(--ink);
    }

    .ask-panel {
      display: none;
    }

    .ask-panel.active {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .ask-event-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      padding: 16px 18px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: var(--transition);
    }

    .ask-event-card:hover {
      border-color: rgba(201, 169, 110, 0.3);
      background: rgba(201, 169, 110, 0.04);
    }

    .ask-ev-photo {
      width: 60px;
      height: 60px;
      border-radius: var(--radius-md);
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .ask-ev-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-md);
    }

    .ask-date-box {
      background: var(--gold);
      color: var(--ink);
      border-radius: var(--radius-md);
      padding: 8px 12px;
      text-align: center;
      flex-shrink: 0;
      min-width: 50px;
    }

    .ask-date-day {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 900;
      line-height: 1;
    }

    .ask-date-mon {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .ask-ev-body {
      flex: 1;
    }

    .ask-ev-type {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
      display: block;
    }

    .ask-ev-title {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }

    .ask-ev-meta {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .btn-sm {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 14px;
      background: rgba(201, 169, 110, 0.12);
      border: 1px solid rgba(201, 169, 110, 0.3);
      border-radius: 50px;
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
    }

    .btn-sm:hover {
      background: var(--gold);
      color: var(--ink);
    }

    /* ══════════════════════════════════════════════════════
      MEDIA QUERIES (Desktop)
    ══════════════════════════════════════════════════════ */
    @media (min-width: 768px) {
      .top-bar {
        display: flex;
      }
      
      .navbar-inner {
        padding: 0 32px;
      }

      .container{padding:0 32px;}

      .nav-logo img {
        height: 36px;
      }
      
      .nav-menu {
        display: flex;
      }
      
      .n-burger {
        display: none;
      }
      
      .n-mobile {
        display: none;
      }
      
      section {
        padding: 70px 0;
      }
      
      .h-content {
        padding: 80px 40px;
        max-width: 700px;
      }
      
      .h-title {
        font-size: 38px;
      }
      
      .h-typed {
        font-size: 38px;
      }
      
      .vu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
      
      .vu-img {
        height: 380px;
      }
      
      .mo-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .inf-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .esp-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .campus-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .p-intro {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
      
      .p-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .fl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
      
      .fl-feats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .vc-activities-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .vc-ages-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .cert-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .cert-levels {
        flex-direction: row;
      }
      
      .cert-level {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        border-bottom: none;
      }
      
      .ga-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .fo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .res-logos {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .res-stats {
        grid-template-columns: repeat(3, 1fr);
      }

      .co-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
      
      .f-row {
        grid-template-columns: 1fr 1fr;
      }
      
      .foot-top {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
      }
      
      .foot-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
      
      .ask-agenda-wrapper {
        grid-template-columns: 340px 1fr;
        gap: 40px;
      }
      
      .inv-cards {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      section {
        padding: 90px 0;
      }
      
      .h-title {
        font-size: 48px;
      }
      
      .h-typed {
        font-size: 48px;
      }
      
      .h-content {
        max-width: 760px;
      }
      
      .s-title {
        font-size: 42px;
      }
      
      .inf-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .esp-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .p-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .vc-activities-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .vc-ages-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .cert-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .ga-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .fo-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .res-logos {
        grid-template-columns: repeat(5, 1fr);
      }
      .res-stats {
        grid-template-columns: repeat(4, 1fr);
      }

    }