*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy-darkest: #00113E;
  --navy-dark: #001855;
  --red: #BF0011;
  --red-accent: #DD2D3E;
  --blue: #2232E4;
  --blue-bright: #0087ff;
  --blue-deep: #0524D2;
  --white: #ffffff;
  --grey-light: #F1F8FF;
  --grey-text: #6B7280;
  --text-muted: #BFBFBF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--navy-darkest); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled { background: rgba(0,17,62,0.92); backdrop-filter: blur(16px); border-bottom-color: rgba(255,255,255,0.1); }
.nav-logo { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--white); font-size: 15px; font-weight: 600; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
/* Burger menu */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 20; opacity: 0; transition: opacity 0.3s; }
.nav-overlay.open { display: block; opacity: 1; }
body.nav-open { overflow: hidden; }
.nav-mobile-cta { display: none; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 16px;
  cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { box-shadow: 0 8px 30px rgba(191,0,17,0.4); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { box-shadow: 0 8px 30px rgba(34,50,228,0.4); }
.btn-outline { background: transparent; color: var(--white); outline: 1px solid rgba(255,255,255,0.35); outline-offset: -1px; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-arrow {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.btn-arrow svg { width: 14px; height: 14px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy-darkest);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('photos/hero-bg.png') center center / cover no-repeat;
  opacity: 1;
}
@property --heroSpin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes heroRotate { to { --heroSpin: 360deg; } }

.hero-gradient {
  position: absolute; inset: -50%; z-index: 1;
  background: conic-gradient(from var(--heroSpin) at 50% 45%, var(--blue-bright) 12deg, var(--blue-deep) 39deg, #d10013 296deg, white 329deg);
  filter: blur(10px); opacity: 0.65;
  animation: heroRotate 40s linear infinite;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("photos/hero-noise.svg");
  mix-blend-mode: overlay; opacity: 1;
}
.hero-content { position: relative; z-index: 3; text-align: center; padding: 140px 24px 80px; max-width: 900px; }
.hero-subtitle { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-meta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.98); }
.hero-meta-item svg { width: 18px; height: 18px; opacity: 0.5; flex-shrink: 0; }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.hero-title { font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.35s forwards; }
.hero-desc { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 620px; margin: 0 auto 36px; opacity: 0; animation: fadeUp 0.8s 0.65s forwards; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════ SPONSORS TIERS ═══════════ */
.sponsors-tier-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(0,11,54,0.25); text-align: center; margin-bottom: 20px;
}
.sponsors-tier-label-dark { color: rgba(255,255,255,0.2); }
.sp-logo { display: inline-flex; align-items: center; justify-content: center; }
.sp-logo a { display: inline-flex; align-items: center; justify-content: center; height: 100%; }
.sp-logo img { width: auto; height: 100%; max-height: inherit; object-fit: contain; display: block; }

/* Platinum — between hero & about */
.sponsors-platinum {
  padding: 40px 60px; background: var(--white);
  border-bottom: 1px solid rgba(0,11,54,0.06);
}
.sponsors-platinum-inner { max-width: 900px; margin: 0 auto; }
.sponsors-platinum-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.sp-platinum { height: 60px; }
.sp-platinum img { max-height: 60px; max-width: 200px; }

/* Gold — between pricing & FAQ */
.sponsors-gold { padding: 32px 60px; background: var(--grey-light); }
.sponsors-gold-inner { max-width: 960px; margin: 0 auto; }
.sponsors-gold-grid {
  display: flex; flex-wrap: wrap;
  gap: 32px; align-items: center; justify-content: center;
}
.sp-gold { height: 44px; }
.sp-gold img { max-height: 44px; max-width: 160px; opacity: 0.7; transition: opacity 0.2s; }
.sp-gold img:hover { opacity: 1; }


/* ══════════════════════════════════════════════
   SPONSORS GROUPED — section unifiée
   Fond var(--grey-light), centrage max 1170px
══════════════════════════════════════════════ */
.sponsors-grouped {
  padding: 60px 60px;
  background: var(--grey-light);
  text-align: center;
}
.sponsors-grouped-inner {
  max-width: 1170px;
  margin: 0 auto;
}
/* Titre "NOS PARTENAIRES" */
.sponsors-grouped-inner > .sponsors-tier-label {
  margin-bottom: 44px;
}

/* ── Un tier ── */
.sponsors-grouped-tier {
  margin-bottom: 40px;
}
.sponsors-grouped-tier:last-child { margin-bottom: 0; }

/* Label du tier */
.sponsors-grouped-tier-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0,11,54,.22);
  text-align: center;
  margin-bottom: 22px;
}

/* Séparateur entre tiers */
.sponsors-grouped-tier + .sponsors-grouped-tier {
  padding-top: 36px;
  border-top: 1px solid rgba(0,11,54,.06);
}

/* ── Grilles — toutes en flex row centrée ── */
.sg-platinium,
.sg-gold,
.sg-silver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Platinium — 60px, grand gap */
.sg-platinium { gap: 56px; }
.sg-platinium .sp-logo { height: 60px; }
.sg-platinium .sp-logo img { max-height: 60px; max-width: 200px; object-fit: contain; }

/* Gold — 44px, gap moyen */
.sg-gold { gap: 44px; }
.sg-gold .sp-logo { height: 44px; }
.sg-gold .sp-logo img { max-height: 44px; max-width: 160px; object-fit: contain; opacity: .75; transition: opacity .2s; }
.sg-gold .sp-logo img:hover { opacity: 1; }

/* Silver — 28px, gap compact */
.sg-silver { gap: 32px; }
.sg-silver .sp-logo { height: 28px; }
.sg-silver .sp-logo img { max-height: 28px; max-width: 100px; object-fit: contain; opacity: .45; transition: opacity .2s; }
.sg-silver .sp-logo img:hover { opacity: .75; }


/* Silver — in footer */
.footer-silver { width: 100%; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.sponsors-silver-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.sp-silver { height: 28px; }
.sp-silver img { max-height: 28px; max-width: 100px; opacity: 0.35; transition: opacity 0.2s; }
.sp-silver img:hover { opacity: 0.6; }

/* ═══════════ ABOUT ═══════════ */
.about { padding: 96px 60px; background: rgba(209,231,255,0.2); }
.about-top { max-width: 1170px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; margin-bottom: 64px; }
.about-title h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 700; color: var(--navy-dark); line-height: 1.1; flex-shrink: 0; }
.about-text { max-width: 600px; font-size: 16px; line-height: 1.65; color: var(--navy-dark); opacity: 0.75; }
.about-images { max-width: 1170px; margin: 0 auto 64px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; height: 360px; }
.about-img { border-radius: 16px; overflow: hidden; }
.about-img:nth-child(1) { background: linear-gradient(135deg, #0a1a3a, #1746a2); }
.about-img:nth-child(2) { background: var(--blue); }
.about-img:nth-child(3) { background: var(--navy-dark); }
.about-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.stats-row { max-width: 1170px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat { display: flex; align-items: center; gap: 18px; }
.stat-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 32px; height: 32px; color: var(--navy-darkest); }
.stat-text { font-size: 20px; font-weight: 700; line-height: 1.35; color: var(--navy-darkest); }
.stat-text span { color: var(--red); }
.skip-link{position:absolute;top:-40px;left:0;padding:8px 16px;background:var(--red);color:#fff;z-index:9999;font-weight:700;font-size:14px;text-decoration:none}.skip-link:focus{top:0}
/* ═══════════ SAVE THE DATE ═══════════ */
.save-date { padding: 96px 60px; background: var(--white); }
.save-date-card {
  max-width: 1170px; margin: 0 auto; position: relative; border-radius: 20px;
  min-height: 340px; overflow: hidden;
}
.save-date-bg {
  position: absolute; inset: 0; border-radius: 20px; overflow: hidden;
  background: conic-gradient(from 258deg at 80% 38%, var(--blue-bright) 12deg, var(--blue-deep) 39deg, var(--red) 296deg, #e8607a 315deg, rgba(255,255,255,0.5) 330deg, rgba(200,220,255,0.4) 345deg, var(--blue-bright) 360deg);
}
.save-date-bg::after {
  content: ''; position: absolute;
  width: 500px; height: 200px; left: 30%; top: 40%;
  background: rgba(255,255,255,0.5); border-radius: 50%; filter: blur(80px);
  transform: rotate(-15deg);
}
.save-date-content { position: relative; z-index: 2; padding: 60px; }
.save-date-when { font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.save-date-title { font-size: clamp(50px, 6vw, 78px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.save-date-photo {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  width: 100%; height: 100%;
  pointer-events: none;
}
.save-date-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom right; }

/* ═══════════ SPEAKERS ═══════════ */
.speakers { padding: 96px 60px; background: var(--navy-darkest); overflow: hidden; }
.section-badge { font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--red-accent); letter-spacing: 1px; text-align: center; margin-bottom: 12px; }
.section-title-white { font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--white); text-align: center; line-height: 1.2; margin-bottom: 16px; }
.section-desc-white { text-align: center; color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.65; max-width: 520px; margin: 0 auto 40px; }

.speaker-cats { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; max-width: 1170px; margin-left: auto; margin-right: auto; }
.speaker-cat {
  padding: 8px 18px; border-radius: 100px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all 0.25s;
}
.speaker-cat:hover { background: rgba(255,255,255,0.12); }
.speaker-cat.active { background: var(--red); border-color: var(--red); }
.speakers-grid { max-width: 1170px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Speaker card */
.speaker-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 440px; cursor: pointer;
  background: var(--navy-dark);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.speaker-card:hover { transform: translateY(-8px); }
.speaker-card.hidden { display: none; }

.speaker-photo-wrap {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 16px; overflow: hidden; background: var(--navy-dark);
}
.speaker-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Duotone blue-red gradient overlay on hover */
.speaker-card::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(28,137,255,0.45) 0%, rgba(191,0,17,0.4) 100%);
  opacity: 0; transition: opacity 0.45s ease;
  mix-blend-mode: color;
  border-radius: 16px;
}
.speaker-card:hover::after { opacity: 1; }

.speaker-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,24,85,0.95) 100%);
}
.speaker-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; text-align: center; z-index: 4; }
.speaker-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.speaker-loc {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,0.5); letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.speaker-loc svg { width: 13px; height: 13px; }

