
    /* ══════════════════════════════════════════════════════
      VARIABLES & RESET (mobile-first)
    ══════════════════════════════════════════════════════ */
    :root {
      --gold: #C9A96E;
      --gold-light: #E8C87A;
      --gold-l: #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-d: #06172D;
      --navy-mid: #1A3A5C;
      --navy-m: #1A3A5C;
      --green: #1A7A4A;
      --green-l: #22a85f;
      --red: #C0392B;
      --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);
      --shadow-or: 0 8px 32px rgba(230,81,0,0.30);
      --shadow-gold: 0 8px 32px rgba(201,169,110,0.22);
      --radius: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --r: 6px;
      --rm: 12px;
      --rl: 20px;
      --rxl: 28px;
      --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      --t: all 0.3s cubic-bezier(0.4,0,0.2,1);
      --nav-h: 74px;
      --tick-h: 38px;
      --top-h: 37px;
    }

    /* ══════════════════════════════════════════════════════
      GOOGLE TRANSLATE - override iframe/widget
    ══════════════════════════════════════════════════════ */
    #google_translate_element,
    .goog-te-banner-frame,
    .goog-te-gadget,
    .goog-te-balloon-frame,
    .skiptranslate {
      display: none !important;
    }
    body { top: 0 !important; }

    *,
    *::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;
    }

    @media (max-width: 767px) {
      .ticker-track { animation-duration: 22s; }
    }

    .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);
    }

    /* 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: 8px 16px;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      transition: var(--transition);
      cursor: pointer;
      margin-bottom: 6px;
    }

    .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;
      border-top: 1px solid rgba(201, 169, 110, 0.3);
      box-shadow: 0 -6px 32px rgba(201, 169, 110, 0.06);
    }

    .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: '';
      display: inline-block;
      width: 12px;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center/contain;
      vertical-align: middle;
      margin-right: 4px;
    }

    /* 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)
    ══════════════════════════════════════════════════════ */
    /* ══════════════════════════════════════════════════════
      VACANCES CRÉATIVES - tags d'ateliers (index.html.twig)
    ══════════════════════════════════════════════════════ */
    .atelier-tag {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0,0,0,0.05);
      padding: 16px 20px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    .ateliers-grid .atelier-tag {
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      color: #FFFFFF;
      font-weight: 700;
      padding: 18px 15px;
      transition: var(--transition);
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .ateliers-grid .atelier-tag:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    .tag-vert   { background-color: #64a75d; }
    .tag-orange { background-color: #e7a23b; }
    .tag-violet { background-color: #5e5f91; }
    .tag-rouge  { background-color: #d96162; }
    .tag-bleu   { background-color: #2f6a99; }
    .tag-gris   { background-color: #636d8a; }
    .tag-cyan   { background-color: #45b2c6; }
    .tag-rose   { background-color: #d02c67; }
    .tag-bleu-fonce { background-color: #303087; }
    .tag-bleu-clair { background-color: #574e97; }

    /* ══════════════════════════════════════════════════════
      PAGE AGENDA
    ══════════════════════════════════════════════════════ */
    .ag-hero {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
      padding: 80px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }

    .ag-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 16px;
    }

    .ag-hero h1 em { color: var(--gold); font-style: italic; }

    .ag-hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      max-width: 520px;
      margin: 0 auto;
    }

    .ag-main {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 50px 0 80px;
    }

    .ask-events-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .ask-events-grid .ask-event-card { margin-bottom: 0; }

    .ag-footer {
      background: var(--ink2);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px;
      text-align: center;
    }

    .ag-footer a { color: var(--gold); font-weight: 600; }
    .ag-footer p { font-size: 13px; color: rgba(255,255,255,0.35); }

    /* ══════════════════════════════════════════════════════
      PAGE FAQ
    ══════════════════════════════════════════════════════ */
    .faq-hero {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      padding: 80px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }

    .faq-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 16px;
    }

    .faq-hero h1 em { color: var(--gold); font-style: italic; }

    .faq-hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .faq-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 36px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      flex-wrap: wrap;
    }

    .faq-stat { text-align: center; }

    .faq-stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--gold);
    }

    .faq-stat-l {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-top: 2px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 60px 0 100px;
      align-items: start;
    }

    .faq-sidebar { position: static; }

    .sidebar-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 14px;
    }

    .sidebar-divider {
      height: 1px;
      background: rgba(255,255,255,0.06);
      margin: 18px 0;
    }

    .sidebar-cta {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 20px;
      margin-top: 24px;
    }

    .sidebar-cta p {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .faq-search-wrap { margin-bottom: 28px; }

    .faq-search {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 13px 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: var(--transition);
    }

    .faq-search::placeholder { color: rgba(255,255,255,0.3); }

    .faq-search:focus {
      border-color: rgba(201,169,110,0.4);
      background: rgba(201,169,110,0.04);
    }

    .faq-result-count {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }

    .faq-footer {
      background: var(--ink2);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px;
      text-align: center;
    }

    .faq-footer a { color: var(--gold); font-weight: 600; }
    .faq-footer p { font-size: 13px; color: rgba(255,255,255,0.35); }

    .faq-cta-bottom {
      background: linear-gradient(135deg, var(--navy), var(--ink));
      border-radius: var(--radius-xl);
      padding: 50px;
      text-align: center;
      margin: 0 0 60px;
    }

    .faq-cta-bottom h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .faq-cta-bottom h3 em { color: var(--gold); font-style: italic; }

    .faq-cta-bottom p {
      font-size: 15px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }

    /* ══════════════════════════════════════════════════════
      PAGE ÉTUDIANT - Dashboard
    ══════════════════════════════════════════════════════ */

    /* Progress bar étudiant */
    #prog {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--gold), var(--orange));
      z-index: 9999;
      transition: width 0.1s;
    }

    /* Login wall */
    #login-wall {
      min-height: calc(100vh - 130px);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg);
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .login-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06), transparent 50%),
                  radial-gradient(ellipse at 80% 20%, rgba(11,37,69,0.3), transparent 50%);
    }

    .login-box {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 480px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: var(--radius-xl);
      padding: 52px 48px;
      backdrop-filter: blur(20px);
    }

    .login-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 32px;
      justify-content: center;
    }

    .login-ico {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--gold), var(--orange));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: var(--ink);
      box-shadow: var(--shadow-or);
    }

    .login-brand {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
    }

    .login-tag {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .login-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--white);
      text-align: center;
      margin-bottom: 6px;
    }

    .login-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      text-align: center;
      margin-bottom: 28px;
    }

    .divider-gold {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 28px;
    }

    .login-btn {
      width: 100%;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      padding: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      transition: var(--transition);
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .login-btn:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: var(--shadow-gold);
    }

    .login-err {
      background: rgba(192,57,43,0.12);
      border: 1px solid rgba(192,57,43,0.3);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      font-size: 13px;
      color: #e88;
      margin-top: 14px;
      display: none;
      text-align: center;
    }

    .login-err.show { display: block; }

    .login-foot {
      margin-top: 20px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    .login-foot a { color: var(--gold); }

    .demo-box {
      margin-top: 24px;
      padding: 16px;
      background: rgba(201,169,110,0.06);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: var(--radius-md);
    }

    .demo-box p {
      font-size: 10px;
      color: rgba(255,255,255,0.35);
      margin-bottom: 8px;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-align: center;
    }

    .demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

    .demo-item {
      background: rgba(201,169,110,0.08);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: var(--radius);
      padding: 8px 10px;
      cursor: pointer;
      transition: var(--transition);
    }

    .demo-item:hover { background: rgba(201,169,110,0.15); }

    .demo-code {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      color: var(--gold);
      display: block;
      margin-bottom: 2px;
    }

    .demo-name { font-size: 10px; color: rgba(255,255,255,0.5); }

    /* Dashboard layout */
    #dashboard { display: none; min-height: calc(100vh - 130px); }
    .dash-layout { display: flex; min-height: calc(100vh - 130px); }

    .sidebar {
      width: 272px;
      flex-shrink: 0;
      background: var(--black);
      border-right: 1px solid rgba(255,255,255,0.06);
      padding: 28px 0;
      display: flex;
      flex-direction: column;
      position: sticky;
      top: 130px;
      height: calc(100vh - 130px);
      overflow-y: auto;
    }

    .sb-student {
      padding: 0 22px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 16px;
    }

    .sb-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--orange));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 12px;
      box-shadow: var(--shadow-gold);
    }

    .sb-name {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 3px;
    }

    .sb-mat {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      color: var(--gold);
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .sb-prog {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }

    .sb-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(26,122,74,0.15);
      border: 1px solid rgba(26,122,74,0.3);
      border-radius: 50px;
      padding: 3px 12px;
      font-size: 10px;
      font-weight: 600;
      color: #4ade80;
      letter-spacing: 1px;
    }

    .sb-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .sb-nav { flex: 1; padding: 0 10px; }

    .sb-sec {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.22);
      padding: 0 12px;
      margin: 14px 0 5px;
    }

    .sb-link {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 9px 14px;
      border-radius: var(--radius-md);
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      transition: var(--transition);
      cursor: pointer;
      margin-bottom: 2px;
      border: 1px solid transparent;
    }

    .sb-link:hover { background: rgba(255,255,255,0.04); color: var(--white); }

    .sb-link.active {
      background: rgba(201,169,110,0.1);
      border-color: rgba(201,169,110,0.2);
      color: var(--gold);
      font-weight: 600;
    }

    .sb-link .ico { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }

    .sb-link .badge {
      margin-left: auto;
      background: var(--gold);
      color: var(--ink);
      border-radius: 50px;
      font-size: 10px;
      font-weight: 800;
      padding: 1px 8px;
      min-width: 20px;
      text-align: center;
    }

    .badge-alert { background: var(--orange) !important; color: var(--white) !important; }

    .sb-bottom {
      padding: 18px 22px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 16px;
    }

    .sb-logout {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: var(--transition);
      padding: 8px 0;
    }

    .sb-logout:hover { color: var(--orange); }

    .dash-main { flex: 1; overflow: hidden; background: var(--bg); }

    .panel { display: none; padding: 44px; animation: fadeSlide 0.3s ease; }
    .panel.active { display: block; }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .ph { margin-bottom: 36px; }

    .ph-eye {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ph-eye::before { content: ''; height: 1.5px; background: var(--gold); width: 22px; }

    .ph-title {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
    }

    .ph-title em { font-style: italic; color: var(--gold); }
    .ph-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 7px; }

    /* Panel Home */
    .welcome-bar {
      background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(11,37,69,0.2));
      border: 1px solid rgba(201,169,110,0.18);
      border-radius: var(--radius-lg);
      padding: 26px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 20px;
    }

    .welcome-bar h2 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }

    .welcome-bar p { font-size: 13px; color: rgba(255,255,255,0.45); }

    .wn {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 14px 20px;
      text-align: center;
      flex-shrink: 0;
    }

    .wn-lbl {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.28);
      margin-bottom: 3px;
    }

    .wn-val {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
    }

    .wn-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

    .dash-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 32px;
    }

    .stat {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-md);
      padding: 20px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .stat:hover { border-color: rgba(201,169,110,0.22); transform: translateY(-2px); }

    .stat::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent, var(--gold));
    }

    .stat-ico { font-size: 24px; margin-bottom: 10px; }

    .stat-val {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 3px;
    }

    .stat-lbl { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.5px; }
    .stat-trend { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; color: #4ade80; }

    .two-col { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }

    .card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg);
      padding: 26px;
      transition: var(--transition);
    }

    .card-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); }
    .card-lnk { font-size: 12px; color: var(--gold); font-weight: 600; cursor: pointer; }
    .card-lnk:hover { opacity: 0.8; }

    .prog-item { margin-bottom: 16px; }
    .prog-item:last-child { margin-bottom: 0; }
    .prog-lbl { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 7px; }
    .prog-lbl span:first-child { color: rgba(255,255,255,0.65); font-weight: 500; }
    .prog-lbl span:last-child { color: var(--gold); font-weight: 700; }
    .prog-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
    .prog-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 1s ease; }

    .notif-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .notif-item:last-child { border-bottom: none; padding-bottom: 0; }
    .notif-ico { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
    .notif-ico.gold { background: rgba(201,169,110,0.15); }
    .notif-ico.green { background: rgba(74,222,128,0.12); }
    .notif-ico.orange { background: rgba(232,119,64,0.15); }
    .notif-ico.blue { background: rgba(59,130,246,0.12); }
    .notif-body p { font-size: 13px; color: rgba(255,255,255,0.68); margin-bottom: 3px; }
    .notif-body span { font-size: 11px; color: rgba(255,255,255,0.28); }

    .day-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .day-slot { background: linear-gradient(135deg, rgba(11,37,69,0.4), rgba(26,58,92,0.3)); border: 1px solid rgba(11,37,69,0.6); border-radius: var(--radius-md); padding: 18px; }
    .ds-time { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 3px; }
    .ds-name { font-size: 13px; color: var(--white); font-weight: 600; margin-bottom: 2px; }
    .ds-room { font-size: 11px; color: rgba(255,255,255,0.38); }

    /* Panel Filières */
    .fil-search-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
    .fil-search { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 11px 20px; color: var(--white); font-size: 13px; transition: var(--transition); }
    .fil-search:focus { outline: none; border-color: var(--gold); }
    .fil-search::placeholder { color: rgba(255,255,255,0.25); }
    .fil-filter { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 11px 18px; color: rgba(255,255,255,0.6); font-size: 12px; transition: var(--transition); cursor: pointer; white-space: nowrap; }
    .fil-filter.on { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }

    .fil-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .fil-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 20px; transition: var(--transition); cursor: default; }
    .fil-card:hover { border-color: rgba(201,169,110,0.28); transform: translateY(-3px); }
    .fil-code-badge { display: inline-flex; align-items: center; font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 700; background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.25); color: var(--gold); border-radius: var(--radius); padding: 4px 12px; margin-bottom: 12px; }
    .fil-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .fil-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
    .fil-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border-radius: 50px; padding: 2px 10px; border: 1px solid; }
    .tag-minefop { color: #4ade80; background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.2); }
    .tag-carte { color: #60a5fa; background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.2); }
    .tag-dom { color: var(--gold); background: rgba(201,169,110,0.08); border-color: rgba(201,169,110,0.15); }
    .fil-example { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); }

    /* Panel Planning */
    .plan-week { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-bottom: 28px; }
    .plan-day { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); overflow: hidden; }
    .plan-dh { padding: 11px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .plan-dh .pd { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    .plan-dh .pdate { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--white); }
    .plan-dh.today { background: rgba(201,169,110,0.1); }
    .plan-dh.today .pdate { color: var(--gold); }
    .plan-slots { padding: 9px; display: flex; flex-direction: column; gap: 5px; }
    .slot { border-radius: var(--radius); padding: 7px 9px; font-size: 10px; }
    .slot .st { color: rgba(255,255,255,0.38); font-size: 9px; margin-bottom: 1px; }
    .slot .sn { font-weight: 600; color: var(--white); }
    .s-gold  { background: rgba(201,169,110,0.12); border-left: 3px solid var(--gold); }
    .s-blue  { background: rgba(59,130,246,0.1);   border-left: 3px solid #3b82f6; }
    .s-green { background: rgba(74,222,128,0.08);  border-left: 3px solid #4ade80; }
    .s-orange{ background: rgba(232,119,64,0.1);   border-left: 3px solid var(--orange); }
    .s-empty { color: rgba(255,255,255,0.15); font-size: 10px; text-align: center; padding: 8px 0; }

    /* Panel Notes */
    .notes-top { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
    .note-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 26px; text-align: center; transition: var(--transition); }
    .note-card:hover { border-color: rgba(201,169,110,0.18); }
    .note-score { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 900; line-height: 1; margin-bottom: 7px; }
    .sg  { color: var(--gold); }
    .sgr { color: #4ade80; }
    .sb  { color: #60a5fa; }
    .note-sub { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
    .note-det { font-size: 11px; color: rgba(255,255,255,0.32); }
    .nt-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); overflow: hidden; }
    .nt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: center; }
    .nt-row:last-child { border-bottom: none; }
    .nt-row.hd { background: rgba(255,255,255,0.04); }
    .nt-row.hd span { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); }
    .nt-row span { font-size: 13px; color: rgba(255,255,255,0.65); }
    .nt-row span:first-child { font-weight: 600; color: var(--white); }
    .chip { display: inline-block; padding: 3px 11px; border-radius: 50px; font-size: 11px; font-weight: 700; }
    .ch-gold  { background: rgba(201,169,110,0.15); color: var(--gold); }
    .ch-green { background: rgba(74,222,128,0.1);   color: #4ade80; }
    .ch-or    { background: rgba(232,119,64,0.12);  color: var(--orange); }

    /* Panel Documents */
    .docs-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
    .doc-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; display: flex; flex-direction: column; gap: 12px; transition: var(--transition); }
    .doc-card:hover { border-color: rgba(201,169,110,0.22); transform: translateY(-3px); }
    .doc-ico { font-size: 34px; }
    .doc-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--white); }
    .doc-meta { font-size: 12px; color: rgba(255,255,255,0.32); }
    .doc-actions { display: flex; gap: 7px; margin-top: auto; }
    .doc-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px; border-radius: 50px; font-size: 11px; font-weight: 700; transition: var(--transition); cursor: pointer; }
    .db-gold  { background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.25); color: var(--gold); }
    .db-gold:hover { background: var(--gold); color: var(--ink); }
    .db-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
    .db-ghost:hover { border-color: rgba(255,255,255,0.22); color: var(--white); }

    /* Panel Certificat */
    .verif-layout { display: grid; grid-template-columns: 1fr; gap: 30px; }
    .verif-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-xl); padding: 38px; }
    .verif-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
    .verif-box .vs { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 26px; }
    .verif-row { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
    .verif-input { flex: 1; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 13px 17px; color: var(--white); font-size: 14px; letter-spacing: 1px; font-family: 'DM Mono', monospace; transition: var(--transition); min-width: 160px; }
    .verif-input:focus { outline: none; border-color: var(--gold); background: rgba(201,169,110,0.04); }
    .verif-input::placeholder { color: rgba(255,255,255,0.18); font-family: 'DM Sans', sans-serif; letter-spacing: 0; }
    .verif-btn { padding: 13px 22px; background: var(--gold); color: var(--ink); border-radius: var(--radius-md); font-weight: 800; font-size: 13px; transition: var(--transition); white-space: nowrap; }
    .verif-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
    .verif-result { margin-top: 18px; border-radius: var(--radius-lg); padding: 22px; display: none; animation: fadeSlide 0.3s ease; }
    .verif-result.valid { background: rgba(26,122,74,0.12); border: 1px solid rgba(26,122,74,0.3); }
    .verif-result.invalid { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.25); }
    .vr-status { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
    .vr-status.ok { color: #4ade80; }
    .vr-status.ko { color: #f87171; }
    .vr-row { display: flex; gap: 12px; margin-bottom: 9px; flex-wrap: wrap; }
    .vr-lbl { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.32); width: 110px; flex-shrink: 0; padding-top: 2px; }
    .vr-val { font-size: 13px; color: var(--white); font-weight: 500; }
    .qr-area { background: rgba(0,0,0,0.3); border: 2px dashed rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-top: 20px; }
    .qr-area .qi { font-size: 38px; margin-bottom: 10px; }
    .qr-area p { font-size: 13px; color: rgba(255,255,255,0.38); }
    .test-codes { margin-top: 20px; padding: 14px; background: rgba(201,169,110,0.05); border: 1px solid rgba(201,169,110,0.12); border-radius: var(--radius-md); }
    .test-codes p { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 9px; }
    .test-codes-row { display: flex; flex-wrap: wrap; gap: 5px; }
    .tc { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); background: rgba(201,169,110,0.1); padding: 4px 10px; border-radius: 4px; cursor: pointer; transition: var(--transition); }
    .tc:hover { background: rgba(201,169,110,0.2); }

    /* Cert preview */
    .cert-preview { background: var(--white); border-radius: var(--radius-xl); padding: 36px; color: var(--ink); position: relative; overflow: hidden; }
    .cert-preview::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: linear-gradient(90deg, var(--gold), var(--orange)); }
    .cert-wm { position: absolute; bottom: 16px; right: 16px; font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: rgba(201,169,110,0.06); line-height: 1; }
    .cert-logo-row { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
    .cert-logo-ico { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--orange)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 800; color: var(--ink); }
    .cert-logo-text { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--ink); }
    .cert-logo-sub { font-size: 10px; color: #888; letter-spacing: 1px; text-transform: uppercase; }
    .cert-title-label { font-family: 'Playfair Display', serif; font-size: 12px; font-weight: 700; color: #888; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
    .cert-certifie { font-size: 12px; color: #555; margin-bottom: 7px; }
    .cert-preview .cert-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: var(--ink); margin-bottom: 7px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
    .cert-fil-lbl { font-size: 10px; color: #888; letter-spacing: 1px; text-transform: uppercase; margin-top: 13px; margin-bottom: 3px; }
    .cert-fil { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
    .cert-minefop { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,122,74,0.08); border: 1px solid rgba(26,122,74,0.2); border-radius: 50px; padding: 4px 12px; font-size: 10px; color: var(--green); font-weight: 700; }
    .cert-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 18px; }
    .cert-qr-wrap { text-align: center; }
    .cert-qr-wrap p { font-size: 9px; color: #aaa; letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; }
    .cert-sign { text-align: right; }
    .cert-sign-line { border-top: 1.5px solid var(--ink); width: 110px; margin-bottom: 5px; margin-left: auto; }
    .cert-sign-name { font-family: 'Playfair Display', serif; font-size: 12px; font-weight: 700; color: var(--ink); }
    .cert-sign-title { font-size: 10px; color: #888; }
    .cert-code-display { font-size: 10px; color: #aaa; font-family: 'DM Mono', monospace; text-align: center; margin-top: 10px; }

    /* Panel Opportunités */
    .op-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: 50px; padding: 4px; width: fit-content; margin-bottom: 26px; }
    .otab { padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 700; cursor: pointer; transition: var(--transition); color: rgba(255,255,255,0.4); }
    .otab.on { background: var(--gold); color: var(--ink); }
    .op-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
    .op-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 24px; transition: var(--transition); }
    .op-card:hover { border-color: rgba(201,169,110,0.22); transform: translateY(-3px); }
    .op-tag { display: inline-flex; align-items: center; gap: 5px; border-radius: 50px; padding: 3px 11px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
    .ot-stage  { background: rgba(201,169,110,0.12); color: var(--gold); }
    .ot-emploi { background: rgba(74,222,128,0.1);   color: #4ade80; }
    .ot-alumni { background: rgba(59,130,246,0.1);   color: #60a5fa; }
    .op-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
    .op-company { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 7px; }
    .op-detail { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 16px; }
    .op-meta { display: flex; gap: 11px; flex-wrap: wrap; }
    .op-meta span { font-size: 11px; color: rgba(255,255,255,0.32); display: flex; align-items: center; gap: 4px; }
    .op-footer { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
    .btn-postuler { display: inline-flex; align-items: center; gap: 6px; padding: 8px 17px; background: var(--gold); color: var(--ink); border-radius: 50px; font-size: 12px; font-weight: 800; transition: var(--transition); }
    .btn-postuler:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-detail { display: inline-flex; align-items: center; gap: 6px; padding: 8px 17px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); border-radius: 50px; font-size: 12px; font-weight: 600; transition: var(--transition); }
    .btn-detail:hover { border-color: rgba(255,255,255,0.22); color: var(--white); }

    /* Footer étudiant */
    .student-footer { background: var(--ink2); padding: 36px 20px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
    .student-footer .foot-brand { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--gold); margin-bottom: 7px; }
    .student-footer .foot-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
    .foot-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--gold); font-size: 13px; font-weight: 600; transition: var(--transition); }
    .foot-back:hover { gap: 13px; }

    /* FAB WhatsApp */
    #fab-wa { position: fixed; bottom: 28px; right: 28px; z-index: 300; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.35); transition: var(--transition); }
    #fab-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

    /* Public vérif */
    #pub-verif { display: none; min-height: calc(100vh - 130px); background: var(--bg); position: relative; overflow: hidden; }
    #pub-verif::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.05), transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(11,37,69,0.25), transparent 50%); pointer-events: none; }
    .pub-verif-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 60px 40px; }
    .pub-verif-head { text-align: center; margin-bottom: 44px; }
    .pub-verif-head .pvi { font-size: 46px; margin-bottom: 14px; }
    .pub-verif-head h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--white); margin-bottom: 6px; }
    .pub-verif-head p { font-size: 13px; color: rgba(255,255,255,0.38); }
    .demo-box-verif { margin-top: 18px; padding: 16px; background: rgba(201,169,110,0.06); border: 1px solid rgba(201,169,110,0.15); border-radius: var(--radius-md); }
    .demo-box-verif p { font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 9px; letter-spacing: 1px; text-transform: uppercase; text-align: center; }
    .demo-grid-verif { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .demo-item-verif { background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.15); border-radius: var(--radius); padding: 9px 11px; cursor: pointer; transition: var(--transition); }
    .demo-item-verif:hover { background: rgba(201,169,110,0.18); border-color: rgba(201,169,110,0.35); transform: translateY(-1px); }
    .demo-code-verif { font-family: 'DM Mono', monospace; font-size: 10.5px; color: var(--gold); display: block; margin-bottom: 3px; font-weight: 700; }
    .demo-name-verif { font-size: 10px; color: rgba(255,255,255,0.48); line-height: 1.3; }

    /* mobile menu étudiant */
    .mobile-menu { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 290px; background: var(--ink2); z-index: 300; padding: 70px 28px 28px; transform: translateX(100%); transition: transform 0.35s ease; border-left: 1px solid rgba(201,169,110,0.15); overflow-y: auto; }
    .mobile-menu.open { transform: translateX(0); }
    .mob-close { position: absolute; top: 18px; right: 20px; font-size: 22px; cursor: pointer; color: rgba(255,255,255,0.4); }
    .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); }

    @media (min-width: 768px) {
      .ag-main {
        grid-template-columns: 340px 1fr;
        gap: 40px;
      }

      .ask-events-grid {
        grid-template-columns: 1fr 1fr;
      }

      .faq-wrap {
        grid-template-columns: 260px 1fr;
        gap: 56px;
      }

      .faq-sidebar { position: sticky; top: 90px; }

      .two-col { grid-template-columns: 1.6fr 1fr; }

      .dash-stats { grid-template-columns: repeat(4, 1fr); }

      .day-slots { grid-template-columns: repeat(4, 1fr); }

      .plan-week { grid-template-columns: repeat(6, 1fr); }

      .notes-top { grid-template-columns: repeat(3, 1fr); }

      .docs-grid { grid-template-columns: repeat(3, 1fr); }

      .fil-grid { grid-template-columns: repeat(3, 1fr); }

      .verif-layout { grid-template-columns: 1fr 1fr; }

      .op-grid { grid-template-columns: repeat(2, 1fr); }

      .demo-grid-verif { grid-template-columns: repeat(3, 1fr); }

      .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);
      }

    }