/* Ignite Your Child — brand tokens & global styles */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400&family=Satoshi:wght@400;500;600;700&display=swap');

:root {
  --teal: #1A6B6B;
  --teal-dark: #0e4d4d;
  --teal-mid: #155f5f;
  --teal-light: #e4f2f1;
  --teal-xlight: #f0f9f8;
  --gold: #C8922A;
  --gold-dark: #a57420;
  --gold-light: #fdf3e0;
  --cream: #faf8f4;
  --cream-warm: #f5f1ea;
  --white: #ffffff;
  --ink: #1a2022;
  --ink-mid: #3d4a4d;
  --ink-soft: #6b7b7e;
  --ink-faint: #9aabae;
  --border: rgba(26, 107, 107, 0.09);
  --border-strong: rgba(26, 107, 107, 0.18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 107, 107, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 107, 107, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 107, 107, 0.14);
  --shadow-gold: 0 8px 32px rgba(200, 146, 42, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 45, 45, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 28px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand span {
  color: var(--gold);
}

.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

.optin-logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: linear-gradient(155deg, #082e2e 0%, #0e4d4d 40%, #1a6b6b 80%, #1f7f7e 100%);
  padding: 96px 28px 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.35);
  color: #f5d89a;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.14;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.hero .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.72;
}

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

.btn-hero-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-gold);
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,146,42,0.28);
}

.btn-hero-secondary {
  display: inline-block;
  color: rgba(255,255,255,0.82);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
}

.trust-item .check {
  color: var(--gold);
  font-weight: 700;
}