/* Tags Modération / Coordination on speaker cards */
.spk-tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.spk-tag-mod {
  background: rgba(255,255,255,0.15); color: #fff;
  backdrop-filter: blur(4px);
}
.spk-tag-coord {
  background: rgba(201,168,76,0.3); color: #ffd96a;
  backdrop-filter: blur(4px);
}

.tl-moderation span {
  color: rgba(255, 255, 255, 0.4);
}
/* ═══════════ SPEAKER BIO MODAL - LANDSCAPE ═══════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,17,62,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 20px;
  max-width: 820px; width: 100%; overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  display: flex; min-height: 380px;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-photo-side {
  width: 280px; flex-shrink: 0; position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.modal-photo-side img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
/* Decorative gradient overlay on modal photo */
.modal-photo-side::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0,24,85,0.6));
}

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.15); border: none; cursor: pointer;
  color: var(--navy-darkest); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.08); }

.modal-body { flex: 1; padding: 40px 36px; position: relative; overflow-y: auto; max-height: 520px; }
.modal-avatar { display: none; }
.modal-name { font-size: 24px; font-weight: 800; color: var(--navy-darkest); margin-bottom: 6px; }
.modal-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-location { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 20px; background: #fff; border: 1px solid #ddd; color: #444; font-size: 13px; font-weight: 600; }
.modal-specialty { display: inline-block; padding: 4px 14px; border-radius: 20px; background: var(--grey-light); color: var(--blue); font-size: 13px; font-weight: 700; }
.modal-bio { font-size: 15px; line-height: 1.75; color: #444; }
.modal-socials { display: flex; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #eee; }
.modal-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: #f0f0f0; color: #555; transition: all 0.2s; }
.modal-social-link:hover { background: var(--blue); color: #fff; }
.modal-social-link svg { width: 18px; height: 18px; }

/* ═══════════ PROGRAMME ═══════════ */
.programme { padding: 96px 60px 120px; background: var(--navy-darkest); position: relative; }
.programme::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
.programme-header { max-width: 1170px; margin: 0 auto 56px; display: flex; justify-content: space-between; align-items: flex-start; }
.programme-badge { font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--red-accent); letter-spacing: 1px; margin-bottom: 14px; }
.programme-title { font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.programme-subtitle { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.day-tabs { display: flex; gap: 16px; max-width: 1170px; margin: 0 auto 48px; justify-content: center; }
.day-tab {
  padding: 14px 32px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--white);
  cursor: pointer; border: none; background: transparent;
  outline: 1px solid rgba(255,255,255,0.25); outline-offset: -1px;
  transition: background 0.25s, outline-color 0.25s;
  display: flex; align-items: center; gap: 10px;
}
.day-tab.active { background: var(--red); outline-color: var(--red); }
.day-tab svg { width: 22px; height: 22px; }
.timeline { max-width: 960px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.08); }
.tl-item { position: relative; padding-left: 56px; }
.tl-dot { position: absolute; left: 12px; top: 18px; width: 18px; height: 18px; border-radius: 50%; background: var(--navy-darkest); border: 3px solid rgba(255,255,255,0.3); }
.tl-dot.red { border-color: var(--red); }
.tl-dot.blue { border-color: var(--blue); }
.tl-dot.amber { border-color: #f59e0b; }
.tl-dot.purple { border-color: #8b5cf6; }
.tl-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.tl-time { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.tl-type-badge { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.tl-type-badge.badge-pleniere { background: rgba(191,0,17,0.2); color: #ff6b7a; }
.tl-type-badge.badge-workshop { background: rgba(34,50,228,0.2); color: #7b8aff; }
.tl-type-badge.badge-talk { background: rgba(245,158,11,0.2); color: #f59e0b; }
.tl-type-badge.badge-video { background: rgba(139,92,246,0.2); color: #a78bfa; }
.tl-type-badge.badge-event { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.tl-title { margin-top: 4px; font-size: 22px; font-weight: 580; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.tl-details { margin-top: 4px; font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 4px; }
.tl-speaker-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border-radius: 6px; background: rgba(255,255,255,0.06); margin: 3px 4px 3px 0; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); cursor: pointer; transition: background 0.2s, color 0.2s; }
.tl-speaker-tag:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.tl-speaker-tag .tag-disc { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-right: 2px; }
.tl-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.12); }
.flag-icon { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; flex-shrink: 0; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.tl-sub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 8px; margin-top: 10px; }
.tl-sub-card { padding: 12px 14px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }
.tl-sub-card strong { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); display: block; margin-bottom: 4px; }
.tl-sub-card span { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.5; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.tl-sub-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.35); letter-spacing: 0.3px; margin-bottom: 6px; }
.tl-sub-speakers { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.tl-sep { height: 32px; }
@media (max-width: 640px) { .tl-sub-grid { grid-template-columns: 1fr; } }


.extra-card { padding: 24px 28px; border-radius: 14px; }
.extra-card.light { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.extra-card.dark { background: var(--navy-darkest); color: var(--white); }
.extra-label { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.extra-card.dark .extra-label { color: rgba(255,255,255,0.5); }
.extra-price { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.extra-card.light .extra-price { color: #0A7B4F; }
.extra-desc { font-size: 13px; color: var(--grey-text); line-height: 1.5; }
.extra-card.dark .extra-desc { color: rgba(255,255,255,0.4); }

/* Timeline moderation lines */
.tl-moderation {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(0,11,54,0.08);
  font-size: 13px;
}
.tl-mod-label {
  color: rgba(0,11,54,0.35); font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.tl-mod-tag {
  background: rgba(0,11,54,0.04) !important;
  border-color: rgba(0,11,54,0.08) !important;
  font-size: 12.5px !important; cursor: pointer;
}
.tl-mod-tag:hover { background: rgba(0,11,54,0.08) !important; }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner { padding: 0 60px; margin: -40px 0; position: relative; z-index: 5; }
.cta-card {
  max-width: 1170px; margin: 0 auto; position: relative; border-radius: 16px;
  min-height: 320px; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  background: conic-gradient(from 258deg at 80% 38%, var(--blue-bright) 12deg, var(--blue-deep) 39deg, var(--red) 296deg, #e8607a 315deg, rgba(255,255,255,0.5) 330deg, rgba(200,220,255,0.4) 345deg, var(--blue-bright) 360deg);
}
.cta-bg::before { content: ''; position: absolute; width: 340px; height: 140px; left: 0; top: 30px; background: rgba(254,191,0,0.5); border-radius: 50%; filter: blur(120px); }
.cta-bg::after { content: ''; position: absolute; width: 500px; height: 200px; left: 25%; top: 30%; background: rgba(255,255,255,0.4); border-radius: 50%; filter: blur(80px); transform: rotate(-15deg); }
.cta-content { position: relative; z-index: 3; max-width: 540px; padding: 56px 64px; }
.cta-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 28px; max-width: 470px; }
.cta-photo {
  position: absolute; right: 0; bottom: 0; z-index: 4;
  width: 100%; height: 100%;
  pointer-events: none;
}
.cta-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom right; }

/* ═══════════ ACCÈS ═══════════ */
.acces { padding: 96px 60px; background: var(--grey-light); }
.acces-inner { max-width: 960px; margin: 0 auto; }
.acces-content {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 40px 44px; margin-top: 40px;
}
.acces-lieu { text-align: center; margin-bottom: 28px; }
.acces-icon { width: 28px; height: 28px; color: var(--red); margin: 0 auto 10px; }
.acces-icon svg { width: 28px; height: 28px; }
.acces-venue { font-size: 22px; font-weight: 800; color: var(--navy-darkest); }
.acces-address { font-size: 15px; color: rgba(0,11,54,0.5); margin-top: 2px; }
.acces-note { font-size: 13px; color: rgba(0,11,54,0.35); margin-top: 6px; }
.acces-divider { height: 1px; background: #eee; margin-bottom: 28px; }
.acces-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.acces h2 {text-align: center;}
.acces-col h3 { font-size: 14px; font-weight: 800; color: var(--navy-darkest); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.acces-h3-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); }
.acces-line { font-size: 13.5px; color: rgba(0,11,54,0.55); line-height: 1.6; margin-bottom: 6px; }
.acces-line strong { color: var(--navy-darkest); font-weight: 700; }
.acces-line-title { font-weight: 700; color: var(--navy-darkest); margin-top: 6px; }
.acces-sub { font-size: 12px; color: rgba(0,11,54,0.35); }
.acces-badges { display: inline-flex; gap: 4px; vertical-align: middle; }
.metro-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 11px; font-weight: 800; color: #fff;
}
.metro-badge.m1 { background: #FFCD00; color: #000; }
.metro-badge.m2 { background: #003CA6; }
.metro-badge.m6 { background: #6ECA97; color: #000; }
.metro-badge.mA { background: red; color: #fff; }

@media (max-width: 768px) {
  .acces { padding: 60px 16px; }
  .acces-content { padding: 28px 20px; }
  .acces-cols { grid-template-columns: 1fr; gap: 24px; }
}


/* ═══════════ FOOTER ═══════════ */
.footer { padding: 120px 60px 40px; background: var(--navy-dark); }
.footer-top { max-width: 1170px; margin: 0 auto 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-identity { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { font-size: 22px; font-weight: 700; color: var(--white); }
.footer-logo img { height: 40px; }
.footer-afi-info { display: flex; flex-direction: column; gap: 2px; }
.footer-afi-info span { font-size: 14.5px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer-afi-info a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-afi-info a:hover { color: var(--white); }
.footer-baseline { font-size: 15.5px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }
.footer-links { display: flex; gap: 32px; padding-top: 0; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--blue-deep); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background 0.2s; }
.footer-socials a:hover { background: rgba(255,255,255,0.06); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-divider { max-width: 1170px; margin: 0 auto 24px; height: 1px; background: rgba(255,255,255,0.1); }
.footer-bottom { max-width: 1170px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-copy { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-sep { color: rgba(255,255,255,0.2); }
.footer-credit { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-docto { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-docto:hover { color: rgba(255,255,255,0.8); }
.footer-docto-logo { height: 16px; width: auto; opacity: 0.6; transition: opacity 0.2s; vertical-align: middle; }
.footer-docto:hover .footer-docto-logo { opacity: 1; }


/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .about-top { flex-direction: column; gap: 24px; }
  .about-images { grid-template-columns: 1fr; height: auto; }
  .about-images .about-img { height: 200px; }
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .programme-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .pricing-extras { grid-template-columns: 1fr; }
  .save-date-photo { height: 120%; }
  .cta-photo { height: 105%; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
    background: var(--navy-darkest); padding: 80px 32px 40px; gap: 0; z-index: 999;
    transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 17px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); opacity: 1; }
  .nav-mobile-cta {
    display: block !important; margin-top: 16px; text-align: center;
    background: var(--red); color: var(--white) !important; border-radius: 10px;
    padding: 14px 0 !important; font-weight: 700; border: none !important;
  }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-content { padding: 120px 20px 80px; }
  .about, .save-date, .speakers, .programme, .pricing { padding: 64px 20px; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .speaker-card { height: 300px; }
  .day-tabs { flex-direction: column; align-items: center; }

  /* CTA cards - hide photos on mobile */
  .cta-banner { padding: 0 20px; }
  .save-date-card, .cta-card { min-height: auto; }
  .save-date-content, .cta-content { max-width: 100%; padding: 36px 28px; }
  .save-date-photo, .cta-photo { display: none; }

  /* Speaker modal - round avatar */
  .modal { flex-direction: column; max-width: 480px; }
  .modal-photo-side { display: none; }
  .modal-avatar {
    display: block; width: 90px; height: 90px; border-radius: 50%;
    object-fit: cover; margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); border: 3px solid var(--white);
  }
  .modal-body { max-height: 80vh; padding: 32px 24px; }

  .footer { padding: 100px 20px 32px; }
  .footer-top { gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-copy { justify-content: center; }
  /* Sponsors responsive */
  .sponsors-grouped { padding: 48px 24px; }
  .sg-platinium { gap: 32px; }
  .sg-gold { gap: 28px; }
  .sg-silver { gap: 18px; }
  .sg-platinium .sp-logo img { max-height: 44px; max-width: 140px; }
  .sg-gold .sp-logo img { max-height: 36px; }
  .sponsors-platinum { padding: 28px 20px; }
  .sponsors-platinum-grid { gap: 28px; }
  .sp-platinum img { max-height: 44px; max-width: 140px; }
  .sponsors-gold { padding: 48px 20px; }
  .sponsors-gold-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .sp-gold img { max-height: 36px; }
  .sponsors-silver-grid { gap: 16px; }
  .sp-silver img { max-height: 24px; max-width: 80px; }
}
@media (max-width: 480px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speaker-card { height: 240px; }
  .spk-name { font-size: 14px; }
  .spk-role { font-size: 11px; }
  .save-date-content, .cta-content { padding: 28px 20px; }
  .save-date-title { margin-bottom: 16px; }
  .cta-title { font-size: 24px; }
  .sponsors-gold-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════ FAQ ═══════════ */
.faq { padding: 80px 24px; background: var(--white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq .section-badge { color: var(--navy); border-color: var(--navy); }
.faq .section-title { margin-bottom: 40px; text-align:center; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: #ccc; }
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(34,50,228,0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.faq-item summary:hover { background: #f9fafb; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300113E' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }

/* ── Smooth height animation via CSS grid trick ── */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item[open] .faq-body {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  transition: padding 0.35s ease;
}
.faq-item[open] .faq-answer {
  padding: 0 24px 20px;
}
.faq-answer a { color: var(--blue); text-decoration: underline; }
.faq-answer a:hover { color: var(--red); }

@media (max-width: 640px) {
  .faq { padding: 60px 16px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px; }
  .faq-item[open] .faq-answer { padding: 0 18px 16px; }
}

/* ═══════════ LEGAL ═══════════ */
.legal { max-width: 820px; margin: 0 auto; padding: 160px 40px 96px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 40px; transition: opacity 0.2s; }
.legal-back:hover { opacity: 0.7; }
.legal-back svg { width: 18px; height: 18px; }
.legal h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--navy-darkest); margin-bottom: 12px; line-height: 1.15; }
.legal .legal-updated { font-size: 14px; color: var(--grey-text); margin-bottom: 48px; }
.legal h2 { font-size: 24px; font-weight: 800; color: var(--navy-darkest); margin: 48px 0 16px; padding-top: 32px; border-top: 1px solid #eee; }
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 12px; }
.legal ul { padding-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--red); }
.legal strong { color: var(--navy-darkest); }
.legal-toc { background: var(--grey-light); border-radius: 12px; padding: 24px 28px; margin-bottom: 40px; }
.legal-toc p { font-size: 14px; font-weight: 700; color: var(--navy-darkest); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { font-size: 14px; font-weight: 500; color: var(--blue); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal-table th, .legal-table td { padding: 10px 14px; border: 1px solid #e5e7eb; text-align: left; }
.legal-table th { background: var(--grey-light); font-weight: 700; color: var(--navy-darkest); }

/* ═══════════ GALA SECTION ═══════════ */
.gala-section {
  position: relative; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gala-section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.gala-section-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
}
.gala-section-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,14,35,0.85) 0%, rgba(10,14,35,0.5) 50%, rgba(10,14,35,0.8) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(191,145,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(191,145,60,0.1) 0%, transparent 50%);
}
.gala-section-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 80px 40px; text-align: center;
}
.gala-section-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: #c9a84c; margin-bottom: 16px;
}
.gala-section-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: #fff;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.gala-section-venue {
  font-size: 20px; font-weight: 600; color: #c9a84c;
  margin-bottom: 4px; letter-spacing: 0.5px;
}
.gala-section-address {
  font-size: 14px; color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.gala-section-desc {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.8);
  margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.gala-section-details {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.gala-section-detail {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.gala-section-detail svg {
  width: 18px; height: 18px; color: #c9a84c; flex-shrink: 0;
}
.gala-section-btn {
  display: inline-flex; align-items: center;
  padding: 14px 36px; border-radius: 8px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  background: linear-gradient(135deg, #c9a84c, #dbb856);
  color: #0a0e23; letter-spacing: 0.3px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.gala-section-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

/* Twinkling stars */
.gala-stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.gs {
  position: absolute; color: rgba(201,168,76,0.4);
  animation: gs-twinkle 4s ease-in-out infinite;
}
.gs.s1 { width: 6px; height: 6px; top: 12%; left: 8%; animation-delay: 0s; animation-duration: 5s; }
.gs.s2 { width: 4px; height: 4px; top: 25%; right: 12%; animation-delay: 0.8s; animation-duration: 4s; }
.gs.s3 { width: 8px; height: 8px; top: 18%; left: 35%; animation-delay: 2.1s; animation-duration: 6s; }
.gs.s4 { width: 5px; height: 5px; top: 65%; right: 20%; animation-delay: 1.4s; animation-duration: 4.5s; }
.gs.s5 { width: 3px; height: 3px; top: 75%; left: 15%; animation-delay: 3.2s; animation-duration: 5.5s; }
.gs.s6 { width: 7px; height: 7px; top: 40%; right: 6%; animation-delay: 0.5s; animation-duration: 5s; }
.gs.s7 { width: 4px; height: 4px; top: 85%; right: 35%; animation-delay: 2.8s; animation-duration: 4s; }
.gs.s8 { width: 5px; height: 5px; top: 8%; right: 40%; animation-delay: 1.8s; animation-duration: 6.5s; }
@keyframes gs-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  20% { opacity: 0.8; transform: scale(1.1) rotate(15deg); }
  50% { opacity: 0.3; transform: scale(0.8) rotate(-10deg); }
  80% { opacity: 1; transform: scale(1.2) rotate(5deg); }
}
@media (max-width: 768px) {
  .gala-section { min-height: 500px; }
  .gala-section-content { padding: 60px 20px; }
  .gala-section-details { gap: 16px; }
  .gala-section-desc { font-size: 14px; }
}

/* ═══════════ PRICING ═══════════ */
.pricing { padding: 96px 60px 12px 60px; background: var(--grey-light); }
.pricing-title { font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--navy-dark); text-align: center; margin-bottom: 20px; }

.pricing-banner {
  max-width: 960px; margin: 0 auto 40px; padding: 20px 28px;
  border-radius: 12px; background: #eef3ff; border: 1px solid #d4dffb;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.6; color: var(--navy-dark);
}
.pricing-banner-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--blue); margin-top: 2px; }
.pricing-banner-icon svg { width: 22px; height: 22px; }
.pricing-banner-text strong { color: var(--blue); }

/* ── Comparison table ── */
.cmp {
  max-width: 960px; margin: 0 auto 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  overflow: visible;
  position: relative;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  border-bottom: 1px solid #eee;
}
.cmp-row:last-child { border-bottom: none; }

/* Header */
.cmp-header { border-bottom: 2px solid #eee; }
.cmp-header .cmp-label {
      font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
}
.cmp-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 12px; text-align: center; position: relative;
}
.cmp-col-name { font-size: 18px; font-weight: 800; color: var(--navy-darkest); }
.cmp-col-sub { font-size: 12px; font-weight: 500; color: rgba(0,11,54,0.4); margin-top: 2px; }
.cmp-col-blue { border-left: 1px solid #eee; }

/* Congrès column header — navy */
.cmp-col-highlight {
    background: var(--navy-darkest);
    border-radius: 16px 16px 0 0;
    margin: 0;
    padding: 28px 12px 20px;
    border: none;
    margin-top: -12px;
    box-shadow: 0 1px 0 var(--navy-darkest), 0 -1px 0 var(--navy-darkest);
}
.cmp-col-highlight .cmp-col-name { color: #fff; }
.cmp-col-highlight .cmp-col-sub { color: rgba(255,255,255,0.5); }
.cmp-col-badge {
  position: absolute; top: -12px;
  padding: 4px 14px; border-radius: 20px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Label cell */
.cmp-label {
  padding: 16px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.cmp-name-line {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.cmp-name-line strong { font-size: 18px; font-weight: 600; color: var(--navy-darkest); text-decoration:underline; }
.cmp-note {  font-size: 12px; font-weight: 400; color: rgb(0 11 54 / 69%); }
.cmp-detail {
  font-size: 14px; line-height: 1.55; color: rgba(0,11,54,0.55);
}

/* Value cells */
.cmp-val {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 12px; text-align: center;
  font-size: 20px; font-weight: 800; color: var(--navy-darkest);
  text-decoration: underline;
}
.cmp-val-blue { border-left: 1px solid #eee; }

/* Congrès column cells — navy */
.cmp-val-red {
  background: var(--navy-darkest);
  color: #fff;
  border-left: none;
  border-right: none;
  box-shadow: 0 1px 0 var(--navy-darkest), 0 -1px 0 var(--navy-darkest);
}
.cmp-val-free { color: #6ee7a0; }
.cmp-val-na { color: rgba(255,255,255,0.2); font-weight: 400; font-size: 18px; text-decoration:none !important }
.cmp-val-na.cmp-val-blue { color: #d0d0d0; }
.cmp-val-sm { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); line-height: 1.2; }
.cmp-val-sm-blue {font-size: 15px; font-weight: 400; line-height: 1.2; color: var(--navy-darkest); text-decoration: underline;}
.cmp-val-highlight { color: #ff6b6b; font-size: 24px; }

/* Separator */
.cmp-separator { background: #f8f9fb; border-bottom: 1px solid #eee; }
.cmp-sep-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-deep);
}

/* Early bird */
.cmp-row-early .cmp-label { background: var(--white); }
.cmp-row-early .cmp-val-red { box-shadow: 0px 2px 0 var(--navy-darkest), 0px -2px 0 var(--navy-darkest); }
.cmp-badges { display: flex; gap: 5px; }
.cmp-badge-blue, .cmp-badge-red {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}
.cmp-badge-blue { background: var(--blue); color: #fff; }
.cmp-badge-red { background: var(--red); color: #fff; }

/* Footer CTAs */
.cmp-footer { border-bottom: none; border-top: 0px solid #eee; }
.cmp-footer .cmp-label { padding: 20px 28px; }
.cmp-footer .cmp-val { padding: 20px 12px; }
.cmp-footer .cmp-val-red {
  border-radius: 0 0 16px 16px;
}
.cmp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.cmp-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.cmp-btn-outline { border: 2px solid var(--blue); color: var(--blue); background: var(--white); }
.cmp-btn-filled { border: 2px solid var(--red); color: #fff; background: var(--red); font-weight: 800; }

/* Extras */
.pricing-extras { max-width: 960px; margin: 0 auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.extra-card { padding: 24px 28px; border-radius: 14px; }
.extra-card.light { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.extra-card.dark { background: var(--navy-darkest); color: var(--white); }
.extra-label { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.extra-card.dark .extra-label { color: rgba(255,255,255,0.5); }
.extra-price { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.extra-free { color: #0A7B4F; }
.extra-desc { font-size: 13px; color: var(--grey-text); line-height: 1.5; }
.extra-card.dark .extra-desc { color: rgba(255,255,255,0.4); }

/* ── Gala card ── */
.gala-card {
  position: relative; border-radius: 14px; overflow: hidden;
  min-height: 220px; display: flex; align-items: center;
}
.gala-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(191,145,60,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(191,145,60,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0e23 0%, #101840 40%, #0d1333 100%);
}
.gala-bg::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    120deg,
    transparent 0px, transparent 80px,
    rgba(191,145,60,0.03) 80px, rgba(191,145,60,0.03) 81px
  );
}
.gala-bg::after {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  right: -40px; top: -40px;
  background: radial-gradient(circle, rgba(191,145,60,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.gala-content {
  position: relative; z-index: 2; padding: 32px 28px;
}
.gala-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #c9a84c; margin-bottom: 8px;
}
.gala-title {
  font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.gala-price {
  font-size: 36px; font-weight: 800; margin-bottom: 10px;
  background: linear-gradient(135deg, #e8c66a, #c9a84c, #dbb856);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gala-price span { font-size: 22px; }
.gala-desc {
  font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.5);
  max-width: 280px; margin-bottom: 18px;
}
.gala-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  background: linear-gradient(135deg, #c9a84c, #dbb856);
  color: #0a0e23;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}
.gala-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.gala-sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gala-star {
  position: absolute; color: rgba(201,168,76,0.3);
  animation: gala-twinkle 3s ease-in-out infinite;
}
.gala-star.s1 { width: 10px; height: 10px; top: 18%; right: 15%; animation-delay: 0s; }
.gala-star.s2 { width: 7px; height: 7px; top: 55%; right: 8%; animation-delay: 1s; }
.gala-star.s3 { width: 5px; height: 5px; top: 30%; right: 30%; animation-delay: 2s; }
@keyframes gala-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ── Workshop card ── */
.workshop-card {
  position: relative; border-radius: 14px; overflow: hidden;
  min-height: 220px; display: flex; align-items: center;
  background: #fff;
  border: 1px solid #e8edf5;
}
.workshop-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 90%, rgba(8,47,215,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 10%, rgba(184,218,255,0.25) 0%, transparent 50%);
}
.workshop-content {
  position: relative; z-index: 2; padding: 32px 28px;
}
.workshop-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue); margin-bottom: 8px;
}
.workshop-title {
  font-size: 26px; font-weight: 800; color: var(--navy-darkest); margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.workshop-price {
  font-size: 36px; font-weight: 800; margin-bottom: 10px;
  color: #0A7B4F;
}
.workshop-desc {
  font-size: 14.5px; line-height: 1.55; color: rgba(0,11,54,0.45);
  max-width: 300px; margin-bottom: 14px;
}
.workshop-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.workshop-tag {
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  background: rgba(8,47,215,0.07); color: var(--blue);
}
.workshop-icon {
  position: absolute; right: 16px; bottom: 16px;
  width: 80px; height: 80px; color: var(--blue);
  opacity: 0.6;
}

/* Mobile pricing */
@media (max-width: 768px) {
  .pricing { padding: 60px 16px; }
  .cmp-row { grid-template-columns: 1fr 110px 110px; }
  .cmp-label { padding: 14px 16px; }
  .cmp-name-line strong { font-size: 14px; }
  .cmp-detail { font-size: 12px; }
  .cmp-val { font-size: 17px; padding: 14px 8px; }
  .cmp-val-sm { font-size: 11px; }
  .cmp-col-name { font-size: 15px; }
  .cmp-col-sub { font-size: 10px; }
  .cmp-btn { padding: 8px 16px; font-size: 13px; }
  .pricing-extras { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cmp-row { grid-template-columns: 1fr 85px 85px; }
  .cmp-label { padding: 12px; }
  .cmp-name-line strong { font-size: 13px; }
  .cmp-note { font-size: 11px; }
  .cmp-detail { font-size: 11px; }
  .cmp-val { font-size: 15px; padding: 12px 6px; }
  .cmp-col-name { font-size: 13px; }
  .cmp-col-sub { display: none; }
  .cmp-col-badge { font-size: 9px; padding: 3px 10px; }
  .cmp-btn { padding: 7px 12px; font-size: 12px; }
  .cmp-badge-blue, .cmp-badge-red { font-size: 9px; }
}

/* ═══════════ CTA PARTENAIRE ═══════════ */
.cta-partenaire { padding: 32px 60px 80px; background: var(--grey-light); }
.cta-partenaire-card {
  max-width: 900px; margin: 0 auto; position: relative;
  border-radius: 20px; overflow: hidden;
}
.cta-partenaire-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, #0a1a4a 50%, #1a0a2e 100%);
}
.cta-partenaire-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: cp-pulse 4s ease-in-out infinite alternate;
}
.cta-partenaire-glow-1 {
  width: 300px; height: 300px; top: -80px; right: -40px;
  background: var(--red);
}
.cta-partenaire-glow-2 {
  width: 250px; height: 250px; bottom: -60px; left: -30px;
  background: var(--blue-bright); animation-delay: 2s;
}
@keyframes cp-pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.15); }
}
.cta-partenaire-content {
  position: relative; z-index: 2; text-align: center;
  padding: 56px 48px;
}
.cta-partenaire-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 16px;
}
.cta-partenaire-title {
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.cta-partenaire-desc {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 540px; margin: 0 auto 28px;
}
.cta-partenaire-tiers {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 32px;
}
.cta-tier {
  padding: 6px 18px; border-radius: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.cta-tier-platinum {
  background: linear-gradient(135deg, #e8e0d0, #c9a84c);
  color: var(--navy-darkest);
}
.cta-tier-gold {
  background: linear-gradient(135deg, #c9a84c, #a07c2a);
  color: var(--white);
}
.cta-tier-silver {
  background: linear-gradient(135deg, #c0c0c0, #888);
  color: var(--navy-darkest);
}
.cta-partenaire-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 12px;
  background: var(--white); color: var(--navy-darkest);
  font-size: 16px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-partenaire-btn svg { width: 18px; height: 18px; }
.cta-partenaire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .cta-partenaire { padding: 0 20px 48px; }
  .cta-partenaire-content { padding: 40px 24px; }
  .cta-partenaire-tiers { gap: 6px; }
  .cta-tier { padding: 5px 14px; font-size: 11px; }
}

/* ═══════════ GO TO TOP ═══════════ */
.go-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-darkest); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.go-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.go-top:hover { background: var(--red); }
.go-top svg { width: 20px; height: 20px; }

/* ═══════════ MOBILE STICKY CTA ═══════════ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: 12px 16px; gap: 10px;
  background: rgba(0, 11, 54, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-cta-bar.visible { opacity: 1; transform: translateY(0); }
.mobile-cta-btn {
  flex: 1; text-align: center; padding: 14px 0;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  transition: transform 0.2s;
}
.mobile-cta-btn:active { transform: scale(0.97); }
.mobile-cta-primary {
  background: var(--red); color: var(--white);
}
.mobile-cta-secondary {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .go-top { bottom: 84px; }
}
.hero-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    background: var(--blue);
    color: #FFF;
    margin-bottom: 12px;
    animation: fadeUp 0.8s 0.15s forwards;
}

/* ══════════════════════════════════════════════════════
   STACKING CARDS — section mission accueil
══════════════════════════════════════════════════════ */
.stack-section { background: #f8faff; }
.stack-intro { padding: 96px 60px 24px; max-width: 1170px; margin: 0 auto; }
.stack-track { position: relative; }
.stack-slot {
  position: sticky;
  top: 96px;
  transform-origin: center top;
}
.stack-slot:nth-child(1) { z-index: 1; }
.stack-slot:nth-child(2) { z-index: 2; }
.stack-slot:nth-child(3) { z-index: 3; }
.stack-slot:nth-child(4) { z-index: 4; }
.stack-card {
  margin: 0 auto;
  width: min(1170px, calc(100vw - 120px));
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,17,62,.07);
  box-shadow: 0 8px 40px rgba(0,17,62,.10), 0 2px 8px rgba(0,17,62,.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform-origin: center top;
  will-change: transform;
}
.stack-slot:nth-child(4) .stack-card { overflow: visible; }
.stack-slot:nth-child(4) .stack-card > * { overflow: hidden; border-radius: inherit; }
.stack-card-congress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-darkest);
  border-color: transparent;
  will-change: transform, left, right, height;
}
/* ── Card left column ── */
.sc-left {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.sc-num {
  position: absolute; top: 16px; left: 52px;
  font-size: 96px; font-weight: 700;
  color: rgba(0,17,62,.03); line-height: 1;
  letter-spacing: -.06em; pointer-events: none; user-select: none;
}
.sc-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0;
}
.sc-title {
  font-size: clamp(28px, 3.2vw, 42px); font-weight: 700;
  color: var(--navy-darkest); line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 16px;
}
.sc-desc {
  font-size: 16px; line-height: 1.78; color: rgba(0,17,62,.52);
  margin-bottom: 28px; max-width: 420px;
}
.sc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none; transition: gap .2s;
}
.sc-cta:hover { gap: 10px; }
/* ── Card right column ── */
.sc-right {
  position: relative; overflow: hidden;
  background: rgba(248,250,255,.7);
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.sc-right-inner { position: relative; width: 200px; height: 200px; }
.sc-orb {
  position: absolute; border-radius: 50%;
  animation: sc-breathe 6s ease-in-out infinite;
}
.sc-orb-1 { width: 200px; height: 200px; top: -10px; right: -10px; }
.sc-orb-2 { width: 130px; height: 130px; bottom: 10px; left: 10px; animation-delay: 3s; }
@keyframes sc-breathe {
  0%,100% { opacity:.45; transform:scale(1); }
  50% { opacity:.8; transform:scale(1.07); }
}
.sc-shape {
  position: absolute;
  animation: sc-drift 8s ease-in-out infinite;
}
.sc-shape-circle { width: 110px; height: 110px; border-radius: 50%; top: 10%; right: 8%; }
.sc-shape-rect   { width: 72px; height: 72px; border-radius: 18px; bottom: 18%; left: 10%; animation-delay: 2s; }
@keyframes sc-drift {
  0%,100% { transform:translateY(0) translateX(0) rotate(0deg); }
  25% { transform:translateY(-12px) translateX(5px) rotate(4deg); }
  75% { transform:translateY(6px) translateX(-7px) rotate(-3deg); }
}
.sc-grid-pat {
  position: absolute; inset: 0; opacity: .03;
  background-image: linear-gradient(rgba(0,17,62,.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,17,62,.3) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* ── Congress card ── */
.sc-congress-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .35; display: block;
}
.sc-congress-ov1 {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,11,54,.65) 0%, transparent 35%, transparent 55%, rgba(0,11,54,.88) 100%);
}
.sc-congress-ov2 {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,11,54,.5) 0%, transparent 60%);
}
.sc-congress-body {
  position: relative; z-index: 3;
  padding: 60px 64px;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex; flex-direction: column;
}
.sc-congress-pill {
  display: inline-block; padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px); margin-bottom: 24px;
}
.sc-congress-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 700;
  color: #fff; line-height: .95; letter-spacing: -.04em; margin-bottom: 18px;
}
.sc-congress-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-bright), var(--red-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sc-congress-desc {
  font-size: 18px; color: rgba(255,255,255,.45); line-height: 1.68;
  max-width: 520px; margin-bottom: 22px; font-weight: 300;
}
.sc-congress-meta {
  display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px;
  font-size: 15px; color: rgba(255,255,255,.38);
}
.sc-congress-meta span { display: flex; align-items: center; gap: 8px; }
.sc-congress-meta svg { opacity: .5; flex-shrink: 0; }
.sc-congress-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.sc-congress-btn-ghost {
  display: inline-flex; align-items: center; padding: 13px 26px; border-radius: 12px;
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.75);
  text-decoration: none; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  transition: all .2s;
}
.sc-congress-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.sc-congress-stats { display: flex; flex-wrap: wrap; gap: 12px; }
.sc-congress-stat {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.sc-congress-stat strong { font-size: 15px; font-weight: 700; color: #fff; }
.sc-congress-stat span { font-size: 11px; color: rgba(255,255,255,.3); font-weight: 300; }
/* ── Responsive ── */
@media (max-width: 1024px) {
  .stack-card { grid-template-columns: 1fr; width: calc(100vw - 40px); }
  .sc-right { display: none; }
  .stack-intro { padding: 64px 24px 16px; }
  .stack-slot { top: 72px; }
}
@media (max-width: 640px) {
  .sc-left { padding: 36px 24px; }
  .sc-num { left: 24px; font-size: 72px; }
  .sc-congress-body { padding: 40px 24px; }
}
/* Nav */
#nav-placeholder { position: relative; z-index: 1000; }
