﻿
:root {
  /* Opt out of the browser's automatic dark-mode inversion (Chromium "auto dark
     mode for web content" on OS dark theme) — this site is light-mode-authored
     and CSS-variable-driven text/backgrounds render unreadable when inverted. */
  color-scheme: light;

  /* NUMO Brand Colors */
  --gold: #C9A961;
  --gold-bright: #E0BD78;
  --gold-deep: #A8893F;
  --gold-tint: #FAF4E3;
  
  --navy: #1A4A7A;
  --navy-deep: #0F3457;
  --navy-soft: #2A5C8F;
  
  /* Service-specific accents */
  --service-toolkit: #C9A961;     /* Gold (default NUMO) */
  --service-liquidity: #4A90B8;   /* Calm Blue (liquidity balance) */
  --service-ipo: #2D6A4F;         /* Deep Green (growth + maturity) */
  
  --bg: #FAFAF7;
  --bg-card: #FFFFFF;
  --bg-warm: #FDF8EE;
  
  --ink: #1A4A7A;
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-gold: rgba(201, 169, 97, 0.2);
  
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(26, 74, 122, 0.06);
  --shadow: 0 4px 16px rgba(26, 74, 122, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 74, 122, 0.08);
  --shadow-gold: 0 8px 30px rgba(201, 169, 97, 0.25);
  --shadow-blue: 0 8px 30px rgba(74, 144, 184, 0.25);
  --shadow-green: 0 8px 30px rgba(45, 106, 79, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'IBM Plex Sans Arabic', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: white; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* === NUMO Logo === */
.numo-logo { display: inline-flex; align-items: center; gap: 10px; }
.numo-logo-mark { width: 44px; height: 44px; flex-shrink: 0; }

.numo-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.numo-logo-text .ar { font-family: 'IBM Plex Sans Arabic', sans-serif; font-weight: 700; }
.numo-logo-text .divider { width: 1px; height: 16px; background: var(--gold); opacity: 0.4; }

.numo-logo-tagline {
  font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.25em;
  margin-top: 2px;
  font-weight: 500;
}

/* === Views === */
.view { display: none; }
.view.active { display: block; animation: viewFadeIn 0.4s ease-out; }

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

/* === Navigation === */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.nav-links a:hover {
  background: var(--bg-warm);
  color: var(--gold-deep);
}

.nav-links a.active {
  background: var(--gold-tint);
  color: var(--gold-deep);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 2px;
}

.menu-toggle span::before { content: ''; position: absolute; top: -6px; }
.menu-toggle span::after { content: ''; position: absolute; top: 6px; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ============================================
   DASHBOARD (Home View)
   ============================================ */
#dashboardHero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

#dashboardHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#dashboardHero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 184, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dashboard-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.dashboard-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.dashboard-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

#dashboardHero h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

#dashboardHero h1 .highlight {
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
}

#dashboardHero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

#dashboardHero .lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* === Services Dashboard Grid === */
#servicesDashboard {
  padding: 40px 0 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-title .highlight {
  color: var(--gold-deep);
}

.section-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: var(--service-color, var(--gold));
  opacity: 0.85;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--service-color, var(--gold));
}

.service-card.toolkit { --service-color: var(--service-toolkit); }
.service-card.liquidity { --service-color: var(--service-liquidity); }
.service-card.ipo { --service-color: var(--service-ipo); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--service-color);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-status {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-status.available {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.service-status.soon {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.service-name-ar {
  font-size: 11px;
  color: var(--service-color);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-tagline {
  font-size: 14px;
  color: var(--service-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.service-description {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.service-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.service-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 100px;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.service-price-from {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.service-price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--service-color);
  line-height: 1;
}

.service-price-currency {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--service-color);
  color: white;
  border: 2px solid var(--service-color);
}

.service-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.service-cta:disabled {
  background: var(--bg);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}

.service-cta:disabled:hover {
  transform: none;
  filter: none;
}

/* === Trust Bar (Below Dashboard) === */
#trustBar {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold-deep);
}

.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-text {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   SERVICE PAGE (Generic)
   ============================================ */
.service-hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}

.service-hero.theme-toolkit::before {
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
}
.service-hero.theme-liquidity::before {
  background: radial-gradient(circle, rgba(74, 144, 184, 0.08), transparent 70%);
}
.service-hero.theme-ipo::before {
  background: radial-gradient(circle, rgba(45, 106, 79, 0.08), transparent 70%);
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  transition: all 0.2s;
}

.service-back:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-tag.toolkit {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
}

.service-tag.liquidity {
  background: rgba(74, 144, 184, 0.1);
  color: #2D6E91;
  border: 1px solid rgba(74, 144, 184, 0.2);
}

.service-tag.ipo {
  background: rgba(45, 106, 79, 0.1);
  color: #1F4D38;
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.service-hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-hero .subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-hero.theme-toolkit .subtitle { color: var(--gold-deep); }
.service-hero.theme-liquidity .subtitle { color: #2D6E91; }
.service-hero.theme-ipo .subtitle { color: #1F4D38; }

.service-hero .description {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.service-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  position: relative;
}

.service-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: var(--line);
}

.service-stat-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.service-stat-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.service-hero.theme-toolkit .service-stat-value { color: var(--gold-deep); }
.service-hero.theme-liquidity .service-stat-value { color: #2D6E91; }
.service-hero.theme-ipo .service-stat-value { color: #1F4D38; }

.service-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* === Service Why Section === */
.service-why {
  padding: 60px 0;
  background: var(--bg-card);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
}

.why-icon.toolkit { background: var(--service-toolkit); }
.why-icon.liquidity { background: var(--service-liquidity); }
.why-icon.ipo { background: var(--service-ipo); }

.why-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* === Service Features Section === */
.service-features {
  padding: 60px 0;
}

.features-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.feature-row:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
}

.feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.feature-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   PRICING PAGE (Generic with theme)
   ============================================ */
.pricing-screen {
  padding: 60px 0 80px;
}

.pricing-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  align-items: stretch;
}

.pricing-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.pricing-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  gap: 16px;
}

.pricing-grid.cols-4 .pricing-card {
  padding: 28px 20px;
}

.pricing-grid.cols-4 .plan-name {
  font-size: 18px;
}

.pricing-grid.cols-4 .price-amount {
  font-size: 36px;
}

@media (max-width: 1100px) {
  .pricing-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--service-color, var(--gold));
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-card) 50%);
  border-color: var(--service-color, var(--gold));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card.theme-toolkit { --service-color: var(--service-toolkit); }
.pricing-card.theme-liquidity { --service-color: var(--service-liquidity); }
.pricing-card.theme-ipo { --service-color: var(--service-ipo); }

.featured-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--service-color);
  color: white;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.featured-badge::before {
  content: '⭐ ';
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.plan-tagline {
  font-size: 13px;
  color: var(--service-color);
  font-weight: 600;
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card.featured .price-amount {
  color: var(--service-color);
}

.price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.plan-features li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-top: 1px;
}

.plan-features li.bonus {
  color: var(--service-color);
  font-weight: 700;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.plan-features li.bonus .check {
  background: var(--service-color);
  border-color: var(--service-color);
  color: white;
}

.plan-features li.disabled {
  color: var(--muted);
  opacity: 0.5;
}

.plan-features li.disabled .check {
  background: var(--bg);
  border-color: var(--line);
  color: var(--muted);
}

.plan-features li.disabled .check::after {
  content: '—';
  font-size: 12px;
}

.plan-cta {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.plan-cta:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.pricing-card.featured .plan-cta {
  background: var(--service-color);
  color: white;
  border-color: var(--service-color);
}

.pricing-card.featured .plan-cta:hover {
  filter: brightness(1.1);
}

/* === Guarantee === */
.guarantee-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

.guarantee-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-bright);
}

.guarantee-section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.guarantee-section h2 .highlight {
  color: var(--gold-bright);
}

.guarantee-section p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

/* ============================================
   CUSTOMER PORTAL (Post-Payment Mockup)
   ============================================ */
#portalView {
  background: var(--bg);
  min-height: 100vh;
}

.portal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.portal-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.portal-welcome {
  position: relative;
  z-index: 2;
}

.portal-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.15);
  color: #4ADE80;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.portal-welcome h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.portal-welcome h1 .highlight {
  color: var(--gold-bright);
}

.portal-welcome .subtitle {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 0;
}

.portal-plan-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.portal-plan-info {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.portal-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-bright);
}

