/* ================================================================
   LEARNING AI WITH GRACE — Shared Stylesheet
   Senior-Friendly Palette: #F7F5F2 bg · #1F3A5F navy · #B08D57 gold · #333333 text
   Fonts: Georgia (headings) · Arial (body) · Dancing Script (signature)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --navy:        #1F3A5F;
  --navy-deep:   #1F3A5F;
  --navy-dark:   #1F3A5F;
  --gold:        #B08D57;
  --gold-hover:  #8F6E3A;
  --burgundy:    #6A1E2D;
  --bg:          #F7F5F2;
  --warm2:       #E8E9EB;
  --white:       #ffffff;
  --text:        #333333;
  --text-soft:   #666666;
  --border:      #D9D9D9;
  --shadow:      0 4px 24px rgba(31,58,95,0.11);
  --shadow-lg:   0 10px 48px rgba(31,58,95,0.20);
  --radius:      6px;
  --radius-sm:   6px;
  --pill:        50px;
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--royal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1 { font-family: 'Georgia', 'Times New Roman', serif; font-size: clamp(42px,5vw,72px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }
h2 { font-family: 'Georgia', 'Times New Roman', serif; font-size: clamp(26px,3.5vw,42px); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-family: 'Georgia', 'Times New Roman', serif; font-size: clamp(20px,2.5vw,28px); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-family: 'Arial', 'Helvetica', sans-serif; font-weight: 800; font-size: clamp(17px,1.8vw,21px); }
p  { font-size: clamp(17px,1.8vw,20px); margin-bottom: 20px; }

.signature {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(22px,2.5vw,34px);
  line-height: 1.2;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: var(--pill);
  margin-bottom: 14px;
  color: var(--gold);
}
.label-green { background: rgba(176,141,87,0.08); color: var(--gold); }
.label-blue  { background: rgba(176,141,87,0.08); color: var(--gold); }
.label-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.section-sub {
  font-size: clamp(17px,1.8vw,20px);
  color: var(--text-soft);
  max-width: 620px;
  margin: 12px 0 48px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  font-size: clamp(18px,1.8vw,22px);
  padding: 18px 40px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 28px rgba(176,141,87,0.38);
}
.btn-primary:hover  { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(176,141,87,0.45); color: var(--white); }
.btn-primary:active { transform: scale(0.98); }

.btn-lg { font-size: clamp(20px,2vw,26px) !important; padding: 22px 56px !important; }

.btn-green {
  background: var(--green);
  color: var(--white);
  font-size: clamp(17px,1.7vw,20px);
  padding: 16px 36px;
  box-shadow: 0 6px 24px rgba(124,183,99,0.38);
}
.btn-green:hover { background: #68a353; transform: translateY(-2px); color: var(--white); }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { color: var(--white); line-height: 1; }
.nav-logo .signature { font-size: 24px; display: block; color: var(--white); font-family: 'Arial', 'Helvetica', sans-serif; }
.nav-cta { font-size: 16px !important; padding: 11px 26px !important; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #E8E0D5 0%, #D4C5B0 38%, #C0B09A 68%, #CEB8A4 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  min-height: 700px;
  display: flex;
  align-items: stretch;
}

/* Diagonal tech / circuit lines — matches reference mockup */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 38px,
    rgba(31,58,95,0.07) 38px,
    rgba(31,58,95,0.07) 40px
  );
  pointer-events: none;
}
/* Soft white sparkle glow — lower right */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 20%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.hero-content { padding-bottom: 64px; }

/* Badge pill — white/translucent on light bg */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.70);
  border: 1.5px solid rgba(255,255,255,0.90);
  border-radius: var(--pill);
  padding: 8px 20px 8px 8px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.badge-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
}
.hero-badge span { color: var(--navy); font-size: 14px; font-weight: 800; letter-spacing: 0.04em; }

/* Title on navy banner — matches reference mockup */
.hero-title-banner {
  background: var(--navy);
  border-radius: 6px;
  padding: 12px 24px;
  margin-bottom: 18px;
  display: inline-block;
  max-width: 520px;
  box-shadow: 0 4px 24px rgba(31,58,95,0.28);
}
.hero-title-banner h1 {
  color: white;
  font-size: clamp(26px,4vw,50px);
  line-height: 1.15;
  margin: 0;
}

