/* ═══════════════════════════════════════════════════════════════
   DAN C. HOLLOWAY — GLOBAL STYLES
   Single source of truth for all shared CSS
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Navy palette */
  --navy-deepest: #060e1a;
  --navy-darkest: #060e1a; /* alias */
  --navy-deep: #060e1a;    /* alias */
  --navy-dark: #0a1628;
  --navy-mid: #12203a;
  --navy-light: #1a2d4a;
  --navy-lighter: #2c4a7c;

  /* Gold palette */
  --gold-dark: #a68520;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-light: #f5d76e;
  --gold-pale: #fdf3d0;

  /* Neutrals — contrast-improved for WCAG AA on dark backgrounds */
  --white: #ffffff;
  --off-white: #f8f6f1;
  --offwhite: #f0ece4;
  --warm-gray: #c8c0b4;
  --text-light: #aab8cc;   /* ~7.3:1 on #060e1a — primary secondary text */
  --text-muted: #a0b0c4;   /* ~6.3:1 on #060e1a — mid-range secondary */
  --text-dim: #8a9bb4;     /* ~5.5:1 on #060e1a — subdued labels/meta */

  /* Cards */
  --card-bg: #0f1b2e;
  --card-border: rgba(201, 162, 39, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy-deepest);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Utilities ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Alternate animation class for terms page */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 48px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-inner { height: 64px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 1px;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark) !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.25);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
  color: var(--navy-dark) !important;
}

/* ─── Hamburger Menu ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s var(--ease-out-expo);
  border-left: 1px solid var(--card-border);
}

.mobile-menu.open { right: 0; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu a:hover { color: var(--gold-bright); padding-left: 8px; }

.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.visible { opacity: 1; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.btn-ghost:hover { color: var(--gold-bright); gap: 12px; }
.btn-ghost svg { width: 14px; height: 14px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
  cursor: pointer;
}

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

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
section {
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   HERO COMMON
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(44, 74, 124, 0.15), transparent),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201, 162, 39, 0.06), transparent),
    linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-dark) 50%, var(--navy-mid) 100%);
}

.hero-strings {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-strings .string {
  position: absolute;
  width: 1px;
  height: 120%;
  top: -10%;
  opacity: 0.04;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-bright);
}

.hero-stat-num.price-num {
  font-family: var(--font-body);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════ */
.features { background: var(--navy-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.08);
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 24px; height: 24px;
  color: var(--gold-bright);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   ABOUT / INSTRUCTOR
   ═══════════════════════════════════════════ */
.about {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.3);
  pointer-events: none;
}

.about-photo-placeholder {
  text-align: center;
  color: var(--text-dim);
}

.about-photo-placeholder svg {
  width: 64px; height: 64px;
  color: var(--text-dim);
  opacity: 0.4;
  margin-bottom: 16px;
}

.about-photo-placeholder span {
  display: block;
  font-size: 13px;
  opacity: 0.6;
}

.about-text .section-desc { margin-bottom: 24px; }

.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

.about-highlights li svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
  background: var(--navy-deepest);
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-bright);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.06);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}

.step p {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 260px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS (index multi-card layout)
   ═══════════════════════════════════════════ */
.testimonials {
  background: var(--navy-dark);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-desc { margin: 0 auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover { border-color: rgba(201, 162, 39, 0.25); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 14px; height: 14px;
  color: var(--gold);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-lighter), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   TESTIMONIAL (single featured — beginner)
   ═══════════════════════════════════════════ */
.testimonial-section {
  background: var(--navy-dark);
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.15), transparent);
}

.testimonial-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 36px;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deepest) 100%);
  text-align: center;
}

.pricing .section-label { justify-content: center; }
.pricing .section-label::before { display: none; }
.pricing .section-desc { margin: 0 auto; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 40px;
}

.pricing-toggle-label {
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s ease;
}

.pricing-toggle-label.active { color: var(--white); font-weight: 600; }

.pricing-toggle-switch {
  width: 48px; height: 26px;
  background: var(--navy-light);
  border-radius: 13px;
  border: 1px solid var(--card-border);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-bright);
  transition: transform 0.3s var(--ease-out-expo);
}

.pricing-toggle-switch.annual::after { transform: translateX(22px); }

.pricing-toggle-switch.annual {
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.3);
}

.pricing-save-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-dark);
  background: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(201, 162, 39, 0.3);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}

.pricing-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-amount .dollar {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
}

.pricing-amount .value {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-amount .cents {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
}

.pricing-amount .period {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  margin-left: 6px;
  font-weight: 400;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.pricing-features li svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 10px;
  justify-content: center;
  text-align: center;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* Single pricing card wrapper (beginner page) */
.pricing-card-wrapper {
  max-width: 480px;
  margin: 48px auto 0;
}

.pricing-upgrade-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 24px;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-upgrade-note strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   BEGINNER CALLOUT (index page)
   ═══════════════════════════════════════════ */
.beginner {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.beginner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.04), transparent 70%);
  pointer-events: none;
}

