/* ═══════════════════════════════════════════════════════════════
   SIFo Medical — Webinar Landing Page CSS Bundle
   Compiled from: tokens/variables.css + colors_and_type.css + landing.css
   Self-hosted fonts; no Google Fonts CDN call (DSGVO-konform).
   ═══════════════════════════════════════════════════════════════ */

/* ── FONTS (self-hosted, DSGVO-compliant) ──────────────────── */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Primary palette */
  --color-primary-green:     #00A68B;
  --color-primary-blue:      #0C2340;
  /* Secondary palette */
  --color-blue-700:          #041425;
  --color-blue-400:          #394D64;
  --color-blue-300:          #6A7A8B;
  --color-blue-200:          #9CA6B1;
  --color-grey-500:          #CDD3D8;
  --color-grey-100:          #F5F6F7;
  --color-white:             #FFFFFF;
  --color-raspberry:         #D81E5B;
  --color-emerald-500:       #00CF89;
  --color-mint-500:          #D2EDE7;
  --color-mint-100:          #EDF8F5;
  /* Typography */
  --font-family-primary:     'Montserrat', sans-serif;
  --font-weight-extralight:  200;
  --font-weight-light:       300;
  --font-weight-regular:     400;
  --font-weight-medium:      500;
  --font-weight-semibold:    600;
  --font-weight-bold:        700;
  /* Spacing */
  --spacing-8:    8px;  --spacing-16:   16px; --spacing-24:   24px;
  --spacing-32:   32px; --spacing-40:   40px; --spacing-48:   48px;
  --spacing-56:   56px; --spacing-64:   64px; --spacing-80:   80px;
  /* Border radius */
  --border-radius-4:   4px;  --border-radius-8:   8px;
  --border-radius-16:  16px; --border-radius-24:  24px;
  --border-radius-32:  32px;
  /* Semantic */
  --bg:           var(--color-white);
  --bg-soft:      var(--color-grey-100);
  --bg-mint:      var(--color-mint-100);
  --bg-dark:      var(--color-primary-blue);
  --bg-deepest:   var(--color-blue-700);
  --fg:           var(--color-primary-blue);
  --fg-muted:     var(--color-blue-400);
  --fg-soft:      var(--color-blue-400);
  --fg-on-dark:   var(--color-white);
  --fg-on-dark-muted: var(--color-grey-500);
  --brand:        var(--color-primary-green);
  --brand-bright: var(--color-emerald-500);
  --brand-soft:   var(--color-mint-500);
  --accent:       var(--color-raspberry);
  --border:       var(--color-grey-500);
  --border-soft:  var(--color-grey-100);
  --border-dark:  rgba(255,255,255,0.12);
  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(12,35,64,0.06);
  --shadow-md:   0 4px 16px rgba(12,35,64,0.08);
  --shadow-lg:   0 16px 48px rgba(12,35,64,0.14);
  --shadow-cta:  0 8px 24px rgba(0,166,139,0.30);
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ── BASE ──────────────────────────────────────────────────── */
#webinar-main *, #webinar-main *::before, #webinar-main *::after { box-sizing: border-box; }
#webinar-main {
  font-family: var(--font-family-primary);
  font-size: 16px;
  line-height: 24px;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#webinar-main h1, #webinar-main h2, #webinar-main h3,
#webinar-main h4, #webinar-main p { margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 28px;
  border-radius: var(--border-radius-8);
  font-family: var(--font-family-primary);
  font-size: 16px; font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em; text-decoration: none;
  border: 0; cursor: pointer;
  transition: transform 120ms var(--ease), background 160ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--color-white); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: #008E76; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--fg); background: var(--bg-soft); }
.btn-ghost-dark { background: transparent; color: var(--fg-on-dark); border: 1px solid var(--border-dark); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 20px 36px; font-size: 17px; }

