/* === index === */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --sdi-coral:        #f58b6e;
  --sdi-teal:         #349e89;
  --sdi-gunmetal:     #252d3a;
  --sdi-teal-deep:    #297a6a;
  --sdi-jaune:        #F5C842;
  --sdi-paper:        #f3f4f7;
  --sdi-paper-2:      #f5f5f5;
  --sdi-paper-3:      #e8eaef;
  --sdi-ivory:        #fafbfc;
  --sdi-teal-500:     #3eb89d;
  --sdi-teal-200:     #c7e7df;
  --sdi-teal-300:     #a6d8cb;
  --sdi-coral-200:    #fbe2d7;
  --sdi-coral-300:    #f9cdba;
  --sdi-ink-900:      #1a1d24;
  --sdi-ink-700:      #2a3038;
  --sdi-ink-500:      #5a6270;
  --sdi-ink-400:      #7a8290;
  --sdi-ink-100:      #e3e6ec;
  --bg-1:             var(--sdi-paper);
  --bg-2:             var(--sdi-ivory);
  --bg-3:             var(--sdi-paper-2);
  --fg-1:             var(--sdi-ink-900);
  --fg-2:             var(--sdi-ink-700);
  --fg-3:             var(--sdi-ink-500);
  --border-warm:      var(--sdi-ink-100);
  --font-display:     'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:        'Roboto', system-ui, -apple-system, sans-serif;
  --font-mono:        'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --r-md:             8px;
  --r-lg:             10px;
  --r-pill:           999px;
  --shadow-sm:        0 2px 6px rgba(37,45,58,.08);
  --shadow-md:        0 8px 24px rgba(37,45,58,.10);
  --shadow-poster:    0 24px 60px rgba(16,61,53,.20);
  --max-w:            1240px;
}

body {
  background: var(--bg-1);
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── SUPRA ── */
.supra {
  background: var(--sdi-teal-deep);
  color: var(--sdi-paper);
  padding: 8px 32px;
}
.supra-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .04em;
}
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
.nav-bar {
  background: var(--sdi-ivory);
  border-bottom: 1px solid var(--border-warm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links ul { display: contents; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: .02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .18s, font-size .25s ease;
}
.nav-links a:hover { color: var(--sdi-teal); }
.nav-links a.active { color: var(--sdi-teal); border-bottom-color: var(--sdi-teal); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  border-radius: var(--r-md);
  transition: background .18s;
}
.nav-cta:hover { background: var(--sdi-teal-deep); }
/* ── NAV SCROLL SHRINK ── */
.nav-inner { transition: padding .3s ease; }
.nav-bar img { transition: height .3s ease; }
.nav-bar.scrolled .nav-inner { padding: 10px 32px; }
.nav-bar.scrolled img { height: 44px !important; }
.nav-bar.scrolled .nav-links a { font-size: 13px; }
.nav-bar.scrolled .nav-cta { padding: 7px 14px; font-size: 12px; }


/* ── HERO ── */
.hero {
  position: relative;
  height: min(680px, 88vh);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20,28,39,.45) 0%, rgba(20,28,39,.88) 100%),
    url("/wp-content/themes/sdi-child/assets/images/bg-pattern.png");
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  text-align: left;
  color: var(--sdi-paper);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sdi-jaune);
  margin-bottom: 14px;
}
.hero-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--sdi-paper);
  max-width: 1100px;
}
.hero-sub {
  margin: 0 0 28px;
  max-width: 680px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(243,244,247,.82);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  border-radius: var(--r-md);
  transition: background .18s, transform .18s;
}
.btn-teal:hover { background: var(--sdi-teal-deep); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  background: transparent;
  color: var(--sdi-paper) !important;
  border: 2px solid rgba(243,244,247,.5);
  border-radius: var(--r-md);
  transition: border-color .18s;
}
.btn-ghost:hover { border-color: var(--sdi-paper); }

/* ── COUNTDOWN BAND ── */
.countdown-band {
  background: var(--sdi-paper-3);
  padding: 48px 32px;
}
.countdown-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.countdown-label .eyebrow {
  display: block;
  margin-bottom: 6px;
}
.countdown-label h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--fg-1);
  letter-spacing: -.01em;
}
.countdown-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 520px;
}
.countdown-block {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.countdown-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.countdown-unit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── SECTION SHARED ── */
.section {
  padding: 96px 32px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sdi-teal);
}
.rule {
  width: 64px;
  height: 6px;
  background: var(--sdi-jaune);
  border: 0;
  margin: 14px 0;
}
.rule-coral { background: var(--sdi-jaune); }
.rule-jaune { background: var(--sdi-jaune); }
h2.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--fg-1);
}

/* ── PROGRAMME ── */
.prog-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  transition: transform .2s, box-shadow .2s;
  color: var(--fg-1);
}
.prog-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.prog-date-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 54px;
  line-height: .9;
  color: var(--sdi-teal);
  letter-spacing: -.02em;
  text-align: center;
}
.prog-date-dow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 4px;
  text-align: center;
}
.prog-summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg-1);
  line-height: 1.25;
}
.prog-loc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 6px;
}
.prog-loc i { color: var(--sdi-teal); margin-right: 6px; }
.prog-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.prog-tag-teal { background: var(--sdi-teal); color: #fff; }
.prog-tag-jaune { background: var(--sdi-jaune); color: var(--sdi-gunmetal); }
.prog-tag-outline { border: 1px solid var(--sdi-teal); color: var(--sdi-teal); background: transparent; }

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--sdi-teal-200);
  color: var(--sdi-teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.why-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--fg-1);
  line-height: 1.25;
}
.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}

/* ── SPEAKERS ── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.speaker-card {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.speaker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.speaker-photo-area {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.speaker-photo-area.c0 { background: #c7e7df; }
.speaker-photo-area.c1 { background: #f9cdba; }
.speaker-photo-area.c2 { background: #c7e7df; }
.speaker-photo-area.c3 { background: #f9cdba; }
.speaker-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.speaker-photo-area.c0 .speaker-initials,
.speaker-photo-area.c2 .speaker-initials { color: var(--sdi-teal); }
.speaker-photo-area.c1 .speaker-initials,
.speaker-photo-area.c3 .speaker-initials { color: var(--sdi-coral); }
.speaker-photo-area.has-photo { background-size: cover; background-position: center center; }
.speaker-photo-area.has-photo .speaker-initials { display: none; }
.speaker-topic {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sdi-gunmetal);
  padding: 3px 8px;
  border-radius: 4px;
}
.speaker-info { padding: 14px 16px; background: #fff; }
.speaker-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  margin: 0 0 3px;
}
.speaker-role {
  font-size: 12px;
  color: var(--fg-2);
  margin: 0 0 2px;
}
.speaker-org {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--sdi-teal);
  margin: 0;
  letter-spacing: .04em;
}

/* ── STATS ── */
.stats-section {
  background: var(--sdi-teal);
  padding: 96px 32px;
  color: var(--sdi-paper);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  border-top: 2px solid rgba(243,244,247,.3);
  padding-top: 18px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sdi-paper);
}
.stat-label {
  font-size: 13px;
  margin-top: 10px;
  color: rgba(243,244,247,.85);
}

/* ── AFTERMOVIE ── */
.aftermovie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-thumb {
  position: relative;
  background-image: url("/wp-content/themes/sdi-child/assets/images/bg-pattern.png");
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-poster);
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,28,39,.65));
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.video-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: var(--sdi-paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  margin: 0;
  padding: 32px;
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-card blockquote {
  margin: 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-1);
}
.testi-who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  margin-top: auto;
}
.testi-role {
  font-size: 12px;
  color: var(--fg-3);
}



/* ── FAQ ── */
.faq-item { background: var(--sdi-ivory); border: 1px solid var(--border-warm); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; background: transparent; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg-1); }
.faq-q i { color: var(--sdi-teal); font-size: 14px; flex-shrink: 0; }
.faq-a { padding: 0 26px 22px; font-size: 15px; line-height: 1.6; color: var(--fg-2); display: none; }
.faq-item.open .faq-a { display: block; }