.beginner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.beginner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 24px;
}

.beginner-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.beginner-list li {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.beginner-list li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION (index/beginner style)
   ═══════════════════════════════════════════ */
.faq { background: var(--navy-deepest); }

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

.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: rgba(201, 162, 39, 0.2); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

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

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-answer-inner a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.faq-answer-inner .price {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   PAGE HEADER (faq, terms)
   ═══════════════════════════════════════════ */
.page-header {
  position: relative;
  padding: 130px 0 50px;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(44, 74, 124, 0.12), transparent),
    radial-gradient(ellipse 50% 70% at 70% 20%, rgba(201, 162, 39, 0.05), transparent),
    linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-dark) 60%, var(--navy-mid) 100%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-header p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CTA SECTION (faq page)
   ═══════════════════════════════════════════ */
.cta-section {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-card p a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-card p a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   CURRICULUM (beginner page)
   ═══════════════════════════════════════════ */
.curriculum {
  background: var(--navy-dark);
  overflow: hidden;
}

.curriculum::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.15), transparent);
}

.curriculum-header {
  text-align: center;
  margin-bottom: 64px;
}

.curriculum-header .section-label { justify-content: center; }
.curriculum-header .section-label::before { display: none; }
.curriculum-header .section-desc { margin: 0 auto; }

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lesson-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lesson-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lesson-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.lesson-card:hover::before { opacity: 1; }

.lesson-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-bright);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}

.lesson-number::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
  opacity: 0.7;
}

.lesson-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.lesson-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   INCLUDED (beginner page)
   ═══════════════════════════════════════════ */
.included {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}

.included-header {
  text-align: center;
  margin-bottom: 64px;
}

.included-header .section-label { justify-content: center; }
.included-header .section-label::before { display: none; }
.included-header .section-desc { margin: 0 auto; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.included-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.included-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.included-card:hover::before { opacity: 1; }

.included-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.08);
  margin: 0 auto 24px;
}

.included-icon svg {
  width: 28px; height: 28px;
  color: var(--gold-bright);
}

.included-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.included-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   JOURNEY (beginner page)
   ═══════════════════════════════════════════ */
.journey {
  background: var(--navy-deepest);
  text-align: center;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  top: -30%; left: 30%;
  width: 40%; height: 160%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.04), transparent 70%);
  pointer-events: none;
}

.journey-header { margin-bottom: 64px; }
.journey-header .section-label { justify-content: center; }
.journey-header .section-label::before { display: none; }
.journey-header .section-desc { margin: 0 auto; }

.journey-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.journey-step-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.journey-step-icon svg {
  width: 36px; height: 36px;
  color: var(--gold-bright);
}

.journey-step:hover .journey-step-icon {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.15);
}

.journey-step.active .journey-step-icon {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.2);
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.journey-step p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 200px;
  line-height: 1.6;
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: -40px;
}

.journey-arrow svg {
  width: 32px; height: 32px;
  color: var(--gold);
  opacity: 0.3;
}

.journey-note {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FINAL CTA (beginner page)
   ═══════════════════════════════════════════ */
.final-cta {
  background: var(--navy-deepest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 162, 39, 0.06), transparent);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold-bright);
}

.final-cta-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ═══════════════════════════════════════════
   TERMS (terms page)
   ═══════════════════════════════════════════ */
.terms-section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.terms-intro {
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
  padding: 24px 30px;
  margin-bottom: 48px;
  border-radius: 0 8px 8px 0;
}

.terms-intro p {
  margin: 0;
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.8;
}

.terms-block {
  margin-bottom: 48px;
}

.terms-block:last-child { margin-bottom: 0; }

.terms-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.terms-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin: 32px 0 16px;
}

.terms-block p {
  color: var(--off-white);
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}

.terms-block p:last-child { margin-bottom: 0; }

.terms-block ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--off-white);
}

.terms-block li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.terms-emphasis {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.terms-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--navy-deepest);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-brand p,
.footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a,
.footer-col span,
.footer-location {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.footer-social svg { width: 18px; height: 18px; color: var(--text-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { max-width: 560px; margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-video { max-width: 560px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 400px; aspect-ratio: 3/4; }
  .beginner-content { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(32px, 7vw, 44px); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }

  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .beginner-list { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }

  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card { padding: 36px 28px; }
  .pricing-amount .value { font-size: 48px; }

  .page-header { padding: 110px 0 40px; }
  .page-header h1 { font-size: clamp(30px, 7vw, 40px); }

  .cta-card { padding: 36px 24px; margin: 0 clamp(20px, 5vw, 48px); }

  .journey-path {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .journey-arrow {
    margin-top: 0;
    transform: rotate(90deg);
  }
  .journey-step-icon { width: 72px; height: 72px; }
  .journey-step-icon svg { width: 28px; height: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
}