.hero-sub {
  color: var(--text-soft);
  font-size: clamp(17px,1.8vw,21px);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Speech bubble */
.hero-bubble {
  background: var(--white);
  border-radius: 0 6px 6px 6px;
  padding: 20px 24px;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.65;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  border-left: 4px solid var(--gold);
  color: var(--text);
}
.hero-bubble strong { color: var(--navy); }

/* Price row */
.hero-price-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.price-pill {
  background: var(--gold);
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  padding: 10px 26px;
  border-radius: var(--pill);
  box-shadow: 0 4px 18px rgba(176,141,87,0.45);
  line-height: 1;
}
.price-note { color: var(--text-soft); font-size: 15px; line-height: 1.45; }

/* Email capture box */
.email-box {
  background: var(--white);
  border-radius: 6px;
  padding: 18px 20px;
  max-width: 480px;
  margin-bottom: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  border: 2px solid rgba(176,141,87,0.08);
}
.email-box label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.email-row { display: flex; gap: 10px; flex-wrap: wrap; }
.email-input {
  flex: 1;
  min-width: 180px;
  border: 2px solid rgba(31,58,95,0.14);
  border-radius: var(--pill);
  padding: 14px 20px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.email-input:focus    { border-color: var(--gold); }
.email-input.error    { border-color: #e74c3c; }
.email-input::placeholder { color: #999999; }

/* Trust signals */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

/* ── SVG ICON SYSTEM ─────────────────────────────────────────────── */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.badge-icon .icon    { width: 24px; height: 24px; color: white; }
.trust-item .icon    { width: 15px; height: 15px; color: var(--gold); }
.problem-emoji .icon { width: 32px; height: 32px; color: rgba(255,255,255,0.85); }
.benefit-icon .icon  { width: 36px; height: 36px; color: var(--gold); }
.why-icon .icon      { width: 38px; height: 38px; color: var(--white); }
.support-icon .icon  { width: 52px; height: 52px; color: var(--gold); }
.ft-item .fi .icon   { width: 18px; height: 18px; }

/* Hero image / video */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  overflow: hidden;
}
.hero-image img {
  max-height: 640px;
  width: auto;
  filter: drop-shadow(0 12px 48px rgba(0,0,0,0.32));
  object-fit: contain;
}
/* YouTube embed wrapper — square video */
.hero-video-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
/* Transparent overlay — blocks tap-to-controls on mobile */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
  background: transparent;
}
/* Play button overlay on Grace video */
.video-play-btn {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.28);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.4s ease;
  border-radius: inherit;
}
.video-play-btn:hover { background: rgba(0,0,0,0.38); }
.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border-radius: 50%;
  font-size: 28px;
  padding-left: 5px; /* optical center for ▶ */
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.play-label {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Placeholder shown when grace-cutout.png hasn't been uploaded yet */
.grace-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 380px;
  min-height: 460px;
  background: linear-gradient(160deg, rgba(0,49,144,0.12) 0%, rgba(10,138,242,0.10) 100%);
  border-radius: 24px 24px 0 0;
  border: 2px dashed rgba(0,49,144,0.25);
  padding: 32px 24px 40px;
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
}
.grace-placeholder svg { opacity: 0.35; }
.grace-placeholder p { margin: 0; line-height: 1.4; opacity: 0.7; }

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 40px 28px 32px;
  background: var(--bg);
  border-radius: 6px;
  border-top: 4px solid var(--gold);
  position: relative;
}
.step-num {
  width: 68px; height: 68px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 900;
  margin: 0 auto 22px;
  box-shadow: 0 4px 18px rgba(31,58,95,0.30);
}
.step-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 22px; }
.step-card p  { color: var(--text-soft); font-size: 17px; }

/* Arrow connectors on desktop */
.steps-grid .step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--gold);
  z-index: 1;
}