.portal-plan-meta {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.portal-content {
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.portal-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.portal-tab {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.portal-tab:hover {
  background: var(--bg);
  color: var(--ink);
}

.portal-tab.active {
  background: var(--navy);
  color: white;
}

.portal-tab-count {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-right: 6px;
  font-weight: 700;
}

.portal-tab:not(.active) .portal-tab-count {
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.portal-tab-content {
  display: none;
}

.portal-tab-content.active {
  display: block;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Portal cards */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portal-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.portal-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.portal-item-thumb {
  height: 120px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portal-item-thumb::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.portal-item-thumb svg {
  position: relative;
  z-index: 2;
  color: var(--gold-bright);
}

.portal-item-thumb.lesson {
  background: linear-gradient(135deg, #1A4A7A, #0F3457);
}

.portal-item-thumb.template {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.portal-item-thumb.template svg {
  color: white;
}

.portal-item-thumb.locked {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.portal-item-thumb.locked svg {
  color: var(--muted);
  opacity: 0.5;
}

.portal-item-content {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portal-item-category {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portal-item h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.portal-item p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.portal-item-action {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.portal-item-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.portal-item-btn.primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.portal-item-btn.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.portal-item-btn.outline {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.portal-item-btn.outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.portal-item-btn.locked {
  background: var(--bg);
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}

.portal-item.locked {
  opacity: 0.55;
}

.portal-locked-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 52, 87, 0.85);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

/* Portal progress */
.portal-progress {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.portal-progress-info {
  flex: 1;
}

.portal-progress-info h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.portal-progress-info p {
  font-size: 13px;
  color: var(--ink-soft);
}

.portal-progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.portal-progress-bar {
  width: 200px;
  height: 8px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.portal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.6s;
}

.portal-progress-percent {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-deep);
  min-width: 50px;
}

/* === Footer === */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand-block .numo-logo {
  margin-bottom: 12px;
}

.footer-brand-block .numo-logo-text {
  color: var(--gold-bright);
}

.footer-brand-block .numo-logo-text .divider {
  background: var(--gold-bright);
}

.footer-brand-block p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* === Accessibility === */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  
  .nav-cta { display: none; }
  
  .pricing-grid.cols-3,
  .pricing-grid.cols-2,
  .pricing-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .portal-progress {
    flex-direction: column;
    align-items: stretch;
  }
  
  .portal-progress-bar { width: 100%; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 80px;
  align-items: start;
}

.checkout-main {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.checkout-step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.checkout-step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.checkout-step-subtitle {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}

.form-input.error {
  border-color: var(--danger);
}

.form-input.error + .form-error {
  display: block;
}

/* Payment methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.payment-method {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.payment-method:hover {
  border-color: var(--gold);
}

.payment-method.selected {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.payment-method-icon {
  font-size: 22px;
  margin-bottom: 4px;
  display: block;
}

.payment-method-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

/* Summary */
.summary-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}

.summary-item:last-of-type {
  border-bottom: none;
}

.summary-item-label {
  color: var(--ink-soft);
}

.summary-item-value {
  font-weight: 700;
  color: var(--navy);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 2px solid var(--navy);
  margin-bottom: 20px;
}

.summary-total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.summary-total-value {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.summary-guarantees {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.summary-guarantees li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  padding: 4px 0;
}

.summary-guarantees li svg {
  flex-shrink: 0;
  color: var(--success);
}

.checkout-pay-btn {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: var(--shadow-gold);
}

.checkout-pay-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.checkout-pay-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */
.confirmation-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 80px;
  text-align: center;
}

.confirmation-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
  position: relative;
}

.confirmation-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid #10B981;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0; }
}

.confirmation-wrap h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.confirmation-wrap .lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.confirmation-order-num {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.receipt-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: right;
  margin-bottom: 32px;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--line);
}

.receipt-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.receipt-date {
  font-size: 13px;
  color: var(--muted);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}

.receipt-row:last-of-type {
  border-bottom: none;
}

.receipt-row-label {
  color: var(--ink-soft);
  font-weight: 500;
}

.receipt-row-value {
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}

.receipt-total {
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.receipt-total-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.receipt-total-value {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-deep);
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.next-steps {
  background: var(--bg-warm);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: right;
}

.next-steps h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.next-steps-list {
  list-style: none;
  padding: 0;
}

.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
}

.next-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 40px 24px;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-bright);
}

.login-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.login-header p {
  font-size: 14px;
  color: var(--ink-soft);
}

.login-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
}

.login-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.login-tab.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.login-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  font-size: 12px;
  color: var(--muted);
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.login-divider span {
  background: white;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.login-footer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.login-footer a {
  color: var(--gold-deep);
  font-weight: 700;
}

.demo-accounts {
  background: var(--bg-warm);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-soft);
}

.demo-accounts strong {
  color: var(--gold-deep);
  display: block;
  margin-bottom: 6px;
}

.demo-account-item {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-family: 'Inter', sans-serif;
}

.demo-account-item code {
  background: white;
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--navy);
  font-size: 11px;
  cursor: pointer;
}

/* ============================================
   PORTAL ENHANCEMENTS (Search + Filter)
   ============================================ */
.portal-toolbar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.portal-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.portal-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.portal-search-input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: all 0.2s;
}

.portal-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.portal-filter-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portal-filter-chip {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg);
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.portal-filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.portal-filter-chip.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.portal-filter-chip .count {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 1px 7px;
  border-radius: 100px;
  font-size: 10px;
  margin-right: 4px;
}

.portal-filter-chip:not(.active) .count {
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.portal-results-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-card);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}

.portal-results-empty svg {
  color: var(--muted);
  opacity: 0.4;
  margin-bottom: 12px;
}

.portal-results-empty h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.portal-results-empty p {
  font-size: 13px;
}

.portal-results-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* === Responsive for new sections === */
@media (max-width: 900px) {
  .checkout-wrap {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    grid-template-columns: 1fr 1fr;
  }
  
  .checkout-main {
    padding: 24px 20px;
  }
  
  .receipt-card {
    padding: 24px 20px;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .confirmation-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .portal-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .portal-filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}

/* ============================================
   ABOUT NUMO VIEW (V12)
   ============================================ */
#aboutHero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

#aboutHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#aboutHero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 74, 122, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.about-hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

#aboutHero h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

#aboutHero h1 .highlight {
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
}

#aboutHero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

#aboutHero .lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.about-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about-trust-item {
  text-align: center;
}

.about-trust-item .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.about-trust-item .label {
  font-size: 13px;
  color: var(--muted);
}

/* Problem Section */
.about-section {
  padding: 80px 0;
}

.about-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-section-eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.about-section-eyebrow::before,
.about-section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.about-section-eyebrow::before { right: 0; }
.about-section-eyebrow::after { left: 0; }

.about-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-section-title .highlight {
  color: var(--gold-deep);
}

.about-section-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}

.problem-card:hover {
  border-color: var(--gold);
  background: var(--bg-warm);
  transform: translateY(-2px);
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card p {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.problem-conclusion {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 32px;
  background: var(--bg-warm);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
}

.problem-conclusion strong {
  color: var(--navy);
  font-weight: 700;
}

/* Discover */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.discover-list-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}

.discover-list-item:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
  box-shadow: var(--shadow);
}

.discover-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.discover-list-item span {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

/* Why Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: right;
  transition: all 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-deep);
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--bg-warm);
}

.quote-mark {
  font-family: 'Inter', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  opacity: 0.4;
  font-weight: 800;
}

.testimonial-text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* About CTA Section */
.about-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

.about-cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  border-radius: 50%;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-eyebrow {
  display: inline-block;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.about-cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.about-cta-section h2 .highlight {
  color: var(--gold-bright);
}

.about-cta-section .lead {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.about-cta-tagline {
  font-size: 15px;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: var(--radius);
  display: inline-block;
}

/* ============================================
   ASSESSMENT VIEW (V13)
   ============================================ */
.assessment-screen {
  display: none;
}

.assessment-screen.active {
  display: block;
  animation: viewFadeIn 0.4s ease-out;
}

#assessmentHero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

#assessmentHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.assessment-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.assessment-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

#assessmentHero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#assessmentHero h1 .highlight {
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
}

#assessmentHero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

#assessmentHero .lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-meta-item svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-gold);
}

.btn-cta-large:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.discover-section {
  margin-top: 60px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.discover-title {
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-align: center;
}

.discover-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.discover-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.discover-item .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-top: 1px;
}

/* Quiz Screen */
#quizScreen {
  padding: 40px 0 60px;
}

.quiz-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.progress-section {
  margin-bottom: 32px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-text {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.progress-percent {
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.progress-bar {
  height: 8px;
  background: var(--gold-tint);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.question-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.question-category {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.question-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.question-hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.answer-btn {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.answer-btn:hover {
  border-color: var(--gold);
  background: var(--bg-warm);
  transform: translateX(-4px);
}

.answer-btn .answer-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.answer-btn:hover .answer-indicator {
  border-color: var(--gold);
}

.answer-btn.selected {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.answer-btn.selected .answer-indicator {
  background: var(--gold);
  border-color: var(--gold);
}

.answer-btn.selected .answer-indicator::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--muted);
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: inherit;
}

.back-btn:hover:not(:disabled) {
  color: var(--navy);
  background: var(--bg);
}

.back-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.auto-advance {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Quiz Form Screen */
#quizFormScreen {
  padding: 40px 0 60px;
}

.form-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.form-progress {
  text-align: center;
  margin-bottom: 32px;
}

.form-progress-dots {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

.form-progress-dot {
  width: 32px;
  height: 4px;
  background: var(--gold-tint);
  border-radius: 100px;
}

.form-progress-dot.active {
  background: var(--gold);
}

.form-progress-dot.completed {
  background: var(--success);
}

.form-progress-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.lead-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.almost-done {
  text-align: center;
  margin-bottom: 28px;
}

.almost-done-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-deep);
}

.almost-done h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.almost-done p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.lead-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.lead-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.lead-form-field label .required {
  color: var(--gold-deep);
}

.lead-form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  text-align: right;
  transition: all 0.2s;
  outline: none;
}

.lead-form-field input[type="email"],
.lead-form-field input[type="tel"] {
  font-family: 'Inter', sans-serif;
  text-align: left;
  direction: ltr;
}

.lead-form-field input:focus {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.lead-form-field input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.lead-form-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.lead-form-submit:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.lead-form-benefits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.benefit-mini svg {
  color: var(--success);
  flex-shrink: 0;
}

.lead-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.lead-form-trust svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Results Screen */
#resultsScreen {
  padding: 40px 0 60px;
}

.results-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.results-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.results-header .lead-line {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.score-display {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.score-circle-wrap {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.score-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.score-track {
  fill: none;
  stroke: var(--gold-tint);
  stroke-width: 14;
}

.score-progress {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 2s ease-out;
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.score-percent {
  font-size: 20px;
  color: var(--gold-deep);
  font-weight: 700;
}

.score-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.score-level-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.insights {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.insights h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.insight-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.insight-icon.strength {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.insight-icon.warning {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.insight-icon.danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.insight-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.insight-content p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.recommendation-offer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.recommendation-offer::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.recommendation-offer-content {
  position: relative;
  z-index: 2;
}

.recommendation-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.recommendation-offer h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.recommendation-offer h2 .highlight {
  color: var(--gold-bright);
}

.recommendation-offer p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  #aboutHero { padding: 60px 0 40px; }
  
  .about-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-trust {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-trust-item .num { font-size: 28px; }
  
  #assessmentHero { padding: 40px 0 30px; }
  #assessmentHero h1 { font-size: 26px; }
  
  .hero-meta {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .btn-cta-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .trust-bar {
    flex-direction: column;
    gap: 8px;
  }
  
  .discover-section { padding: 24px 20px; }
  .discover-list { grid-template-columns: 1fr; }
  
  .question-card,
  .lead-form-card {
    padding: 28px 24px;
  }
  
  .question-text { font-size: 18px; }
  .answer-btn { font-size: 15px; padding: 14px 16px; }
  
  .score-circle-wrap {
    width: 160px;
    height: 160px;
  }
  
  .score-number { font-size: 44px; }
}

/* ============================================
   V7 ADDITIONS: Authority Sections
   ============================================ */

/* === Founder Stats Band === */
#founderStats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#founderStats::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

#founderStats::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  border-radius: 50%;
}

.founder-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-stats-header {
  text-align: center;
  margin-bottom: 48px;
}

.founder-stats-eyebrow {
  display: inline-block;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-stats-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.founder-stats-header h2 .highlight {
  color: var(--gold-bright);
}

.founder-stats-header p {
  font-size: 15px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.18);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-bright);
}

.stat-card-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-card-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.4;
}

.stats-disclaimer {
  text-align: center;
  font-size: 12px;
  opacity: 0.65;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Founder Section === */
#founderSection {
  padding: 80px 0;
  background: var(--bg-card);
}

.founder-inner {
  max-width: 960px;
  margin: 0 auto;
}

.founder-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl, 28px);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold-deep));
}

.founder-avatar {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gold-bright);
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(26, 74, 122, 0.2);
  flex-shrink: 0;
}

.founder-content {
  text-align: right;
}

.founder-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.founder-name {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.founder-credentials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line-gold);
  font-family: 'Inter', sans-serif;
}

.founder-bio {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.founder-highlight svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

/* === Service "For Whom" Section === */
.service-for-whom {
  padding: 60px 0;
  background: var(--bg);
}

.for-whom-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.for-whom-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.for-whom-title-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.for-whom-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.for-whom-list li::before {
  content: '👤';
  font-size: 16px;
  flex-shrink: 0;
}

/* === Service Outcomes Section === */
.service-outcomes {
  padding: 60px 0;
  background: var(--bg-card);
}

.outcomes-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.outcomes-header {
  text-align: center;
  margin-bottom: 32px;
}

.outcomes-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.outcomes-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.outcomes-title .highlight {
  color: var(--gold-deep);
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.outcomes-list li:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
  background: var(--bg-warm);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.outcome-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.outcome-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === Urgency Banner === */
.urgency-banner {
  background: linear-gradient(135deg, #C9A961 0%, #A8893F 100%);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.urgency-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: #A8893F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.urgency-text {
  flex: 1;
}

.urgency-highlight {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  white-space: nowrap;
}

/* === Spots Counter (for CFO Partner) === */
.spots-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.spots-indicator .pulse {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* === Launch Pricing Tag === */
.launch-pricing-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  z-index: 3;
}

.launch-pricing-tag::before {
  content: '🔥 ';
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  
  .founder-avatar {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    font-size: 48px;
  }
  
  .founder-content {
    text-align: center;
  }
  
  .founder-credentials,
  .founder-highlights {
    justify-content: center;
  }
  
  .for-whom-list {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-card {
    padding: 20px 16px;
  }
  
  .urgency-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FORGOT PASSWORD VIEW (V14)
   ============================================ */
.forgot-screen {
  display: none;
}

.forgot-screen.active {
  display: block;
  animation: viewFadeIn 0.4s ease-out;
}

.forgot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 40px 24px;
}

.forgot-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.forgot-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

/* Step indicator */
.forgot-steps {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
}

.forgot-step-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-tint);
  border-radius: 50%;
  transition: all 0.3s;
}

.forgot-step-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 100px;
}

.forgot-step-dot.completed {
  background: var(--success);
}

.forgot-header {
  text-align: center;
  margin-bottom: 28px;
}

.forgot-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-tint) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-deep);
  position: relative;
}

.forgot-icon.success {
  background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
  border-color: rgba(5, 150, 105, 0.3);
  color: var(--success);
}

.forgot-icon.success::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--success);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s infinite;
}

