:root {
  --navy:        #1e3a5f;
  --navy-dark:   #111e33;
  --navy-mid:    #2a4d7f;
  --slate:       #3d5a8a;
  --amber:       #e8920a;
  --amber-light: #f5b942;
  --bg:          #f8f7f4;
  --bg-dark:     #eeecea;
  --charcoal:    #2d2d2d;
  --gray:        #6b7280;
  --gray-light:  #dde1e7;
  --white:       #ffffff;
  --r:           8px;
  --shadow:      0 2px 16px rgba(17,30,51,0.10);
  --shadow-lg:   0 8px 40px rgba(17,30,51,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', Georgia, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 4px 18px rgba(232,146,10,0.35);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  box-shadow: 0 4px 18px rgba(30,58,95,0.30);
  transform: translateY(-1px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1060px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-cta { font-size: 0.875rem; padding: 10px 20px; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--slate) 100%);
  color: var(--white);
  padding: 80px 0 72px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  max-width: 820px;
  line-height: 1.15;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--amber);
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ── SECTION SHARED ────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-dark); }
.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
}
.section-header { margin-bottom: 48px; }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }
.section-dark .section-title { color: var(--white); }

/* ── ABOUT / COACHES ──────────────────────────── */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.coach-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}
.coach-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.coach-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.coach-card p { font-size: 0.9rem; color: var(--gray); }

/* ── COURSE OVERVIEW ──────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.module-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.module-card h3 { font-size: 1.05rem; color: var(--navy); }
.module-card p { font-size: 0.875rem; color: var(--gray); }

/* ── INCOME PROJECTION ────────────────────────── */
.income-disclaimer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 36px;
  max-width: 700px;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.income-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 28px 24px;
}
.income-card .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.income-card .amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.income-card .detail { font-size: 0.85rem; color: rgba(255,255,255,0.60); }

/* ── LEAD CAPTURE ─────────────────────────────── */
#lead-capture {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}
.lead-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.lead-inner .section-title { color: var(--white); }
.lead-inner .section-sub { color: rgba(255,255,255,0.70); }
.ck-embed-wrapper {
  width: 100%;
  max-width: 480px;
}
.ck-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ck-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}
.ck-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.ck-form input[type="email"]:focus { border-color: var(--amber); }
.ck-form button {
  width: 100%;
  padding: 13px;
  border-radius: var(--r);
  border: none;
  background: var(--amber);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.ck-form button:hover { background: var(--amber-light); }
.lead-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── PRICING ──────────────────────────────────── */
#pricing { padding: 72px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--r);
  border: 2px solid var(--gray-light);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.pricing-card h3 { font-size: 1.3rem; color: var(--navy); }
.pricing-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-price span { font-size: 1.1rem; font-weight: 400; color: var(--gray); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pricing-features li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; margin-top: auto; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 720px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r);
  padding: 24px 24px;
  box-shadow: var(--shadow);
}
.faq-item h3 {
  font-family: 'Outfit', Georgia, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.9rem; color: var(--gray); }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 36px 0;
  text-align: center;
}
footer .container { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { color: var(--white); font-size: 1.1rem; font-weight: 700; }
footer p { font-size: 0.8rem; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 56px 0 52px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-stat-row { gap: 20px; }
  .section { padding: 52px 0; }
  #lead-capture { padding: 52px 0; }
  #pricing { padding: 52px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .income-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 16px; }
  .container { padding: 0 16px; }
}