/* ── EYEBROW ───────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px; line-height: 16px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow-on-dark { color: var(--brand-bright); }

/* ── LIVE DOT ──────────────────────────────────────────────── */
.live-dot {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  width: 12px; height: 12px; flex: 0 0 12px;
}
.live-core {
  position: relative; width: 8px; height: 8px;
  border-radius: 999px; background: var(--accent); z-index: 1;
}
.live-pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--accent); opacity: 0.35;
  animation: live-pulse 1.8s var(--ease) infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(2.0); opacity: 0; }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0C2340 0%, #0A1D38 60%, #081A33 100%);
  color: var(--fg-on-dark); overflow: hidden;
  padding: 64px 0 96px; isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none; z-index: -1;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,139,0.30) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.webinar-edit-settings {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px dashed rgba(0,207,137,0.45);
  border-radius: var(--border-radius-8);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}
.webinar-edit-settings-light {
  background: rgba(12,35,64,0.04);
  color: var(--color-primary-blue);
}
.webinar-edit-settings label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-bright);
}
.webinar-edit-settings-light label { color: var(--brand); }
.webinar-edit-settings input,
.webinar-edit-settings textarea {
  width: 100%;
}
.hero-grid-layout {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(320px,1fr);
  gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .hero-grid-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 40px 0 64px; }
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid var(--border-dark);
}
.badge-live { background: rgba(216,30,91,0.16); color: #FFB1C8; border-color: rgba(216,30,91,0.35); }
.badge-date { background: rgba(255,255,255,0.06); color: var(--fg-on-dark-muted); }
.badge-urgent {
  background: var(--brand); color: var(--color-white);
  border-color: transparent; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px;
}
.hero-headline {
  font-size: clamp(40px,5.6vw,68px); line-height: 1.02;
  font-weight: 600; letter-spacing: -0.025em;
  margin: 0 0 24px; max-width: 14ch;
}
.hl-brand, .hl-num { color: var(--brand-bright); font-weight: 600; }
.hero-sub {
  font-size: 18px; line-height: 28px;
  color: var(--fg-on-dark-muted); margin-bottom: 28px;
  max-width: 56ch; font-weight: 400;
}
.hero-countdown {
  display: grid; grid-template-columns: repeat(4,minmax(0,1fr));
  max-width: 460px; gap: 10px; margin-bottom: 28px;
}
.cd-cell {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-8); padding: 14px 8px;
  text-align: center; font-variant-numeric: tabular-nums;
}
.cd-cell-dark { background: rgba(12,35,64,0.55); border-color: rgba(255,255,255,0.10); }
.cd-value { font-size: 34px; line-height: 1; font-weight: 600; color: var(--color-white); letter-spacing: -0.02em; }
.cd-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin-top: 6px; }
.hero-cta-block { margin-bottom: 28px; padding: 4px 0; }
.hero-cta-btn { display: inline-flex; font-size: 18px; padding: 22px 40px; margin-bottom: 16px; }
.hero-cta-meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--fg-on-dark-muted); flex-wrap: wrap; }
.hero-cta-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.hero-perks { display: flex; flex-wrap: wrap; gap: 18px 24px; font-size: 14px; color: var(--fg-on-dark-muted); }
.hero-perks > div { display: inline-flex; align-items: center; gap: 8px; }
/* Speaker card in hero */
.hero-speaker { align-self: stretch; display: flex; align-items: center; }
.speaker-card {
  width: 100%;
  background: linear-gradient(180deg,rgba(255,255,255,0.07),rgba(255,255,255,0.02));
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-24); padding: 24px;
  position: relative; overflow: hidden;
}
.speaker-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%,rgba(0,207,137,0.18),transparent 50%);
  pointer-events: none;
}
.speaker-photo-wrap {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--border-radius-16); overflow: hidden; margin-bottom: 18px;
}
.speaker-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; filter: saturate(105%) contrast(102%); }
.speaker-signet {
  position: absolute; bottom: 12px; right: 12px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--color-white); display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.speaker-signet img { width: 32px; height: 32px; }