.forgot-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.forgot-header p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.forgot-header .email-highlight {
  font-family: 'Inter', sans-serif;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  margin: 4px 4px;
  direction: ltr;
}

.forgot-form-group {
  margin-bottom: 18px;
}

.forgot-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.forgot-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.forgot-form-input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.forgot-form-input.error {
  border-color: var(--danger);
}

.forgot-form-input[type="email"] {
  direction: ltr;
  text-align: left;
}

.forgot-form-input[type="password"] {
  direction: ltr;
  text-align: left;
}

.forgot-error-msg {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 4px;
}

.forgot-form-input.error + .forgot-error-msg {
  display: flex;
}

.forgot-btn-primary {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.forgot-btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.forgot-btn-primary:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.forgot-btn-secondary {
  width: 100%;
  background: white;
  color: var(--navy);
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.forgot-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 8px;
  margin-bottom: 12px;
}

.password-strength-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.password-strength-segment {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  transition: background 0.3s;
}

.password-strength-segment.weak { background: var(--danger); }
.password-strength-segment.medium { background: var(--warning); }
.password-strength-segment.strong { background: var(--success); }

.password-strength-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.password-strength-label.weak { color: var(--danger); }
.password-strength-label.medium { color: var(--warning); }
.password-strength-label.strong { color: var(--success); }

/* Requirements checklist */
.password-requirements {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.password-req-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.password-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.password-req-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  transition: color 0.2s;
}

.password-req-list li.met {
  color: var(--success);
}

.password-req-list li .req-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.password-req-list li.met .req-icon::after {
  content: '✓';
  font-weight: 800;
}

.password-req-list li:not(.met) .req-icon::after {
  content: '○';
  opacity: 0.5;
}

/* Email sent confirmation */
.email-sent-box {
  background: var(--bg-warm);
  border: 1px dashed var(--line-gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: right;
}

.email-sent-box .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.email-sent-box .desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.email-sent-box .desc strong {
  color: var(--navy);
}

/* Resend timer */
.resend-section {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.resend-section .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.resend-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resend-link:hover {
  color: var(--navy);
}

.resend-link:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.resend-timer {
  display: inline-block;
  background: var(--bg);
  color: var(--muted);
  padding: 2px 10px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-right: 4px;
}

.forgot-back-link {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.forgot-back-link a {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.forgot-back-link a:hover {
  color: var(--gold-deep);
}

/* Success screen specific */
.success-checkmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT US + BOOKING (V15)
   ============================================ */

/* Hero */
#contactHero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#contactHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

#contactHero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#contactHero h1 .highlight {
  color: var(--gold-deep);
}

#contactHero .lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Tabs Navigation */
.contact-tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}

.contact-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-tab:hover {
  color: var(--gold-deep);
}

.contact-tab.active {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 74, 122, 0.15);
}

/* Quick Contact Cards */
.quick-contact-section {
  padding: 60px 0 40px;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
}

.quick-contact-icon.email { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.quick-contact-icon.phone { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.quick-contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.quick-contact-icon.location { background: linear-gradient(135deg, #6366F1, #4F46E5); }

.quick-contact-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.quick-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}

.quick-contact-value.ltr {
  direction: ltr;
  font-family: 'Inter', sans-serif;
  unicode-bidi: embed;
}

.quick-contact-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* Tab Content */
.contact-tab-content {
  display: none;
  padding: 60px 0 80px;
}

.contact-tab-content.active {
  display: block;
  animation: viewFadeIn 0.4s;
}

/* Booking Wizard */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Step Progress */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 120px;
}

.booking-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  background: white;
}

.booking-step.active .booking-step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 0 0 5px rgba(201, 169, 97, 0.2);
}

.booking-step.completed .booking-step-circle {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.booking-step-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
}

.booking-step.active .booking-step-label {
  color: var(--gold-deep);
  font-weight: 800;
}

.booking-step-connector {
  position: absolute;
  top: 18px;
  height: 2px;
  background: var(--line);
  width: 100%;
  z-index: 1;
  right: 50%;
}

.booking-step:first-child .booking-step-connector {
  display: none;
}

.booking-step.completed .booking-step-connector {
  background: var(--success);
}

/* Booking Card */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.booking-screen {
  display: none;
}

.booking-screen.active {
  display: block;
  animation: viewFadeIn 0.3s;
}

.booking-screen-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.booking-screen-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Service selection cards */
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.booking-service-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: right;
  position: relative;
}

.booking-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.booking-service-card.selected {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.booking-service-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.booking-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: white;
}

.booking-service-icon.toolkit { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.booking-service-icon.liquidity { background: linear-gradient(135deg, #4A90B8, #2D6E91); }
.booking-service-icon.ipo { background: linear-gradient(135deg, #2D6A4F, #1F4D38); }
.booking-service-icon.general { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }

.booking-service-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.booking-service-duration {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.booking-service-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Calendar grid */
.booking-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.booking-month-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.booking-month-nav {
  display: flex;
  gap: 8px;
}

.booking-month-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.booking-month-nav button:hover:not(:disabled) {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-deep);
}

.booking-month-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}

.booking-day-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--ink);
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}

.booking-day:hover:not(.disabled):not(.empty) {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.booking-day.empty {
  background: transparent;
  cursor: default;
}

.booking-day.disabled {
  color: var(--muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-day.today {
  border-color: var(--gold);
  color: var(--gold-deep);
  font-weight: 800;
}

.booking-day.selected {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.booking-day.weekend {
  color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
}

/* Time slots */
.booking-period-section {
  margin-bottom: 20px;
}

.booking-period-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-period-label svg {
  color: var(--gold-deep);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.booking-slot {
  padding: 12px 8px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  font-family: 'Inter', sans-serif;
  direction: ltr;
  transition: all 0.15s;
}

.booking-slot:hover:not(.disabled) {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.booking-slot.selected {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.booking-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking form */
.booking-form-group {
  margin-bottom: 18px;
}

.booking-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.booking-form-input,
.booking-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.booking-form-input:focus,
.booking-form-textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.booking-form-input.error,
.booking-form-textarea.error {
  border-color: var(--danger);
}

.booking-form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.booking-form-input[type="email"],
.booking-form-input[type="tel"] {
  direction: ltr;
  text-align: left;
}

/* Booking summary */
.booking-summary-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.booking-summary-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}

.booking-summary-row:last-child {
  border-bottom: none;
}

.booking-summary-label {
  color: var(--ink-soft);
  font-weight: 500;
}

.booking-summary-value {
  font-weight: 700;
  color: var(--navy);
}

/* Action buttons */
.booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-back-btn {
  flex: 0 0 auto;
  background: white;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.booking-back-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.booking-next-btn {
  flex: 1;
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: var(--shadow-gold);
}

.booking-next-btn:hover:not(:disabled) {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.booking-next-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 20px 0;
}

.booking-success-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
  position: relative;
}

.booking-success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid #10B981;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s infinite;
}

.booking-success h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.booking-success .booking-ref {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
  margin: 12px 0 24px;
  letter-spacing: 0.05em;
}

.booking-next-steps {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: right;
  margin-bottom: 24px;
}

.booking-next-steps h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.booking-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

.booking-next-steps li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* General contact form */
.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}

/* Business hours card */
.business-hours-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.business-hours-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.business-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.business-hours-row.closed {
  opacity: 0.6;
}

.business-hours-row.today {
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  font-weight: 700;
}

.business-hours-day {
  color: var(--navy);
  font-weight: 600;
}

.business-hours-time {
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  direction: ltr;
}

@media (max-width: 700px) {
  .booking-card,
  .contact-form-card {
    padding: 24px 20px;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-step-label {
    display: none;
  }
  
  .booking-actions {
    flex-direction: column-reverse;
  }
  
  .booking-back-btn {
    width: 100%;
    justify-content: center;
  }
  
  .business-hours-list,
  .contact-form-info-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-calendar {
    gap: 4px;
  }
  
  .booking-day {
    font-size: 13px;
  }
}

/* ============================================
   COURSE PLAYER (V16)
   ============================================ */
#coursePlayerView {
  background: #0F1419;
  min-height: 100vh;
  color: #E5E7EB;
}

#coursePlayerView .container {
  max-width: 1400px;
  padding: 0;
}

.course-player-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: calc(100vh - 70px);
  gap: 0;
}

/* === MAIN VIDEO AREA === */
.course-main {
  background: #0A0E13;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
}

/* Video Player */
.video-player-wrap {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16/9;
  max-height: 65vh;
  overflow: hidden;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1F2E 0%, #0F1419 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.15), transparent 60%);
}

.video-play-btn {
  width: 88px;
  height: 88px;
  background: rgba(201, 169, 97, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #C9A961;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(201, 169, 97, 0.5);
  border-radius: 50%;
  animation: pulseRing 2.5s infinite;
}

.video-play-icon {
  width: 0;
  height: 0;
  border-left: 24px solid white;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-right: -6px;
  transform: scaleX(-1);
}

.video-placeholder-info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #E5E7EB;
  max-width: 400px;
}

.video-placeholder-info .duration {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.video-placeholder-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.video-placeholder-info p {
  font-size: 13px;
  opacity: 0.7;
  font-style: italic;
}

/* Video Controls Bar */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.video-player-wrap:hover .video-controls,
.video-player-wrap.playing .video-controls {
  opacity: 1;
}

.video-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 14px;
  cursor: pointer;
  position: relative;
}

.video-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  width: 35%;
  position: relative;
}

.video-progress-fill::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3);
}

.video-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.video-control-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  font-family: inherit;
}

.video-control-btn:hover {
  opacity: 0.8;
}

.video-time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  direction: ltr;
}