/* ── TICKETS ── */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.ticket-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border-warm);
  background: var(--sdi-ivory);
  position: relative;
}
.ticket-card.popular {
  border-color: var(--sdi-teal);
  box-shadow: 0 0 0 4px rgba(52,158,137,.12);
}
.ticket-popular-badge {
  background: var(--sdi-teal);
  color: var(--sdi-paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.ticket-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--border-warm);
}
.ticket-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sdi-teal);
  margin-bottom: 6px;
}
.ticket-tier {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--fg-1);
  margin: 0 0 6px;
}
.ticket-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  color: var(--sdi-gunmetal);
  letter-spacing: -.03em;
  line-height: 1;
}
.ticket-price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
}
.ticket-sub {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}
.ticket-body { padding: 22px 28px; }
.ticket-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-bullets li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
}
.ticket-bullets li i {
  color: var(--sdi-teal);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
}
.ticket-cta {
  display: block;
  text-align: center;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  border-radius: var(--r-md);
  transition: background .18s;
}
.ticket-cta:hover { background: var(--sdi-teal-deep); }
.ticket-scarcity {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.scarcity-bar {
  height: 4px;
  background: var(--sdi-ink-100);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.scarcity-fill {
  height: 100%;
  background: var(--sdi-coral);
  border-radius: 2px;
}

/* ── MEDIA PARTNERS ── */
.media-band {
  padding: 48px 32px;
  background: var(--sdi-paper-3);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.media-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.media-line {
  flex: 0 0 80px;
  height: 1px;
  background: var(--border-warm);
}
.media-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.media-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: .06em;
  opacity: .6;
  filter: grayscale(100%);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 32px;
  background: var(--sdi-gunmetal);
  color: var(--sdi-paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dot-grid {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 240px;
  height: 240px;
  opacity: .3;
  background-image: radial-gradient(circle, rgba(243,244,247,.4) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.dot-grid-right {
  left: auto;
  right: -30px;
  bottom: -30px;
  top: auto;
}
.final-cta-inner { position: relative; max-width: var(--max-w); margin: 0 auto; }
.final-cta .eyebrow { color: var(--sdi-jaune); margin-bottom: 18px; display: block; }
.final-cta h2 {
  margin: 0 auto 24px;
  max-width: 880px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--sdi-paper);
}
.highlight {
  background: var(--sdi-jaune);
  color: var(--sdi-gunmetal);
  padding: 0 6px;
  border-radius: 3px;
}
.final-cta p {
  margin: 0 auto 36px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(243,244,247,.78);
}

/* ── FOOTER ── */
footer {
  background: var(--sdi-gunmetal);
  color: var(--sdi-paper);
  padding: 72px 32px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(243,244,247,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.footer-socials a:hover { background: rgba(243,244,247,.2); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sdi-teal);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(243,244,247,.16);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(243,244,247,.55);
  letter-spacing: .04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .supra-inner { flex-direction: column; gap: 8px; font-size: 11px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero { height: min(520px, 78vh); }
  .hero-title { font-size: clamp(40px, 10vw, 80px); }
  .hero-sub { font-size: 18px; }
  .countdown-inner { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .aftermovie-grid { grid-template-columns: 1fr; gap: 32px; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .media-logos { gap: 24px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .prog-row { grid-template-columns: 72px 1fr; }
  .prog-tag { display: none; }
  /* Countdown: 2x2 grid on mobile */
  .countdown-blocks { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .countdown-num { font-size: 40px; }
  .countdown-band { padding: 40px 20px; }
  /* VIP scarcity band: wrap gracefully */
  .vip-scarcity-band { font-size: 11px; letter-spacing: .04em; padding: 8px 16px; }
  /* Final CTA padding */
  .final-cta { padding: 80px 20px; }
  /* Supra adjustments */
  .supra { padding: 8px 16px; }
  /* Hide extra VIP band text */
  .band-ext { display: none; }
}

/* ── HERO RESULT SUB ── */
.hero-result {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(243,244,247,.80);
  max-width: 640px;
  margin: 10px auto 0;
  line-height: 1.55;
  text-align: center;
}
/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band {
  background: var(--sdi-jaune);
  color: #1a1a1a;
  text-align: center;
  padding: 9px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vip-scarcity-band i { margin-right: 7px; }
/* ── PANELISTES ANNONCE ── */
.panelistes-annonce {
  background: var(--sdi-paper-3);
  border: 2px dashed var(--sdi-teal-300);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  text-align: center;
  margin-top: 32px;
}
.panelistes-annonce p { margin: 8px 0 0; font-size: 15px; color: var(--fg-3); }
.panelistes-annonce strong { font-family: var(--font-display); font-size: 17px; color: var(--fg-1); }
/* ── CE QUE VOUS REPARTIREZ AVEC ── */
.repartir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.repartir-card {
  background: var(--sdi-ivory);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--border-warm);
}
.repartir-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--sdi-teal-deep);
}
.repartir-card p {
  font-size: 14px;
  margin: 0;
  color: var(--fg-3);
  line-height: 1.5;
}
/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-1);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 901px) { .nav-toggle { display: none; } }

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--sdi-ivory);
  border-top: 1px solid var(--border-warm);
  padding: 16px 20px 24px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu ul { display: contents; list-style: none; padding: 0; margin: 0; }
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-1);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-warm);
  text-decoration: none;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a.active { color: var(--sdi-teal); }
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  border-bottom: none !important;
}

@media (max-width: 560px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}



/* ── PAGE HERO (billets, partenaires, sous-pages) ── */
.page-hero {
  background: var(--sdi-gunmetal);
  color: var(--sdi-paper);
  padding: 72px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(52,158,137,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.page-hero .eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--sdi-jaune); display: block; margin-bottom: 16px; }
.page-hero h1 { margin: 0 0 20px; font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -.02em; color: var(--sdi-paper); }
.page-hero h1 .hl { background: var(--sdi-jaune); color: var(--sdi-gunmetal); padding: 0 6px; border-radius: 3px; }
.page-hero p { font-size: 18px; line-height: 1.6; color: rgba(243,244,247,.78); margin: 0 auto; max-width: 560px; }

/* === index === */

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-carousel-wrapper {
  position: relative;
}
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #FAFAF8, transparent);
}
.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #FAFAF8, transparent);
}


/* === billets === */

/* ── SUPRA ── */

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */

/* ── HAMBURGER ── */

/* ── PAGE HERO ── */

/* ── VIP SCARCITY ── */

/* ── SECTION ── */

/* ── TICKETS GRID ── */
.tickets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 48px; }
.ticket-card { background: var(--sdi-ivory); border: 1.5px solid var(--border-warm); border-radius: 12px; padding: 36px 32px; position: relative; }
.ticket-card.featured { background: var(--sdi-teal); border-color: var(--sdi-teal); color: var(--sdi-paper); margin-top: -20px; box-shadow: 0 24px 48px rgba(52,158,137,.30); }
.ticket-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sdi-jaune); color: var(--sdi-gunmetal); font-family: var(--font-display); font-weight: 800; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; white-space: nowrap; }
.ticket-type { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.ticket-card.featured .ticket-type { color: rgba(243,244,247,.75); }
.ticket-card:not(.featured) .ticket-type { color: var(--sdi-teal); }
.ticket-price { font-family: var(--font-display); font-weight: 900; line-height: 1; margin-bottom: 6px; }
.ticket-price .amount { font-size: 64px; letter-spacing: -.03em; }
.ticket-price .currency { font-size: 28px; vertical-align: super; }
.ticket-price-sub { font-size: 13px; color: var(--fg-3); margin-bottom: 28px; }
.ticket-card.featured .ticket-price-sub { color: rgba(243,244,247,.65); }
.ticket-divider { border: none; border-top: 1px solid var(--border-warm); margin: 24px 0; }
.ticket-card.featured .ticket-divider { border-color: rgba(243,244,247,.2); }
.ticket-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.ticket-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; }
.ticket-features li i { font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.ticket-card:not(.featured) .ticket-features li i { color: var(--sdi-teal); }
.ticket-card.featured .ticket-features li i { color: var(--sdi-jaune); }
.ticket-features li.muted { opacity: .45; }
.btn-ticket-primary { display: block; width: 100%; padding: 14px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .02em; border-radius: var(--r-md); transition: background .18s, transform .15s; cursor: pointer; }
.btn-ticket-primary:hover { transform: translateY(-2px); }
.ticket-card:not(.featured) .btn-ticket-primary { background: var(--sdi-teal); color: var(--sdi-paper); }
.ticket-card:not(.featured) .btn-ticket-primary:hover { background: var(--sdi-teal-deep); }
.ticket-card.featured .btn-ticket-primary { background: var(--sdi-paper); color: var(--sdi-gunmetal); }
.ticket-card.featured .btn-ticket-primary:hover { background: #fff; }
.ticket-note { text-align: center; font-size: 12px; color: var(--fg-3); margin-top: 10px; }
.ticket-card.featured .ticket-note { color: rgba(243,244,247,.55); }

/* Progress bar (VIP) */
.ticket-progress { margin-bottom: 24px; }
.ticket-progress-label { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: rgba(243,244,247,.7); margin-bottom: 6px; }
.ticket-progress-bar { background: rgba(243,244,247,.2); border-radius: 99px; height: 6px; overflow: hidden; }
.ticket-progress-fill { background: var(--sdi-jaune); height: 100%; border-radius: 99px; width: 74%; }

/* ── COMPARAISON ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 14px; }
.compare-table th { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 14px 16px; background: var(--sdi-paper-3); text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table th.featured-col { background: var(--sdi-teal); color: var(--sdi-paper); }
.compare-table td { padding: 14px 16px; border-top: 1px solid var(--border-warm); vertical-align: middle; }
.compare-table td:first-child { font-weight: 500; color: var(--fg-1); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table td.featured-col { background: rgba(52,158,137,.06); }
.compare-table tr:hover td { background: rgba(0,0,0,.02); }
.compare-table tr:hover td.featured-col { background: rgba(52,158,137,.10); }
.check { color: var(--sdi-teal); font-size: 16px; }
.cross { color: var(--sdi-ink-100); font-size: 16px; }
/* ── REASSURANCE ── */
.reassurance { background: #fff; border-radius: 12px; padding: 24px 32px; margin-top: 48px; border: 1px solid var(--border-warm); }
.reassurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.reassurance-item { display: flex; align-items: center; gap: 12px; }
.reassurance-item i { font-size: 20px; color: var(--sdi-teal); flex-shrink: 0; }
.reassurance-item span { font-size: 13px; color: var(--fg-3); line-height: 1.4; }

/* ── FINAL CTA ── */

/* ── HOME PAGE specific ── */

/* ── FOOTER ── */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .supra-inner { flex-direction: column; gap: 8px; font-size: 11px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .ticket-card.featured { margin-top: 0; }
  .compare-table { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px 56px; }
  .vip-band { font-size: 11px; letter-spacing: .04em; padding: 8px 16px; }
  .compare-table { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 72px 20px; }
  .reassurance { padding: 20px; }
}

/* === global-utils === */

/* ── SCARCITY BANNER ── */
.banner-desktop { display: inline; }
.banner-mobile { display: none; }
@media (max-width: 640px) {
  .banner-desktop { display: none; }
  .banner-mobile { display: inline; }
}
.vip-count-live { font-weight: 900; color: inherit; }

/* ── HOME LOGO SLIDER ── */
.logo-slide { flex-shrink: 0; }
.logo-slide img { height: 40px; width: auto; object-fit: contain; opacity: .7; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.logo-slide img:hover { opacity: 1; filter: grayscale(0); }

/* ── HOME WHY STAT ── */
.why-stat { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-2); line-height: 1.5; padding: 12px 0; border-bottom: 1px solid var(--sdi-ink-100); }
.why-stat:last-child { border-bottom: none; }

/* ── COUNTDOWN LABEL ── */
.countdown-label { text-align: left; }

/* === paiement === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials { display: flex; align-items: center; gap: 14px; }
.supra-socials a { color: rgba(243,244,247,.75); font-size: 14px; transition: color .18s; }
.supra-socials a:hover { color: var(--sdi-paper); }

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── HAMBURGER ── */
@media (min-width: 901px) { .nav-toggle { display: none; } }
.nav-mobile-menu .nav-cta-mobile { margin-top: 16px; background: var(--sdi-teal); color: var(--sdi-paper) !important; text-align: center; border-radius: var(--r-md); padding: 12px 20px; border-bottom: none !important; }

/* ── VIP BAND ── */
.vip-band { background: var(--sdi-jaune); color: #1a1a1a; text-align: center; padding: 9px 24px; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.vip-band i { margin-right: 7px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--sdi-ivory);
  border-bottom: 1px solid var(--border-warm);
  padding: 12px 32px;
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fg-3);
}
.breadcrumb-inner a {
  color: var(--sdi-teal);
  transition: opacity .15s;
}
.breadcrumb-inner a:hover { opacity: .75; }
.breadcrumb-sep { color: var(--fg-3); }

/* ── STEPPER ── */
.stepper-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-warm);
  padding: 20px 32px;
}
.stepper-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stepper-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sdi-teal);
}
.stepper-track {
  background: var(--border-warm);
  height: 6px;
  border-radius: var(--r-pill);
  overflow: hidden;
  max-width: 320px;
}
.stepper-fill {
  background: var(--sdi-teal);
  height: 100%;
  width: 66.66%;
  border-radius: var(--r-pill);
  transition: width .4s ease;
}

/* ── CHECKOUT LAYOUT ── */
.checkout-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* ── IFRAME ── */
.checkout-iframe-wrapper {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.checkout-iframe-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}
.iframe-fallback {
  padding: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--fg-2);
}
.iframe-fallback a { color: var(--sdi-teal); text-decoration: underline; }