/* ── PROBLEM SECTION ─────────────────────────────────────────────── */
.problem-section {
  background: linear-gradient(135deg, #1F3A5F 0%, #1F3A5F 100%);
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(176,141,87,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,141,87,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}
.problem-section .container { position: relative; z-index: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 40px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 22px;
  transition: background 0.15s;
}
.problem-item:hover { background: rgba(255,255,255,0.10); }
.problem-emoji { font-size: 30px; flex-shrink: 0; margin-top: 2px; }
.problem-item h4 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.problem-item p  { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.55; }

.problem-bridge {
  margin-top: 48px;
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.problem-bridge p { color: rgba(255,255,255,0.85); font-size: clamp(17px,1.8vw,21px); margin-bottom: 24px; }

/* ── BENEFITS ────────────────────────────────────────────────────── */
.benefits-section { background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform 0.15s, box-shadow 0.15s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 32px; margin-bottom: 14px; }
.benefit-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 18px; }
.benefit-card p  { color: var(--text-soft); font-size: 15px; line-height: 1.55; }

/* ── WHAT'S INCLUDED ─────────────────────────────────────────────── */
.included-section { background: var(--white); }
.included-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.included-list { margin-top: 24px; }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 19px;
}
.included-item:last-child { border-bottom: none; }
.check-circle {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px;
  flex-shrink: 0; margin-top: 3px;
}
.included-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #2A4A6F 100%);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.included-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.included-visual img {
  max-height: 360px;
  margin: 0 auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.28));
}
.included-stat {
  color: white;
  position: relative; z-index: 1;
  margin-top: 24px;
}
.included-stat strong { font-size: 48px; font-weight: 900; display: block; line-height: 1; }
.included-stat span   { font-size: 15px; opacity: 0.75; }

/* ── CHAPTERS ────────────────────────────────────────────────────── */
.chapters-section { background: var(--bg); }
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 40px;
}
.chapter-card {
  background: var(--white);
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.chapter-card:hover { border-color: var(--gold); transform: translateX(4px); }
.chapter-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px;
  flex-shrink: 0;
}
.chapter-info h4 { color: var(--navy); margin-bottom: 4px; font-size: 17px; }
.chapter-info p  { color: var(--text-soft); font-size: 15px; line-height: 1.5; }