.video-speed-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-right: auto;
}

.video-speed-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Lesson Content Area */
.lesson-content {
  padding: 32px;
  max-width: 800px;
}

.lesson-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1F2937;
}

.lesson-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.lesson-breadcrumb a {
  color: var(--gold-bright);
  transition: color 0.2s;
}

.lesson-breadcrumb a:hover {
  color: var(--gold);
}

.lesson-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lesson-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lesson-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 600;
}

.lesson-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.lesson-description {
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

/* Lesson Tabs */
.lesson-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #1F2937;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lesson-tabs::-webkit-scrollbar {
  display: none;
}

.lesson-tab {
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lesson-tab:hover {
  color: var(--gold-bright);
}

.lesson-tab.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.lesson-tab .count {
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

/* Tab Content */
.lesson-tab-content {
  display: none;
}

.lesson-tab-content.active {
  display: block;
  animation: viewFadeIn 0.3s;
}

/* Overview Tab */
.lesson-section {
  margin-bottom: 28px;
}

.lesson-section h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lesson-section p {
  font-size: 15px;
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 12px;
}

.lesson-objectives {
  list-style: none;
  padding: 0;
}

.lesson-objectives li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(201, 169, 97, 0.06);
  border-right: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 14px;
  color: #E5E7EB;
  line-height: 1.6;
}

.lesson-objectives li svg {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Resources Tab */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #1A1F2E;
  border: 1px solid #1F2937;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.resource-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
  transform: translateX(-4px);
}

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: white;
}