.speaker-meta { margin-bottom: 18px; position: relative; }
.speaker-name { font-size: 22px; font-weight: 600; color: var(--color-white); letter-spacing: -0.01em; }
.speaker-title { font-size: 13px; color: var(--fg-on-dark-muted); margin-top: 4px; }
.speaker-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  padding: 16px 0; border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark); margin-bottom: 14px; position: relative;
}
.speaker-stat-value { font-size: 22px; font-weight: 600; color: var(--brand-bright); letter-spacing: -0.01em; }
.speaker-stat-label { font-size: 11px; line-height: 14px; color: var(--fg-on-dark-muted); margin-top: 2px; }
.speaker-cred { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-on-dark-muted); position: relative; }
.speaker-cred span { font-weight: 500; }

/* ── VIDEO TEASER ──────────────────────────────────────────── */
.video-teaser { background: var(--color-white); padding: 96px 0 64px; }
.vt-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.vt-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.vt-frame {
  position: relative; max-width: 1040px; margin: 0 auto;
  border-radius: var(--border-radius-24); overflow: hidden;
  background: var(--bg-dark); box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9; isolation: isolate;
}
.vt-video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; background: var(--bg-dark); }
.vt-play {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(12,35,64,0.10) 0%,rgba(12,35,64,0.45) 100%);
  border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--color-white); font-family: var(--font-family-primary);
  font-size: 16px; font-weight: 600; letter-spacing: 0.01em;
  transition: background 220ms var(--ease), opacity 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 2;
}
.vt-play.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vt-play.is-playing {
  background: transparent;
}
.vt-play.is-playing .vt-play-circle,
.vt-play.is-playing .vt-play-label {
  opacity: 0;
  transform: scale(0.92);
}
.vt-play:hover { background: linear-gradient(180deg,rgba(12,35,64,0.05) 0%,rgba(12,35,64,0.55) 100%); }
.vt-play:hover .vt-play-circle { transform: scale(1.06); }
.vt-play-circle {
  display: grid; place-items: center;
  width: 88px; height: 88px; border-radius: 999px;
  background: var(--brand); color: var(--color-white);
  box-shadow: 0 8px 32px rgba(0,166,139,0.45),0 0 0 8px rgba(255,255,255,0.10);
  transition: transform 220ms var(--ease); padding-left: 6px;
}
.vt-play-label {
  background: rgba(12,35,64,0.72); backdrop-filter: blur(8px);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.vt-corner-mark {
  position: absolute; bottom: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--color-white); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); z-index: 1; pointer-events: none;
}
.vt-corner-mark img { width: 26px; }
@media (max-width: 640px) {
  .video-teaser { padding: 64px 0 48px; }
  .vt-play-circle { width: 64px; height: 64px; }
}

/* ── LOGO BAR ──────────────────────────────────────────────── */
.logobar { background: var(--color-white); padding: 48px 0 56px; border-bottom: 1px solid var(--border-soft); }
.logobar-head { display: flex; justify-content: center; margin-bottom: 32px; }
.logobar-label { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--fg-soft); }
.logobar-line { width: 40px; height: 1px; background: var(--border); }
.logobar-track-wrap { position: relative; overflow: hidden; }
.logobar-track { display: flex; gap: 64px; align-items: center; animation: marquee 60s linear infinite; width: max-content; }
.logobar-cell { flex: 0 0 auto; height: 48px; display: grid; place-items: center; }
.logobar-cell img { height: 100%; max-height: 48px; width: auto; filter: grayscale(100%) opacity(0.7); transition: filter 200ms var(--ease); }
.logobar-cell img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logobar-fade { position: absolute; top: 0; bottom: 0; width: 80px; pointer-events: none; }
.logobar-fade-l { left: 0; background: linear-gradient(90deg,var(--color-white),transparent); }
.logobar-fade-r { right: 0; background: linear-gradient(-90deg,var(--color-white),transparent); }