/* ── RÉCAPITULATIF ── */
.recap-card {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: sticky;
  top: 80px;
}
.recap-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 20px;
  display: block;
}
.recap-ticket-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg-1);
  margin-bottom: 4px;
}
.recap-ticket-sub {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 20px;
}
.recap-avantages {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recap-avantages li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
}
.recap-avantages li i { color: var(--sdi-teal); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.recap-divider { border: none; border-top: 1px solid var(--border-warm); margin: 20px 0; }
.recap-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.recap-line:last-of-type { margin-bottom: 0; }
.recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--fg-1);
  margin-top: 16px;
}
.recap-urgence {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(245,139,110,.12);
  border-left: 3px solid var(--sdi-coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13px;
  color: var(--fg-1);
  line-height: 1.5;
}
.recap-urgence strong { color: var(--sdi-coral); }
.recap-back {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--sdi-teal);
  text-align: center;
  transition: opacity .15s;
}
.recap-back:hover { opacity: .75; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sdi-paper);
  border-top: 1px solid var(--border-warm);
  padding: 40px 32px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(52,158,137,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sdi-teal);
}
.trust-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sdi-ink-100);
}
.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-1);
  margin-bottom: 4px;
}
.trust-text span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.4;
}

/* ── FOOTER ── */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .checkout-wrapper { grid-template-columns: 1fr; }
  .recap-card { position: static; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .breadcrumb { padding: 10px 16px; }
  .stepper-bar { padding: 16px 20px; }
  .checkout-wrapper { padding: 24px 16px 60px; gap: 24px; }
  .trust-bar { padding: 32px 16px; }
  .trust-inner { grid-template-columns: 1fr; }
  .vip-band { font-size: 11px; letter-spacing: .04em; padding: 8px 16px; }
}


/* === lp-libre === */

/* body: scoped to .lp-page only — removed global override */

/* HEADER */
.lp-header{background:var(--gun);padding:16px 24px;display:flex;align-items:center;justify-content:space-between;max-width:100%;position:sticky;top:0;z-index:100}
.lp-header-inner{max-width:var(--max);margin:0 auto;width:100%;display:flex;align-items:center;justify-content:space-between}
.lp-brand{display:flex;align-items:center;gap:10px}
.lp-brand-name{font-family:var(--fh);font-weight:900;font-size:14px;letter-spacing:.05em;text-transform:uppercase;color:#fff}
.lp-brand-pill{font-family:var(--fh);font-size:11px;font-weight:700;color:var(--teal);background:rgba(52,158,137,.15);padding:3px 9px;border-radius:20px;letter-spacing:.06em;border:1px solid rgba(52,158,137,.2)}
.lp-header-dates{font-family:var(--fh);font-size:11px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:.04em;text-transform:uppercase}

/* COUNTDOWN */
.cd-bar{background:var(--jaune);color:var(--gun);text-align:center;padding:10px 24px;font-family:var(--fh);font-size:12px;font-weight:700;letter-spacing:.04em;display:flex;align-items:center;justify-content:center;gap:10px}
.cd-time{font-size:1rem;font-weight:900;letter-spacing:.06em}

/* HERO */
.lp-page .hero{background:var(--gun);padding:60px 24px 72px;text-align:center;position:relative;overflow:hidden}
.lp-page .hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 60% 50%,rgba(52,158,137,.18) 0%,transparent 70%);pointer-events:none}
.lp-page .hero-inner{position:relative;max-width:var(--max);margin:0 auto}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(52,158,137,.12);color:var(--teal);font-family:var(--fh);font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:6px 16px;border-radius:20px;border:1px solid rgba(52,158,137,.25);margin-bottom:28px}
.lp-page .hero h1{font-family:var(--fh);font-size:clamp(32px,5vw,56px);font-weight:900;line-height:1.08;color:#fff;margin:0 0 22px;letter-spacing:-.03em}
.lp-page .hero h1 .hl{color:var(--teal)}
.lp-page .hero-sub{font-size:1.05rem;color:rgba(255,255,255,.7);line-height:1.65;margin:0 auto 32px;max-width:540px}
.btn-hero-cta{display:inline-flex;align-items:center;background:var(--teal);color:#fff;font-family:var(--font-display);font-weight:700;font-size:17px;padding:16px 36px;border-radius:8px;text-decoration:none;transition:background .18s}
.btn-hero-cta:hover{background:#1d6b5e}
.hero-proof{display:inline-flex;align-items:center;gap:10px;color:rgba(255,255,255,.55);font-size:13px}
.live-dots{display:flex;gap:4px;align-items:center}
.live-dots span{width:7px;height:7px;background:var(--teal);border-radius:50%;animation:blink 2s infinite;opacity:.9}
.live-dots span:nth-child(2){animation-delay:.35s}.live-dots span:nth-child(3){animation-delay:.7s}
@keyframes blink{0%,100%{opacity:.3}50%{opacity:1}}

/* FORM CARD */
.form-section{padding:52px 24px 60px;background:var(--ivory)}
.form-card{background:#fff;border-radius:20px;box-shadow:0 20px 60px rgba(37,45,58,.13);padding:44px 44px 40px;max-width:var(--max);margin:0 auto}
@media(max-width:580px){.form-card{padding:32px 24px 28px}}
.form-card-title{font-family:var(--fh);font-size:1.45rem;font-weight:800;color:var(--fg1);margin:0 0 6px;letter-spacing:-.02em;text-align:center}
.form-card-sub{text-align:center;color:var(--fg3);font-size:.93rem;margin:0 0 28px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:16px}
@media(max-width:500px){.form-row{grid-template-columns:1fr}}
.form-grp label{display:block;font-family:var(--fh);font-size:11px;font-weight:700;color:var(--fg2);letter-spacing:.06em;text-transform:uppercase;margin-bottom:7px}
.form-grp input{width:100%;padding:13px 16px;border:1.5px solid var(--bw);border-radius:var(--r);font-family:var(--fb);font-size:15px;color:var(--fg1);background:var(--ivory);outline:none;transition:border-color .18s,box-shadow .18s}
.form-grp input:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(52,158,137,.12)}
.btn-main{width:100%;padding:17px 24px;background:var(--teal);color:#fff;font-family:var(--fh);font-size:1rem;font-weight:800;letter-spacing:.01em;border:none;border-radius:var(--r);cursor:pointer;transition:background .18s,transform .1s;display:flex;align-items:center;justify-content:center;gap:10px}
.btn-main:hover{background:var(--teal-d)}.btn-main:active{transform:scale(.98)}
.form-trust{text-align:center;font-size:12.5px;color:var(--fg3);margin:14px 0 0;display:flex;align-items:center;justify-content:center;gap:6px}

/* FEATURES */
.features{padding:60px 24px;background:var(--paper)}
.sec-inner{max-width:var(--max);margin:0 auto}
.sec-kicker{font-family:var(--fh);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal);margin:0 0 10px}
.sec-h2{font-family:var(--fh);font-size:clamp(1.5rem,4vw,1.9rem);font-weight:800;color:var(--fg1);margin:0 0 36px;letter-spacing:-.02em;line-height:1.18}
.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:500px){.features-grid{grid-template-columns:1fr}}
.feat-card{background:#fff;border-radius:var(--r);padding:24px;border:1px solid var(--bw)}
.feat-icon{width:42px;height:42px;background:rgba(52,158,137,.1);color:var(--teal);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:19px;margin-bottom:14px}
.feat-card h3{font-family:var(--fh);font-size:.9rem;font-weight:700;color:var(--fg1);margin:0 0 6px}
.feat-card p{font-size:.875rem;color:var(--fg3);margin:0;line-height:1.55}

/* SPEAKERS */
.speakers{padding:60px 24px;background:#fff}
.speakers-grid{display:flex;gap:20px;flex-wrap:wrap;margin-top:28px;justify-content:center}
.spk{flex:1;min-width:130px;text-align:center}
.spk-av{width:68px;height:68px;border-radius:50%;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;font-family:var(--fh);font-size:16px;font-weight:800;color:#fff;letter-spacing:.02em}
.c0{background:linear-gradient(135deg,#349e89,#1e7060)}
.c1{background:linear-gradient(135deg,#f58b6e,#d06040)}
.c2{background:linear-gradient(135deg,#6e7bd4,#4a56b8)}
.c3{background:linear-gradient(135deg,#F5C842,#d4a010);color:var(--gun)}
.spk-name{font-family:var(--fh);font-size:.82rem;font-weight:700;color:var(--fg1);margin:0 0 4px}
.spk-role{font-size:.78rem;color:var(--fg3);line-height:1.4}
.spk-badge{display:inline-block;font-family:var(--fh);font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:3px 9px;border-radius:20px;margin-top:6px;background:rgba(52,158,137,.1);color:var(--teal)}

/* STATS */
.stats{background:var(--gun);padding:52px 24px}
.lp-page .stats-grid{max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center}
@media(max-width:460px){.stats-grid{grid-template-columns:1fr 1fr}}
.stat-n{font-family:var(--fh);font-size:2.2rem;font-weight:900;color:var(--teal);display:block;line-height:1}
.stat-l{font-size:.8rem;color:rgba(255,255,255,.55);margin-top:6px;display:block;line-height:1.4}

/* CTA BOTTOM */
.cta-bot{background:linear-gradient(160deg,var(--teal-d),var(--teal));padding:60px 24px;text-align:center}
.cta-bot h2{font-family:var(--fh);font-size:1.85rem;font-weight:900;color:#fff;margin:0 0 12px;letter-spacing:-.02em;line-height:1.2}
.cta-bot p{color:rgba(255,255,255,.75);margin:0 0 28px}
.cta-bot .btn-ghost{display:inline-flex;align-items:center;gap:10px;padding:16px 32px;background:rgba(255,255,255,.12);color:#fff;font-family:var(--fh);font-size:1rem;font-weight:700;border-radius:var(--r);border:2px solid rgba(255,255,255,.3);transition:background .18s}
.cta-bot .btn-ghost:hover{background:rgba(255,255,255,.2)}

/* FOOTER */
.lp-footer{background:var(--gun);padding:28px 24px;text-align:center;border-top:1px solid rgba(255,255,255,.06)}
.lp-footer p{font-size:12px;color:rgba(255,255,255,.3);margin:0 0 6px}
.lp-footer a{color:rgba(255,255,255,.35);text-decoration:underline}


/* === lp-montreal === */

/* HEADER LOCK */
.lp-header-lock { display: flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* URGENCY BAR */
.urgency-bar { background: var(--sdi-jaune); color: var(--sdi-gunmetal); text-align: center; padding: 10px 24px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; }

/* SCARCITY BAND */
.scarcity { background: #fff3cd; border-bottom: 1px solid #ffd966; padding: 10px 24px; text-align: center; }
.scarcity-inner { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--sdi-gunmetal); }

/* HERO with event info */
.hero-event-info { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.hero-event-info span { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); }
.lp-page .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.65; margin: 0 auto 32px; max-width: 540px; text-align: center; }

/* INCLUDES */
.includes { padding: 60px 24px; background: #fff; }
.includes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.inc-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--sdi-paper); border-radius: var(--r-md); }
.inc-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(52,158,137,.12); color: var(--sdi-teal); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.inc-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--sdi-gunmetal); margin-bottom: 3px; }
.inc-text span { font-size: 13px; color: var(--sdi-ink-500); }

/* AGENDA */
.agenda { padding: 60px 24px; background: var(--sdi-paper); }
.agenda-list { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.agenda-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; background: #fff; border-radius: var(--r-md); padding: 16px 20px; border: 1px solid var(--sdi-ink-100); }
.agenda-time { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; color: var(--sdi-teal); padding-top: 2px; }
.agenda-content h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--sdi-gunmetal); margin: 0 0 4px; }
.agenda-speaker { font-size: 13px; color: var(--sdi-ink-500); }

/* GUARANTEE */
.guarantee { padding: 60px 24px; background: #fff; }
.guarantee-card { display: flex; align-items: flex-start; gap: 20px; background: rgba(52,158,137,.06); border: 1px solid rgba(52,158,137,.2); border-radius: var(--r-md); padding: 28px; max-width: 660px; margin: 28px auto 0; }
.guarantee-icon { width: 52px; height: 52px; background: var(--sdi-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; }
.guarantee-text h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--sdi-gunmetal); margin: 0 0 8px; }
.guarantee-text p { font-size: 14px; color: var(--sdi-ink-500); line-height: 1.6; margin: 0; }

/* STICKY CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--sdi-gunmetal); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; z-index: 999; box-shadow: 0 -4px 24px rgba(0,0,0,.2); }

/* CHECKOUT */
.checkout-wrapper-2col { display: grid; grid-template-columns: 1fr 380px; gap: 40px; max-width: 1080px; margin: 0 auto; padding: 60px 24px; align-items: start; }
.checkout-iframe-box { background: #fff; border-radius: var(--r-md); overflow: hidden; }
@media (max-width: 800px) { .checkout-wrapper-2col { grid-template-columns: 1fr; } }

/* RECAP STICKY */
.recap-sticky { position: sticky; top: 80px; background: #fff; border-radius: 16px; border: 1.5px solid var(--sdi-ink-100); padding: 28px; }
.recap-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sdi-teal); margin: 0 0 12px; }
.recap-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--sdi-gunmetal); margin: 0 0 4px; }
.recap-sub { font-size: 13px; color: var(--sdi-ink-500); margin: 0 0 20px; }
.recap-hr { border: 0; border-top: 1px solid var(--sdi-ink-100); margin: 16px 0; }
.recap-ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.recap-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--sdi-ink-500); }
.recap-total-row { display: flex; justify-content: space-between; align-items: baseline; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--sdi-gunmetal); margin-bottom: 4px; }
.recap-note { font-size: 12px; color: var(--sdi-ink-500); text-align: center; }
.currency { font-size: 14px; vertical-align: super; font-weight: 700; }

/* PROGRESS BAR */
.progress-bar { background: var(--sdi-ink-100); border-radius: 999px; height: 8px; margin-bottom: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--sdi-teal); border-radius: 999px; transition: width .4s ease; }
.progress-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--sdi-teal); margin-bottom: 16px; }

/* PRICE BADGE */
.price-badge { display: inline-flex; align-items: baseline; gap: 4px; background: rgba(52,158,137,.1); border-radius: var(--r-md); padding: 8px 16px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--sdi-teal); }

/* SEP */
.sep { border: 0; border-top: 1px solid var(--sdi-ink-100); margin: 40px 0; }

/* HL */
.hl { color: var(--sdi-teal); }

/* FAQ lp-montreal */
.lp-page .faq { padding: 60px 24px; background: var(--sdi-paper); }
.lp-page .faq-list { max-width: 660px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 8px; }
.lp-page .faq-item { background: #fff; border-radius: var(--r-md); border: 1px solid var(--sdi-ink-100); overflow: hidden; }
.lp-page .faq-q { width: 100%; text-align: left; padding: 18px 20px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--sdi-gunmetal); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-page .faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--sdi-ink-500); line-height: 1.65; }
/* === panelistes === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── NAV TOGGLE ── */

/* ── MOBILE MENU ── */
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band i { margin-right: 7px; }

/* ── HERO ── */
.hero-panelistes {
  background: var(--sdi-gunmetal);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-panelistes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(52,158,137,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-panelistes .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sdi-jaune);
  margin-bottom: 18px;
}
.hero-panelistes h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: #fff;
}
.hero-panelistes h1 span {
  color: var(--sdi-teal);
}
.hero-panelistes .sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(243,244,247,.80);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(243,244,247,.90);
}
.hero-badge i { color: var(--sdi-teal); }