.resource-icon.pdf { background: linear-gradient(135deg, #DC2626, #991B1B); }
.resource-icon.xlsx { background: linear-gradient(135deg, #059669, #047857); }
.resource-icon.docx { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.resource-icon.video { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

.resource-info {
  flex: 1;
  min-width: 0;
}

.resource-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.resource-meta {
  font-size: 11px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-action {
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* Notes Tab */
.notes-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  background: #1A1F2E;
  border: 1px solid #1F2937;
  border-radius: var(--radius);
  color: #E5E7EB;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}

.notes-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0F1419;
}

.notes-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  color: #6B7280;
}

.notes-save-btn {
  background: var(--gold);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.notes-save-btn:hover {
  background: var(--gold-deep);
}

/* Story Tab */
.story-card {
  background: linear-gradient(135deg, #1A1F2E 0%, #0F1419 100%);
  border: 1px solid #1F2937;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.story-character {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.story-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.story-character-info h5 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

.story-character-info p {
  font-size: 12px;
  color: #9CA3AF;
}

.story-quote {
  background: rgba(201, 169, 97, 0.06);
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-style: italic;
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 40px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
  line-height: 1;
}

.story-body {
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.8;
}

/* Navigation Buttons */
.lesson-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid #1F2937;
  flex-wrap: wrap;
}

.lesson-nav-btn {
  background: #1A1F2E;
  border: 1px solid #1F2937;
  color: #E5E7EB;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.lesson-nav-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}

.lesson-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lesson-nav-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.lesson-nav-btn.primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.mark-complete-btn {
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #10B981;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.mark-complete-btn:hover {
  background: rgba(5, 150, 105, 0.25);
}

.mark-complete-btn.completed {
  background: rgba(5, 150, 105, 0.25);
  cursor: default;
}

/* === SIDEBAR === */
.course-sidebar {
  background: #1A1F2E;
  border-right: 1px solid #1F2937;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  position: sticky;
  top: 70px;
}

.course-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #1F2937;
  background: #0F1419;
  position: sticky;
  top: 0;
  z-index: 10;
}

.course-sidebar-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.course-progress-overall {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #9CA3AF;
}

.course-progress-bar {
  flex: 1;
  height: 4px;
  background: #1F2937;
  border-radius: 100px;
  overflow: hidden;
}

.course-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.3s;
}

.course-progress-percent {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--gold-bright);
  font-size: 12px;
}

/* Modules */
.course-module {
  border-bottom: 1px solid #1F2937;
}

.module-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  color: inherit;
  transition: background 0.2s;
}

.module-header:hover {
  background: rgba(201, 169, 97, 0.04);
}

.module-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.module-number {
  width: 24px;
  height: 24px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

.module-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-align: right;
  line-height: 1.3;
}

.module-meta {
  font-size: 10px;
  color: #6B7280;
  margin-top: 2px;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-chevron {
  color: #6B7280;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.course-module.expanded .module-chevron {
  transform: rotate(180deg);
}

.module-lessons {
  display: none;
  background: #0F1419;
}

.course-module.expanded .module-lessons {
  display: block;
}

/* Lessons in sidebar */
.sidebar-lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  cursor: pointer;
  transition: all 0.15s;
  border-right: 3px solid transparent;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: right;
}

.sidebar-lesson:hover {
  background: rgba(201, 169, 97, 0.06);
  border-right-color: var(--gold);
}

.sidebar-lesson.active {
  background: rgba(201, 169, 97, 0.12);
  border-right-color: var(--gold);
}

.sidebar-lesson.completed .lesson-status {
  background: var(--success);
  color: white;
}

.lesson-status {
  width: 22px;
  height: 22px;
  background: #1F2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6B7280;
  transition: all 0.2s;
}

.sidebar-lesson.active .lesson-status {
  background: var(--gold);
  color: white;
}

.sidebar-lesson-info {
  flex: 1;
  min-width: 0;
}

.sidebar-lesson-title {
  font-size: 12px;
  color: #D1D5DB;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-lesson.active .sidebar-lesson-title {
  color: white;
  font-weight: 700;
}

.sidebar-lesson-duration {
  font-size: 10px;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile toggle */
.sidebar-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .course-player-layout {
    grid-template-columns: 1fr;
  }
  
  .course-sidebar {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 70px);
    z-index: 50;
    transition: right 0.3s;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }
  
  .course-sidebar.open {
    right: 0;
  }
  
  .sidebar-toggle-btn {
    display: flex;
  }
}

@media (max-width: 600px) {
  .lesson-content {
    padding: 20px;
  }
  
  .lesson-navigation {
    flex-direction: column;
  }
  
  .lesson-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   LEGAL PAGES (V17 & V18)
   ============================================ */

.legal-page {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--bg);
}

/* Hero */
.legal-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-hero h1 .highlight {
  color: var(--gold-bright);
}

.legal-hero .meta {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-hero .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Layout */
.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* TOC Sidebar */
.legal-toc {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.legal-toc-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}

.legal-toc ol li {
  counter-increment: toc-counter;
  padding: 6px 0;
}

.legal-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border-right: 2px solid transparent;
}

.legal-toc ol li a::before {
  content: counter(toc-counter);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}

.legal-toc ol li a:hover {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-right-color: var(--gold);
}

.legal-toc ol li a:hover::before {
  background: var(--gold);
  color: white;
}

.legal-toc ol li a.active {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-right-color: var(--gold);
  font-weight: 700;
}

/* Content */
.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 90px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2 .section-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  flex-shrink: 0;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-section p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-right: 24px;
  margin-bottom: 16px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-callout {
  background: var(--bg-warm);
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
}

.legal-callout.warning {
  background: rgba(220, 38, 38, 0.05);
  border-right-color: var(--danger);
}

.legal-callout.success {
  background: rgba(5, 150, 105, 0.05);
  border-right-color: var(--success);
}

.legal-callout.info {
  background: rgba(74, 144, 184, 0.05);
  border-right-color: #4A90B8;
}

.legal-callout-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 13px;
}

.legal-callout-title svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.legal-callout.warning .legal-callout-title svg { color: var(--danger); }
.legal-callout.success .legal-callout-title svg { color: var(--success); }
.legal-callout.info .legal-callout-title svg { color: #4A90B8; }

/* Definition list */
.legal-definitions {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
}

.legal-definitions dt {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-definitions dt::before {
  content: '▸';
  color: var(--gold);
  margin-left: 6px;
}

.legal-definitions dd {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-right: 16px;
}

.legal-definitions dd:last-child {
  margin-bottom: 0;
}

/* Bottom CTA */
.legal-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.legal-bottom-cta {
  background: var(--bg-warm);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 16px;
}

.legal-bottom-cta h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-bottom-cta p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-bottom-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.legal-bottom-cta .btn:hover {
  background: var(--gold-deep);
}

/* Sign / Last updated */
.legal-signature {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-signature strong {
  color: var(--navy);
}

/* Print styles */
@media print {
  nav, footer, .legal-toc, .legal-bottom-cta { display: none; }
  .legal-layout { grid-template-columns: 1fr; padding: 0; }
  .legal-content { border: none; padding: 0; box-shadow: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .legal-toc {
    position: static;
    max-height: 240px;
  }
  
  .legal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .legal-content {
    padding: 24px 20px;
  }
  
  .legal-section h2 {
    font-size: 18px;
  }
  
  .legal-section h2 .section-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}


 169, 97, 0.1);
  border-radius: var(--radius);
  display: inline-block;
}

/* ============================================
   ASSESSMENT VIEW (V13)
   ============================================ */
.assessment-screen {
  display: none;
}

.assessment-screen.active {
  display: block;
  animation: viewFadeIn 0.4s ease-out;
}

#assessmentHero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

#assessmentHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.assessment-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.assessment-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

#assessmentHero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#assessmentHero h1 .highlight {
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
}

#assessmentHero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

#assessmentHero .lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-meta-item svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-gold);
}

.btn-cta-large:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.discover-section {
  margin-top: 60px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.discover-title {
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-align: center;
}

.discover-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.discover-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.discover-item .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-top: 1px;
}

/* Quiz Screen */
#quizScreen {
  padding: 40px 0 60px;
}

.quiz-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.progress-section {
  margin-bottom: 32px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-text {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.progress-percent {
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.progress-bar {
  height: 8px;
  background: var(--gold-tint);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.question-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.question-category {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.question-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.question-hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.answer-btn {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.answer-btn:hover {
  border-color: var(--gold);
  background: var(--bg-warm);
  transform: translateX(-4px);
}

.answer-btn .answer-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.answer-btn:hover .answer-indicator {
  border-color: var(--gold);
}

.answer-btn.selected {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.answer-btn.selected .answer-indicator {
  background: var(--gold);
  border-color: var(--gold);
}

.answer-btn.selected .answer-indicator::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--muted);
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: inherit;
}

.back-btn:hover:not(:disabled) {
  color: var(--navy);
  background: var(--bg);
}

.back-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.auto-advance {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Quiz Form Screen */
#quizFormScreen {
  padding: 40px 0 60px;
}

.form-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.form-progress {
  text-align: center;
  margin-bottom: 32px;
}

.form-progress-dots {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

.form-progress-dot {
  width: 32px;
  height: 4px;
  background: var(--gold-tint);
  border-radius: 100px;
}

.form-progress-dot.active {
  background: var(--gold);
}

.form-progress-dot.completed {
  background: var(--success);
}

.form-progress-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.lead-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.almost-done {
  text-align: center;
  margin-bottom: 28px;
}

.almost-done-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-deep);
}

.almost-done h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.almost-done p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.lead-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.lead-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.lead-form-field label .required {
  color: var(--gold-deep);
}

.lead-form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  text-align: right;
  transition: all 0.2s;
  outline: none;
}

.lead-form-field input[type="email"],
.lead-form-field input[type="tel"] {
  font-family: 'Inter', sans-serif;
  text-align: left;
  direction: ltr;
}

.lead-form-field input:focus {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.lead-form-field input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.lead-form-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.lead-form-submit:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.lead-form-benefits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.benefit-mini svg {
  color: var(--success);
  flex-shrink: 0;
}

.lead-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.lead-form-trust svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Results Screen */
#resultsScreen {
  padding: 40px 0 60px;
}

.results-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.results-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.results-header .lead-line {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.score-display {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.score-circle-wrap {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.score-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.score-track {
  fill: none;
  stroke: var(--gold-tint);
  stroke-width: 14;
}

.score-progress {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 2s ease-out;
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.score-percent {
  font-size: 20px;
  color: var(--gold-deep);
  font-weight: 700;
}

.score-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.score-level-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.insights {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.insights h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.insight-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.insight-icon.strength {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.insight-icon.warning {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.insight-icon.danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.insight-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.insight-content p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.recommendation-offer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.recommendation-offer::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.recommendation-offer-content {
  position: relative;
  z-index: 2;
}

.recommendation-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.recommendation-offer h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.recommendation-offer h2 .highlight {
  color: var(--gold-bright);
}

.recommendation-offer p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  #aboutHero { padding: 60px 0 40px; }
  
  .about-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .about-trust {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-trust-item .num { font-size: 28px; }
  
  #assessmentHero { padding: 40px 0 30px; }
  #assessmentHero h1 { font-size: 26px; }
  
  .hero-meta {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .btn-cta-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .trust-bar {
    flex-direction: column;
    gap: 8px;
  }
  
  .discover-section { padding: 24px 20px; }
  .discover-list { grid-template-columns: 1fr; }
  
  .question-card,
  .lead-form-card {
    padding: 28px 24px;
  }
  
  .question-text { font-size: 18px; }
  .answer-btn { font-size: 15px; padding: 14px 16px; }
  
  .score-circle-wrap {
    width: 160px;
    height: 160px;
  }
  
  .score-number { font-size: 44px; }
}

/* ============================================
   V7 ADDITIONS: Authority Sections
   ============================================ */

/* === Founder Stats Band === */
#founderStats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#founderStats::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

#founderStats::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  border-radius: 50%;
}

.founder-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-stats-header {
  text-align: center;
  margin-bottom: 48px;
}

.founder-stats-eyebrow {
  display: inline-block;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-stats-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.founder-stats-header h2 .highlight {
  color: var(--gold-bright);
}

.founder-stats-header p {
  font-size: 15px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.18);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-bright);
}

.stat-card-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-card-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.4;
}

.stats-disclaimer {
  text-align: center;
  font-size: 12px;
  opacity: 0.65;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Founder Section === */
#founderSection {
  padding: 80px 0;
  background: var(--bg-card);
}

.founder-inner {
  max-width: 960px;
  margin: 0 auto;
}

.founder-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl, 28px);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold-deep));
}

.founder-avatar {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gold-bright);
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(26, 74, 122, 0.2);
  flex-shrink: 0;
}

.founder-content {
  text-align: right;
}

.founder-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.founder-name {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.founder-credentials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line-gold);
  font-family: 'Inter', sans-serif;
}

.founder-bio {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.founder-highlight svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

/* === Service "For Whom" Section === */
.service-for-whom {
  padding: 60px 0;
  background: var(--bg);
}

.for-whom-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.for-whom-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.for-whom-title-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.for-whom-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.for-whom-list li::before {
  content: '👤';
  font-size: 16px;
  flex-shrink: 0;
}

/* === Service Outcomes Section === */
.service-outcomes {
  padding: 60px 0;
  background: var(--bg-card);
}

.outcomes-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.outcomes-header {
  text-align: center;
  margin-bottom: 32px;
}

.outcomes-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.outcomes-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.outcomes-title .highlight {
  color: var(--gold-deep);
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.outcomes-list li:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
  background: var(--bg-warm);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.outcome-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.outcome-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === Urgency Banner === */
.urgency-banner {
  background: linear-gradient(135deg, #C9A961 0%, #A8893F 100%);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.urgency-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: white;
  color: #A8893F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.urgency-text {
  flex: 1;
}

.urgency-highlight {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  white-space: nowrap;
}

/* === Spots Counter (for CFO Partner) === */
.spots-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.spots-indicator .pulse {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* === Launch Pricing Tag === */
.launch-pricing-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  z-index: 3;
}

.launch-pricing-tag::before {
  content: '🔥 ';
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  
  .founder-avatar {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    font-size: 48px;
  }
  
  .founder-content {
    text-align: center;
  }
  
  .founder-credentials,
  .founder-highlights {
    justify-content: center;
  }
  
  .for-whom-list {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-card {
    padding: 20px 16px;
  }
  
  .urgency-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FORGOT PASSWORD VIEW (V14)
   ============================================ */
.forgot-screen {
  display: none;
}

.forgot-screen.active {
  display: block;
  animation: viewFadeIn 0.4s ease-out;
}

.forgot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 40px 24px;
}

.forgot-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.forgot-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

/* Step indicator */
.forgot-steps {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
}

.forgot-step-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-tint);
  border-radius: 50%;
  transition: all 0.3s;
}

.forgot-step-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 100px;
}

.forgot-step-dot.completed {
  background: var(--success);
}

.forgot-header {
  text-align: center;
  margin-bottom: 28px;
}

.forgot-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-tint) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-deep);
  position: relative;
}

.forgot-icon.success {
  background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
  border-color: rgba(5, 150, 105, 0.3);
  color: var(--success);
}

.forgot-icon.success::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--success);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s infinite;
}

