/* ============================================================
   TradeDesk — Premium Dark Financial Theme
   ============================================================ */

:root {
  --bg: #0a0d14;
  --bg-card: #111827;
  --bg-card2: #1a2235;
  --border: #1e293b;
  --border-hover: #2d3f5a;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fbbf24;
  --green: #10b981;
  --green-dark: #059669;
  --red: #ef4444;
  --red-dark: #dc2626;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(245, 158, 11, 0.2);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  color: var(--gold-light);
}

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-logo:hover { color: var(--text); }

.nav-logo-t {
  color: var(--gold);
  font-weight: 900;
}

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

.nav-links li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-link-login {
  color: var(--text) !important;
}

.btn-logout {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}

.btn-logout:hover {
  border-color: var(--red);
  color: var(--red);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-gold {
  background: var(--gold);
  color: #0a0d14;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #0a0d14;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 158, 11, 0.05);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-xl {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn-xs {
  padding: 4px 10px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

.btn-meet {
  background: #1a7f5a;
  color: #fff;
  border: none;
}

.btn-meet:hover {
  background: #148a63;
  color: #fff;
}

.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
}

.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-danger-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}

.btn-danger-outline:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

/* ============================================================
   FLASH MESSAGES & ALERTS
   ============================================================ */
.flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 500px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
}

.flash-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
}

.flash-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--red);
  color: var(--red);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--green);
  color: var(--green);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--red);
  color: var(--red);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-red {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-gray {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.badge-elite {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(139, 92, 246, 0.2));
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  pointer-events: none;
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

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

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

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  max-width: 560px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  padding: 0 24px;
}

.hero-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section {
  padding: 96px 0;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}

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

.pain-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pain-solution {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.pain-solution p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pain-solution strong {
  color: var(--text);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.step-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--gold);
  color: #0a0d14;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  padding: 0 16px;
  font-weight: 300;
}

/* ============================================================
   MENTORS
   ============================================================ */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.mentor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.mentor-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.mentor-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 3px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.02));
}

.mentor-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}

.mentor-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mentor-title {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.mentor-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.mentor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   WHAT YOU LEARN
   ============================================================ */
.learn-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.learn-item:hover {
  border-color: var(--border-hover);
}

.learn-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.learn-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.learn-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

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

.testimonial-featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), var(--bg-card));
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-result {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

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

.pricing-card-popular {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.15);
  transform: scale(1.02);
}

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

.pricing-card-elite {
  border-color: rgba(139, 92, 246, 0.4);
}

.pricing-card-elite:hover {
  border-color: var(--purple);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0d14;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.pricing-card-popular .pricing-name {
  color: var(--gold);
}

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

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.check {
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-gold {
  color: var(--gold) !important;
}

.cross {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-missing {
  color: var(--text-dim);
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.82rem;
  color: var(--green);
  margin-top: 12px;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

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

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--bg);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  position: relative;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}

.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}

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

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo:hover { color: var(--text); }

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links-group a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  min-height: calc(100vh - 68px);
}

