/* ============================================================
   FAT LOSS WEBINAR FUNNEL — SHARED STYLESHEET
   Design: Warm Conversion palette on dark base
   Mobile-first, WCAG 2.1 AA compliant
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Backgrounds */
  --bg-primary: #0F172A;
  --bg-secondary: #1A1A2E;
  --bg-card: #16213E;
  --bg-elevated: #0F3460;
  --bg-input: #1E293B;

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;

  /* Accent — Warm Conversion */
  --accent: #E94560;
  --accent-hover: #D63851;
  --accent-glow: rgba(233, 69, 96, 0.35);
  --accent-soft: rgba(233, 69, 96, 0.12);

  /* Secondary accent */
  --accent2: #F59E0B;
  --accent2-soft: rgba(245, 158, 11, 0.12);

  /* Success / Warning / Error */
  --success: #22C55E;
  --success-soft: rgba(34, 197, 94, 0.12);
  --warning: #F59E0B;
  --error: #EF4444;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(233, 69, 96, 0.4);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ── Base Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--text-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--accent-hover); text-decoration: underline; }

ul { list-style: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container--wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section {
  padding: var(--space-16) var(--space-4);
}

@media (min-width: 768px) {
  section { padding: var(--space-20) var(--space-8); }
  .container { padding: 0 var(--space-8); }
}

@media (min-width: 1024px) {
  section { padding: var(--space-24) var(--space-4); }
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.875rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: var(--text-xl); font-weight: 700; }

p { color: var(--text-secondary); line-height: 1.7; }

.text-accent { color: var(--accent); }
.text-warning { color: var(--accent2); }
.text-success { color: var(--success); }
.text-muted { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-accent);
  margin-bottom: var(--space-4);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: var(--text-base);
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: #fff;
}

.btn-primary-lg {
  font-size: var(--text-lg);
  padding: 18px 40px;
  min-height: 58px;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-full { width: 100%; }

.btn-pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px var(--accent-glow); }
  50% { box-shadow: 0 4px 32px rgba(233, 69, 96, 0.6); }
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.2s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

/* ── Forms ── */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: var(--text-base);
  color: var(--text-secondary);
  min-height: 48px;
}

.form-radio-label:hover,
.form-checkbox-label:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--accent-soft);
}

.form-radio-label input,
.form-checkbox-label input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Countdown Timer ── */
.countdown-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-5);
  min-width: 64px;
}

.countdown-number {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-sep {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--accent);
  margin-top: -8px;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: var(--space-6);
  font-size: 4rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--success-soft);
  color: var(--success);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.3);
  margin-bottom: var(--space-3);
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
}

.testimonial-author-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.stars {
  color: #FBBF24;
  font-size: var(--text-base);
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-4) auto 0;
  font-size: var(--text-lg);
}

/* ── Grid helpers ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Alert / Banner bars ── */
.alert-bar {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.alert-bar--accent {
  background: var(--accent);
  color: #fff;
}

.alert-bar--warning {
  background: var(--accent2);
  color: #0F172A;
}

.alert-bar--success {
  background: var(--success);
  color: #fff;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: var(--space-6) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* ── Dividers ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-16) 0;
}

/* ── Callout / Quote Blocks ── */
.callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
}

.callout p {
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-style: italic;
  margin: 0;
}

.callout-warning {
  background: var(--accent2-soft);
  border-left-color: var(--accent2);
}

/* ── Checkmark lists ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--success-soft);
  border: 1.5px solid var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='%2322C55E' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  min-height: 56px;
}

.faq-question:hover {
  background: var(--bg-elevated);
}

.faq-question[aria-expanded="true"] {
  background: var(--bg-elevated);
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-soft);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: var(--space-4) var(--space-6) var(--space-6);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

/* ── Trust badges ── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge svg {
  color: var(--success);
}

/* ── Media logos (featured in) ── */
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.media-logo {
  padding: var(--space-2) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-12) var(--space-4);
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Mobile sticky CTA ── */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px var(--space-4);
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-accent);
    z-index: 200;
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    font-size: var(--text-base);
  }

  body.has-mobile-cta {
    padding-bottom: 76px;
  }
}

/* ── Webinar room specific ── */
.webinar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .webinar-layout {
    grid-template-columns: 1fr 360px;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-accent);
}

.video-wrapper iframe,
.video-wrapper .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F1B35 0%, #1A0A15 100%);
  color: var(--text-muted);
  font-size: var(--text-sm);
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-4);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px var(--accent-glow);
}

/* ── Chat sidebar ── */
.chat-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 500px;
}

@media (min-width: 1024px) {
  .chat-sidebar { height: 100%; min-height: 400px; }
}

.chat-header {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-live-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--success);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 2px;
}

