:root {
  --navy: #0F1F3D;
  --navy-2: #1B2B4B;
  --gold: #C9A84C;
  --gold-light: #E4CE8F;
  --ink: #1A1D24;
  --gray: #5B6270;
  --bg-soft: #F7F6F3;
  --white: #FFFFFF;
  --radius: 14px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; }

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 31, 61, 0.96);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo span { color: var(--white); font-weight: 800; font-size: 17px; }
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta { font-size: 14px; padding: 10px 20px; }

/* HERO */
.hero {
  background: radial-gradient(circle at 15% 20%, rgba(201,168,76,0.12), transparent 40%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  margin: 20px 0 24px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 480px;
}
.proof-card p { font-size: 15px; color: rgba(255,255,255,0.88); }
.proof-card strong { color: var(--gold); }
.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* SECTION generic */
section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: 42px; line-height: 1.15; color: var(--navy); margin-top: 12px; }
.section-head p { color: var(--gray); font-size: 17px; margin-top: 12px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(15,31,61,0.15); }
.about-text p { color: var(--gray); font-size: 16.5px; margin-bottom: 16px; }
.about-text strong { color: var(--navy); }

/* PROBLEM */
.problem-list { display: grid; gap: 14px; margin-top: 28px; }
.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #ECE9E2;
  border-radius: 12px;
  padding: 18px 20px;
}
.problem-item .x {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #FCEEEE;
  color: #C0392B;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.problem-item p { color: var(--ink); font-size: 15.5px; }
.callout {
  margin-top: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  font-size: 18px;
  font-weight: 700;
}
.callout .gold { color: var(--gold); }

/* SESSIONS */
.session-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #ECE9E2;
}
.session-card:last-child { border-bottom: none; }
.session-card.reverse .session-img { order: 2; }
.session-card.reverse .session-text { order: 1; }
.session-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(15,31,61,0.12); }
.session-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.session-text h3 { font-size: 30px; line-height: 1.2; color: var(--navy); margin-bottom: 10px; }
.session-text .duration { color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.session-text p { color: var(--gray); font-size: 16px; margin-bottom: 16px; }
.session-outcomes { display: grid; gap: 10px; }
.session-outcomes li { list-style: none; display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.session-outcomes li::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* FOR WHO */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fit-card { border-radius: var(--radius); padding: 28px; }
.fit-card.yes { background: #F3F8F1; border: 1px solid #DCEAD8; }
.fit-card.no { background: #FBF3F2; border: 1px solid #F0DCDA; }
.fit-card h3 { font-size: 18px; margin-bottom: 16px; }
.fit-card.yes h3 { color: #2C6E49; }
.fit-card.no h3 { color: #A83232; }
.fit-card ul { display: grid; gap: 10px; }
.fit-card li { list-style: none; font-size: 15.5px; color: var(--ink); padding-left: 22px; position: relative; }
.fit-card.yes li::before { content: "✓"; position: absolute; left: 0; color: #2C6E49; font-weight: 800; }
.fit-card.no li::before { content: "✕"; position: absolute; left: 0; color: #A83232; font-weight: 800; }

/* PRICING */
.price-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201,168,76,0.18), transparent 45%);
  pointer-events: none;
}
.price-card .btn-gold { position: relative; }
.price-value { font-size: 60px; font-weight: 800; color: var(--gold); margin: 8px 0 6px; position: relative; }
.price-terms { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; position: relative; }
.price-compare { font-size: 15px; color: rgba(255,255,255,0.85); position: relative; margin-bottom: 28px; }
.price-compare strong { color: var(--gold); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid #ECE9E2;
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--gray); margin-top: 12px; font-size: 15.5px; }

/* FINAL CTA */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  padding: 64px 40px;
  margin: 0 24px;
}
.final-cta h2 { font-size: 38px; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 30px; }

/* FOOTER */
footer { padding: 40px 0; text-align: center; }
footer p { color: var(--gray); font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 32px; }
  .session-text h3 { font-size: 26px; }
  .final-cta h2 { font-size: 30px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 220px; margin: 0 auto; }
  .session-card, .session-card.reverse { grid-template-columns: 1fr; }
  .session-card.reverse .session-img, .session-card.reverse .session-text { order: unset; }
  .fit-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .price-card { padding: 32px 24px; }
}