/* ── SPEAKERS GRID ── */
.speakers-section {
  padding: 72px 32px;
  background: var(--sdi-paper);
}
.speakers-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--sdi-teal);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: var(--fg-3);
  margin: 0 0 48px;
}
.speakers-grid-lg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── SPEAKER CARD LARGE ── */
.speaker-card-lg {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
  display: block;
  color: inherit;
  text-decoration: none;
}
.speaker-card-lg:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }

.speaker-photo-lg {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.speaker-photo-lg.c0 { background: #c7e7df; }
.speaker-photo-lg.c1 { background: #f9cdba; }
.speaker-photo-lg.c2 { background: #c7e7df; }
.speaker-photo-lg.c3 { background: #f9cdba; }

/* Cercle blanc avec initiales colorées */
.speaker-initials-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
}
.speaker-photo-lg.c0 .speaker-initials-circle { color: var(--sdi-teal); }
.speaker-photo-lg.c1 .speaker-initials-circle { color: var(--sdi-coral); }
.speaker-photo-lg.c2 .speaker-initials-circle { color: var(--sdi-teal); }
.speaker-photo-lg.c3 .speaker-initials-circle { color: var(--sdi-coral); }
.speaker-photo-lg.has-photo { background-size: cover; background-position: center top; background-color: #2d3748; }
.speaker-photo-lg.has-photo .speaker-initials-circle { display: none; }

/* Badge topic en overlay haut-gauche */
.speaker-badge-topic {
  position: absolute; top: 10px; left: 10px;
  background: var(--sdi-gunmetal); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}

.speaker-card-body { padding: 14px 16px; background: #fff; }
.speaker-card-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-1); margin: 0 0 3px; }
.speaker-card-role { font-size: 12px; color: var(--fg-2); margin: 0 0 2px; }
.speaker-card-org { font-size: 12px; color: var(--sdi-teal); font-weight: 600; margin: 0; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.prog-filter-bar {
  position: sticky;
  top: 159px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(37,45,58,.1);
  padding: 10px 32px;
  transition: top .3s ease;
}
body.nav-scrolled .prog-filter-bar { top: 65px; }
.prog-filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.filter-pills-group {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-warm);
  background: #fff;
  color: var(--fg-2);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.filter-pill:hover { background: var(--sdi-paper); }
.filter-pill.active { background: var(--sdi-teal); color: #fff; border-color: var(--sdi-teal); }
.filter-search {
  flex-shrink: 0;
  padding: 7px 14px;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-1);
  outline: none;
  width: 220px;
  transition: border-color .15s;
}
.filter-search:focus { border-color: var(--sdi-teal); }
.filter-search::placeholder { color: var(--fg-3); }
.filter-select-more {
  appearance: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 28px 6px 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-warm);
  background: #fff url("/wp-content/themes/sdi-child/assets/images/bg-pattern.png") no-repeat right 10px center;
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color .15s;
}
.filter-select-more:focus { outline: none; border-color: var(--sdi-teal); }
.filter-select-more.active { border-color: var(--sdi-teal); color: var(--sdi-teal); }

/* ── PANELISTES ANNONCE ── */
.panelistes-annonce {
  background: linear-gradient(135deg, var(--sdi-paper) 0%, #eef4f2 100%);
  border: 1.5px solid #c5ddd8;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.annonce-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sdi-teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 300;
  margin-bottom: 4px;
}
.panelistes-annonce p { margin: 0; font-size: 15px; color: var(--fg-3); }
.panelistes-annonce strong { font-family: var(--font-display); font-size: 17px; color: var(--fg-1); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--sdi-ivory);
  padding: 72px 32px;
  text-align: center;
  border-top: 1px solid var(--border-warm);
}
.cta-section-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--fg-1);
  margin: 0 0 14px;
}
.cta-section p {
  color: var(--fg-2);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--sdi-teal);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: var(--r-md);
  transition: background .18s;
}
.btn-primary:hover { background: var(--sdi-teal-deep); }

/* ── FOOTER ── */
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .speakers-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .hero-panelistes { padding: 60px 20px; }
  .speakers-section { padding: 48px 20px; }
  .cta-section { padding: 48px 20px; }
  .band-ext { display: none; }
}
@media (max-width: 560px) {
  .speakers-grid-lg { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speaker-photo-lg { font-size: 32px; }
}


/* === paneliste === */

/* ── LAYOUT ── */
.paneliste-page { max-width: 1080px; margin: 0 auto; padding: 48px 32px 96px; }
.paneliste-breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(37,45,58,.45); margin-bottom: 40px; display: flex; align-items: center; gap: 8px; }
.paneliste-breadcrumb a { color: inherit; text-decoration: none; }
.paneliste-breadcrumb a:hover { color: #349e89; }
.paneliste-breadcrumb span { color: rgba(37,45,58,.3); }
.paneliste-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }

