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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #F59E0B;
  --ember: #D97706;
  --charcoal: #111827;
  --smoke: #1F2937;
  --ash: #374151;
  --cream: #FFFBF0;
  --muted: #9CA3AF;
  --light: #FEF3C7;
}

html { scroll-behavior: smooth; }
body { background: var(--charcoal); color: var(--cream); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { background: var(--amber); color: #111827; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* UTILITIES */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-amber { color: var(--amber); }
.text-muted { color: var(--muted); }
.text-cream { color: var(--cream); }
.grad { background: linear-gradient(135deg, #F59E0B, #FCD34D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.amber-glow { box-shadow: 0 0 40px rgba(245,158,11,0.15); }

/* NAVBAR */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.3s; }
nav.scrolled { background: rgba(17,24,39,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(55,65,81,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; border-radius: 999px; transition: all 0.2s; cursor: pointer; text-decoration: none; }
.btn-primary { background: #F59E0B !important; color: #111827 !important; padding: 10px 24px; font-size: 14px; font-weight: 700; }
.btn-primary:hover { background: var(--ember); transform: scale(1.02); }
.btn-outline { border: 1.5px solid var(--ash); color: var(--cream); padding: 10px 24px; font-size: 14px; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-amber-outline { border: 1.5px solid var(--amber); color: var(--amber); padding: 10px 24px; font-size: 14px; }
.btn-amber-outline:hover { background: var(--amber); color: #111827; }
.btn-large { padding: 16px 40px; font-size: 18px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--cream); font-size: 24px; }
.mobile-menu { display: none; background: var(--smoke); border-top: 1px solid rgba(55,65,81,0.3); padding: 24px; flex-direction: column; gap: 20px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 18px; color: var(--cream); font-weight: 500; }

/* EYEBROW */
.eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--smoke); border: 1px solid rgba(245,158,11,0.3); color: var(--amber); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal); }
.section-smoke { background: var(--smoke); }
.section-border { border-top: 1px solid rgba(55,65,81,0.3); border-bottom: 1px solid rgba(55,65,81,0.3); }
.section-center { text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.section-sub.center { margin: 0 auto; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: rgba(245,158,11,0.05); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -1px; color: var(--cream); margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.trust-text { font-size: 13px; color: var(--muted); }

/* STAT BAR */
.stat-bar { padding: 24px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-val { font-size: 16px; font-weight: 700; color: var(--amber); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* CARDS */
.card { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 16px; padding: 32px; }
.card-dark { background: var(--charcoal); border: 1px solid rgba(55,65,81,0.5); border-radius: 16px; padding: 24px; }
.card-amber { background: var(--smoke); border: 1px solid rgba(245,158,11,0.25); border-radius: 16px; padding: 32px; }
.icon-box { width: 40px; height: 40px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px; flex-shrink: 0; }

/* PROBLEM/SOLUTION */
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.problem-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15px; line-height: 1.6; }
.problem-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--ash); flex-shrink: 0; margin-top: 2px; }
.diff-item { display: flex; gap: 16px; margin-bottom: 20px; }
.diff-text h4 { color: var(--cream); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.diff-text p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* STEPS */
.step-num { font-size: 36px; font-weight: 700; color: rgba(245,158,11,0.25); margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.step-title { font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* PLANS */
.plan { border-radius: 20px; padding: 32px; display: flex; flex-direction: column; position: relative; }
.plan-regular { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); }
.plan-popular { background: var(--amber); transform: scale(1.03); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--charcoal); color: var(--amber); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 999px; border: 1px solid rgba(245,158,11,0.3); white-space: nowrap; }
.plan-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.plan-price { font-size: 42px; font-weight: 800; margin-bottom: 4px; }
.plan-period { font-size: 14px; font-weight: 400; }
.plan-sessions { font-size: 13px; font-weight: 600; margin-bottom: 24px; margin-top: 4px; }
.plan-features { list-style: none; flex: 1; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.5; }
.plan-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.plan-regular .plan-name { color: var(--muted); }
.plan-regular .plan-price { color: var(--amber); }
.plan-regular .plan-period { color: var(--muted); }
.plan-regular .plan-sessions { color: var(--amber); }
.plan-regular .plan-features li { color: var(--muted); }
.plan-regular .plan-features li::before { color: var(--amber); }
.plan-popular .plan-name { color: rgba(17,24,39,0.6); }
.plan-popular .plan-price { color: #111827; }
.plan-popular .plan-period { color: rgba(17,24,39,0.6); }
.plan-popular .plan-sessions { color: #111827; }
.plan-popular .plan-features li { color: #111827; }
.plan-popular .plan-features li::before { color: #111827; }
.plan-popular .btn { background: var(--charcoal); color: var(--amber); }
.plan-popular .btn:hover { background: var(--smoke); }
.plan-regular .btn { border: 1.5px solid var(--amber); color: var(--amber); background: transparent; }
.plan-regular .btn:hover { background: var(--amber); color: #111827; }

/* COACHES / ABOUT */
.coach-photo { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.coach-badge { position: absolute; bottom: -16px; left: -16px; background: var(--amber); color: #111827; border-radius: 12px; padding: 12px 20px; }
.coach-badge p { font-weight: 700; font-size: 14px; }
.coach-badge span { font-size: 11px; opacity: 0.8; }
.stat-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.stat-chip { background: var(--charcoal); border: 1px solid rgba(55,65,81,0.5); border-radius: 12px; padding: 16px; }
.stat-chip h4 { font-size: 13px; font-weight: 600; color: var(--cream); }
.stat-chip p { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* TESTIMONIALS */
.video-card { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 16px; overflow: hidden; }
.video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #0a0f1a; }
.video-wrap iframe { width: 100%; height: 100%; border: none; }
.video-info { padding: 24px; }
.video-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.video-name { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.video-desc { font-size: 13px; color: var(--muted); }

/* B2B BANNER */
.b2b-box { border: 1px solid rgba(55,65,81,0.5); border-radius: 20px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.b2b-left { display: flex; gap: 24px; align-items: flex-start; }
.b2b-text h3 { font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.b2b-text p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 480px; }

/* CTA SECTION */
.cta-section { text-align: center; padding: 96px 0; }
.cta-flame { font-size: 40px; margin-bottom: 24px; }
.cta-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--cream); margin-bottom: 20px; }
.cta-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 20px; }

/* FOOTER */
footer { background: var(--smoke); border-top: 1px solid rgba(55,65,81,0.3); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--amber); }
.footer-heading { font-size: 12px; color: var(--cream); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-email a { font-size: 13px; color: var(--amber); }
.footer-location { font-size: 12px; color: var(--muted); margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(55,65,81,0.3); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-tagline { font-size: 12px; color: var(--muted); font-style: italic; }

/* ABOUT PAGE */
.founder-card { background: var(--charcoal); border: 1px solid rgba(55,65,81,0.5); border-radius: 20px; overflow: hidden; }
.founder-photo { height: 320px; width: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-info { padding: 28px; }
.founder-name { font-size: 20px; font-weight: 700; color: var(--cream); }
.founder-role { font-size: 14px; color: var(--amber); font-weight: 500; margin-bottom: 16px; }
.founder-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 16px; padding: 24px; }
.value-icon { font-size: 24px; margin-bottom: 12px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.meaning-box { text-align: center; max-width: 560px; margin: 0 auto; }
.meaning-box h2 { font-size: 24px; font-weight: 700; color: var(--cream); margin-bottom: 16px; }
.meaning-box p { font-size: 16px; color: var(--muted); line-height: 1.8; }

/* SERVICES PAGE */
.tier-row { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 12px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tier-row.popular { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.05); }
.tier-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.tier-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tier-price { font-size: 16px; font-weight: 700; color: var(--amber); }
.tier-badge { font-size: 10px; color: var(--amber); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.contact-info p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-text h4 { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 13px; color: var(--muted); }
.contact-item-text a { color: var(--amber); }
.quote-box { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 16px; padding: 24px; margin-top: 32px; }
.quote-box blockquote { font-size: 14px; color: var(--cream); font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.quote-box cite { font-size: 13px; color: var(--amber); font-weight: 600; font-style: normal; }
.calendly-box { background: var(--smoke); border: 1px solid rgba(55,65,81,0.5); border-radius: 20px; overflow: hidden; }
.calendly-header { padding: 24px 28px 0; }
.calendly-header h2 { font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.calendly-header p { font-size: 13px; color: var(--muted); margin-bottom: 0; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 140px 0 80px; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4, .contact-grid, .footer-grid, .values-grid { grid-template-columns: 1fr; }
  .plan-popular { transform: none; }
  .b2b-box { flex-direction: column; }
  .b2b-left { flex-direction: column; }
  .section { padding: 64px 0; }
  .coach-badge { bottom: 0; left: 0; position: relative; margin-top: 16px; display: inline-block; }
}


/* OVERRIDES */
.btn-primary, a.btn-primary, button.btn-primary {
  background: #F59E0B !important;
  color: #111827 !important;
  font-weight: 700 !important;
}
.nav-links .btn-primary {
  background: #F59E0B !important;
  color: #111827 !important;
}
.founder-photo {
  object-position: center 15% !important;
}