.chat-msg {
  display: flex;
  gap: var(--space-2);
  animation: msgSlideIn 0.4s ease;
}

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

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.chat-msg-content {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: var(--space-2) var(--space-3);
  font-size: 13px;
  line-height: 1.5;
}

.chat-msg-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 12px;
  margin-bottom: 2px;
}

.chat-msg-text {
  color: var(--text-secondary);
}

.chat-input-area {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--space-2);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  min-height: 40px;
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent);
}

.chat-send-btn {
  padding: 10px 16px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 40px;
}

.chat-send-btn:hover { background: var(--accent-hover); }

/* ── Offer reveal ── */
.offer-reveal {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-6);
  display: none;
}

.offer-reveal.visible {
  display: block;
  animation: offerAppear 0.6s ease forwards;
}

@keyframes offerAppear {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Attendee counter ── */
.attendee-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--success-soft);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ── Progress steps ── */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-10);
  overflow-x: auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  flex: 1;
  min-width: 80px;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.progress-step.done:not(:last-child)::after {
  background: var(--success);
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.progress-step.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.progress-step.done .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 72px;
}

.progress-step.active .step-label {
  color: var(--accent);
}

/* ── Booking page ── */
.calendly-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-20) var(--space-8);
  text-align: center;
  color: var(--text-muted);
}

.calendly-placeholder .placeholder-note {
  background: var(--accent2-soft);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent2);
  border-radius: var(--radius);
  padding: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-5);
}

/* ── Confirmation page ── */
.confirmation-icon {
  width: 88px;
  height: 88px;
  background: var(--success-soft);
  border: 3px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 2.5rem;
}

.checklist-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
}

.checklist-step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: #fff;
}

.checklist-step-content h4 {
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.checklist-step-content p {
  font-size: var(--text-sm);
  margin: 0;
}

/* ── Calendar buttons ── */
.cal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.cal-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

/* ── Thank you indoctrination video ── */
.indoc-video {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.indoc-video-header {
  padding: var(--space-4) var(--space-6);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Application form highlight ── */
.app-question-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-right: var(--space-2);
  flex-shrink: 0;
}

/* ── Urgency bar ── */
.urgency-band {
  background: linear-gradient(90deg, #1a0a12 0%, #2d0d1a 50%, #1a0a12 100%);
  border: 1px solid rgba(233, 69, 96, 0.3);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  text-align: center;
}

/* ── Webinar live bar ── */
.live-bar {
  background: #0d0d0d;
  border-bottom: 2px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.live-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-bar-title {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

@media (max-width: 639px) {
  .live-bar-title { display: none; }
}

/* ── Share buttons ── */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.share-btn-fb { background: #1877F2; color: #fff; }
.share-btn-tw { background: #000; color: #fff; }
.share-btn-wa { background: #25D366; color: #fff; }
.share-btn-link { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border-hover); }

.share-btn:hover { transform: translateY(-2px); filter: brightness(1.1); text-decoration: none; }

/* ── Coach bio ── */
.coach-bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .coach-bio {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.coach-photo-placeholder {
  width: 120px;
  height: 120px;
  min-width: 120px;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-elevated));
  border: 3px solid var(--border-accent);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

/* ── Range display ── */
.range-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  height: 6px;
  cursor: pointer;
}

.range-value {
  display: inline-block;
  min-width: 36px;
  text-align: center;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ── Notification toast ── */
.proof-toast {
  position: fixed;
  bottom: 90px;
  left: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 300;
  max-width: 260px;
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proof-toast.show {
  transform: translateX(0);
}

/* ── Webinar demo controls ── */
.demo-controls {
  background: var(--accent2-soft);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-5);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ── Accessibility ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Lucide icon defaults ── */
[data-lucide] {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke-width: 2;
}
.icon-lg [data-lucide] { width: 1.5em; height: 1.5em; }
.icon-xl [data-lucide] { width: 2em; height: 2em; }
.icon-accent { color: var(--accent); }
.icon-success { color: var(--success); }
.icon-live { color: #EF4444; fill: #EF4444; }
.icon-online { color: #22C55E; fill: #22C55E; }

/* Pulsing live indicator (moved from emoji to icon parent) */
.live-pulse {
  display: inline-flex;
  align-items: center;
  animation: livePulse 1.5s ease-in-out infinite;
}

/* ── Testimonial photos ── */
.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-photo--lg { width: 96px; height: 96px; }
.avatar-stack {
  display: inline-flex;
  align-items: center;
}
.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }

/* Coach photo (replaces text initial placeholder) */
.coach-photo {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: var(--radius-xl);
  border: 3px solid var(--border-accent);
  object-fit: cover;
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.hidden { display: none !important; }
