/* ═══════════════════════════════════════════
   css/style.css — Styles principaux
   Navbar · Hero · Formations · Modale
   Why · Jobs · Contact · Footer
═══════════════════════════════════════════ */

@import url('./variables.css');

/* ── TOPBAR ── */
  .topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    background: var(--navy); border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0 5%; height: 36px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .topbar-contacts { display: flex; align-items: center; gap: 20px; }
  .topbar-item {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.6); font-size: 12px; text-decoration: none;
    transition: color .2s;
  }
  .topbar-item:hover { color: var(--gold); }
  .topbar-item svg { color: var(--gold); flex-shrink: 0; }
  .topbar-location { cursor: default; }
  .topbar-right { display: flex; align-items: center; }

/* ── NAVBAR ── */
  nav {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon { width: 42px; height: 42px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 18px; color: var(--navy); }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
  .logo-text span { color: var(--gold); }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-item { position: relative; }
  .nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 14px; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13.5px; font-weight: 500; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
  .nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,168,76,0.08); }
  .nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
  .nav-item:hover .nav-link svg { transform: rotate(180deg); }
  .dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--navy-light); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; min-width: 210px; padding: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
  .nav-item:hover .dropdown { display: block; }
  /* ── CORRECTION : pont invisible entre le lien et le dropdown ── */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px; /* pont invisible qui maintient le hover actif */
}
  .dropdown a { display: block; padding: 9px 14px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; border-radius: 6px; transition: all 0.15s; }
  .dropdown a:hover { background: rgba(201,168,76,0.12); color: var(--gold); }
  .dropdown-badge { display: inline-block; font-size: 10px; padding: 2px 7px; border-radius: 20px; background: var(--gold); color: var(--navy); font-weight: 700; margin-left: 6px; vertical-align: middle; }
  .nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px !important; }
  .nav-cta:hover { background: var(--gold-light) !important; }
  .nav-etudiant-btn { background: rgba(201,168,76,.12); border: 1.5px solid rgba(201,168,76,.4); color: var(--gold); font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .2s, border-color .2s; font-family: 'DM Sans', sans-serif; margin-left: 6px; }
  .nav-etudiant-btn:hover { background: rgba(201,168,76,.22); border-color: var(--gold); }

  /* ── LANGUAGE SWITCHER (dans topbar) ── */
  .lang-switcher { display: flex; align-items: center; gap: 4px; }
  .lang-btn { background: none; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.45); font-size: 11px; font-weight: 700; cursor: pointer; letter-spacing: 1px; padding: 3px 9px; border-radius: 4px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .lang-btn.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
  .lang-btn:hover:not(.active) { color: var(--white); border-color: rgba(255,255,255,0.4); }

  /* ── HERO ── */
  #hero {
    height: 100svh;
    max-height: 100vh;
    min-height: 600px;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    /* padding-top couvre la topbar (36px) + navbar (70px) + 24px d'air */
    padding-top: 130px;
    padding-bottom: 60px;   /* espace pour les dots en bas */
    box-sizing: border-box;
  }

  /* ── Diaporama fond ──────────────────────────────────────────── */
  .hero-slides {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;   /* pas de inset pour IE compat */
    z-index: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%; /* marge de 5% pour absorber le zoom sans déborder */
    background-size: cover; background-position: center center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    animation: heroZoom 9s ease-in-out infinite alternate;
  }
  .hero-slide.active { opacity: 1; }
  @keyframes heroZoom {
    from { transform: scale(1.03); }
    to   { transform: scale(1.00); }
  }
  /* Slides où les visages sont en haut — on ancre la position en haut */
  .hero-slide.pos-top {
    background-position: center 18% !important;
  }
  /* Overlay sombre sur les images pour lisibilité du texte */
  .hero-slides-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.82) 0%,
      rgba(10, 22, 40, 0.65) 50%,
      rgba(10, 22, 40, 0.75) 100%
    );
  }
  /* Dots indicateurs */
  .hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; gap: 10px; align-items: center;
  }
  .hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s; padding: 0;
  }
  .hero-dot.active { background: var(--gold); transform: scale(1.3); }
  .hero-dot:hover  { background: rgba(255,255,255,0.7); }
  /* ─────────────────────────────────────────────────────────────── */

  .hero-bg   { position: absolute; inset: 0; z-index: 3; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.10) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%); pointer-events: none; }
  .hero-grid { position: absolute; inset: 0; z-index: 3; background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
  .hero-content { position: relative; z-index: 4; padding: 0 5%; max-width: 1300px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .hero-badge::before { content: ''; 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.4)} }
  h1 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.6vw, 52px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
  h1 em { color: var(--gold); font-style: normal; }
  .hero-sub { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.65; margin-bottom: 24px; max-width: 480px; }
  .hero-btns { display: flex; flex-direction: row; align-items: center; gap: 20px; flex-wrap: nowrap; }
  .btn-primary { background: var(--gold); color: #ffffff; padding: 28px 64px; border-radius: 10px; font-weight: 700; font-size: 34px; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 16px; white-space: nowrap; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
  .btn-secondary { background: transparent; color: var(--white); padding: 20px 48px; border-radius: 10px; font-weight: 600; font-size: 22px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.25s; white-space: nowrap; }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats { display: flex; gap: 32px; margin-top: 28px; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--gold); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .hero-visual { position: relative; }
  .hero-card-stack { position: relative; height: 460px; }
  .hcard { position: absolute; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); }
  .hcard-main { width: 100%; bottom: 70px; right: 0; }
  .hcard-float1 { width: 46%; top: 10px; right: 0; animation: float1 4s ease-in-out infinite; }
  .hcard-float2 { width: 46%; top: 10px; left: 0; animation: float2 5s ease-in-out infinite; }
  @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
  .hcard-label { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
  .hcard-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .hcard-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .hcard-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
  .hbadge { background: rgba(201,168,76,0.2); color: #ffffff; font-size: 16px; padding: 9px 22px; border-radius: 20px; font-weight: 600; letter-spacing: 0.5px; }
  .progress-bar { background: rgba(255,255,255,0.1); border-radius: 4px; height: 4px; margin-top: 12px; overflow: hidden; }
  .progress-fill { height: 100%; background: var(--gold); border-radius: 4px; }

  /* ── SECTIONS ── */
  section { padding: 90px 5%; }
  .section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
  .section-lead { color: var(--gray); font-size: 16px; line-height: 1.7; max-width: 560px; margin-bottom: 50px; }
  .section-header { text-align: center; }
  .section-header .section-lead { margin: 0 auto 50px; }

  /* ── OFFERINGS ── */
  #offerings { background: var(--cream); }
  .tabs-wrap { display: flex; gap: 8px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
  .tab { padding: 10px 22px; border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--gray); transition: all 0.2s; }
  .tab.active, .tab:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

  /* ── Banner prix ── */
  .price-banner {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    background: #c0150f; color: #fff;
    border-radius: 10px; padding: 22px 32px;
    margin: 0 auto 36px;
    font-size: 18px; font-weight: 800; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    line-height: 1.4;
    max-width: 50%;
    box-sizing: border-box;
  }
  .price-banner-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; min-width: 34px;
    background: rgba(255,255,255,0.25); border-radius: 50%;
    font-size: 17px; font-weight: 900; font-style: normal;
  }

  .courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
  .course-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; cursor: pointer; }
  .course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,22,40,0.12); border-color: var(--gold); }
  .card-top { padding: 28px 24px 20px; position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
  .card-top-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
  .card-top-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,22,40,0.62) 0%, rgba(10,22,40,0.82) 100%); z-index: 0; }
  .card-top .card-icon,
  .card-top .card-category,
  .card-top .card-title,
  .card-top .card-sub { position: relative; z-index: 1; }
  .card-category { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
  .card-sub { font-size: 12px; color: rgba(255,255,255,0.55); }
  .card-icon { position: absolute; top: 24px; right: 20px; width: 44px; height: 44px; background: rgba(201,168,76,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
  .card-body { padding: 20px 24px; }
  .card-meta { display: flex; gap: 16px; margin-bottom: 16px; }
  .meta-item { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
  .card-highlights { list-style: none; margin-bottom: 20px; }
  .card-highlights li { font-size: 13px; color: var(--navy); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
  .card-highlights li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
  .card-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--navy); }
  .card-price span { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: var(--gray); }
  .btn-card { background: var(--gold); color: var(--navy); padding: 9px 18px; border-radius: 7px; font-weight: 700; font-size: 12px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
  .btn-card:hover { background: var(--gold-light); transform: scale(1.02); }

  /* ── MODAL ── */
  .modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(10,22,40,0.85); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
  .modal-overlay.open { display: flex; }
  .modal { background: var(--white); border-radius: 20px; max-width: 820px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.4); }
  .modal-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 36px; border-radius: 20px 20px 0 0; position: relative; }
  .modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .modal-close:hover { background: rgba(255,255,255,0.2); }
  .modal-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .modal-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
  .modal-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
  .modal-body { padding: 36px; }
  .modal-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 30px; }
  .modal-tab { padding: 10px 20px; font-size: 13px; font-weight: 600; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
  .modal-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
  .tab-content { display: none; }
  .tab-content.active { display: block; }
  .programme-section { margin-bottom: 28px; }
  .programme-section h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
  .programme-section h4::before { content: ''; width: 4px; height: 18px; background: var(--gold); border-radius: 2px; }
  .programme-list { list-style: none; }
  .programme-list li { padding: 9px 14px; background: var(--light-gray); border-radius: 8px; font-size: 13px; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
  .programme-list li::before { content: '→'; color: var(--gold); font-weight: 700; }
  .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.download-btn:hover {
  background: var(--gold-light);
}

.download-btn svg {
  flex-shrink: 0;
}
  .sessions-grid { display: grid; gap: 14px; }
  .session-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 20px; transition: all 0.2s; cursor: pointer; }
  .session-card:hover, .session-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.04); }
  .session-date { text-align: center; min-width: 60px; }
  .session-day { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; }
  .session-month { font-size: 11px; text-transform: uppercase; color: var(--gold); font-weight: 700; letter-spacing: 1px; }
  .session-info { flex: 1; }
  .session-name { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
  .session-detail { font-size: 12px; color: var(--gray); display: flex; gap: 14px; }
  .session-spots { font-size: 12px; font-weight: 600; }
  .spots-ok { color: var(--success); }
  .spots-low { color: #DC2626; }
  .session-select { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
  .session-card.selected .session-select { background: var(--gold); border-color: var(--gold); }
  .session-card.selected .session-select::after { content: '✓'; font-size: 10px; color: var(--navy); font-weight: 900; }
  .payment-summary { background: var(--cream); border-radius: 12px; padding: 24px; margin-bottom: 28px; border: 1px solid var(--border); }
  .summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--gray); border-bottom: 1px solid var(--border); }
  .summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 15px; color: var(--navy); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  label { font-size: 12px; font-weight: 600; color: var(--navy); }
  input, select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--navy); outline: none; transition: border-color 0.2s; }
  input:focus, select:focus { border-color: var(--gold); }
  textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; resize: vertical; min-height: 110px; width: 100%; outline: none; }
  .payment-methods { display: flex; gap: 12px; margin-bottom: 24px; }
  .pay-method { flex: 1; padding: 14px; border: 1.5px solid var(--border); border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.2s; font-size: 12px; font-weight: 600; color: var(--gray); }
  .pay-method:hover, .pay-method.active { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,0.06); }
  .pay-method .pay-icon { font-size: 22px; display: block; margin-bottom: 6px; }
  .btn-pay { width: 100%; background: var(--gold); color: var(--navy); padding: 16px; border-radius: 10px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; }
  .btn-pay:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
  .btn-pay:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
  .secure-note { text-align: center; font-size: 11px; color: var(--gray); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }

  /* ── Provider cards (MTN / Wave) ── */
  .payment-providers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .provider-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.2s; background: #fff; }
  .provider-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
  .provider-card.active { border-color: var(--gold); background: rgba(201,168,76,0.07); box-shadow: 0 2px 12px rgba(201,168,76,0.15); }
  .provider-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .provider-mtn { background: transparent; padding: 0; overflow: hidden; }
  .provider-wave { background: #1dc8ff; }
  .provider-info { flex: 1; }
  .provider-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .provider-desc { font-size: 12px; color: var(--gray); margin-top: 2px; }
  .provider-check { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  /* ── PROMO FLYERS ── */
  #promo-flyers { background: var(--cream); padding: 70px 5%; text-align: center; }

  .promo-header { margin-bottom: 40px; }
  .promo-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #c0150f; color: #fff;
    font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 30px; margin-bottom: 16px;
  }
  .promo-header h2 { margin-bottom: 10px; }
  .promo-header p  { color: var(--gray); font-size: 15px; max-width: 520px; margin: 0 auto; }

  /* Slider */
  .promo-slider-wrap {
    position: relative;
    max-width: 420px;
    margin: 0 auto 32px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,22,40,0.18);
  }
  .promo-slider { position: relative; width: 100%; }
  .promo-slide  { display: none; }
  .promo-slide.active { display: block; }
  .promo-slide img {
    width: 100%; display: block;
    border-radius: 18px;
    object-fit: cover;
  }

  /* Flèches */
  .promo-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.85); border: none; border-radius: 50%;
    width: 40px; height: 40px; font-size: 24px; line-height: 1;
    cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: background 0.2s;
    color: var(--navy);
  }
  .promo-arrow:hover { background: #fff; }
  .promo-prev { left: 12px; }
  .promo-next { right: 12px; }

  /* Points */
  .promo-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
  }
  .promo-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .promo-dot.active { background: #fff; transform: scale(1.3); }

  /* CTA */
  .promo-cta { margin-top: 36px; }
  .btn-promo-cta {
    display: inline-block;
    background: var(--navy); color: var(--gold);
    font-size: 15px; font-weight: 700;
    padding: 14px 40px; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(10,22,40,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-promo-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,22,40,0.22); }

  /* ── WHY ── */
  #why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .why-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
  .why-visual::before { content: ''; position: absolute; top: -30px; right: -30px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%); }
  .accred-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; z-index: 1; }
  .accred-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; padding: 16px; text-align: center; }
  .accred-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 900; color: var(--gold); }
  .accred-desc { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 4px; }
  .why-points { list-style: none; }
  .why-point { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
  .why-point:last-child { border-bottom: none; }
  .why-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .why-point h4 { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
  .why-point p { font-size: 13px; color: var(--gray); line-height: 1.5; }

  /* ── JOBS ── */
  #jobs { background: var(--light-gray); }
  .jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
  .job-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border); transition: all 0.3s; }
  .job-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(10,22,40,0.1); border-color: var(--gold); }
  .job-company { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .company-logo { width: 40px; height: 40px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
  .company-name { font-weight: 600; font-size: 13px; color: var(--navy); }
  .job-location { font-size: 11px; color: var(--gray); }
  .job-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .job-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
  .job-tag { background: var(--light-gray); color: var(--gray); font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
  .job-footer { display: flex; align-items: center; justify-content: space-between; }
  .job-date { font-size: 11px; color: var(--gray); }
  .btn-apply { background: var(--navy); color: var(--white); padding: 8px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; }
  .btn-apply:hover { background: var(--gold); color: var(--navy); }

  /* ── CONTACT ── */
  #contact { background: var(--navy); }
  #contact h2 { color: var(--white); }
  #contact .section-lead { color: rgba(255,255,255,0.55); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
  .contact-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .contact-item h4 { font-weight: 600; font-size: 13px; color: var(--gold); margin-bottom: 4px; }
  .contact-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
  .contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; }
  .contact-form input, .contact-form textarea, .contact-form select { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--white); width: 100%; }
  .contact-form select option { color: #0A1628; background: #ffffff; }
  .contact-form label { color: rgba(255,255,255,0.7); }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

  /* ── FOOTER ── */
  footer { background: #060D1A; color: rgba(255,255,255,0.6); padding: 60px 5% 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
  .social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.6); font-size: 14px; transition: all 0.2s; }
  .social-btn:hover { background: var(--gold); color: var(--navy); }
  .footer-col h4 { font-weight: 700; font-size: 13px; color: var(--white); margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-bottom p { font-size: 12px; }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── RESPONSIVE ── */