/* Editmode-friendly logo manager UI */
.logobar--edit .logobar-head { margin-bottom: 20px; }
.logobar-editor { max-width: 1080px; margin: 0 auto; }
.logobar-editor-hint {
  margin: 0 0 16px;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.logobar-editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  align-items: start;
}
.logobar-editor-card {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #f9fbfc;
  padding: 12px;
  min-height: 170px;
}
.logobar-editor-media {
  min-height: 88px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--color-white);
  display: grid;
  place-items: center;
  padding: 10px;
  margin-bottom: 10px;
}
.logobar-editor-media img {
  max-height: 52px;
  width: auto;
  filter: none;
  opacity: 1;
}
.logobar-editor-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 6px;
}
.logobar-editor-card input {
  width: 100%;
}
.logobar-editor-card .pimcore_editable {
  width: 100%;
}

/* ── SECTION SHELL ─────────────────────────────────────────── */
.section { padding: 112px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 80px 0; } }
.section-light { background: var(--color-white); }
.section-light-alt { background: var(--bg-soft); }
.section-mint { background: var(--bg-mint); }
.section-dark { background: var(--bg-dark); color: var(--fg-on-dark); }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head-dark { color: var(--fg-on-dark); }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-title { font-size: clamp(32px,4.2vw,52px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 20px; text-wrap: balance; }
.section-title-light { color: var(--color-white); }
.section-sub { font-size: 18px; line-height: 28px; color: var(--fg-muted); max-width: 60ch; margin: 0 auto; }
.tx-muted-light { color: var(--fg-muted); font-weight: 300; }
.tx-brand-bright { color: var(--brand-bright); }
.tx-brand { color: var(--brand); }

/* ── NON-NEGOTIABLES ───────────────────────────────────────── */
.nn-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 980px) { .nn-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .nn-grid { grid-template-columns: 1fr; } }
.nn-card {
  background: var(--color-white); border: 1px solid var(--border-soft);
  border-radius: var(--border-radius-16); padding: 28px;
  transition: transform 220ms var(--ease),box-shadow 220ms var(--ease),border-color 220ms var(--ease);
  position: relative; overflow: hidden;
}
.nn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-soft); }
.nn-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.nn-num { font-size: 48px; line-height: 1; font-weight: 200; color: var(--brand); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.nn-icon { width: 56px; height: 56px; border-radius: var(--border-radius-16); background: var(--bg-mint); display: grid; place-items: center; }
.nn-title { font-size: 20px; line-height: 26px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.nn-body { font-size: 15px; line-height: 23px; color: var(--fg-muted); margin-bottom: 20px; }
.nn-proof { font-size: 12px; font-weight: 600; color: var(--brand); letter-spacing: 0.04em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px dashed var(--border); }
.nn-proof-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand); }
.nn-card-cta { background: var(--bg-dark); color: var(--fg-on-dark); border-color: var(--bg-dark); display: flex; flex-direction: column; justify-content: space-between; position: relative; padding: 32px 28px; }
.nn-card-cta:hover { border-color: var(--brand); }
.nn-cta-title { font-size: 24px; line-height: 30px; font-weight: 600; color: var(--color-white); margin-bottom: 12px; letter-spacing: -0.015em; }
.nn-cta-body { font-size: 14px; color: var(--fg-on-dark-muted); margin-bottom: 28px; }
.nn-cta-inner { position: relative; z-index: 1; }
.nn-cta-deco { position: absolute; right: -40px; bottom: -40px; width: 200px; opacity: 0.06; pointer-events: none; }
.nn-cta-deco img { width: 100%; }