/* ── LEFT CARD ── */
.paneliste-card-left { background: #fff; border: 1.5px solid rgba(37,45,58,.1); border-radius: 16px; overflow: hidden; position: relative; }
.paneliste-tag { position: absolute; top: 12px; left: 12px; background: rgba(37,45,58,.85); color: #f8f5ef; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; z-index: 2; }
.paneliste-avatar-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.paneliste-avatar-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.paneliste-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 48px; }

/* ── SOCIAL LINKS ── */
.paneliste-social-links { display: flex; gap: 0; border-top: 1px solid rgba(37,45,58,.08); }
.paneliste-social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(37,45,58,.6); text-decoration: none; border-right: 1px solid rgba(37,45,58,.08); transition: color .15s, background .15s; }
.paneliste-social-btn:last-child { border-right: none; }
.paneliste-social-btn:hover { color: #349e89; background: rgba(52,158,137,.05); }

/* ── RIGHT CONTENT ── */
.paneliste-content-right { }
.paneliste-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #349e89; margin-bottom: 8px; display: block; }
.paneliste-accent { width: 36px; height: 4px; background: #F5C842; border-radius: 2px; margin-bottom: 20px; border: 0; }
.paneliste-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(40px, 5vw, 68px); line-height: 1.0; letter-spacing: -.02em; color: #252d3a; margin: 0 0 8px; }
.paneliste-org { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: #349e89; margin-bottom: 24px; }
.paneliste-bio { font-size: 16px; line-height: 1.7; color: #4a5568; margin-bottom: 36px; }

/* ── SESSIONS ── */
.paneliste-sessions { margin-bottom: 32px; }
.paneliste-sched.sched { padding: 0; background: transparent; }
.paneliste-sched .sched__inner { max-width: 100%; margin: 0; padding: 0; }
.paneliste-sessions-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #349e89; margin-bottom: 16px; }
.session-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: center; padding: 16px 20px; margin-bottom: 8px; border: 1.5px solid rgba(37,45,58,.1); border-radius: 10px; background: #fff; text-decoration: none; color: inherit; transition: box-shadow .15s, border-color .15s; }
.session-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #349e89; }
.session-row-date { display: flex; flex-direction: column; align-items: center; }
.session-date-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; line-height: .9; color: #349e89; }
.session-date-sub { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(37,45,58,.45); margin-top: 4px; }
.session-row-info { }
.session-row-titre { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: #252d3a; margin: 0 0 3px; }
.session-row-meta { font-size: 12px; color: rgba(37,45,58,.5); margin: 0; }
.session-row-arrow { color: #349e89; font-size: 14px; }

/* ── RELATED ── */
.paneliste-related { background: var(--sdi-paper); padding: 64px 32px; margin-top: 0; border-top: 1px solid rgba(37,45,58,.08); }
.paneliste-related-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #349e89; margin-bottom: 8px; }
.paneliste-related-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: #252d3a; margin: 0 0 32px; }
.related-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card { background: #fafbfc; border: 1px solid rgba(37,45,58,.1); border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; display: block; }
.related-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }
.related-card-photo { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: #c7e7df; }
.related-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.related-card-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; }
.related-card-tag { position: absolute; top: 8px; left: 8px; background: rgba(37,45,58,.8); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 3px 8px; border-radius: 3px; }
.related-card-info { padding: 12px 14px; background: #fff; }
.related-card-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: #1a1e27; margin: 0 0 3px; }
.related-card-role { font-size: 12px; color: #4a5060; margin: 0 0 2px; }
.related-card-org { font-size: 12px; color: #349e89; font-weight: 600; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .paneliste-grid { grid-template-columns: 1fr; }
  .paneliste-page { padding: 32px 20px 64px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .paneliste-related { padding: 48px 20px; }
}

/* === programmation === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── HAMBURGER ── */
@media (max-width: 900px) {
}
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band i { margin-right: 7px; }

/* ── HERO PROGRAMMATION ── */
.prog-hero {
  background: var(--sdi-gunmetal);
  padding: 80px 32px 72px;
  position: relative;
  overflow: hidden;
}
.prog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(52,158,137,.18) 0%, transparent 70%);
  pointer-events: none;
}
.prog-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.prog-hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--sdi-jaune);
  margin-bottom: 18px;
}
.prog-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--sdi-paper);
}
.prog-hero h1 .jaune { color: var(--sdi-teal); }
.prog-hero-sub {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(243,244,247,.78);
}


/* ── EYEBROW ── */

/* ── FOOTER ── */
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }

/* ── RESPONSIVE (nav/footer/hero) ── */
@media (max-width: 900px) {
  .prog-hero { padding: 60px 24px 52px; }
}
@media (max-width: 640px) {
  .band-ext { display: none; }
}

/* ============================================================
   SECTION : SCHEDULE / PROGRAMMATION
   ============================================================ */
.sched {
  padding: 56px 32px 96px;
  background: #F3F4F7;
}
.sched__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ---- Day block ---- */
.sched-day { margin-bottom: 56px; }
.sched-day__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 2px solid #349e89;
}
.sched-day__date-block {
  display: flex; flex-direction: column; gap: 0;
}
.sched-day__day-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #349e89;
  line-height: 1;
  margin-bottom: 3px;
}
.sched-day__num-row {
  display: flex; align-items: center; gap: 12px;
}
.sched-day__numeral {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: .85;
  color: #349e89;
  letter-spacing: -.03em;
}
.sched-day__month {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #252d3a;
  margin-bottom: 2px;
}
.sched-day__venue {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  color: #8a95a3;
  margin-top: 2px;
}
.sched-day__summary {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 15px;
  color: #4a5568;
  font-style: italic;
}
.sched-day__tag {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #8a95a3;
}

/* ---- Sessions list ---- */
.sched-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.sched-row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(37,45,58,0.1);
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  color: inherit;
}
.sched-row:last-child { border-bottom: 0; }
.sched-row:hover { background: #fffbf0; }
.sched-row--no-detail { cursor: default; }
.sched-row--no-detail:hover { background: transparent; }

.sched-row__time {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 600;
  font-size: 18px;
  color: #252d3a;
  letter-spacing: .02em;
}
.sched-row__duration {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #8a95a3;
  margin-top: 2px;
}

.sched-row__body { min-width: 0; }
.sched-row__chips {
  display: flex; gap: 8px; align-items: center; margin-bottom: 6px; flex-wrap: wrap;
}
.sched-chip {
  display: inline-block;
  padding: 3px 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 4px;
}
.sched-chip--conference { background: #d0ede8; color: #1a4f45; }
.sched-chip--panel      { background: #fde8e4; color: #7a2218; }
.sched-chip--atelier    { background: #fef6d0; color: #1a2035; }
.sched-chip--reseautage { background: #f5f5f3; color: #4a5568; }
.sched-chip--diner      { background: #f5f5f3; color: #4a5568; }
.sched-chip--live       { background: #349e89; color: #f8f5ef; }

.sched-tag {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a95a3;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: .8;
}
.sched-tag--vip  { color: #1d6b5e; }
.sched-tag--live { color: #e87260; }

.sched-row__title {
  margin: 0 0 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #252d3a;
  line-height: 1.3;
  letter-spacing: -.005em;
}

.sched-row__speakers {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px;
}
.sched-speaker {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  color: #8a95a3;
}
.sched-speaker__icon {
  font-size: 10px;
  margin-right: 6px;
  color: #349e89;
}
.sched-speaker__name {
  color: #4a5568;
  text-decoration: none;
  border-bottom: 1px dotted #349e89;
}
.sched-speaker__org { opacity: .6; }

.sched-row__cta {
  padding-top: 4px;
  color: #349e89;
  font-size: 14px;
  transition: transform 150ms cubic-bezier(0.4,0,0.2,1);
}
.sched-row:hover .sched-row__cta { transform: translateX(4px); }

/* ============================================================
   MODAL
   ============================================================ */
.sched-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,28,39,.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 24px; overflow-y: auto;
}
.sched-modal-backdrop[hidden] { display: none !important; }
.sched-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 760px; width: 100%;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  position: relative;
  animation: sched-modal-in 240ms cubic-bezier(.16,.84,.44,1);
}
@keyframes sched-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.sched-modal__close {
  position: absolute; right: 16px; top: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f5f5f3; border: 0;
  color: #252d3a; cursor: pointer; font-size: 14px;
}
.sched-modal__head {
  padding: 36px 40px 28px;
  background: #252d3a;
  color: #f8f5ef;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.sched-modal__chips {
  display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap;
}
.sched-modal__chip-day {
  padding: 4px 10px;
  background: #F5C842;
  color: #252d3a;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
}
.sched-modal__chip-time {
  padding: 4px 10px;
  border: 1px solid rgba(243,244,247,.3);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .08em; border-radius: 4px;
}
.sched-modal__title {
  margin: 0 0 12px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 900; font-size: 28px; line-height: 1.15;
  color: #f8f5ef; letter-spacing: -.01em;
}
.sched-modal__venue {
  font-family: 'Roboto', system-ui, sans-serif; font-size: 13.5px;
  color: rgba(248,245,239,.78);
}
.sched-modal__venue i { margin-right: 6px; color: #349e89; }
.sched-modal__body { padding: 32px 40px 36px; }
.sched-modal__desc {
  margin: 0 0 28px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6; color: #4a5568;
}
.sched-modal__actions {
  display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap;
}
.sched-modal-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: #349e89; color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  border-radius: 8px; border: 0; cursor: pointer;
  text-decoration: none;
  transition: background 150ms;
}
.sched-modal-cta-btn:hover { background: #1d6b5e; }
.sched-modal-ghost-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: transparent; color: #4a5568;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600; font-size: 14px;
  border-radius: 8px; border: 1.5px solid rgba(37,45,58,0.15); cursor: pointer;
  transition: border-color 150ms;
}
.sched-modal-ghost-btn:hover { border-color: #349e89; color: #349e89; }

/* ── FILTER BAR ── */
.prog-filter-bar {
  position: sticky;
  top: 159px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(37,45,58,.1);
  padding: 10px 32px;
  transition: top .3s ease;
}
body.nav-scrolled .prog-filter-bar { top: 65px; }
.prog-filter-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
/* Pill style shared with panelistes */
.filter-pills-group {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-pill {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(37,45,58,.15);
  background: #fff;
  color: rgba(37,45,58,.65);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.3;
  text-align: center;
}
.filter-pill .tab-loc { display: none; }
.filter-pill:hover { background: #f5f7f5; }
.filter-pill.active { background: #349e89; color: #fff; border-color: #349e89; }
.filter-pill.active .tab-loc { opacity: .8; }
.prog-filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1.5px solid rgba(37,45,58,.15);
  border-radius: 999px;
  flex-shrink: 0;
}
.prog-filter-search input {
  border: none;
  outline: none;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  color: #252d3a;
  width: 200px;
  background: transparent;
}
.prog-filter-search input::placeholder { color: rgba(37,45,58,.4); }
.prog-filter-search i { color: rgba(37,45,58,.4); font-size: 13px; }
.prog-filter-select {
  appearance: none;
  border: 1.5px solid rgba(37,45,58,.15);
  border-radius: 999px;
  outline: none;
  padding: 6px 32px 6px 14px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(37,45,58,.65);
  background: #fff url("/wp-content/themes/sdi-child/assets/images/bg-pattern.png") no-repeat right 12px center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---- Responsive sched ---- */
@media (max-width: 640px) {
  .sched { padding: 32px 20px 72px; }
  .sched-day__header { grid-template-columns: 1fr; gap: 8px; }
  .sched-day__tag { display: none; }
  .sched-day__numeral { font-size: 48px; }
  .sched-row { grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; }
  .sched-row__title { font-size: 16px; }
  .sched-modal__head { padding: 24px 24px 20px; }
  .sched-modal__body { padding: 24px; }
  .sched-modal__title { font-size: 22px; }
}


/* === confirmation === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials { display: flex; align-items: center; gap: 14px; }
.supra-socials a { color: rgba(243,244,247,.75); font-size: 14px; transition: color .18s; }
.supra-socials a:hover { color: var(--sdi-paper); }

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── HAMBURGER ── */
@media (min-width: 901px) { .nav-toggle { display: none; } }
.nav-mobile-menu .nav-cta-mobile { margin-top: 16px; background: var(--sdi-teal); color: var(--sdi-paper) !important; text-align: center; border-radius: var(--r-md); padding: 12px 20px; border-bottom: none !important; }

/* ── FOOTER ── */
.edition-tag { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,244,247,.4); margin-bottom: 20px; }

/* ── CONFIRMATION PAGE ── */
.typ-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 20px 96px;
}
.typ-card {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  border-radius: 16px;
  padding: 56px 48px;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow-md);
  animation: fadeUp .45s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge animé */
.typ-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 30px;
  animation: badgePop .5s cubic-bezier(.34,1.56,.64,1) .2s both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}
.badge-teal  { background: #c7e7df; color: var(--sdi-teal-deep); }
.badge-gold  { background: #fef9c3; color: #92400e; }

.typ-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sdi-teal);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.typ-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--fg-1);
  margin: 0 0 16px;
  text-align: center;
}
.typ-intro {
  font-size: 16px;
  color: var(--fg-3);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.65;
}
.typ-divider {
  border: none;
  border-top: 1px solid var(--border-warm);
  margin: 0 0 36px;
}

/* Next steps */
.next-steps-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 20px;
  display: block;
}
.next-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c7e7df;
  color: var(--sdi-teal-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-text {
  font-size: 15px;
  color: var(--fg-2);
  padding-top: 4px;
  line-height: 1.5;
}

/* VIP perks */
.vip-perks {
  background: var(--sdi-paper);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 36px;
}
.vip-perks-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 16px;
  display: block;
}
.vip-perk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vip-perk-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}
.vip-perk-list li i {
  color: var(--sdi-jaune);
  background: var(--sdi-gunmetal);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Upsell block */
.upsell-block {
  background: linear-gradient(135deg, #f0faf7 0%, #e8f7f3 100%);
  border: 1.5px solid #c7e7df;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.upsell-icon {
  font-size: 22px;
  color: var(--sdi-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.upsell-body { flex: 1; }
.upsell-body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.upsell-scarcity {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sdi-teal-deep);
  font-weight: 600;
  letter-spacing: .06em;
  display: inline-block;
  margin-bottom: 14px;
}
.btn-upsell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  background: var(--sdi-teal);
  color: #fff;
  border-radius: var(--r-md);
  transition: background .18s;
}
.btn-upsell:hover { background: var(--sdi-teal-deep); }

/* Partage social */
.share-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 14px;
  display: block;
}
.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  border-radius: var(--r-md);
  transition: opacity .18s;
  color: #fff;
}
.btn-share:hover { opacity: .85; }
.btn-share-fb { background: #1877f2; }
.btn-share-li { background: #0a66c2; }

/* Nav links de bas de page */
.typ-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid var(--border-warm);
}
.typ-nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--sdi-teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.typ-nav-links a:hover { color: var(--sdi-teal-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
}
@media (max-width: 560px) {
  .typ-wrapper { padding: 40px 16px 72px; }
  .typ-card { padding: 36px 24px; }
  .upsell-block { flex-direction: column; gap: 12px; }
}


/* === a-propos === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band i { margin-right: 7px; }

/* ── HAMBURGER ── */

/* ── MOBILE MENU ── */
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── SHARED ── */
.highlight {
  background: var(--sdi-jaune);
  color: var(--sdi-gunmetal);
  padding: 0 6px;
  border-radius: 3px;
}

/* ── HERO ── */
.hero-ap {
  background: var(--sdi-gunmetal);
  padding: 100px 32px 80px;
  color: var(--sdi-paper);
}
.hero-ap-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-ap .eyebrow { color: var(--sdi-jaune); margin-bottom: 20px; display: block; }
.hero-ap-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--sdi-paper);
}
.hero-ap-sub {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(243,244,247,.82);
  margin: 0 0 36px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(243,244,247,.35);
  color: rgba(243,244,247,.88);
}

/* ── MISSION ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.mission-text .eyebrow { margin-bottom: 16px; display: block; }
.mission-text h2 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--fg-1);
}
.mission-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 18px;
}
.mission-text p:last-child { margin-bottom: 0; }

/* ── STATS PANEL ── */
.stats-panel {
  background: var(--sdi-teal-deep);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  color: var(--sdi-paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}
.stat-item-ap {
  border-top: 2px solid rgba(243,244,247,.25);
  padding-top: 18px;
}
.stat-num-ap {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sdi-paper);
}
.stat-label-ap {
  font-size: 13px;
  margin-top: 8px;
  color: rgba(243,244,247,.78);
  line-height: 1.4;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-section-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--fg-1);
}
.speaker-card {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.speaker-photo-area {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  background: #1B2A3B;
}
.speaker-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  color: var(--sdi-teal);
}
.speaker-info { padding: 18px 20px; }
.speaker-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: -.005em;
}
.speaker-role {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}
.speaker-org {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--sdi-teal);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ── ÉVÉNEMENT / FICHE TECHNIQUE ── */
.evenement-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-warm);
}
.info-list li:last-child { border-bottom: none; }
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(52,158,137,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sdi-teal);
  font-size: 16px;
}
.info-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-val {
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.5;
}