.forgot-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.forgot-header p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.forgot-header .email-highlight {
  font-family: 'Inter', sans-serif;
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  margin: 4px 4px;
  direction: ltr;
}

.forgot-form-group {
  margin-bottom: 18px;
}

.forgot-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.forgot-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.forgot-form-input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.forgot-form-input.error {
  border-color: var(--danger);
}

.forgot-form-input[type="email"] {
  direction: ltr;
  text-align: left;
}

.forgot-form-input[type="password"] {
  direction: ltr;
  text-align: left;
}

.forgot-error-msg {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 4px;
}

.forgot-form-input.error + .forgot-error-msg {
  display: flex;
}

.forgot-btn-primary {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.forgot-btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.forgot-btn-primary:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.forgot-btn-secondary {
  width: 100%;
  background: white;
  color: var(--navy);
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.forgot-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 8px;
  margin-bottom: 12px;
}

.password-strength-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.password-strength-segment {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  transition: background 0.3s;
}

.password-strength-segment.weak { background: var(--danger); }
.password-strength-segment.medium { background: var(--warning); }
.password-strength-segment.strong { background: var(--success); }

.password-strength-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.password-strength-label.weak { color: var(--danger); }
.password-strength-label.medium { color: var(--warning); }
.password-strength-label.strong { color: var(--success); }

/* Requirements checklist */
.password-requirements {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.password-req-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.password-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.password-req-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  transition: color 0.2s;
}

.password-req-list li.met {
  color: var(--success);
}

.password-req-list li .req-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.password-req-list li.met .req-icon::after {
  content: '✓';
  font-weight: 800;
}

.password-req-list li:not(.met) .req-icon::after {
  content: '○';
  opacity: 0.5;
}

/* Email sent confirmation */
.email-sent-box {
  background: var(--bg-warm);
  border: 1px dashed var(--line-gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: right;
}

.email-sent-box .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.email-sent-box .desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.email-sent-box .desc strong {
  color: var(--navy);
}

/* Resend timer */
.resend-section {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.resend-section .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.resend-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resend-link:hover {
  color: var(--navy);
}

.resend-link:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.resend-timer {
  display: inline-block;
  background: var(--bg);
  color: var(--muted);
  padding: 2px 10px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-right: 4px;
}

.forgot-back-link {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.forgot-back-link a {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.forgot-back-link a:hover {
  color: var(--gold-deep);
}

/* Success screen specific */
.success-checkmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT US + BOOKING (V15)
   ============================================ */

/* Hero */
#contactHero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#contactHero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

#contactHero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#contactHero h1 .highlight {
  color: var(--gold-deep);
}

#contactHero .lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Tabs Navigation */
.contact-tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}

.contact-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-tab:hover {
  color: var(--gold-deep);
}

.contact-tab.active {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 74, 122, 0.15);
}

/* Quick Contact Cards */
.quick-contact-section {
  padding: 60px 0 40px;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
}

.quick-contact-icon.email { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.quick-contact-icon.phone { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.quick-contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.quick-contact-icon.location { background: linear-gradient(135deg, #6366F1, #4F46E5); }

.quick-contact-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.quick-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}

.quick-contact-value.ltr {
  direction: ltr;
  font-family: 'Inter', sans-serif;
  unicode-bidi: embed;
}

.quick-contact-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* Tab Content */
.contact-tab-content {
  display: none;
  padding: 60px 0 80px;
}

.contact-tab-content.active {
  display: block;
  animation: viewFadeIn 0.4s;
}

/* Booking Wizard */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Step Progress */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 120px;
}

.booking-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  background: white;
}

.booking-step.active .booking-step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 0 0 5px rgba(201, 169, 97, 0.2);
}

.booking-step.completed .booking-step-circle {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.booking-step-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
}

.booking-step.active .booking-step-label {
  color: var(--gold-deep);
  font-weight: 800;
}

.booking-step-connector {
  position: absolute;
  top: 18px;
  height: 2px;
  background: var(--line);
  width: 100%;
  z-index: 1;
  right: 50%;
}

.booking-step:first-child .booking-step-connector {
  display: none;
}

.booking-step.completed .booking-step-connector {
  background: var(--success);
}

/* Booking Card */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.booking-screen {
  display: none;
}

.booking-screen.active {
  display: block;
  animation: viewFadeIn 0.3s;
}

.booking-screen-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.booking-screen-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Service selection cards */
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.booking-service-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: right;
  position: relative;
}

.booking-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.booking-service-card.selected {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.booking-service-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.booking-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: white;
}

.booking-service-icon.toolkit { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.booking-service-icon.liquidity { background: linear-gradient(135deg, #4A90B8, #2D6E91); }
.booking-service-icon.ipo { background: linear-gradient(135deg, #2D6A4F, #1F4D38); }
.booking-service-icon.general { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }

.booking-service-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.booking-service-duration {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.booking-service-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Calendar grid */
.booking-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.booking-month-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.booking-month-nav {
  display: flex;
  gap: 8px;
}

.booking-month-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.booking-month-nav button:hover:not(:disabled) {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-deep);
}

.booking-month-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}

.booking-day-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--ink);
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}

.booking-day:hover:not(.disabled):not(.empty) {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.booking-day.empty {
  background: transparent;
  cursor: default;
}

.booking-day.disabled {
  color: var(--muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-day.today {
  border-color: var(--gold);
  color: var(--gold-deep);
  font-weight: 800;
}

.booking-day.selected {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.booking-day.weekend {
  color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
}

/* Time slots */
.booking-period-section {
  margin-bottom: 20px;
}

.booking-period-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-period-label svg {
  color: var(--gold-deep);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.booking-slot {
  padding: 12px 8px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  font-family: 'Inter', sans-serif;
  direction: ltr;
  transition: all 0.15s;
}

.booking-slot:hover:not(.disabled) {
  border-color: var(--gold);
  background: var(--gold-tint);
  color: var(--gold-deep);
}

.booking-slot.selected {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.booking-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking form */
.booking-form-group {
  margin-bottom: 18px;
}

.booking-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.booking-form-input,
.booking-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.booking-form-input:focus,
.booking-form-textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.booking-form-input.error,
.booking-form-textarea.error {
  border-color: var(--danger);
}

.booking-form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.booking-form-input[type="email"],
.booking-form-input[type="tel"] {
  direction: ltr;
  text-align: left;
}

/* Booking summary */
.booking-summary-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.booking-summary-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}

.booking-summary-row:last-child {
  border-bottom: none;
}

.booking-summary-label {
  color: var(--ink-soft);
  font-weight: 500;
}

.booking-summary-value {
  font-weight: 700;
  color: var(--navy);
}

/* Action buttons */
.booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-back-btn {
  flex: 0 0 auto;
  background: white;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.booking-back-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.booking-next-btn {
  flex: 1;
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: var(--shadow-gold);
}

.booking-next-btn:hover:not(:disabled) {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.booking-next-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 20px 0;
}

.booking-success-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
  position: relative;
}

.booking-success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid #10B981;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRing 2s infinite;
}

.booking-success h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.booking-success .booking-ref {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
  margin: 12px 0 24px;
  letter-spacing: 0.05em;
}

.booking-next-steps {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: right;
  margin-bottom: 24px;
}

.booking-next-steps h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.booking-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

.booking-next-steps li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* General contact form */
.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}

/* Business hours card */
.business-hours-card {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.business-hours-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.business-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.business-hours-row.closed {
  opacity: 0.6;
}

.business-hours-row.today {
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  font-weight: 700;
}

.business-hours-day {
  color: var(--navy);
  font-weight: 600;
}

.business-hours-time {
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  direction: ltr;
}

@media (max-width: 700px) {
  .booking-card,
  .contact-form-card {
    padding: 24px 20px;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-step-label {
    display: none;
  }
  
  .booking-actions {
    flex-direction: column-reverse;
  }
  
  .booking-back-btn {
    width: 100%;
    justify-content: center;
  }
  
  .business-hours-list,
  .contact-form-info-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-calendar {
    gap: 4px;
  }
  
  .booking-day {
    font-size: 13px;
  }
}

/* ============================================
   COURSE PLAYER (V16)
   ============================================ */
#coursePlayerView {
  background: #0F1419;
  min-height: 100vh;
  color: #E5E7EB;
}

#coursePlayerView .container {
  max-width: 1400px;
  padding: 0;
}

.course-player-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: calc(100vh - 70px);
  gap: 0;
}

/* === MAIN VIDEO AREA === */
.course-main {
  background: #0A0E13;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
}

/* Video Player */
.video-player-wrap {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16/9;
  max-height: 65vh;
  overflow: hidden;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1F2E 0%, #0F1419 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.15), transparent 60%);
}

.video-play-btn {
  width: 88px;
  height: 88px;
  background: rgba(201, 169, 97, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #C9A961;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(201, 169, 97, 0.5);
  border-radius: 50%;
  animation: pulseRing 2.5s infinite;
}

.video-play-icon {
  width: 0;
  height: 0;
  border-left: 24px solid white;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-right: -6px;
  transform: scaleX(-1);
}

.video-placeholder-info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #E5E7EB;
  max-width: 400px;
}

.video-placeholder-info .duration {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.video-placeholder-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.video-placeholder-info p {
  font-size: 13px;
  opacity: 0.7;
  font-style: italic;
}

/* Video Controls Bar */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.video-player-wrap:hover .video-controls,
.video-player-wrap.playing .video-controls {
  opacity: 1;
}

.video-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 14px;
  cursor: pointer;
  position: relative;
}

.video-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  width: 35%;
  position: relative;
}

.video-progress-fill::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3);
}

.video-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.video-control-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  font-family: inherit;
}

.video-control-btn:hover {
  opacity: 0.8;
}

.video-time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  direction: ltr;
}