/* ── WHY MATTERS ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--border-radius-16); padding: 32px; transition: background 220ms var(--ease),border-color 220ms var(--ease); }
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(0,207,137,0.30); }
.why-card-accent { background: linear-gradient(180deg,rgba(0,207,137,0.10),rgba(0,207,137,0.02)); border-color: rgba(0,207,137,0.30); }
.why-num { font-size: 64px; line-height: 1; font-weight: 300; color: var(--brand-bright); letter-spacing: -0.04em; font-family: var(--font-family-primary); margin-bottom: 16px; display: inline-block; }
.why-title { font-size: 22px; font-weight: 600; color: var(--color-white); letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.why-body { font-size: 15px; line-height: 24px; color: var(--fg-on-dark-muted); }
.why-stats { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 32px; padding: 40px 48px; border-radius: var(--border-radius-24); background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark); }
@media (max-width: 980px) { .why-stats { grid-template-columns: 1fr; padding: 32px; gap: 24px; } .why-stat-sep { display: none; } }
.why-stat-num { font-size: 48px; line-height: 1; font-weight: 600; color: var(--brand-bright); letter-spacing: -0.025em; }
.why-stat-label { font-size: 14px; color: var(--fg-on-dark-muted); margin-top: 8px; max-width: 32ch; }
.why-stat-sep { width: 1px; height: 56px; background: var(--border-dark); }
.why-footnote { font-size: 11px; color: var(--fg-soft); margin-top: 16px; text-align: center; }

/* ── SPEAKER SECTION ───────────────────────────────────────── */
.speaker-section-grid { display: grid; grid-template-columns: minmax(280px,380px) 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .speaker-section-grid { grid-template-columns: 1fr; gap: 40px; } }
.speaker-section-photo-frame { position: relative; border-radius: var(--border-radius-24); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.speaker-section-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker-section-badge { position: absolute; bottom: 20px; left: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg-dark); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--color-white); border: 1px solid var(--brand-bright); }
.speaker-section-content .eyebrow { display: inline-block; margin-bottom: 16px; }
.speaker-section-body { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; font-size: 17px; line-height: 28px; color: var(--fg-muted); }
.speaker-section-body strong { color: var(--fg); font-weight: 600; }
.speaker-section-creds { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 540px) { .speaker-section-creds { grid-template-columns: 1fr; } }
.cred { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--color-white); border: 1px solid var(--border-soft); border-radius: var(--border-radius-8); font-size: 14px; font-weight: 500; }

/* ── AGENDA ────────────────────────────────────────────────── */
.agenda-wrap { max-width: 860px; margin: 0 auto; }
.agenda-head { margin-bottom: 56px; text-align: center; }
.agenda-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.agenda-row { display: grid; grid-template-columns: 98px 28px 1fr; gap: 22px; align-items: center; }
.agenda-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  justify-self: end;
  background: var(--bg-mint);
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
  padding: 6px 10px;
  min-width: 74px;
  text-align: center;
}
.agenda-rail { position: relative; height: 100%; display: grid; place-items: center; }
.agenda-rail::before {
  content: '';
  position: absolute;
  top: -26px;
  bottom: -26px;
  width: 2px;
  background: linear-gradient(180deg,var(--brand-soft) 0%,var(--border) 100%);
}
.agenda-row:first-child .agenda-rail::before { top: 50%; }
.agenda-row:last-child .agenda-rail::before { bottom: 50%; }
.agenda-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 3px solid var(--brand);
  background: var(--color-white);
  box-shadow: 0 0 0 6px rgba(0, 166, 139, 0.12);
}
.agenda-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--fg);
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 16px;
}
.agenda-row:hover .agenda-label { border-color: var(--brand-soft); }
@media (max-width: 700px) {
  .agenda-row { grid-template-columns: 76px 22px 1fr; gap: 14px; align-items: start; }
  .agenda-time { font-size: 12px; min-width: 64px; padding: 5px 8px; }
  .agenda-label { font-size: 15px; line-height: 22px; padding: 12px; }
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--bg-soft); }
.t-editor { display: grid; gap: 24px; }
.t-slider { position: relative; }
.t-slide { display: none; }
.t-slide.is-active { display: block; }
.t-stage { max-width: 880px; margin: 0 auto; background: var(--color-white); border-radius: var(--border-radius-24); padding: 56px 56px 32px; border: 1px solid var(--border-soft); position: relative; }
@media (max-width: 640px) { .t-stage { padding: 40px 24px 24px; } }
.t-quote-mark { position: absolute; top: 24px; right: 32px; color: var(--brand-soft); }
.t-quote { font-size: clamp(18px,2vw,22px); line-height: 32px; font-weight: 500; color: var(--fg); margin: 0 0 32px; letter-spacing: -0.01em; min-height: 96px; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 16px; padding-bottom: 32px; border-bottom: 1px solid var(--border-soft); }
.t-author-avatar { width: 56px; height: 56px; border-radius: 999px; overflow: hidden; background: var(--bg-mint); display: grid; place-items: center; flex: 0 0 56px; }
.t-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author-initials { font-size: 18px; font-weight: 600; color: var(--brand); }
.t-author-meta { flex: 1; }
.t-author-name { font-size: 16px; font-weight: 600; }
.t-author-role { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.t-author-logo { height: 32px; display: grid; place-items: center; }
.t-author-logo img { max-height: 32px; max-width: 120px; filter: grayscale(100%) opacity(0.65); }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.t-arrow { width: 40px; height: 40px; border-radius: 999px; background: var(--bg-soft); border: 0; cursor: pointer; display: grid; place-items: center; color: var(--fg); transition: background 160ms var(--ease); }
.t-arrow:hover { background: var(--brand-soft); color: var(--brand); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border); border: 0; padding: 0; cursor: pointer; transition: background 160ms var(--ease),width 160ms var(--ease); }
.t-dot.is-active { background: var(--brand); width: 24px; border-radius: 999px; }