/* Quick access card */
.access-card {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  position: sticky;
  top: 88px;
}
.access-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0 0 12px;
}
.access-card p {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0 0 28px;
  line-height: 1.55;
}
.btn-teal-full {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  border-radius: var(--r-md);
  text-align: center;
  transition: background .18s, transform .18s;
}
.btn-teal-full:hover { background: var(--sdi-teal-deep); transform: translateY(-1px); }
.access-divider {
  border: 0;
  border-top: 1px solid var(--border-warm);
  margin: 24px 0;
}
.access-detail {
  font-size: 13px;
  color: var(--fg-3);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.access-detail span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.access-detail i { color: var(--sdi-teal); width: 14px; text-align: center; }

/* ── CONTACT ── */
.contact-section {
  background: var(--sdi-teal-deep);
  padding: 96px 32px;
  color: var(--sdi-paper);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--sdi-paper);
}
.contact-sub {
  font-size: 17px;
  color: rgba(243,244,247,.78);
  margin: 0 0 56px;
  max-width: 560px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(243,244,247,.18);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(243,244,247,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #F3F4F7;
  margin-bottom: 18px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sdi-paper);
  margin: 0 0 10px;
  letter-spacing: .02em;
}
.contact-card a, .contact-card span {
  display: block;
  font-size: 14px;
  color: rgba(243,244,247,.78);
  margin-bottom: 4px;
  transition: color .15s;
}
.contact-card a:hover { color: var(--sdi-jaune); }
.contact-cta-row {
  text-align: center;
  margin-top: 48px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  background: var(--sdi-paper);
  color: var(--sdi-teal-deep) !important;
  border-radius: var(--r-md);
  transition: background .18s, transform .18s;
}
.btn-white:hover { background: #fff; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }

/* ── RÉTROSPECTIVE STATS ── */
.retro-section {
  background: var(--sdi-teal);
  padding: 96px 32px;
  color: var(--sdi-paper);
}
.retro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.retro-section .eyebrow { color: var(--sdi-jaune); margin-bottom: 16px; display: block; }
.retro-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--sdi-paper);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 56px;
}
.retro-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.retro-stat {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.2);
  margin-right: 24px;
}
.retro-stat:last-child { border-right: none; margin-right: 0; }
.retro-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--sdi-paper);
}
.retro-label {
  font-size: 13px;
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* ── TIMELINE ── */
.timeline-section {
  background: var(--sdi-paper);
  padding: 96px 32px;
}
.timeline-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.timeline-section .eyebrow { color: var(--sdi-teal); margin-bottom: 16px; display: block; }
.timeline-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg-1);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 56px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--sdi-teal-200);
  margin-left: 60px;
}
.tl-item {
  position: relative;
  padding: 0 0 40px 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sdi-teal);
  border: 2px solid var(--sdi-teal-200);
}
.tl-dot.coral { background: var(--sdi-coral); }
.tl-dot.coming { background: var(--sdi-jaune); border-color: var(--sdi-jaune); }
.tl-year {
  position: absolute;
  left: -96px;
  top: 0;
  text-align: right;
  width: 72px;
}
.tl-year-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--sdi-gunmetal);
  line-height: 1;
}
.tl-year-ed {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-top: 4px;
}
.tl-content-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg-1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tl-badge-coming {
  background: var(--sdi-jaune);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.tl-stats {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 6px;
}

/* ── ORGANISÉ PAR ── */
.organise-section {
  background: #fff;
  padding: 96px 32px;
}
.organise-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.organise-section .eyebrow { color: var(--sdi-teal); margin-bottom: 16px; display: block; }
.organise-logo {
  width: 56px;
  height: 56px;
  background: var(--sdi-teal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.organise-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg-1);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.organise-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 16px;
}
.organise-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--sdi-teal) !important;
  letter-spacing: .02em;
  margin-top: 8px;
  display: inline-block;
  border-bottom: 1.5px solid var(--sdi-teal);
  padding-bottom: 2px;
  transition: opacity .15s;
}
.organise-cta:hover { opacity: .75; }
.organise-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-self: center;
}
.org-stat-card {
  background: var(--sdi-paper);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 28px 24px;
}
.org-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--sdi-teal);
  line-height: 1;
  letter-spacing: -.02em;
}
.org-stat-label {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── FINAL CTA ── */
.final-cta-section {
  background: var(--sdi-gunmetal);
  padding: 96px 32px;
  text-align: center;
  color: var(--sdi-paper);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(52,158,137,.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.final-cta-section .eyebrow { color: var(--sdi-teal); margin-bottom: 20px; display: block; }
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 16px 0 24px;
}
.final-cta-dates {
  color: var(--sdi-teal);
}
.final-cta-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin: 0 auto 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-teal-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  border-radius: var(--r-md);
  transition: background .18s, transform .18s;
}
.btn-teal-lg:hover { background: var(--sdi-teal-deep); transform: translateY(-2px); }

/* ── MISSION IMAGE PLACEHOLDER ── */
.mission-img-placeholder {
  background: var(--sdi-gunmetal);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mission-img-placeholder span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(243,244,247,.5);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .evenement-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .retro-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .retro-stat { border-right: none; margin-right: 0; }
  .organise-inner { grid-template-columns: 1fr; gap: 48px; }
  .timeline { margin-left: 48px; }
  .tl-year { left: -76px; width: 60px; }
  .tl-year-num { font-size: 18px; }
}
@media (max-width: 560px) {
  .hero-ap { padding: 72px 20px 56px; }
  .team-grid { grid-template-columns: 1fr; }
  .retro-grid { grid-template-columns: repeat(2, 1fr); }
  .organise-stats { grid-template-columns: 1fr; }
  .timeline { margin-left: 36px; }
  .tl-year { left: -60px; width: 48px; }
  .tl-year-num { font-size: 15px; }
  .band-ext { display: none; }
  .stats-panel { grid-template-columns: 1fr 1fr; padding: 32px 24px; gap: 24px; }
}


/* === contact === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }


/* ── HAMBURGER ── */
@media (max-width: 900px) {
}
@media (min-width: 901px) { .nav-toggle { display: none; } }

/* ── MOBILE MENU ── */
.nav-mobile-menu .nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-md);
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band i { margin-right: 7px; }

/* ── EYEBROW ── */

/* ── HERO EYEBROW ── */
.contact-hero .eyebrow { color: var(--sdi-jaune); }

/* ── HERO ── */
.contact-hero {
  background: var(--sdi-gunmetal);
  padding: 80px 32px 72px;
  color: var(--sdi-paper);
}
.contact-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: var(--sdi-paper);
}
.contact-hero p {
  font-size: 18px;
  max-width: 580px;
  color: rgba(243,244,247,.78);
  margin: 0;
  line-height: 1.6;
}
.highlight {
  background: var(--sdi-jaune);
  color: var(--sdi-gunmetal);
  padding: 0 6px;
  border-radius: 3px;
}