.video-speed-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-right: auto;
}

.video-speed-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Lesson Content Area */
.lesson-content {
  padding: 32px;
  max-width: 800px;
}

.lesson-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1F2937;
}

.lesson-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.lesson-breadcrumb a {
  color: var(--gold-bright);
  transition: color 0.2s;
}

.lesson-breadcrumb a:hover {
  color: var(--gold);
}

.lesson-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lesson-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lesson-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 600;
}

.lesson-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.lesson-description {
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

/* Lesson Tabs */
.lesson-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #1F2937;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lesson-tabs::-webkit-scrollbar {
  display: none;
}

.lesson-tab {
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lesson-tab:hover {
  color: var(--gold-bright);
}

.lesson-tab.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.lesson-tab .count {
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

/* Tab Content */
.lesson-tab-content {
  display: none;
}

.lesson-tab-content.active {
  display: block;
  animation: viewFadeIn 0.3s;
}

/* Overview Tab */
.lesson-section {
  margin-bottom: 28px;
}

.lesson-section h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lesson-section p {
  font-size: 15px;
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 12px;
}

.lesson-objectives {
  list-style: none;
  padding: 0;
}

.lesson-objectives li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(201, 169, 97, 0.06);
  border-right: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 14px;
  color: #E5E7EB;
  line-height: 1.6;
}

.lesson-objectives li svg {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Resources Tab */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #1A1F2E;
  border: 1px solid #1F2937;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.resource-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
  transform: translateX(-4px);
}

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: white;
}