/* ── AUDIENCE ──────────────────────────────────────────────── */
.aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 880px) { .aud-grid { grid-template-columns: 1fr; } }
.aud-card { background: var(--color-white); border: 1px solid var(--border-soft); border-radius: var(--border-radius-16); padding: 32px; transition: transform 220ms var(--ease),border-color 220ms var(--ease); }
.aud-card:hover { transform: translateY(-2px); border-color: var(--brand); }
.aud-icon { width: 56px; height: 56px; border-radius: var(--border-radius-16); background: var(--bg-mint); display: grid; place-items: center; margin-bottom: 20px; }
.aud-tag { font-size: 11px; font-weight: 600; color: var(--brand); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.aud-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.aud-body { font-size: 15px; line-height: 24px; color: var(--fg-muted); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-row { background: var(--color-white); border: 1px solid var(--border-soft); border-radius: var(--border-radius-8); overflow: hidden; transition: border-color 200ms var(--ease); }
.faq-row.is-open { border-color: var(--brand); }
.faq-q { width: 100%; background: transparent; border: 0; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-family-primary); font-size: 17px; font-weight: 600; text-align: left; cursor: pointer; color: var(--fg); letter-spacing: -0.005em; }
.faq-chev { display: grid; place-items: center; color: var(--fg-soft); transition: transform 220ms var(--ease),color 220ms var(--ease); }
.faq-row.is-open .faq-chev { transform: rotate(180deg); color: var(--brand); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 280ms var(--ease); }
.faq-row.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; font-size: 15px; line-height: 24px; color: var(--fg-muted); padding: 0 24px; }
.faq-row.is-open .faq-a { padding: 0 24px 24px; }

/* ── FINAL CTA ─────────────────────────────────────────────── */
.final-cta { position: relative; background: linear-gradient(180deg,#0C2340 0%,#041425 100%); color: var(--fg-on-dark); padding: 96px 0; overflow: hidden; isolation: isolate; }
.final-cta-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,207,137,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(0,207,137,0.06) 1px,transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 50% at 50% 50%,black,transparent 70%); z-index: -1; }
.final-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta .badge { margin-bottom: 24px; }
.final-cta-title { font-size: clamp(32px,4.4vw,56px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 600; margin-bottom: 20px; color: var(--color-white); text-wrap: balance; }
.final-cta-sub { font-size: 18px; line-height: 28px; color: var(--fg-on-dark-muted); margin-bottom: 36px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.final-cta-cd { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; max-width: 460px; margin: 0 auto 32px; }
.final-form { display: flex; justify-content: center; max-width: 520px; margin: 0 auto 16px; }
.final-form-btn { font-size: 18px; padding: 22px 48px; }
.final-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--fg-on-dark-muted); }
.final-meta span { display: inline-flex; align-items: center; gap: 6px; }