/* ── SECTION ── */

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── FORM ── */
.form-card {
  background: var(--sdi-ivory);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fg-1);
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  background: var(--sdi-ivory);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sdi-teal);
  box-shadow: 0 0 0 3px rgba(52,158,137,.12);
}
.form-group select {
  background-image: url("/wp-content/themes/sdi-child/assets/images/bg-pattern.png");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  background: var(--sdi-teal);
  color: var(--sdi-ivory) !important;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .18s;
}
.btn-teal:hover { background: var(--sdi-teal-deep); }
.form-note {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 14px;
}

/* ── COORDONNEES CARD ── */
.coords-card {
  background: var(--sdi-gunmetal);
  border-radius: var(--r-lg);
  padding: 40px;
  color: var(--sdi-paper);
}
.coords-card .eyebrow-yellow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sdi-jaune);
  display: block;
  margin-bottom: 16px;
}
.coords-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 28px;
  color: var(--sdi-paper);
  letter-spacing: -.01em;
}
.coord-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.coord-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(52,158,137,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sdi-teal);
  font-size: 14px;
  margin-top: 2px;
}
.coord-text {
  flex: 1;
}
.coord-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243,244,247,.55);
  margin-bottom: 2px;
}
.coord-value {
  font-size: 15px;
  color: var(--sdi-paper);
}
.coord-value a {
  color: var(--sdi-teal-200);
  text-decoration: none;
}
.coord-value a:hover { text-decoration: underline; }
.coords-sep {
  border: none;
  border-top: 1px solid rgba(243,244,247,.14);
  margin: 24px 0;
}
.social-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243,244,247,.55);
  margin-bottom: 14px;
}
.coords-socials {
  display: flex;
  gap: 10px;
}
.coords-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(243,244,247,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sdi-paper);
  font-size: 15px;
  transition: background .18s;
}
.coords-socials a:hover { background: rgba(243,244,247,.2); }
.faq-teaser {
  margin-top: 24px;
  background: rgba(245,139,110,.12);
  border: 1px solid rgba(245,139,110,.3);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.faq-teaser p {
  font-size: 14px;
  color: rgba(243,244,247,.82);
  margin: 0 0 10px;
  line-height: 1.5;
}
.faq-teaser a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--sdi-coral);
  text-decoration: none;
  transition: opacity .18s;
}
.faq-teaser a:hover { opacity: .8; }

/* ── LIEUX ── */
.lieux-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lieu-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--sdi-gunmetal);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lieu-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,45,58,.3) 0%, rgba(37,45,58,.85) 100%);
}
.lieu-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sdi-teal);
  color: var(--sdi-paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-md);
  z-index: 2;
}
.lieu-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.lieu-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--sdi-paper);
  margin-bottom: 8px;
  line-height: 1.2;
}
.lieu-city {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--sdi-teal-200);
  letter-spacing: .04em;
}
.lieu-city i { font-size: 11px; color: var(--sdi-teal); }

/* ── LIEUX SECTION HEADER ── */

/* ── FOOTER ── */
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .lieux-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .band-ext { display: none; }
  .contact-hero { padding: 60px 20px 52px; }
  .form-card { padding: 24px 20px; }
  .coords-card { padding: 24px 20px; }
  .lieux-grid { grid-template-columns: 1fr; }
}


/* === commanditaires === */

html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }



/* ── SUPRA ── */
.supra-socials a {
  opacity: .82;
  margin-left: 14px;
}

/* ── NAV ── */
/* ── NAV SCROLL SHRINK ── */
.nav-bar img { transition: height .3s ease; }

.nav-cta-mobile {
  margin-top: 16px;
  background: var(--sdi-teal);
  color: var(--sdi-paper) !important;
  text-align: center;
  border-radius: var(--r-sm);
  padding: 12px 20px;
  border-bottom: none !important;
}

/* ── VIP SCARCITY BAND ── */
.vip-scarcity-band i { margin-right: 7px; }
.band-ext { margin-left: 14px; opacity: .8; }

/* ── HERO ── */
.hero-commanditaires {
  background: var(--sdi-gunmetal);
  padding: 96px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-commanditaires::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(52,158,137,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(245,200,66,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-commanditaires .hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-commanditaires .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sdi-teal);
  margin-bottom: 20px;
}
.hero-commanditaires .hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.hero-commanditaires .hero-title .highlight {
  color: var(--sdi-jaune);
}
.hero-commanditaires .hero-sub {
  font-size: 17px;
  color: rgba(243,244,247,.80);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,244,247,.10);
  border: 1px solid rgba(243,244,247,.18);
  color: rgba(243,244,247,.9);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .03em;
}
.hero-badge i { color: var(--sdi-teal); font-size: 13px; }

/* ── SECTIONS (commanditaires scoped only) ── */
/* Note: .section and .section-title are global — do not redefine here */
.section-sub {
  text-align: center;
  color: var(--fg-3);
  font-size: 16px;
  margin: 0 auto 52px;
  max-width: 560px;
}

/* ── WHY CARDS ── */
.why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-warm);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--sdi-teal-200);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--sdi-teal-deep);
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
  margin: 0 0 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0;
  line-height: 1.6;
}

/* ── PALIERS ── */
.paliers-grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.palier-card {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--sdi-teal);
  position: relative;
}
.palier-card.argent { border-top-color: var(--sdi-coral); }
.palier-card.or { border-top-color: var(--sdi-jaune); }
.palier-card.diamant { border-top-color: var(--sdi-teal-deep); }
.palier-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--sdi-jaune);
  color: var(--sdi-gunmetal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0 0 4px 4px;
}
.palier-badge.exc { background: var(--sdi-teal-deep); color: #fff; }
.palier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.palier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.palier-list li {
  font-size: 13.5px;
  color: var(--fg-2);
  padding-left: 20px;
  position: relative;
}
.palier-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sdi-teal);
  font-weight: 700;
}
.palier-note {
  font-size: 12px;
  color: var(--fg-3);
  font-style: italic;
}
.paliers-cta {
  text-align: center;
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sdi-teal);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 13px 24px;
  border-radius: var(--r-md);
  transition: background .18s, transform .15s;
  text-decoration: none;
}
.btn-teal:hover { background: var(--sdi-teal-deep); transform: translateY(-1px); }

/* ── PARTENAIRES GRID ── */
.partenaires-section {
  background: #FAFAF8;
  padding: 80px 32px;
}
.partenaires-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.part-logo {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: var(--r-sm);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: box-shadow .18s;
}
.part-logo:hover { box-shadow: var(--shadow-md); }
.part-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .2s, opacity .2s;
}
.part-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.partenaires-count {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── CONTACT CTA ── */
.contact-cta {
  background: var(--sdi-teal-deep);
  padding: 80px 32px;
  text-align: center;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: #ffffff;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.contact-cta-text {
  color: rgba(243,244,247,.82);
  font-size: 17px;
  margin: 0 auto 36px;
  max-width: 520px;
}
.contact-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--sdi-teal-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 20px 32px;
  border-radius: var(--r-md);
  transition: background .18s, transform .15s;
}
.btn-white:hover { background: var(--sdi-paper); transform: translateY(-1px); }
.btn-phone {
  color: rgba(243,244,247,.88);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(243,244,247,.3);
  padding-bottom: 2px;
  transition: color .15s;
}
.btn-phone:hover { color: #ffffff; border-bottom-color: rgba(243,244,247,.7); }
.contact-email {
  color: rgba(243,244,247,.6);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
}

/* ── FOOTER ── */
.footer-tagline {
  font-style: italic;
  font-size: 18px;
  color: rgba(243,244,247,.85);
  margin: 18px 0;
}
.edition-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--sdi-paper);
  color: var(--sdi-paper);
  padding: 5px 10px;
  border-radius: 2px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(243,244,247,.78);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--sdi-paper); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .paliers-grid { grid-template-columns: repeat(2, 1fr); }
  .partenaires-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .hero-commanditaires { padding: 72px 20px 60px; }
  .why-grid { grid-template-columns: 1fr; }
  .paliers-grid { grid-template-columns: 1fr; }
  .partenaires-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta { padding: 60px 20px; }
  .partenaires-section { padding: 60px 20px; }
  .band-ext { display: none; }
}

/* === lp-upsell === */

/* CONFIRM BANNER */
.confirm-banner { background: rgba(52,158,137,.1); border-bottom: 2px solid var(--sdi-teal); padding: 12px 24px; }
.confirm-inner { max-width: 660px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.confirm-check { width: 28px; height: 28px; background: var(--sdi-teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.confirm-text strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--sdi-gunmetal); display: block; }
.confirm-text span { font-size: 13px; color: var(--sdi-ink-500); }
.confirm-icon { font-size: 24px; }

/* HERO upsell */
.hero-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sdi-teal); margin-bottom: 12px; display: block; }

/* COMPARISON TABLE */
.comparison { padding: 60px 24px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 660px; margin: 28px auto 0; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--sdi-ink-100); }
.compare-col { }
.compare-head { padding: 20px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; background: var(--sdi-paper); border-bottom: 1.5px solid var(--sdi-ink-100); }
.compare-head.col-upgrade { background: var(--sdi-gunmetal); color: #fff; }
.compare-badge { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: var(--sdi-teal); color: #fff; margin-top: 4px; }
.compare-head-price { font-size: 12px; font-weight: 400; opacity: .65; margin-top: 4px; }
.compare-body { }
.compare-row { display: contents; }
.compare-row > div { padding: 14px 16px; font-size: 13px; border-bottom: 1px solid var(--sdi-ink-100); color: var(--sdi-ink-500); }
.compare-row > div:last-child { background: rgba(52,158,137,.04); }

/* CHANGES LIST */
.what-changes { padding: 60px 24px; background: var(--sdi-paper); }
.changes-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 12px; }
.change-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; border-radius: var(--r-md); padding: 18px; border: 1px solid var(--sdi-ink-100); }
.change-icon { width: 40px; height: 40px; background: rgba(52,158,137,.1); color: var(--sdi-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.change-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--sdi-gunmetal); margin-bottom: 4px; }
.change-text span { font-size: 13px; color: var(--sdi-ink-500); line-height: 1.5; }

/* MISS */
.miss { padding: 40px 24px; background: #fff8f0; border-top: 1px solid #fde8cc; border-bottom: 1px solid #fde8cc; text-align: center; }

/* CTA BLOCK */
.cta-block { padding: 60px 24px; background: var(--sdi-gunmetal); text-align: center; }
.cta-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 40px; max-width: 500px; margin: 0 auto; }
.cta-card-inner { }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.45); margin-top: 16px; }
.cta-inner { }

/* URGENCY TIMER */
.urgency-timer { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: var(--sdi-jaune); letter-spacing: .06em; }

/* SKIP LINK */
.skip-link { display: block; text-align: center; padding: 16px; font-size: 13px; color: rgba(255,255,255,.35); text-decoration: underline; cursor: pointer; background: var(--sdi-gunmetal); }