.auth-container {
  width: 100%;
  max-width: 440px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo .nav-logo {
  font-size: 1.8rem;
}

.auth-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-footer {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.auth-forgot {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.auth-cta-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-label-optional {
  color: var(--text-muted);
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

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

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

.form-input-sm {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.15s;
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.04);
}

.radio-option input,
.checkbox-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   ONBOARDING
   ============================================================ */
.onboarding-main {
  flex: 1;
  padding: 40px 24px 80px;
}

.onboarding-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.onboarding-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.onboarding-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.onboarding-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
}

.onboarding-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 100%;
  transition: width 0.3s;
}

.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.onboarding-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.onboarding-section-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.onboarding-section-num {
  background: var(--gold);
  color: #0a0d14;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 2px;
}

.onboarding-section-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.onboarding-section-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.onboarding-submit {
  text-align: center;
  padding: 20px 0;
}

.onboarding-privacy {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-main {
  flex: 1;
  padding: 32px 24px 80px;
}

.dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.dashboard-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.dashboard-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.stats-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stats-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.stat-card-highlight {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245,158,11,0.04), var(--bg-card));
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-pack .badge {
  font-size: 0.9rem;
  padding: 5px 14px;
}

.stat-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stat-action {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
}

/* Dashboard Section */
.dashboard-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-heading {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.empty-state-sm {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sessions Table */
.sessions-table-wrapper {
  overflow-x: auto;
}

.sessions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.sessions-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.sessions-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  vertical-align: middle;
}

.sessions-table tr:last-child td {
  border-bottom: none;
}

.sessions-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.row-booked {
  opacity: 0.75;
}

.date-day {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: capitalize;
}

.date-full {
  font-weight: 600;
  font-size: 0.9rem;
}

.mentor-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mentor-pill-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.mentor-pill-avatar-sm {
  width: 24px;
  height: 24px;
  font-size: 0.55rem;
}

.inline-form {
  display: inline;
}

.action-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.td-student-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.td-student-email {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Sessions Progress */
.sessions-progress {
  font-weight: 600;
  font-size: 0.9rem;
}

.sessions-used { color: var(--gold); }
.sessions-divider { color: var(--text-dim); margin: 0 2px; }
.sessions-total { color: var(--text-muted); }

.progress-bar-mini {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
  width: 80px;
}

.progress-bar-mini-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s;
}

/* Welcome Banner */
.welcome-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.welcome-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.welcome-banner-icon {
  font-size: 2rem;
}

.welcome-banner h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.welcome-banner p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Sessions Counter Banner */
.sessions-counter-banner {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.sessions-counter-icon {
  font-size: 1.2rem;
}

/* Booking Slots */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.slot-day-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.slot-day-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}

.slot-day-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 2px;
  text-transform: capitalize;
}

.slot-day-date {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
}

.slot-list {
  display: flex;
  flex-direction: column;
}

.slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  transition: background 0.15s;
}

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

.slot-item:hover {
  background: rgba(255,255,255,0.02);
}

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-time {
  font-weight: 700;
  font-size: 0.95rem;
}

.book-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

/* Upgrade CTA */
.upgrade-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.upgrade-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.upgrade-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-header {
  margin-bottom: 32px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.admin-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.admin-quick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
  color: var(--text);
}

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

.admin-quick-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.admin-quick-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.admin-quick-count {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}

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

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0d14;
}

/* Student Profile */
.student-profile-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.student-profile-main,
.student-profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-header h2 {
  font-size: 1rem;
  font-weight: 700;
}