.resource-icon.pdf { background: linear-gradient(135deg, #DC2626, #991B1B); }
.resource-icon.xlsx { background: linear-gradient(135deg, #059669, #047857); }
.resource-icon.docx { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.resource-icon.video { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

.resource-info {
  flex: 1;
  min-width: 0;
}

.resource-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.resource-meta {
  font-size: 11px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-action {
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* Notes Tab */
.notes-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  background: #1A1F2E;
  border: 1px solid #1F2937;
  border-radius: var(--radius);
  color: #E5E7EB;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}

.notes-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0F1419;
}

.notes-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  color: #6B7280;
}

.notes-save-btn {
  background: var(--gold);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.notes-save-btn:hover {
  background: var(--gold-deep);
}

/* Story Tab */
.story-card {
  background: linear-gradient(135deg, #1A1F2E 0%, #0F1419 100%);
  border: 1px solid #1F2937;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.story-character {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.story-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.story-character-info h5 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

.story-character-info p {
  font-size: 12px;
  color: #9CA3AF;
}

.story-quote {
  background: rgba(201, 169, 97, 0.06);
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-style: italic;
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 40px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
  line-height: 1;
}

.story-body {
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.8;
}

/* Navigation Buttons */
.lesson-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid #1F2937;
  flex-wrap: wrap;
}

.lesson-nav-btn {
  background: #1A1F2E;
  border: 1px solid #1F2937;
  color: #E5E7EB;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.lesson-nav-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}

.lesson-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lesson-nav-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.lesson-nav-btn.primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.mark-complete-btn {
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #10B981;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.mark-complete-btn:hover {
  background: rgba(5, 150, 105, 0.25);
}

.mark-complete-btn.completed {
  background: rgba(5, 150, 105, 0.25);
  cursor: default;
}

/* === SIDEBAR === */
.course-sidebar {
  background: #1A1F2E;
  border-right: 1px solid #1F2937;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  position: sticky;
  top: 70px;
}

.course-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #1F2937;
  background: #0F1419;
  position: sticky;
  top: 0;
  z-index: 10;
}

.course-sidebar-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.course-progress-overall {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #9CA3AF;
}

.course-progress-bar {
  flex: 1;
  height: 4px;
  background: #1F2937;
  border-radius: 100px;
  overflow: hidden;
}

.course-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.3s;
}

.course-progress-percent {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--gold-bright);
  font-size: 12px;
}

/* Modules */
.course-module {
  border-bottom: 1px solid #1F2937;
}

.module-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  color: inherit;
  transition: background 0.2s;
}

.module-header:hover {
  background: rgba(201, 169, 97, 0.04);
}

.module-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.module-number {
  width: 24px;
  height: 24px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

.module-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-align: right;
  line-height: 1.3;
}

.module-meta {
  font-size: 10px;
  color: #6B7280;
  margin-top: 2px;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-chevron {
  color: #6B7280;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.course-module.expanded .module-chevron {
  transform: rotate(180deg);
}

.module-lessons {
  display: none;
  background: #0F1419;
}

.course-module.expanded .module-lessons {
  display: block;
}

/* Lessons in sidebar */
.sidebar-lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  cursor: pointer;
  transition: all 0.15s;
  border-right: 3px solid transparent;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: right;
}

.sidebar-lesson:hover {
  background: rgba(201, 169, 97, 0.06);
  border-right-color: var(--gold);
}

.sidebar-lesson.active {
  background: rgba(201, 169, 97, 0.12);
  border-right-color: var(--gold);
}

.sidebar-lesson.completed .lesson-status {
  background: var(--success);
  color: white;
}

.lesson-status {
  width: 22px;
  height: 22px;
  background: #1F2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6B7280;
  transition: all 0.2s;
}

.sidebar-lesson.active .lesson-status {
  background: var(--gold);
  color: white;
}

.sidebar-lesson-info {
  flex: 1;
  min-width: 0;
}

.sidebar-lesson-title {
  font-size: 12px;
  color: #D1D5DB;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-lesson.active .sidebar-lesson-title {
  color: white;
  font-weight: 700;
}

.sidebar-lesson-duration {
  font-size: 10px;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile toggle */
.sidebar-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .course-player-layout {
    grid-template-columns: 1fr;
  }
  
  .course-sidebar {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 70px);
    z-index: 50;
    transition: right 0.3s;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }
  
  .course-sidebar.open {
    right: 0;
  }
  
  .sidebar-toggle-btn {
    display: flex;
  }
}

@media (max-width: 600px) {
  .lesson-content {
    padding: 20px;
  }
  
  .lesson-navigation {
    flex-direction: column;
  }
  
  .lesson-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   LEGAL PAGES (V17 & V18)
   ============================================ */

.legal-page {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--bg);
}

/* Hero */
.legal-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-bright);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-hero h1 .highlight {
  color: var(--gold-bright);
}

.legal-hero .meta {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-hero .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Layout */
.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* TOC Sidebar */
.legal-toc {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.legal-toc-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}

.legal-toc ol li {
  counter-increment: toc-counter;
  padding: 6px 0;
}

.legal-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border-right: 2px solid transparent;
}

.legal-toc ol li a::before {
  content: counter(toc-counter);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}

.legal-toc ol li a:hover {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-right-color: var(--gold);
}

.legal-toc ol li a:hover::before {
  background: var(--gold);
  color: white;
}

.legal-toc ol li a.active {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-right-color: var(--gold);
  font-weight: 700;
}

/* Content */
.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 90px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2 .section-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  flex-shrink: 0;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-section p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-right: 24px;
  margin-bottom: 16px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-callout {
  background: var(--bg-warm);
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
}

.legal-callout.warning {
  background: rgba(220, 38, 38, 0.05);
  border-right-color: var(--danger);
}

.legal-callout.success {
  background: rgba(5, 150, 105, 0.05);
  border-right-color: var(--success);
}

.legal-callout.info {
  background: rgba(74, 144, 184, 0.05);
  border-right-color: #4A90B8;
}

.legal-callout-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 13px;
}

.legal-callout-title svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.legal-callout.warning .legal-callout-title svg { color: var(--danger); }
.legal-callout.success .legal-callout-title svg { color: var(--success); }
.legal-callout.info .legal-callout-title svg { color: #4A90B8; }

/* Definition list */
.legal-definitions {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
}

.legal-definitions dt {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.legal-definitions dt::before {
  content: '▸';
  color: var(--gold);
  margin-left: 6px;
}

.legal-definitions dd {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-right: 16px;
}

.legal-definitions dd:last-child {
  margin-bottom: 0;
}

/* Bottom CTA */
.legal-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.legal-bottom-cta {
  background: var(--bg-warm);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 16px;
}

.legal-bottom-cta h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-bottom-cta p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-bottom-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.legal-bottom-cta .btn:hover {
  background: var(--gold-deep);
}

/* Sign / Last updated */
.legal-signature {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-signature strong {
  color: var(--navy);
}

/* Print styles */
@media print {
  nav, footer, .legal-toc, .legal-bottom-cta { display: none; }
  .legal-layout { grid-template-columns: 1fr; padding: 0; }
  .legal-content { border: none; padding: 0; box-shadow: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .legal-toc {
    position: static;
    max-height: 240px;
  }
  
  .legal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .legal-content {
    padding: 24px 20px;
  }
  
  .legal-section h2 {
    font-size: 18px;
  }
  
  .legal-section h2 .section-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}



/* ============================================
   DASHBOARD ANALYTICS (client portal)
   ============================================ */

/* --- KPI hero row --- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kpi-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.kpi-value {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.kpi-value-text {
  font-family: inherit;
  font-size: 18px;
  line-height: 1.4;
}

.kpi-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}

.kpi-meta {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  margin-top: auto;
}

.kpi-link {
  color: var(--gold-deep);
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
}

.kpi-link:hover { color: var(--gold); }

/* Verdict status (icon + label, never color alone) */
.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
}

.verdict-excellent { color: var(--success); }
.verdict-good { color: var(--gold-deep); }
.verdict-medium { color: var(--warning); }
.verdict-weak { color: var(--danger); }
.verdict-none { color: var(--muted); }

.verdict-badge.verdict-excellent { background: rgba(5, 150, 105, 0.1); }
.verdict-badge.verdict-good { background: var(--gold-tint); }
.verdict-badge.verdict-medium { background: rgba(217, 119, 6, 0.1); }
.verdict-badge.verdict-weak { background: rgba(220, 38, 38, 0.1); }
.verdict-badge.verdict-none { background: var(--bg); }

.verdict-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}

/* --- Shared dashboard card --- */
.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.dash-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.dash-card-empty {
  text-align: center;
  padding: 24px 12px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dash-charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

/* --- Empty state (no assessments yet) --- */
.dash-empty-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.dash-empty-icon { font-size: 36px; margin-bottom: 8px; }

.dash-empty-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.dash-empty-card p {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto 16px;
}

/* --- Category bars --- */
.cat-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-bar-label {
  flex-shrink: 0;
  width: 96px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.cat-bar-track {
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}

.cat-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 0.6s ease;
}

.cat-bar-value {
  flex-shrink: 0;
  width: 32px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

/* --- Score trend (inline SVG) --- */
.trend-svg {
  width: 100%;
  height: auto;
  display: block;
}

.trend-grid {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.trend-grid-label {
  fill: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
}

.trend-line { stroke: var(--navy); stroke-width: 2; }

.trend-dot {
  fill: var(--bg-card);
  stroke: var(--navy);
  stroke-width: 2;
}

.trend-point-label {
  fill: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.trend-axis {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  padding: 4px 24px 0;
}

/* --- Recommended actions --- */
.actions-card { margin-bottom: 24px; }

.actions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
}

.action-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
}

.action-danger { background: var(--danger); }
.action-warning { background: var(--warning); }
.action-info { background: var(--success); }

.action-body { flex: 1; }

.action-body p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

.action-chip {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.actions-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

.actions-footer a {
  color: var(--gold-deep);
  font-weight: 800;
  text-decoration: none;
}

.actions-footer a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .dash-charts-grid {
    grid-template-columns: 1fr;
  }

  .kpi-value { font-size: 26px; }

  .cat-bar-label { width: 84px; font-size: 12px; }
}

/* ===== SERVICE HUB (dashboard) ===== */
.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.svc-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-accent-bar {
  position: absolute; top: 0; right: 0; left: 0; height: 4px;
  background: var(--svc-accent);
}
.svc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.svc-name { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 4px; }
.svc-tagline { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.5; }
.svc-badge { flex-shrink: 0; font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.svc-badge-on { background: rgba(5,150,105,0.12); color: var(--success); }
.svc-badge-off { background: var(--bg); color: var(--muted); border: 1px solid var(--line); }
.svc-row { padding: 14px 0; border-top: 1px dashed var(--line); }
.svc-row:first-of-type { border-top: none; padding-top: 0; }
.svc-row-label { font-size: 11px; font-weight: 800; color: var(--svc-accent); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.svc-row-main { font-size: 15px; font-weight: 700; color: var(--navy); }
.svc-row-main.muted { color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.svc-row-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.svc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; padding: 9px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; text-decoration: none; transition: filter .2s; }
.svc-btn-solid { background: var(--svc-accent); color: #fff; }
.svc-btn-solid:hover { filter: brightness(1.08); }
.svc-btn-ghost { background: transparent; color: var(--svc-accent); border: 1.5px solid var(--svc-accent); }
.svc-btn-ghost:hover { background: var(--svc-accent); color: #fff; }
.svc-eval { display: flex; align-items: center; gap: 14px; }
.svc-eval-score { font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1; }
.svc-eval-meta { flex: 1; }
.svc-progress { display: flex; align-items: center; gap: 10px; margin: 4px 0; }
.svc-progress-bar { flex: 1; height: 7px; background: var(--bg); border-radius: 100px; overflow: hidden; }
.svc-progress-fill { height: 100%; background: var(--svc-accent); border-radius: 100px; }
.svc-progress-pct { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 13px; color: var(--svc-accent); }
.svc-foot { margin-top: auto; padding-top: 14px; }
.svc-foot a { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; }
.svc-foot a:hover { color: var(--svc-accent); }

/* ===== Real <video> element for the course player (uploaded lesson videos) ===== */
.lesson-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 1;
}
.video-player-wrap .video-placeholder { z-index: 2; }
.video-player-wrap.playing .video-placeholder { display: none; }