/* UPSELL BUTTONS */
.btn-upsell { display: inline-flex; align-items: center; gap: 10px; background: var(--sdi-teal); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; padding: 18px 36px; border-radius: var(--r-md); text-decoration: none; transition: background .18s; border: none; cursor: pointer; width: 100%; justify-content: center; }
.btn-upsell:hover { background: var(--sdi-teal-deep); }
.btn-price-tag { font-size: 14px; font-weight: 600; opacity: .85; }

/* VIP UPSELL */
.btn-vip { display: inline-flex; align-items: center; gap: 10px; background: var(--sdi-jaune); color: var(--sdi-gunmetal); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; padding: 18px 36px; border-radius: var(--r-md); text-decoration: none; transition: background .18s; border: none; cursor: pointer; width: 100%; justify-content: center; }
.btn-vip:hover { background: #e8b820; }

/* TIMELINE */
.vip-timeline { padding: 60px 24px; background: #fff; }
.timeline-list { max-width: 600px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 0; }
.timeline-list .tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 16px; position: relative; padding-bottom: 28px; }
.timeline-list .tl-item:last-child { padding-bottom: 0; }
.timeline-list .tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--sdi-teal); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.tl-content h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--sdi-gunmetal); margin: 8px 0 4px; }
.tl-content p { font-size: 13px; color: var(--sdi-ink-500); margin: 0; line-height: 1.55; }
.tl-badge { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: rgba(52,158,137,.1); color: var(--sdi-teal); margin-top: 6px; }

/* VIP EXTRAS */
.vip-extras { padding: 60px 24px; background: var(--sdi-paper); }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 500px) { .extras-grid { grid-template-columns: 1fr; } }
.extra-item { display: flex; align-items: flex-start; gap: 14px; background: #fff; border-radius: var(--r-md); padding: 18px; border: 1px solid var(--sdi-ink-100); }
.extra-icon { width: 40px; height: 40px; background: rgba(245,200,66,.15); color: #d4a010; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.extra-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--sdi-gunmetal); margin-bottom: 4px; }
.extra-text span { font-size: 13px; color: var(--sdi-ink-500); }

/* COMPARISON TABLE VIP */
.compare { padding: 60px 24px; background: var(--sdi-paper); }
.compare-table { max-width: 660px; margin: 28px auto 0; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--sdi-ink-100); }
.ct-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: var(--sdi-gunmetal); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ct-label { padding: 16px; }
.ct-header > div { padding: 16px; text-align: center; border-left: 1px solid rgba(255,255,255,.1); }
.ct-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; border-bottom: 1px solid var(--sdi-ink-100); background: #fff; }
.ct-row:nth-child(even) { background: var(--sdi-paper); }
.ct-row > div { padding: 12px 16px; text-align: center; font-size: 13px; color: var(--sdi-ink-500); border-left: 1px solid var(--sdi-ink-100); }
.ct-row > div:first-child { text-align: left; border-left: none; font-weight: 600; color: var(--sdi-gunmetal); }
.ct-yes { color: var(--sdi-teal); font-weight: 700; }
.ct-no { color: var(--sdi-ink-500); opacity: .4; }
.col-vip { background: rgba(52,158,137,.05); }

/* BADGES VIP */
.badge-free { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; background: var(--sdi-ink-100); color: var(--sdi-ink-500); }
.badge-mtl { background: rgba(52,158,137,.1); color: var(--sdi-teal); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; }
.badge-vip { background: var(--sdi-jaune); color: var(--sdi-gunmetal); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; }

/* DOTS */
.dot-free { width: 10px; height: 10px; border-radius: 50%; background: var(--sdi-ink-100); display: inline-block; }
.dot-mtl { width: 10px; height: 10px; border-radius: 50%; background: var(--sdi-teal); display: inline-block; }
.dot-vip { width: 10px; height: 10px; border-radius: 50%; background: var(--sdi-jaune); display: inline-block; }

/* PRICE REVEAL */
.hero-price-reveal { margin: 20px auto; }
.hero-offer-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(52,158,137,.15); border: 1px solid rgba(52,158,137,.3); border-radius: 20px; padding: 6px 16px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--sdi-teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.price-old { font-family: 'Montserrat', sans-serif; font-size: 16px; text-decoration: line-through; color: var(--sdi-ink-500); margin-bottom: 4px; }
.price-arrow { color: var(--sdi-teal); font-size: 20px; margin: 4px 0; }
.price-new { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 48px; color: var(--sdi-jaune); letter-spacing: -.02em; line-height: 1; }
.price-new-label { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 8px; }
.savings-pill { display: inline-block; background: var(--sdi-jaune); color: var(--sdi-gunmetal); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 20px; margin-top: 12px; }

/* CPD */
.cpd-context { background: var(--sdi-paper); border-radius: var(--r-md); padding: 20px; margin-bottom: 20px; font-size: 14px; color: var(--sdi-ink-500); line-height: 1.6; }
.cpd-old { text-decoration: line-through; color: var(--sdi-ink-500); }
.cpd-new { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--sdi-teal); font-size: 18px; }

/* ONE TIME BADGE */
.one-time-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,200,66,.15); border: 1px solid rgba(245,200,66,.4); border-radius: 20px; padding: 5px 14px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: #d4a010; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }

/* HIGHLIGHT */
.highlight { color: var(--sdi-jaune); }

/* CTA PRICE DISPLAY */
.cta-price-display { margin: 16px 0; font-family: 'Montserrat', sans-serif; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 8px; }

/* === partenaires === */

/* ── Tiers wrap ── */
.part-tiers-wrap { background: var(--sdi-paper); padding: 64px 0; }
.part-tiers-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: flex; flex-direction: column; gap: 48px; }

/* ── Tier block header ── */
.part-tier-block {}
.part-tier-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; gap: 24px; flex-wrap: wrap; }
.part-tier-eyebrow { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; }
.part-tier-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--fg-1); margin: 0; line-height: 1.2; }
.part-tier-note { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); margin: 0; text-align: right; max-width: 280px; }

/* ── Diamant wrap ── */
.part-diamant-wrap { border-radius: var(--r-lg); overflow: hidden; }

/* ── Logo grid (fond par tier via inline style) ── */
.part-logos-grid {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--sdi-paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-warm);
}

/* ── Logo cell ── */
.part-logo-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  padding: 28px 24px;
  text-decoration: none;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-warm);
  transition: box-shadow .2s;
}
.part-logo-cell:hover { box-shadow: var(--shadow-md); }

/* ── Logo image ── */
.part-logo-img {
  width: 90%;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}
.part-logo-img--dark {
  width: 90%;
  max-height: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
}

/* ── Fallback name (no logo) ── */
.part-cell-fallback-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg-2);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}
/* ── Name under logo ── */
.part-cell-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-3);
  text-align: center;
  letter-spacing: .02em;
}
.part-logo-cell .part-letter-avatar,
.part-logo-cell .part-letter-avatar--light { display: none; }

/* ── Diamant cells ── */
.part-diamant-inner {
  background: #1e2736;
  border-radius: var(--r-lg);
  display: grid;
  gap: 2px;
  overflow: hidden;
  min-height: 180px;
}
.part-logo-cell--dark {
  min-height: 200px;
  background: transparent;
}
.part-logo-cell--dark .part-cell-fallback-name { color: rgba(243,244,247,.8); }
.part-logo-cell--empty { opacity: .35; pointer-events: none; }

/* ── Hero CTA button ── */
.part-hero-cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 13px 28px;
  background: #349e89;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: opacity .2s;
}
.part-hero-cta-btn:hover { opacity: .85; }

/* ── CTA band OR→ARGENT ── */
.part-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #F5C842;
  border-radius: var(--r-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.part-cta-band-left { flex: 1; min-width: 200px; }
.part-cta-band-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(37,45,58,.6);
  margin-bottom: 4px;
}
.part-cta-band-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #252d3a;
  margin: 0;
  line-height: 1.3;
}
.part-cta-band-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: #252d3a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.part-cta-band-btn:hover { opacity: .85; }

/* ── FAQ section ── */
.part-faq-section { background: #fff; padding: 80px 0; }
.part-faq-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.part-faq-section .eyebrow { color: #349e89 !important; }
.part-faq-title { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--fg-1); margin: 12px 0 40px; line-height: 1.2; }
.part-faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-warm); }
.part-faq-item { border-bottom: 1px solid var(--border-warm); }
.part-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.part-faq-q::-webkit-details-marker { display: none; }
.part-faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.part-faq-icon::before,
.part-faq-icon::after { content: ''; position: absolute; background: var(--fg-1); border-radius: 2px; transition: transform .2s; }
.part-faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.part-faq-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.part-faq-item[open] .part-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.part-faq-a { padding: 0 0 20px; font-size: 15px; color: var(--fg-2); line-height: 1.7; }
.part-faq-a p { margin: 0; }

/* ── FAQ contact card ── */
.part-faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--sdi-gunmetal);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.part-faq-contact-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; margin: 0 0 4px; }
.part-faq-contact-sub { font-size: 13px; color: rgba(243,244,247,.65); margin: 0; }

/* ── Shared CTA button (used in FAQ contact + CTA section) ── */
.part-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #349e89;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.part-cta-btn:hover { opacity: .85; }

/* ── Bottom CTA gunmetal section ── */
.part-cta-section { background: var(--sdi-gunmetal); padding: 80px 0; }
.part-cta-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.part-cta-eyebrow { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,244,247,.55); margin-bottom: 12px; }
.part-cta-title { font-family: var(--font-display); font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: #fff; margin: 0 0 16px; line-height: 1.1; }
.part-cta-lede { font-size: 14px; color: rgba(243,244,247,.7); margin: 0 0 28px; line-height: 1.6; }

/* ── Paliers card ── */
.part-paliers-card { background: rgba(243,244,247,.07); border: 1px solid rgba(243,244,247,.12); border-radius: var(--r-lg); padding: 28px; }
.part-paliers-title { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,244,247,.5); margin-bottom: 20px; }
.part-paliers-list { display: flex; flex-direction: column; gap: 14px; }
.part-palier-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(243,244,247,.8); line-height: 1.5; }
.part-palier-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .part-cta-inner { grid-template-columns: 1fr; }
  .part-tier-note { text-align: left; }
}
@media (max-width: 640px) {
  .part-tiers-inner { padding: 0 16px; gap: 32px; }
  .part-faq-inner { padding: 0 16px; }
  .part-logos-grid { gap: 8px; padding: 12px; grid-template-columns: repeat(2,1fr) !important; }
  .part-cta-band { flex-direction: column; align-items: flex-start; }
  .part-faq-contact { flex-direction: column; align-items: flex-start; }
  .part-cta-section { padding: 48px 0; }
  .part-tiers-wrap { padding: 40px 0; }
}

.part-cta-left { display: flex; flex-direction: column; align-items: flex-start; }
.part-cta-right { display: flex; align-items: center; justify-content: flex-end; }

/* === lot1-panelistes-sub === */
.speakers-section .section-sub { text-align: left; margin-left: 0; margin-right: auto; }
