/* ============================================
   CFA Homeschool Financial Literacy Program
   ============================================ */

:root {
  --green: hsl(152, 44%, 34%);
  --green-dark: hsl(152, 44%, 28%);
  --green-light: hsl(152, 44%, 94%);
  --green-rgb: 48, 125, 87;
  --gold: hsl(38, 92%, 50%);
  --gold-hover: hsl(38, 92%, 45%);
  --gold-light: hsl(38, 80%, 93%);
  --amber: hsl(30, 85%, 52%);
  --amber-light: hsl(30, 85%, 93%);
  --cream: hsl(40, 40%, 96%);
  --cream-dark: hsl(40, 33%, 93%);
  --bg: hsl(40, 33%, 98%);
  --text: hsl(220, 25%, 18%);
  --text-light: hsl(220, 12%, 45%);
  --white: #ffffff;
  --red-light: hsl(0, 70%, 94%);
  --red: hsl(0, 60%, 50%);
  --orange-light: hsl(25, 80%, 93%);
  --orange: hsl(25, 75%, 50%);
  --blue-light: hsl(215, 70%, 93%);
  --blue: hsl(215, 65%, 48%);
  --pink-light: hsl(330, 60%, 94%);
  --pink: hsl(330, 55%, 50%);
  --purple-light: hsl(265, 50%, 94%);
  --purple: hsl(265, 45%, 50%);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-label--light { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--green-rgb), 0.3);
}
.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green-light);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: hsl(220, 15%, 80%);
}
.btn--outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav--scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 52px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--green); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: var(--cream);
}
.hero__deco {
  position: absolute;
  font-size: 6rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.hero__deco--1 { top: 15%; right: 8%; transform: rotate(-15deg); }
.hero__deco--2 { bottom: 10%; left: 5%; font-size: 4rem; transform: rotate(10deg); }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__blob--1 {
  width: 300px;
  height: 300px;
  background: hsl(38, 80%, 85%);
  opacity: 0.3;
  top: -60px;
  right: -80px;
  filter: blur(60px);
}
.hero__blob--2 {
  width: 200px;
  height: 200px;
  background: var(--green);
  opacity: 0.06;
  bottom: 20%;
  left: -40px;
  filter: blur(40px);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(var(--green-rgb), 0.15);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero__heading em {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero__stat svg { color: var(--green); flex-shrink: 0; }
.hero__stat strong {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}
.hero__stat-emoji { font-size: 1.1rem; }

/* ════════════════════════════════════════════
   PAIN POINTS
   ════════════════════════════════════════════ */
.pain {
  padding: 5rem 0;
  background: var(--bg);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pain__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.pain__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  margin-bottom: 1rem;
}
.pain__icon--red { background: var(--red-light); color: var(--red); }
.pain__icon--orange { background: var(--orange-light); color: var(--orange); }
.pain__icon--amber { background: var(--amber-light); color: var(--amber); }
.pain__icon--green { background: var(--green-light); color: var(--green); }
.pain__card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pain__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.pain__quote {
  text-align: center;
  padding: 2rem;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--green-rgb), 0.1);
}
.pain__quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.pain__quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════
   PHILOSOPHY
   ════════════════════════════════════════════ */
.philosophy {
  padding: 5rem 0;
  background: var(--cream);
}
.philosophy__body {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.philosophy__body p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.philosophy__body strong { color: var(--text); }
.philosophy__foundation {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.philosophy__foundation-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.philosophy__book-icon {
  font-size: 2rem;
  line-height: 1;
}
.philosophy__foundation-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.philosophy__foundation-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.philosophy__scripture blockquote {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.philosophy__cross {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.philosophy__scripture blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.philosophy__scripture blockquote cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}
.philosophy__scripture-note {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

/* ════════════════════════════════════════════
   PROGRAM
   ════════════════════════════════════════════ */
.program {
  position: relative;
  padding: 5rem 0;
  background: var(--bg);
  overflow: hidden;
}
.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.program__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.program__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.program__card--pink  { border-top-color: var(--pink); }
.program__card--green { border-top-color: var(--green); }
.program__card--blue  { border-top-color: var(--blue); }
.program__card--gold  { border-top-color: var(--gold); }
.program__card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.program__level {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--cream-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
}
.program__ages {
  font-size: 0.8rem;
  color: var(--text-light);
}
.program__save-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}
.program__card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.program__card > p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.program__checklist { display: grid; gap: 0.5rem; }
.program__checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.program__checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--green);
}
.program__deco {
  position: absolute;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.program__deco--1 { bottom: 25%; right: 3%; transform: rotate(12deg); }
.program__deco--2 { top: 30%; left: 2%; font-size: 3.5rem; transform: rotate(-8deg); }
.program__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program__feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.program__feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: 0.625rem;
}
.program__feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.program__feature p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════════════ */
.video {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, hsl(152, 50%, 22%) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.video::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,152,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.video__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.video__inner--portrait {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}
.video__player--portrait {
  position: relative;
}
.video__embed {
  position: relative;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
}
.video__embed::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.3;
}
.video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video__thumb {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video__play svg { margin-left: 4px; }
.video__play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(217,152,11,0.4);
}
.video__click-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.video__speaker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.video__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video__speaker strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}
.video__speaker span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.video__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.video__heading em {
  color: var(--gold);
  font-style: italic;
}
.video__quote {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
.video__quote p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.video__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}
.video__list {
  margin-bottom: 0;
}
.video__list h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.video__list ol { display: grid; gap: 0.6rem; }
.video__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.video__num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.test {
  padding: 5rem 0;
  background: var(--cream);
}
.test__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.test__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.test__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.test__quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.25;
}
.test__quote-mark--end {
  text-align: right;
  margin-top: -0.5rem;
}
.test__quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0.25rem 0;
}
.test__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.test__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.test__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.test__location {
  display: block;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
}
.test__detail {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}
.test__trust {
  text-align: center;
}
.test__trust-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.test__trust-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.test__trust-stats div {
  font-size: 0.9rem;
  color: var(--text-light);
}
.test__trust-stats strong {
  color: var(--green);
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.cta {
  padding: 5rem 0;
  background: var(--bg);
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.cta__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cta__card--featured {
  border: 2px solid var(--green);
}
.cta__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.cta__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.cta__card-icon--green { background: var(--green-light); color: var(--green); }
.cta__card-icon--amber { background: var(--amber-light); color: var(--amber); }
.cta__card-icon--gold  { background: var(--gold-light); color: var(--gold-hover); }
.cta__card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.cta__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.cta__call {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cta__call svg {
  color: var(--green);
  flex-shrink: 0;
}
.cta__call a {
  color: var(--green);
  transition: color 0.2s;
}
.cta__call a:hover {
  color: var(--green-dark);
}
.cta__notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold-light);
  border: 1px solid rgba(217,152,11,0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  max-width: 640px;
  margin: 0 auto;
}
.cta__notice span {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.cta__notice strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.cta__notice p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: hsl(152, 44%, 16%);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.5rem; }
.footer__col li {
  font-size: 0.9rem;
}
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contact svg { flex-shrink: 0; opacity: 0.5; }
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__heart span { color: hsl(0, 80%, 60%); }

/* ════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }

  .hero { padding: 7rem 0 3.5rem; }
  .pain__grid { grid-template-columns: 1fr; }
  .program__grid { grid-template-columns: 1fr; }
  .program__features { grid-template-columns: 1fr; }
  .video__inner { grid-template-columns: 1fr; }
  .video__inner--portrait { grid-template-columns: 1fr; gap: 2.5rem; }
  .video__inner--portrait .video__info { order: 1; }
  .video__inner--portrait .video__player { order: 2; }
  .video__embed { max-width: 320px; margin: 0 auto; }
  .cta__grid { grid-template-columns: 1fr; }
  .test__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { flex-direction: column; gap: 0.75rem; }
  .cta__notice { flex-direction: column; text-align: center; }
}