/* ── MEET GRACE ──────────────────────────────────────────────────── */
.grace-section { background: var(--white); }
.grace-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grace-image-wrap { position: relative; text-align: center; }
.grace-blob {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.grace-blob img {
  width: 100%;
  height: auto;
  display: block;
}
.grace-content p { color: var(--text-soft); margin-bottom: 14px; }
.grace-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trait-pill {
  background: rgba(176,141,87,0.10);
  color: var(--gold);
  border-radius: var(--pill);
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid rgba(176,141,87,0.2);
}

/* ── WHY SECTION ─────────────────────────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, #2A4A6F 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.why-section .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 40px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon { font-size: 38px; margin-bottom: 14px; }
.why-card h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.55; }

/* ── SOCIAL PROOF ────────────────────────────────────────────────── */
.proof-section { background: var(--bg); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.proof-card-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .proof-card-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.proof-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(17px,1.7vw,20px);
  font-weight: 800;
  color: var(--text);
  transition: color 0.15s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-chevron {
  width: 34px; height: 34px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: transform 0.25s, background 0.15s, color 0.15s;
  color: var(--text-soft);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  color: white;
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-body-inner {
  padding-bottom: 24px;
  color: var(--text-soft);
  font-size: clamp(16px,1.7vw,19px);
  line-height: 1.75;
}

/* ── SUPPORT ─────────────────────────────────────────────────────── */
.support-section { background: var(--bg); }
.support-card {
  background: var(--white);
  border-radius: 6px;
  padding: 52px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.support-icon { font-size: 52px; margin-bottom: 18px; }
.support-card h3 { margin-bottom: 12px; }
.support-card p  { color: var(--text-soft); font-size: 18px; margin-bottom: 22px; line-height: 1.65; }
.support-email {
  display: inline-block;
  background: rgba(176,141,87,0.09);
  color: var(--gold);
  border-radius: var(--pill);
  padding: 13px 30px;
  font-weight: 800;
  font-size: 18px;
  border: 1.5px solid rgba(176,141,87,0.2);
  transition: background 0.15s;
}
.support-email:hover { background: rgba(176,141,87,0.16); text-decoration: none; }

/* ── FINAL CTA ───────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #1F3A5F 0%, var(--navy) 50%, #2A4A6F 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(176,141,87,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,141,87,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: var(--white); margin-bottom: 10px; }
.final-cta .sub { color: rgba(255,255,255,0.72); font-size: clamp(17px,1.8vw,20px); margin-bottom: 24px; }
.final-price {
  font-size: clamp(56px,8vw,88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 10px 0 28px;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.final-price sup { font-size: 0.42em; vertical-align: super; font-weight: 700; }

.final-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.ft-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
}
.ft-item .fi { font-size: 18px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 52px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}
.footer-brand .signature { color: var(--white); display: block; margin-bottom: 6px; font-family: 'Arial', 'Helvetica', sans-serif; }
.footer-brand .tagline   { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-brand .email-link { display: inline-block; margin-top: 12px; font-size: 15px; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 15px; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%);
  padding: 56px 0;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: clamp(28px,4vw,44px); }
.legal-hero p  { color: rgba(255,255,255,0.72); font-size: 17px; margin-top: 10px; }

.legal-body { padding: 96px 0; }
.legal-box {
  background: var(--white);
  border-radius: 6px;
  padding: 52px 56px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.legal-box h2 { font-family: 'Arial', 'Helvetica', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 36px; margin-bottom: 12px; }
.legal-box p, .legal-box li { color: var(--text-soft); font-size: 17px; line-height: 1.8; margin-bottom: 12px; }
.legal-box ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }

/* ── THANK-YOU PAGE ──────────────────────────────────────────────── */
.ty-hero {
  background: linear-gradient(135deg, #1F3A5F 0%, var(--navy) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ty-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(176,141,87,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,141,87,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ty-hero .container { position: relative; z-index: 1; }
.success-icon {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 36px rgba(176,141,87,0.45);
  animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty-hero h1  { color: var(--white); margin-bottom: 12px; }
.ty-hero .sub { color: rgba(255,255,255,0.88); font-size: clamp(17px,1.8vw,21px); max-width: 540px; margin: 0 auto; }

.ty-body { padding: 96px 0; }
.ty-card {
  background: var(--white);
  border-radius: 6px;
  padding: 44px 48px;
  max-width: 700px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow);
}
.ty-card h2 { color: var(--navy); margin-bottom: 24px; font-size: 26px; }
.next-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.next-row:last-child { border-bottom: none; }
.next-num {
  width: 48px; height: 48px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px;
  flex-shrink: 0;
}
.next-row h4 { color: var(--navy); margin-bottom: 4px; }
.next-row p  { color: var(--text-soft); font-size: 16px; }

.grace-note {
  background: var(--navy);
  border-radius: 6px;
  padding: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.grace-note p { color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.7; }
.grace-note strong { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner       { grid-template-columns: 1fr; }
  /* Fix grid min-width overflow bug — items must be allowed to shrink */
  .hero-content     { padding-bottom: 0; min-width: 0; }
  .hero-image           { justify-content: center; margin-top: 24px; min-width: 0; width: 100%; align-self: auto; }
  .hero-image img       { max-height: 380px; }
  .hero-video-wrap      { max-height: 380px; }
  .steps-grid       { grid-template-columns: 1fr; }
  .steps-grid .step-card::after { display: none; }
  .problem-grid     { grid-template-columns: 1fr; }
  .included-inner   { grid-template-columns: 1fr; }
  .grace-inner      { grid-template-columns: 1fr; }
  .chapters-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-inner     { grid-template-columns: 1fr; }
  .footer-links     { align-items: flex-start; }
}

@media (max-width: 640px) {
  /* Nav: shrink logo text so it fits on one line */
  .nav-logo .signature  { font-size: 15px; }
  .nav-cta              { font-size: 13px !important; padding: 9px 16px !important; }

  /* Hero: remove min-height and tighten padding */
  .hero                 { min-height: 0; padding: 32px 0 0; }
  .hero-inner           { padding: 0 16px; gap: 20px; }
  .hero-content         { min-width: 0; overflow: hidden; }
  .hero-image           { width: 100%; margin-top: 16px; }
  /* Video: square, full width, capped height */
  .hero-video-wrap      { width: 100%; max-height: none; aspect-ratio: 1 / 1; }
  /* CTA button: full-width on mobile so it never overflows */
  #enroll .btn, .hero-content .btn-primary {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }

  section           { padding: 56px 0; }
  .btn-lg           { padding: 18px 32px !important; font-size: 19px !important; }
  .why-grid         { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .final-price      { font-size: 56px; }
  .legal-box        { padding: 28px 20px; }
  .support-card     { padding: 32px 20px; }
  .ty-card          { padding: 28px 20px; }
  .grace-note       { padding: 24px 20px; }
  .hero-bubble, .email-box { max-width: 100%; box-sizing: border-box; }
}