/* ─────────────────────────────────────────
   PROBLEM / SOLUTION SECTION
───────────────────────────────────────── */
.problem {
  padding: 100px 28px;
  background: var(--white);
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.2;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.problem-body {
  color: var(--ink-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 56px;
}

.solution-block {
  background: linear-gradient(135deg, var(--teal-xlight) 0%, #e8f5f4 100%);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 40px 44px;
  max-width: 780px;
}

.solution-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.3;
}

.solution-block p {
  color: var(--ink-mid);
  font-size: 1.02rem;
  line-height: 1.78;
}

/* Comparison Table */
.comparison {
  padding: 80px 28px 100px;
  background: var(--cream);
}

.comparison-table {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.col-header {
  padding: 20px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.col-header.struggling {
  background: #f5f0eb;
  color: var(--ink-mid);
}

.col-header.empowered {
  background: var(--teal);
  color: var(--white);
}

.col-header.empowered span {
  color: var(--gold);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.comparison-row:nth-child(even) .cell-bad,
.comparison-row:nth-child(even) .cell-good {
  background: rgba(0,0,0,0.018);
}

.cell {
  padding: 16px 24px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cell-bad {
  background: var(--white);
  color: var(--ink-soft);
}

.cell-good {
  background: var(--teal-xlight);
  color: var(--ink);
  font-weight: 500;
}

.cell-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────── */
.products {
  padding: 100px 28px;
  background: var(--cream-warm);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Masterclass hero card */
.masterclass-feature {
  background: linear-gradient(150deg, #082e2e 0%, #0e4d4d 50%, #155f5f 100%);
  border-radius: 20px;
  padding: 52px 56px;
  margin-bottom: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.masterclass-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.masterclass-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.masterclass-label {
  display: inline-block;
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.4);
  color: #f5d89a;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.masterclass-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--white);
}

.masterclass-feature .tagline {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.masterclass-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.include-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 6px;
}

.include-item .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.masterclass-price-block {
  text-align: center;
  min-width: 200px;
}

.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.price-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.btn-masterclass {
  display: block;
  background: var(--gold);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.btn-masterclass:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.masterclass-guarantee {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  text-align: center;
}

/* 3-product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card.featured-card {
  border: 2px solid var(--gold);
  background: linear-gradient(175deg, #fffdf8 0%, var(--white) 100%);
}

.product-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.product-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 10px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.original-price {
  font-size: 1rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  font-weight: 400;
  font-family: var(--font-body);
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.55;
  font-style: italic;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex: 1;
}

.product-features li {
  font-size: 0.88rem;
  color: var(--ink-mid);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.45;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-buy {
  display: block;
  background: var(--teal);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}

.btn-buy:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-buy-gold {
  background: var(--gold);
}

.btn-buy-gold:hover {
  background: var(--gold-dark);
}

.btn-learn {
  display: block;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.btn-learn:hover {
  background: var(--teal-light);
}

.product-delivery {
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   ENDORSEMENT
───────────────────────────────────────── */
.endorsement {
  padding: 100px 28px;
  background: var(--white);
}

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

.endorsement-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  margin-bottom: 28px;
  font-size: 2rem;
}

.endorsement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.endorsement-text {
  color: var(--ink-mid);
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 44px;
}

.endorsement-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.e-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
}

.e-point svg, .e-point .e-icon {
  color: var(--teal);
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  padding: 100px 28px;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--ink-mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

/* ─────────────────────────────────────────
   EMAIL OPT-IN
───────────────────────────────────────── */
.optin {
  padding: 80px 28px;
  background: var(--teal-xlight);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.optin h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.optin p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.optin-form input {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.optin-form input:focus {
  border-color: var(--teal);
}

.optin-form input::placeholder {
  color: var(--ink-faint);
}

.btn-optin {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.btn-optin:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.optin-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq {
  padding: 100px 28px;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-item {
  background: var(--white);
  padding: 28px 32px;
  border-top: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

/* ─────────────────────────────────────────
   CLOSING CTA
───────────────────────────────────────── */
.closing {
  padding: 100px 28px;
  background: linear-gradient(155deg, #082e2e 0%, #0e4d4d 50%, #1a6b6b 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(200,146,42,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.75;
}

.closing-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-closing-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow-gold);
}

.btn-closing-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-closing-secondary {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.btn-closing-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.closing-trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  padding: 48px 28px;
  background: #061e1e;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
  display: block;
}

.footer-brand span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ─────────────────────────────────────────
   PRODUCT DETAIL PAGE
───────────────────────────────────────── */
.product-detail {
  padding: 60px 28px 100px;
  background: var(--cream);
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 36px;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-content .product-type {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 12px;
}

.detail-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.detail-tagline {
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.65;
}

.detail-desc {
  font-size: 1.02rem;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 36px;
}

.what-included-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--ink-mid);
  line-height: 1.45;
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list .item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Purchase sidebar */
.purchase-sidebar {
  position: sticky;
  top: 100px;
}

.purchase-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.purchase-card.flagship {
  background: linear-gradient(175deg, #0e4d4d 0%, #1a6b6b 100%);
  border: none;
  color: var(--white);
}

.sidebar-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.sidebar-type.light {
  color: var(--teal);
}

.sidebar-type.dark {
  color: rgba(255,255,255,0.55);
}

.sidebar-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.sidebar-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.sidebar-price.light {
  color: var(--teal);
}

.sidebar-price.dark {
  color: var(--gold);
}

.sidebar-original {
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-bottom: 24px;
}

.sidebar-original.light {
  color: var(--ink-faint);
}

.sidebar-original.dark {
  color: rgba(255,255,255,0.38);
}

.btn-sidebar-buy {
  display: block;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.btn-sidebar-buy.light {
  background: var(--teal);
  color: var(--white);
}

.btn-sidebar-buy.light:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-sidebar-buy.dark {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-sidebar-buy.dark:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.sidebar-delivery {
  font-size: 0.82rem;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-delivery.light {
  color: var(--ink-faint);
}

.sidebar-delivery.dark {
  color: rgba(255,255,255,0.4);
}

.sidebar-perks {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-perks.light {
  border-top-color: var(--border);
}

.sidebar-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.sidebar-perk .perk-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sidebar-perk.light {
  color: var(--ink-mid);
}

.sidebar-perk.dark {
  color: rgba(255,255,255,0.68);
}

/* Other products upsell */
.other-products {
  padding: 80px 28px;
  background: var(--cream-warm);
}

/* ─────────────────────────────────────────
   SUCCESS PAGE
───────────────────────────────────────── */
.success-page {
  padding: 80px 28px;
  text-align: center;
  background: var(--cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-inner {
  max-width: 560px;
  margin: 0 auto;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.success-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.success-page p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .masterclass-inner {
    grid-template-columns: 1fr;
  }

  .masterclass-price-block {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .price-badge {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-nav { padding: 12px 20px; }

  .nav-links {
    display: none;
  }

  .hero { padding: 72px 20px 60px; }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    text-align: center;
  }

  .problem-headline { font-size: 1.7rem; }

  .solution-block { padding: 28px 24px; }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .col-header.struggling { display: none; }

  .cell-bad { display: none; }

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

  .masterclass-feature {
    padding: 36px 28px;
  }

  .masterclass-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .masterclass-price-block {
    text-align: center;
    min-width: unset;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .purchase-sidebar {
    position: static;
  }

  .faq-list { border-radius: var(--radius-sm); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero h1 { font-size: 2rem; }

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

  .masterclass-feature { padding: 28px 20px; }

  .comparison { padding: 60px 16px 80px; }
}