.card-body {
  padding: 24px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.info-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.info-value-text {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Intake Sections */
.intake-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.intake-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.intake-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Session List (in student profile) */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.session-list-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.session-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.session-list-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.session-list-status {
  display: flex;
  align-items: center;
}

.session-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meet-link-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Transaction Items */
.transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

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

.transaction-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

/* Slots Admin Grid */
.slots-admin-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.error-container {
  max-width: 480px;
}

.error-code {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.error-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-message {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .student-profile-grid {
    grid-template-columns: 1fr;
  }

  .slots-admin-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    gap: 4px;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
    padding: 16px 24px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a,
  .btn-logout {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-align: left;
  }

  .hero {
    padding: 80px 24px 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hero-stat-divider {
    width: 60%;
    height: 1px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-card-popular:hover {
    transform: translateY(-4px);
  }

  .mentor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mentor-tags {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .onboarding-section {
    padding: 24px 20px;
  }

  .sessions-table th:nth-child(n+4),
  .sessions-table td:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .pricing-amount {
    font-size: 2.4rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .cta-trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: #0a0d14;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 200;
}
.urgency-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #0a0d14;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   LIVE VIEWERS BADGE
   ============================================================ */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-live-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-section {
  background: #0d1117;
  padding: 48px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}
.results-label {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.results-ticker {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.result-item {
  background: #111827;
  border: 1px solid #1e293b;
  border-left: 3px solid #10b981;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.result-trade { font-size: 14px; color: #f1f5f9; font-weight: 600; }
.result-profit { color: #10b981; font-weight: 700; font-size: 16px; }
.result-time { color: #64748b; font-size: 12px; }

/* ============================================================
   TRANSFORMATION SECTION
   ============================================================ */
.transform-section { padding: 80px 0; }
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.transform-arrow { font-size: 32px; color: #f59e0b; text-align: center; }
.transform-card { background: #111827; border: 1px solid #1e293b; border-radius: 12px; padding: 28px; }
.transform-card.before { border-top: 3px solid #ef4444; }
.transform-card.after { border-top: 3px solid #10b981; }
.transform-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.transform-card.before .transform-label { color: #ef4444; }
.transform-card.after .transform-label { color: #10b981; }
.transform-list { list-style: none; padding: 0; margin: 0; }
.transform-list li { padding: 6px 0; font-size: 15px; color: #94a3b8; }
.transform-card.before .transform-list li::before { content: "\2717 "; color: #ef4444; }
.transform-card.after .transform-list li::before { content: "\2713 "; color: #10b981; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { padding: 64px 0; background: #0d1117; border-top: 1px solid #1e293b; }
.trust-inner { text-align: center; }
.trust-logos { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin: 32px 0; }
.trust-logo { background: #111827; border: 1px solid #1e293b; padding: 14px 28px; border-radius: 8px; color: #64748b; font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.trust-track { color: #94a3b8; font-size: 15px; }
.trust-track strong { color: #f59e0b; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-text h2 { font-size: 28px; margin-bottom: 12px; }
.contact-text p { color: #94a3b8; margin-bottom: 24px; }
.contact-guarantees { display: flex; flex-direction: column; gap: 8px; }
.contact-guarantees div { color: #10b981; font-size: 15px; }
.contact-form { background: #111827; border: 1px solid #1e293b; border-radius: 16px; padding: 32px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 14px; color: #94a3b8; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: #0a0d14; border: 1px solid #1e293b; border-radius: 8px;
  padding: 12px 14px; color: #f1f5f9; font-size: 15px; box-sizing: border-box;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: #f59e0b;
}
.contact-form select option { background: #111827; }

/* ============================================================
   SOCIAL PROOF POPUP
   ============================================================ */
.social-proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 9999;
  max-width: 320px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.social-proof-popup.visible { transform: translateY(0); opacity: 1; }
.sp-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0d14; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sp-text { font-size: 13px; color: #f1f5f9; line-height: 1.4; flex: 1; }
.sp-text strong { font-size: 14px; }
.sp-text span { color: #94a3b8; }
.sp-text em { color: #f59e0b; font-style: normal; font-weight: 600; }
.sp-close {
  background: none; border: none; color: #64748b; cursor: pointer;
  font-size: 18px; padding: 0; line-height: 1; flex-shrink: 0;
}
.sp-close:hover { color: #f1f5f9; }

/* ============================================================
   PRICING SCARCITY / EXTRAS
   ============================================================ */
.pricing-scarcity {
  text-align: center;
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}
.pricing-per-session {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 4px;
}
.pricing-special {
  text-align: center;
  color: #f59e0b;
  font-size: 13px;
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .transform-grid { grid-template-columns: 1fr; }
  .transform-arrow { transform: rotate(90deg); }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .results-ticker { flex-direction: column; align-items: center; }
  .urgency-bar { font-size: 12px; }
}

/* HERO CANVAS */
.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-container { position: relative; z-index: 1; }

/* HERO MICRO TEXT */
.hero-micro {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero-micro strong { color: #94a3b8; }

/* STRATEGY SECTION */
.strategy-section { padding: 80px 0; background: #0d1117; }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.strategy-card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.strategy-card:hover { border-color: #f59e0b44; }
.strategy-icon { font-size: 28px; margin-bottom: 14px; }
.strategy-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #f1f5f9; }
.strategy-card p { font-size: 14px; color: #94a3b8; line-height: 1.6; margin: 0; }
.strategy-callout {
  background: #111827;
  border: 1px solid #f59e0b33;
  border-left: 3px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.strategy-callout-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.strategy-callout strong { color: #f1f5f9; display: block; margin-bottom: 6px; }
.strategy-callout p { color: #94a3b8; font-size: 14px; margin: 0; line-height: 1.6; }

/* PAIN INTRO */
.pain-intro { color: #94a3b8; font-size: 16px; text-align: center; max-width: 600px; margin: 0 auto 32px; }

/* MENTORS SCARCITY */
.mentors-scarcity {
  text-align: center;
  background: #111827;
  border: 1px solid #f59e0b33;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  color: #94a3b8;
  display: inline-block;
  margin: 0 auto 40px;
  display: block;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.mentors-scarcity strong { color: #f59e0b; }

@media (max-width: 768px) {
  .strategy-grid { grid-template-columns: 1fr 1fr; }
  .strategy-callout { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .strategy-grid { grid-template-columns: 1fr; }
}

/* REGISTRO PACK BADGE */
.registro-pack-badge {
  background: linear-gradient(135deg, #f59e0b22, #f59e0b11);
  border: 1px solid #f59e0b44;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.registro-pack-badge strong { color: #f59e0b; }

/* ============================================================
   STRATEGY METRICS STRIP
   ============================================================ */
.metrics-section {
  background: #0d1117;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  padding: 36px 0;
}
.metrics-label {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.metrics-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.metric-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  gap: 4px;
}
.metric-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.5px;
  line-height: 1;
}
.metric-desc {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}
.metric-sep {
  width: 1px;
  height: 40px;
  background: #1e293b;
  flex-shrink: 0;
}
.metrics-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #475569;
  margin-top: 20px;
  font-style: italic;
}
@media (max-width: 768px) {
  .metric-block { padding: 12px 20px; }
  .metric-sep { display: none; }
  .metrics-grid { gap: 0; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111827;
  border-top: 1px solid #1e293b;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 14px;
  color: #94a3b8;
  flex: 1;
  min-width: 200px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e293b;
}
.legal-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-content a { color: #f59e0b; }
.legal-content a:hover { color: #fbbf24; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}
.cookie-table th {
  background: #111827;
  color: #f1f5f9;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #1e293b;
}
.cookie-table td {
  color: #94a3b8;
  padding: 12px 16px;
  border: 1px solid #1e293b;
  vertical-align: top;
}
.cookie-table code {
  background: #1e293b;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #f59e0b;
}

/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
.booking-calendar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.booking-day-card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
}
.booking-day-header {
  padding: 20px 24px;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-day-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: capitalize;
  min-width: 100px;
}
.booking-day-date {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: capitalize;
}
.booking-day-capacity {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.capacity-bar {
  width: 80px;
  height: 6px;
  background: #1e293b;
  border-radius: 3px;
  overflow: hidden;
}
.capacity-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 3px;
  transition: width 0.3s;
}
.capacity-label {
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
}
.booking-slots {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.booking-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #0d1117;
  transition: background 0.15s;
}
.booking-slot:last-child { border-bottom: none; }
.booking-slot-available:hover { background: #1a2235; }
.booking-slot-taken {
  opacity: 0.5;
}
.slot-time-display {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}
.slot-clock { font-size: 16px; }
.slot-status-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.slot-taken-badge {
  background: #1e293b;
  color: #64748b;
}
@media (max-width: 600px) {
  .booking-day-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .booking-day-capacity { margin-left: 0; }
  .booking-slot { padding: 12px 16px; }
}

/* ============================================================
   MOBILE IMPROVEMENTS — comprehensive responsive fixes
   ============================================================ */

/* Hero subtitle word wrap (tickers list) */
.hero-subtitle {
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 768px) {
  /* Urgency bar — stack content on small screens */
  .urgency-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  /* CTA buttons — stack on mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Dashboard section — reduce padding */
  .dashboard-section {
    padding: 20px 16px;
  }

  /* Dashboard main — reduce side padding */
  .dashboard-main {
    padding: 24px 16px 60px;
  }

  /* Sessions table — show all columns but with less padding */
  .sessions-table th,
  .sessions-table td {
    padding: 10px 10px;
    font-size: 0.82rem;
  }

  /* Mentor pill compact on mobile */
  .mentor-pill span {
    display: none;
  }
  .mentor-pill-avatar {
    margin: 0 auto;
  }

  /* Admin quick links — 3 columns on tablet stays, reduce padding */
  .admin-quick-card {
    padding: 16px;
  }

  /* Pricing note wrap */
  .pricing-note p {
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  /* Hero micro text — stack on very small screens */
  .hero-micro {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
  }

  /* Urgency bar — hide countdown on tiny screens */
  #urgencyCountdown {
    display: none;
  }

  /* Dashboard section — even less padding */
  .dashboard-section {
    padding: 16px 12px;
  }

  /* Stat value — fit in 2-col grid */
  .stat-value {
    font-size: 1.6rem;
  }

  /* Auth card padding */
  .auth-card {
    padding: 24px 16px;
  }

  /* Admin badge */
  .admin-badge {
    font-size: 0.7rem;
  }

  /* Table action buttons stack */
  .action-buttons {
    flex-direction: column;
    gap: 4px;
  }

  /* Section heading size */
  .section-heading {
    font-size: 1rem;
  }
}
