/* ============================================
   HUNTER DONIA WEBSITE — GLOBAL STYLES
   ============================================ */

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Custom Fonts --- */
@font-face {
  font-family: 'Eyesome Script';
  src: url('Eyesome Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bauer Bodoni';
  src: url('Bauer Bodoni Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Homepage fonts */
  --font-script: 'Eyesome Script', cursive;
  /* Sage greens */
  --sage: #8a9a7b;
  --sage-dark: #6b7d5e;
  --sage-deeper: #4e5e43;
  --sage-light: #a8b89b;
  --sage-pale: #dce4d6;

  /* Rose / blush */
  --rose: #c9a8a0;
  --rose-dark: #b08e86;
  --rose-light: #e0ccc7;
  --rose-pale: #f6f0ee;
  --rose-bg: #faf6f4;

  /* Teal / blue accent */
  --teal: #6aa6a6;
  --teal-light: #9cd6d6;
  --teal-pale: #dff0f0;

  /* Orange accent */
  --orange: #ffab5e;
  --orange-light: #ffc68a;
  --orange-pale: #fff3e6;

  /* Neutrals */
  --cream: #faf7f5;
  --warm-white: #fefcfb;
  --charcoal: #3a3a3a;
  --text: #4a4540;
  --text-light: #7a746e;
  --text-lighter: #a09890;
  --border: #e8e0db;
  --border-light: #f0ebe8;

  /* Gold accent */
  --gold: #c4a96a;
  --gold-light: #ddc78e;

  /* Typography */
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1140px;
  --container-narrow: 780px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-serif);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.8;
  font-size: 19px;
  overflow-x: hidden;
  text-wrap: pretty;
}

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

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

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Section Base --- */
.section {
  padding: var(--section-pad) 0;
}

/* Anchor offset for fixed nav */
[id] {
  scroll-margin-top: 80px;
}

.section--cream {
  background: var(--cream);
}

.section--rose {
  background: var(--rose-pale);
}

.section--sage {
  background: var(--sage-deeper);
  color: var(--cream);
}

.section--sage .section-label {
  color: var(--sage-pale);
}

/* --- Decorative Elements --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.ornament__line {
  width: 40px;
  height: 1px;
  background: var(--sage);
  opacity: 0.5;
}

.ornament__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
}

/* --- Typography --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.headline-xl {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sage-deeper);
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-deeper);
  letter-spacing: -0.01em;
}

.headline-md {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--sage-deeper);
}

.headline-sm {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--sage-deeper);
}

.body-lg {
  font-size: 21px;
  line-height: 1.8;
  color: var(--text);
}

.body-md {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
}

.body-sm {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-sage { color: var(--sage-deeper); }
.text-light { color: var(--text-light); }
.text-cream { color: var(--cream); }

.italic { font-style: italic; }
.bold { font-weight: 700; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #5a6b4e 0%, var(--sage-deeper) 100%);
  color: var(--cream);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--sage-deeper) 0%, #3d4a35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(78, 94, 67, 0.35);
}

.btn--white {
  background: #fff;
  color: var(--sage-deeper);
}

.btn--white:hover {
  background: var(--cream);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--sage-deeper);
  border: 1.5px solid var(--sage);
}

.btn--outline:hover {
  background: linear-gradient(135deg, #5a6b4e 0%, var(--sage-deeper) 100%);
  color: var(--cream);
  border-color: var(--sage-deeper);
}

.btn--large {
  padding: 22px 60px;
  font-size: 15px;
  letter-spacing: 2.5px;
}

.btn__arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.nav--scrolled {
  background: rgba(250, 247, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--sage-deeper);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav__logo-divider {
  width: 24px;
  height: 1px;
  background: var(--sage);
  opacity: 0.4;
}

.nav__logo-text {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deeper);
  padding: 10px 28px;
  border: 1.5px solid var(--sage);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--sage-deeper);
  color: var(--cream);
  border-color: var(--sage-deeper);
}

/* --- Nav Back Button --- */
.nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav__back:hover {
  color: var(--sage-deeper);
  transform: translateX(-2px);
}

.nav__back-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav__back:hover .nav__back-icon {
  transform: translateX(-2px);
}

/* --- Nav Visible (subpages — show immediately) --- */
.nav--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(250, 247, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.nav--visible .nav__inner {
  position: relative;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.hero__logo {
  display: block;
  max-width: clamp(240px, 28vw, 380px);
  height: auto;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--sage-deeper);
  letter-spacing: -0.005em;
  margin-bottom: 32px;
  text-align: center;
  text-wrap: balance;
}

.hero__headline em {
  font-style: italic;
  color: var(--sage);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero__scroll-hint {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-lighter);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: white;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.hero__float-stat {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--sage-deeper);
  font-weight: 400;
}

.hero__float-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--sage-deeper);
  padding: 48px 0;
}

.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stats-bar__item {
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.stats-bar__number {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  opacity: 0.8;
}

/* ============================================
   PAIN POINTS ("You've outgrown the basics")
   ============================================ */
.pain {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.pain__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.pain__header .headline-lg {
  margin-bottom: 20px;
}

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

.pain-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: var(--sage-pale);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--sage-deeper);
  font-size: 20px;
}

.pain-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--sage-deeper);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pain-card__image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 16/10;
  margin-bottom: 24px;
}

.pain-card__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   "YOU DON'T NEED" SECTION
   ============================================ */
.dont-need {
  padding: var(--section-pad) 0;
  background: var(--rose-pale);
  text-align: center;
}

.dont-need__header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.dont-need__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.dont-need__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 18px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dont-need__x {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--rose-dark);
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dont-need__text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text);
}

/* ============================================
   INFLECTION POINT
   ============================================ */
.inflection {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.inflection__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.inflection__visual {
  position: relative;
}

.inflection__image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 5/6;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.inflection__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--sage-deeper);
  color: var(--cream);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(78, 94, 67, 0.3);
}

.inflection__badge-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.inflection__badge-text {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.inflection__content {
  max-width: 500px;
}

.inflection__content .section-label {
  margin-bottom: 20px;
}

.inflection__content .headline-lg {
  margin-bottom: 24px;
}

.inflection__content .body-lg {
  margin-bottom: 36px;
  color: var(--text-light);
}

.inflection__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inflection__list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.inflection__list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deeper);
  font-size: 14px;
  margin-top: 2px;
}

.inflection__list-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================
   "WHAT IS MASTERMIND" — FEATURES
   ============================================ */
.features {
  padding: clamp(50px, 6vw, 80px) 0 clamp(30px, 4vw, 50px) 0;
  background: var(--sage-deeper);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 184, 155, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 168, 160, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.features__header .headline-lg {
  color: var(--cream);
  margin-bottom: 10px;
}

.features__header .headline-xl {
  color: var(--cream);
  margin-bottom: 16px;
}

.features__tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.features__desc {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.features__desc--highlight {
  font-size: 23px;
  line-height: 1.7;
  color: var(--cream);
}

/* Stacked value layout */
.features__stack {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.feature-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 16px 0;
}

.feature-row__number {
  font-family: var(--font-serif);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  padding-top: 4px;
}

.feature-row__content {
  flex: 1;
}

.feature-row__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row__list li {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
}

.feature-row__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
}

.feature-row__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   "WHAT IS MASTERMIND" — FEATURES V2 (no animations)
   ============================================ */
.features-v2 {
  padding: clamp(50px, 6vw, 80px) 0 clamp(30px, 4vw, 50px) 0;
  background: var(--sage-deeper);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.features-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 184, 155, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 168, 160, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.features-v2__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.features-v2__headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  text-align: center;
  margin-bottom: 10px;
}

.features-v2__tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--sage-light);
  text-align: center;
  margin-bottom: 32px;
}

.features-v2__subhead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 24px;
}

.features-v2__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.features-v2__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-v2__item:last-child {
  border-bottom: none;
}

.features-v2__num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  padding-top: 4px;
}

.features-v2__body {
  flex: 1;
}

.features-v2__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}

.features-v2__title-sub {
  opacity: 0.8;
}

.features-v2__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.features-v2__body ul li {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
}

.features-v2__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
}

.features-v2__img {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: center;
}

.features-v2__img span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 12px;
}

.features-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-v2__bottom {
  font-size: 23px;
  line-height: 1.7;
  color: var(--cream);
  margin-top: 32px;
  text-align: center;
}

/* Legacy card styles kept for reference */
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__list li {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
}

.feature-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
}

.video-section__header {
  max-width: 600px;
  margin: 0 auto 50px;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.video-frame__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.video-frame__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.video-frame__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(78, 94, 67, 0.3);
  transition: transform 0.3s ease;
}

.video-frame__inner:hover .video-frame__play {
  transform: scale(1.08);
}

.video-frame__play svg {
  fill: var(--cream);
  margin-left: 4px;
}

.video-frame__label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lighter);
}

/* ============================================
   MASTERMIND METHOD (5 Steps)
   ============================================ */
.method {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.method__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

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

.method-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.method-step:last-child {
  margin-bottom: 0;
}

.method-step:nth-child(even) {
  direction: rtl;
}

.method-step:nth-child(even) > * {
  direction: ltr;
}

.method-step__visual {
  position: relative;
}

.method-step__image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.method-step__number {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-deeper);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(78, 94, 67, 0.3);
  z-index: 2;
}

.method-step:nth-child(even) .method-step__number {
  left: auto;
  right: -14px;
}

.method-step__content {
  max-width: 480px;
}

.method-step__label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.method-step__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--sage-deeper);
  margin-bottom: 20px;
  line-height: 1.2;
}

.method-step__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   QUALIFIERS ("Are you the right fit?")
   ============================================ */
.qualifiers {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.qualifiers__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.qualifiers__content {
  max-width: 500px;
}

.qualifiers__content .section-label {
  margin-bottom: 20px;
}

.qualifiers__content .headline-lg {
  margin-bottom: 20px;
}

.qualifiers__content .body-lg {
  color: var(--text-light);
  margin-bottom: 10px;
}

.qualifiers__reassurance {
  font-style: italic;
  color: var(--text-light);
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.7;
}

.qualifiers__image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 16/10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.qualifiers__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}

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

.qualifier-card--wide {
  width: 100%;
}

.qualifier-card__list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}

.qualifier-card {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.qualifier-card__header {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.qualifier-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qualifier-card__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.qualifier-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deeper);
  font-size: 12px;
  margin-top: 1px;
}

.qualifiers__cards-header {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin: 0 0 24px;
  width: 100%;
}

.qualifiers__arrow {
  display: inline-block;
  font-size: 24px;
  animation: arrowBounce 1.5s ease infinite;
  margin-left: 8px;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.qualifier-card__check--open {
  background: var(--rose-pale);
  border: 1.5px solid var(--border);
}

/* Interactive checkboxes */
.qualifier-card__hint {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin: 8px 0 16px;
}

.qualifier-card__checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--rose-pale);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.qualifier-card__checkbox:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
}

.qualifier-card__checkbox-icon {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
  color: var(--sage-deeper);
}

.qualifier-card__checkbox[aria-pressed="true"] {
  background: var(--sage-pale);
  border-color: var(--sage);
}

.qualifier-card__checkbox[aria-pressed="true"] .qualifier-card__checkbox-icon {
  opacity: 1;
  transform: scale(1);
}

.qualifier-card__result {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--sage-pale);
  border: 1.5px solid var(--sage);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--sage-deeper);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.qualifier-card__result--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qualifier-card__result-icon {
  font-size: 20px;
  color: var(--sage-deeper);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--rose-pale);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 380px;
  max-width: 420px;
  background: white;
  border-radius: 20px;
  padding: 36px;
  scroll-snap-align: start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card--wide {
  max-width: 100%;
  min-width: 0;
  margin: 40px 0;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 54px;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deeper);
  font-family: var(--font-serif);
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-card__role {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-lighter);
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text);
}

.testimonials__btn:hover {
  background: var(--sage-deeper);
  border-color: var(--sage-deeper);
  color: var(--cream);
}

/* Continuous marquee slider */
.testimonials__marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.testimonials__marquee:hover {
  animation-play-state: paused;
}

.testimonials__marquee-track {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Centered testimonial grid (non-scrolling) */
.testimonials--centered .testimonials__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonials--centered .testimonials__grid--4col {
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
}

.testimonials--centered .testimonial-card {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
}

.testimonials--centered .testimonial-card__text {
  flex: 1;
}

/* ============================================
   ABOUT / HUNTER'S STORY
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 3/4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.about__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background: var(--sage-pale);
  z-index: -1;
}

.about__content {
  max-width: 500px;
}

.about__content .section-label {
  margin-bottom: 20px;
}

.about__content .headline-lg {
  margin-bottom: 24px;
}

.about__text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about__signature {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--sage-deeper);
  margin-top: 32px;
}

/* ============================================
   RESULTS REPEAT BAR
   ============================================ */
.results-bar {
  padding: 80px 0;
  background: var(--sage-deeper);
  text-align: center;
}

.results-bar__header {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.results-bar__header .headline-md {
  color: var(--cream);
  margin-bottom: 10px;
}

.results-bar__header .body-md {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   INVESTMENT / PRICING
   ============================================ */
.pricing {
  padding: clamp(50px, 6vw, 80px) 0;
  background: var(--cream);
  text-align: center;
}

.pricing__header {
  max-width: 600px;
  margin: 0 auto 36px;
}

.pricing__logo {
  display: block;
  max-width: clamp(200px, 22vw, 320px);
  height: auto;
  margin: 0 auto 20px;
}

.pricing__cards {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing__cards--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

.pricing-card {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--sage);
  box-shadow: 0 20px 60px rgba(78, 94, 67, 0.12);
}

.pricing-card--featured .pricing-card__badge {
  display: block;
}

.pricing-card__badge {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-deeper);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--sage-deeper);
  margin-bottom: 6px;
}

.pricing-card__term {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-lighter);
  margin-bottom: 24px;
}

.pricing-card__btn {
  width: 100%;
}

.pricing-card__note {
  font-size: 13px;
  color: var(--text-lighter);
  font-style: italic;
}

.pricing__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

.pricing__roi {
  max-width: 580px;
  margin: 0 auto 32px;
  background: white;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--border-light);
}

.pricing__roi-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.pricing__roi-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.pricing__roi-highlight {
  color: var(--sage-deeper);
  font-weight: 700;
}

.pricing__deposit {
  font-size: 14px;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--sage-deeper);
  line-height: 1.4;
  padding-right: 20px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--sage);
}

.faq-item--open .faq-item__icon {
  background: var(--sage-deeper);
  border-color: var(--sage-deeper);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 600px;
  padding-bottom: 28px;
}

.faq-item__answer-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 680px;
}

.faq-item__answer-text p {
  margin-bottom: 12px;
}

.faq-item__answer-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   APPLICATION / FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
  background: var(--sage-deeper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 168, 160, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.final-cta .headline-lg {
  color: var(--cream);
  margin-bottom: 20px;
}

.final-cta__text {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__deposit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.final-cta .btn--primary {
  background: var(--cream);
  color: var(--sage-deeper);
}

.final-cta .btn--primary:hover {
  background: white;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: #3a4433;
  text-align: center;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--sage-light);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS (scroll-reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger--visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger--visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.stagger--visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.stagger--visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.stagger--visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.stagger--visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.stagger--visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }
.stagger--visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.stagger--visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.61s; }
.stagger--visible > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.68s; }
.stagger--visible > *:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.stagger--visible > *:nth-child(n+12) { opacity: 1; transform: translateY(0); transition-delay: 0.80s; }

/* Count-up animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero__float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
  }

  .inflection__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inflection__visual {
    max-width: 450px;
    margin: 0 auto;
  }

  .inflection__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials--centered .testimonials__grid--4col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .qualifiers__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .qualifiers__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .qualifier-card__list--grid {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-step:nth-child(even) {
    direction: ltr;
  }

  .method-step__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .method-step__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .method-step__number {
    left: 50%;
    transform: translateX(-50%);
  }

  .method-step:nth-child(even) .method-step__number {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .pain__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .features-v2__item {
    flex-direction: column;
    gap: 12px;
  }

  .features-v2__num {
    width: auto;
  }

  .features-v2__img {
    width: 100%;
    height: auto;
    align-items: stretch;
  }

  .features-v2__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar__item:not(:last-child)::after {
    display: none;
  }

  .dont-need__items {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .testimonials--centered .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials--centered .testimonials__grid--4col {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav__cta {
    display: none;
  }

  .hero::before {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
  }

  .hero::after {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .btn--large {
    padding: 18px 40px;
    font-size: 13px;
  }

  .hero__float-card {
    display: none;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 28px;
  }

  .nav__back-text {
    display: none;
  }
}


/* ============================================
   HOMEPAGE — STYLES
   Scoped via body.page-home where needed
   Prefixed with hp- to avoid collisions
   ============================================ */

/* --- Homepage typography overrides --- */
body.page-home {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

body.page-home .headline-xl,
body.page-home .headline-lg,
body.page-home .headline-md,
body.page-home .headline-sm {
  font-family: 'Bauer Bodoni', 'Georgia', 'Times New Roman', serif;
}

.script-accent {
  font-family: var(--font-script);
  font-style: normal;
}

.script-accent--orange {
  color: var(--orange);
}

/* --- Homepage Nav --- */
.hp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hp-nav--scrolled {
  background: rgba(254, 252, 251, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.hp-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-nav__logo-img {
  height: 100px;
  width: auto;
}

.hp-nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hp-nav__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.hp-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.hp-nav__link:hover {
  color: var(--sage-deeper);
}

.hp-nav__link:hover::after {
  width: 100%;
}

.hp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--sage-deeper);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.hp-nav__cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(78, 94, 67, 0.25);
}

.hp-nav__cta--outline {
  background: transparent;
  color: var(--sage-deeper);
  border: 1.5px solid var(--sage);
}

.hp-nav__cta--outline:hover {
  background: var(--sage-deeper);
  color: var(--cream);
  border-color: var(--sage-deeper);
}

.hp-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hp-nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Homepage Hero --- */
.hp-hero {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: clamp(90px, 10vw, 120px) 0 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 60%, var(--rose-pale) 100%);
  overflow: hidden;
  position: relative;
}

.hp-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.hp-hero__headline {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-deeper);
  margin-bottom: 20px;
  text-align: center;
}

.hp-hero__script {
  font-family: var(--font-script);
  color: var(--sage);
  font-size: 1.1em;
}

.hp-hero__sub {
  font-size: 20px;
  color: var(--text-light);
  margin-top: 48px;
  margin-bottom: 8px;
  line-height: 1.7;
  text-align: center;
}
.hp-hero__youin {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.hp-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-hero__visual {
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hp-hero__photo {
  width: auto;
  height: 90%;
  max-height: 80vh;
  object-fit: contain;
  object-position: bottom center;
  transform: translate(-72px, 0) scale(1.12);
  transform-origin: top center;
}

.hp-hero__image-frame {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage-pale) 0%, #c8d4be 100%);
  position: relative;
  box-shadow: 0 20px 60px rgba(78, 94, 67, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hp-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--sage-light);
  border-radius: inherit;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Logo Bar (As Seen In) --- */
.logo-bar {
  padding: 12px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logo-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo-bar__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-lighter);
  white-space: nowrap;
}

.logo-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex: 1;
}

.logo-bar__logo {
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s;
}

.logo-bar__logo--lg {
  max-height: 132px;
}

.logo-bar__logo--md {
  max-height: 108px;
}

.logo-bar__logo--sm {
  max-height: 84px;
}

/* --- About Intro --- */
.hp-intro {
  padding: 122px 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hp-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hp-intro__slideshow {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hp-intro__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 75%), linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%), linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 75%), linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%), linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.hp-intro__slide--active {
  opacity: 1;
}

.hp-intro__greeting {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--sage);
  margin-bottom: 12px;
}

.hp-intro__name {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--sage-deeper);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hp-intro__bio {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hp-intro__text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-light);
  margin-top: 24px;
}

.hp-intro__big-statement {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--sage-deeper);
  line-height: 1.2;
  margin-top: 32px;
}

.hp-intro__see-how {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.hp-intro__see-how:hover {
  color: var(--sage-deeper);
}

/* --- Problem Story --- */
.hp-problem {
  padding: var(--section-pad) 0;
  background: var(--sage-deeper);
  position: relative;
  overflow: hidden;
}

.hp-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 125, 94, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hp-problem__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hp-problem__content {
  text-align: center;
}

.hp-problem__image {
  overflow: visible;
}

.hp-problem__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transform: scale(var(--img-scale, 1));
  transform-origin: center;
}

.hp-problem__image--left {
  --img-scale: 1.4;
  --img-opacity: 1;
}
.hp-problem__image--right {
  --img-scale: 1.4;
  --img-opacity: 1;
}

.hp-problem__image--left img { opacity: var(--img-opacity); }
.hp-problem__image--right img { opacity: var(--img-opacity); }

.hp-placeholder--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.3);
}

.hp-problem__pullquote {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  margin-top: 40px;
  line-height: 1.3;
}

.hp-problem__pullquote--bodoni {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
}

/* --- Homepage Pain Cards --- */
.hp-pain {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
  overflow: hidden;
}

.hp-pain__header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 24px;
}

.hp-pain__cards {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-pain-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: visible;
}

.hp-pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hp-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.hp-pain-card:hover::before {
  opacity: 1;
}

.hp-pain-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-pale) 0%, #ffe8cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  box-shadow: 0 2px 8px rgba(255, 171, 94, 0.12);
}

.hp-pain-card__icon svg {
  width: 24px;
  height: 24px;
}

.hp-pain-card__title {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: 20px;
  color: var(--sage-deeper);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hp-pain-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Pain card image */
.hp-pain-card__image {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  margin-bottom: 20px;
}

.hp-pain-card__image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Transparent gradient fade on bottom edge — all pain cards */
.hp-pain-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
  border-radius: 0 0 14px 14px;
}



/* Pain card color variants */
.hp-pain-card--green::before { background: linear-gradient(90deg, var(--sage-light), var(--sage)); }
.hp-pain-card--green .hp-pain-card__icon { background: var(--sage-pale); color: var(--sage-deeper); }
.hp-pain-card--green .hp-pain-card__image .hp-placeholder { background: var(--sage-pale); border-color: var(--sage-light); color: var(--sage); }

.hp-pain-card--blue::before { background: linear-gradient(90deg, var(--teal-light), var(--teal)); }
.hp-pain-card--blue .hp-pain-card__icon { background: var(--teal-pale); color: var(--teal); }
.hp-pain-card--blue .hp-pain-card__image .hp-placeholder { background: var(--teal-pale); border-color: var(--teal-light); color: var(--teal); }

.hp-pain-card--orange::before { background: linear-gradient(90deg, var(--orange-light), var(--orange)); }
.hp-pain-card--orange .hp-pain-card__icon { background: var(--orange-pale); color: var(--orange); }
.hp-pain-card--orange .hp-pain-card__image .hp-placeholder { background: var(--orange-pale); border-color: var(--orange-light); color: var(--orange); }

/* --- Solution Statement --- */
.hp-solution {
  padding: var(--section-pad) 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, var(--rose-pale) 0%, #f0e6e2 50%, var(--rose-pale) 100%);
  overflow: hidden;
}

.hp-solution__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hp-solution__content {
  text-align: center;
}

.hp-solution__image {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}

.hp-solution__text {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
  text-wrap: balance;
}

.hp-solution__text strong {
  font-weight: 700;
}

/* --- Testimonials (homepage version) --- */
.hp-testimonials {
  padding: 0 0 var(--section-pad);
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--warm-white) 40%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hp-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('images/group-photo.png') center center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
}

.hp-testimonials__header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 24px;
}

.hp-testimonials__grid {
  max-width: var(--container);
  margin: 192px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hp-testimonial-card__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.hp-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bauer Bodoni', serif;
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.hp-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

/* --- Podcast Section --- */
.hp-podcast {
  padding: 26px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-pale) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hp-podcast::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -2%;
  width: 30%;
  height: 90%;
  background: url('images/podcast-accent.png') center top / contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
}

.hp-podcast__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-podcast__content {
  padding-left: 60px;
}

.hp-podcast__host {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--sage);
  margin-top: 4px;
}

.hp-podcast__desc {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 24px 0 32px;
}

.hp-podcast__platforms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-podcast__platform-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hp-podcast__platform-link--spotify {
  background: linear-gradient(135deg, #1DB954, #1ed760);
}

.hp-podcast__platform-link--apple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad, #7c3aed);
}

.hp-podcast__platform-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hp-podcast__platform-link svg {
  width: 22px;
  height: 22px;
}

.hp-podcast__embed {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.hp-podcast__embed iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  border: none;
}

.hp-podcast__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 32px;
}

.hp-podcast__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hp-podcast__stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--forest);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hp-podcast__stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Two Offerings (Programs) --- */
.hp-programs {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hp-programs__header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 24px;
}

.hp-programs__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 16px;
  text-wrap: balance;
}

.hp-programs__cards {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hp-program-card {
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.hp-program-card:hover {
  transform: translateY(-4px);
}

.hp-program-card--flagship:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 64px rgba(78, 94, 67, 0.35), 0 4px 12px rgba(78, 94, 67, 0.15);
}

.hp-program-card--light:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hp-program-card--dark {
  background: linear-gradient(160deg, #e6d4ca 0%, #dabeb0 40%, #d0b3a3 100%);
  color: var(--text);
}

.hp-program-card--flagship {
  position: relative;
  box-shadow: 0 12px 48px rgba(78, 94, 67, 0.15), 0 2px 8px rgba(78, 94, 67, 0.08);
  transform: scale(1.02);
  border: 1.5px solid #c9a89a;
}

.hp-program-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-deeper);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(255, 171, 94, 0.3);
}

.hp-program-card--light {
  background: linear-gradient(160deg, #fff4eb 0%, #ffeee0 40%, #ffe4d0 100%);
  border: 1.5px solid var(--border-light);
  color: var(--text);
}

.hp-program-card__logo-wrap {
  text-align: center;
  margin-bottom: 28px;
  padding: 16px 24px;
  border-radius: 16px;
  overflow: hidden;
}

.hp-program-card__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.hp-program-card__body {
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(250,247,245,0.95) 100%);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  flex: 1;
}

.hp-program-card--dark .hp-program-card__body {
  border: 1.5px solid #6b7c5e;
}

.hp-program-card--light .hp-program-card__body {
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf9 100%);
  border: 1.5px solid #a3b44c;
}

.hp-program-card__body .hp-program-card__desc {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--text);
}

.hp-program-card__body .hp-program-card__subtitle {
  color: var(--sage);
}

.hp-program-card__body .hp-program-card__list li {
  color: var(--text-light);
}

.hp-program-card__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-lighter);
}

.hp-program-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.hp-program-card__list li {
  font-size: 15px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.hp-program-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

.hp-program-card--light .hp-program-card__list li::before {
  color: var(--teal);
}

/* Dark card list items use readable color since body has white bg */

.hp-program-card__btn {
  align-self: stretch;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.hp-program-card--dark .hp-program-card__btn {
  background: linear-gradient(135deg, #7a8e6a 0%, #4e5e43 60%, #3d4a35 100%);
  color: var(--cream);
  border: none;
  box-shadow: 0 4px 16px rgba(78, 94, 67, 0.35);
}

.hp-program-card--dark .hp-program-card__btn:hover {
  background: linear-gradient(135deg, #8a9e7a 0%, #5a6b4e 60%, #3d4a35 100%);
  box-shadow: 0 6px 24px rgba(78, 94, 67, 0.45);
}

.hp-program-card--light .hp-program-card__btn {
  background: linear-gradient(135deg, #c8d865 0%, #a3b44c 60%, #8a9a3a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(163, 180, 76, 0.35);
}

.hp-program-card--light .hp-program-card__btn:hover {
  background: linear-gradient(135deg, #d2e270 0%, #b5c44e 60%, #8a9a3a 100%);
  box-shadow: 0 6px 24px rgba(163, 180, 76, 0.45);
}

/* --- My Story Timeline --- */
.hp-story {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
  overflow: hidden;
}

.hp-story__header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 24px;
}

.hp-story__timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hp-story__timeline::before {
  content: '';
  position: absolute;
  left: calc(24px + 120px + 32px + 21px);
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-pale), var(--sage), var(--sage-pale));
}

.hp-story__milestone {
  display: grid;
  grid-template-columns: 120px 42px 1fr;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.hp-story__milestone-photo {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.hp-story__milestone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-story__milestone:last-child {
  margin-bottom: 0;
}

.hp-story__marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 42px;
}

.hp-story__marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deeper) 100%);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--sage), 0 0 12px rgba(138, 154, 123, 0.2);
  z-index: 1;
  flex-shrink: 0;
  margin-top: 6px;
}

.hp-story__milestone--accent .hp-story__marker-dot {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 0 0 2px var(--orange-light), 0 0 12px rgba(255, 171, 94, 0.25);
}

.hp-story__marker-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  white-space: nowrap;
  margin-top: 8px;
  text-align: center;
}

.hp-story__card {
  background: linear-gradient(160deg, #ffffff 0%, var(--cream) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border-light);
  flex: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.hp-story__card--highlight {
  background: linear-gradient(160deg, #5e7050 0%, var(--sage-deeper) 50%, #3d4a35 100%);
  border-color: var(--sage-deeper);
  box-shadow: 0 4px 20px rgba(78, 94, 67, 0.2);
}

.hp-story__card--highlight .hp-story__text {
  color: rgba(255, 255, 255, 0.85);
}

.hp-story__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
}

/* --- Why Me (Critique + Approach) --- */
.hp-whyme {
  position: relative;
  overflow: hidden;
}

.hp-whyme__bg-img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 70%);
}

.hp-whyme__bg-img--right {
  right: -60px;
  top: 9px;
  transform: scale(0.60);
  transform-origin: top right;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 65%);
}

.hp-whyme__bg-img--left {
  left: -19px;
  top: 126px;
  transform: scale(0.50);
  transform-origin: top left;
}

.hp-whyme__critique {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hp-whyme__critique-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hp-whyme__critique-inner .headline-lg {
  margin-bottom: 48px;
}

.hp-whyme__critique-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hp-whyme__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.hp-whyme__point-x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-pale) 0%, #ffe0c0 100%);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.hp-whyme__point p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
}

.hp-whyme__approach {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #5e7050 0%, var(--sage-deeper) 40%, #3d4a35 100%);
}

.hp-whyme__approach-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-whyme__photo {
  border-radius: 24px;
  overflow: hidden;
}

.hp-whyme__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hp-whyme__approach-content .headline-lg {
  color: var(--cream);
  margin-bottom: 36px;
}

.hp-whyme__approach-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-whyme__check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hp-whyme__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(156, 214, 214, 0.2) 0%, rgba(106, 166, 166, 0.25) 100%);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 3px;
}

.hp-whyme__check-item p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Mission Close --- */
.hp-mission {
  padding: clamp(100px, 12vw, 180px) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hp-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 160, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hp-mission__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hp-mission__headline {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--sage-deeper);
  line-height: 1.15;
  margin-bottom: 40px;
}

.hp-mission__body p {
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hp-mission__body p:last-child {
  color: var(--text);
  font-weight: 600;
}

.hp-mission__cta {
  margin-top: 48px;
}

/* --- Homepage Footer --- */
.hp-footer {
  padding: 48px 0;
  background: linear-gradient(180deg, #444 0%, var(--charcoal) 100%);
  color: rgba(255, 255, 255, 0.5);
}

.hp-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-footer__logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
}

.hp-footer__links {
  display: flex;
  gap: 28px;
}

.hp-footer__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hp-footer__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.hp-footer__copy {
  font-size: 12px;
}

.hp-footer__admin {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  margin-left: 8px;
  font-size: 11px;
  transition: color 0.3s ease;
}

.hp-footer__admin:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Homepage Responsive: 1024px --- */
@media (max-width: 1024px) {
  .hp-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hp-hero__actions {
    justify-content: center;
  }

  .hp-hero__photo {
    max-width: 350px;
  }

  .hp-hero__image-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .hp-hero__visual {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .hp-hero__photo {
    transform: none;
  }

  .hp-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hp-intro__slideshow {
    max-width: 400px;
    margin: 0 auto;
  }

  .hp-intro__text,
  .hp-intro__bio,
  .hp-intro__big-statement,
  .hp-intro__see-how {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hp-whyme__approach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hp-whyme__photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .hp-podcast__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 24px;
  }

  .hp-podcast__content {
    padding-left: 0;
  }

  .hp-podcast__platforms {
    justify-content: center;
  }

  .hp-podcast__stats {
    gap: 40px;
  }

  .hp-programs__cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hp-program-card--flagship {
    transform: none;
  }

  .hp-problem__inner {
    grid-template-columns: 1fr;
  }

  .hp-problem__image {
    display: none;
  }

  .hp-solution__inner {
    grid-template-columns: 1fr;
  }

  .hp-solution__image {
    display: none;
  }

}

/* --- Homepage Responsive: 768px --- */
@media (max-width: 768px) {
  .hp-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Give nav a visible background on mobile so hamburger isn't floating */
  .hp-nav {
    background: rgba(254, 252, 251, 0.95);
    backdrop-filter: blur(12px);
  }

  .hp-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 252, 251, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .hp-nav--open .hp-nav__links {
    display: flex;
  }

  .hp-nav__hamburger {
    display: flex;
  }

  .hp-nav__cta {
    display: none;
  }

  /* Add spacing between nav and hero text */
  .hp-hero {
    padding-top: 140px;
  }

  .hp-pain__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide Real Stylists Real Results background image on mobile */
  .hp-testimonials::before {
    display: none;
  }

  .hp-testimonials__grid {
    margin-top: 60px;
  }

  /* Hide podcast accent image on mobile */
  .hp-podcast::before {
    display: none;
  }

  /* Hide Why Most Coaching bg images on mobile */
  .hp-whyme__bg-img {
    display: none;
  }

  /* Hide Hunter teaching photo on mobile */
  .hp-whyme__photo {
    display: none;
  }

  /* Fix My Story — hide empty photo containers and simplify layout */
  .hp-story__milestone {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }

  .hp-story__milestone-photo {
    display: none;
  }

  .hp-story__marker {
    width: 32px;
    flex-shrink: 0;
  }

  .hp-story__marker-label {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .hp-story__card {
    padding: 20px 24px;
    flex: 1;
  }

  .hp-story__timeline::before {
    left: calc(24px + 16px);
  }

  .hp-footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .logo-bar__logos {
    gap: 24px;
    flex-wrap: wrap;
  }

  .logo-bar__inner {
    flex-direction: column;
    gap: 16px;
  }

  /* Mastermind: testimonials 4-col grid to 1 col on mobile */
  .testimonials--centered .testimonials__grid--4col {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Homepage Responsive: 480px --- */
@media (max-width: 480px) {
  .hp-hero__headline {
    font-size: 32px;
  }

  .hp-program-card {
    padding: 24px 20px;
  }

  .hp-program-card__logo-wrap {
    padding: 10px 16px;
    margin-bottom: 14px;
  }

  .hp-program-card__logo {
    max-height: none;
  }

  .hp-program-card__body {
    padding: 18px 20px;
  }

  .hp-program-card__body .hp-program-card__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .hp-program-card__list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .hp-testimonial-card {
    min-width: 280px;
    padding: 28px;
  }

  /* My Story — keep the timeline layout at 480px (same as 768px) */
  .hp-story__timeline::before {
    left: calc(16px + 16px);
  }

  .hp-story__marker {
    width: 28px;
    flex-shrink: 0;
  }

  .hp-story__marker-label {
    font-size: 7px;
    letter-spacing: 0.5px;
  }

  .hp-story__milestone {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  .hp-story__milestone-photo {
    display: none;
  }

  .hp-story__card {
    padding: 16px 18px;
  }

  .hp-whyme__approach-inner {
    gap: 28px;
  }
}

/* --- Waitlist Modal --- */
.waitlist-modal__box {
  background: linear-gradient(160deg, #ffffff 0%, var(--cream) 60%, var(--rose-pale) 100%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.waitlist-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-lighter);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.waitlist-modal__close:hover {
  background: var(--rose-pale);
  color: var(--text);
}

.waitlist-modal__title {
  font-family: 'Bauer Bodoni', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--sage-deeper);
  margin-bottom: 8px;
  text-align: center;
}

.waitlist-modal__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
}

/* --- ConvertKit Waitlist Form Branded Styles --- */
.waitlist-form .formkit-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-form .formkit-input {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.waitlist-form .formkit-input::placeholder {
  color: var(--text-lighter);
}

.waitlist-form .formkit-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 123, 0.15);
}

.waitlist-form .formkit-submit {
  width: 100%;
  padding: 16px 24px;
  margin-top: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deeper) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(78, 94, 67, 0.25);
  position: relative;
}

.waitlist-form .formkit-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(78, 94, 67, 0.35);
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
}

.waitlist-form .formkit-spinner {
  display: none;
}

.waitlist-form .formkit-alert-error {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: #c0392b;
  font-size: 14px;
}

@media (max-width: 480px) {
  .waitlist-modal__box {
    padding: 36px 24px 28px;
  }

  .waitlist-modal__title {
    font-size: 24px;
  }
}


/* ============================================
   MSM SALES PAGE — STYLES
   Scoped via body.page-msm where needed
   ============================================ */

body.page-msm {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

body.page-msm .headline-xl,
body.page-msm .headline-lg,
body.page-msm .headline-md,
body.page-msm .headline-sm {
  font-family: 'Bauer Bodoni', 'Georgia', 'Times New Roman', serif;
}

/* --- MSM Reusable Utility Classes --- */
.msm-rounded-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.msm-rounded-frame img {
  width: 100%;
  display: block;
}

.msm-rounded-frame--transparent {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.msm-rounded-frame--transparent img {
  mix-blend-mode: multiply;
}

.msm-included-disclaimer {
  font-style: italic;
  font-size: 15px;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.msm-wall-disclaimer {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.msm-section {
  padding: var(--section-pad) 0;
}

.msm-section--cream {
  background: var(--cream);
}

.msm-section--warm {
  background: var(--warm-white);
}

.msm-section--rose {
  background: var(--rose-pale);
}

.msm-section--flush-top {
  padding-top: 0;
}

.msm-section--flush-bottom {
  padding-bottom: 0;
}

.msm-section--compact {
  padding: 60px 0;
}

.msm-mb-xs { margin-bottom: 8px; }
.msm-mb-sm { margin-bottom: 12px; }
.msm-mb-md { margin-bottom: 16px; }
.msm-mb-lg { margin-bottom: 24px; }
.msm-mb-xl { margin-bottom: 32px; }
.msm-mb-2xl { margin-bottom: 40px; }
.msm-mb-3xl { margin-bottom: 48px; }
.msm-mb-4xl { margin-bottom: 120px; }
.msm-mt-lg { margin-top: 24px; }
.msm-mt-xl { margin-top: 32px; }
.msm-mt-2xl { margin-top: 40px; }
.msm-mt-3xl { margin-top: 48px; }
.msm-mt-4xl { margin-top: 120px; }

.msm-img-full {
  width: 100%;
  border-radius: 16px;
}

.msm-img-full--shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.msm-img-full--transparent {
  border-radius: 0;
  mix-blend-mode: multiply;
}

.msm-img-centered {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Curriculum dark section text styles */
.msm-curriculum-text {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
}

.msm-curriculum-highlight {
  color: var(--sage-deeper);
  font-size: 18px;
  line-height: 1.7;
}

.msm-curriculum-muted {
  color: var(--text-lighter);
  font-size: 17px;
}

/* MSM page curriculum section override */
.page-msm .features-v2 {
  background: #ffeee0;
  color: var(--charcoal);
}

.page-msm .features-v2::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(78, 94, 67, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 168, 160, 0.06) 0%, transparent 50%);
}

.page-msm .features-v2__headline {
  color: var(--sage-deeper);
}

.page-msm .features-v2__tagline {
  color: var(--sage);
}

.page-msm .features-v2__subhead {
  color: var(--sage-deeper);
}

.page-msm .features-v2__title {
  color: var(--charcoal);
}

.page-msm .features-v2__item {
  border-bottom-color: rgba(78, 94, 67, 0.15);
}

.page-msm .features-v2__num {
  color: rgba(78, 94, 67, 0.2);
}

.page-msm .features__desc {
  color: var(--text-light);
}

.page-msm .features__desc--highlight {
  color: var(--sage-deeper);
}

/* --- MSM Hero --- */
.msm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 60%, var(--orange-pale) 100%);
  position: relative;
  overflow: hidden;
}

.msm-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-pale) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.msm-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.msm-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.msm-hero__content {
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.msm-hero__logo {
  display: none;
}

.msm-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--sage-deeper);
  letter-spacing: -0.005em;
  margin-bottom: 32px;
  text-align: center;
  text-wrap: balance;
}

.msm-hero__headline em {
  font-style: italic;
  color: var(--sage);
}

.msm-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 500px;
}

.msm-hero__sub:last-of-type {
  margin-bottom: 44px;
}

.msm-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.msm-hero__visual {
  position: relative;
}

.msm-hero__visual--inline {
  max-width: 520px;
  margin: 20px auto 10px;
}

.msm-hero__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--orange-pale);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.msm-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- MSM Filter Section --- */
.msm-filter {
  background: var(--warm-white);
}

.msm-filter__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.msm-filter__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.msm-filter__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.msm-filter__item p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.msm-filter__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.msm-filter__item--yes {
  border-color: var(--sage-pale);
}

.msm-filter__item--no {
  border-color: var(--rose-light);
}

.msm-filter__icon--yes {
  background: var(--sage-pale);
  color: var(--sage-deeper);
}

.msm-filter__icon--no {
  background: var(--rose-pale);
  color: var(--rose-dark);
  font-size: 18px;
}

/* --- MSM Perfect For Section --- */
.msm-perfect__header {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.msm-perfect__cards {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.msm-perfect__card {
  background: white;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.msm-perfect__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.msm-perfect__card-image {
  overflow: hidden;
  background: var(--orange-pale);
}

.msm-perfect__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msm-perfect__card-text {
  padding: 28px 28px 32px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

/* --- MSM Who Wins Section --- */
.msm-wins__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  align-items: start;
}

.msm-wins__inner + .msm-wins__inner {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-light);
}

.msm-wins__image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: var(--orange-pale);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.msm-wins__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msm-wins__content {
  max-width: 520px;
}

.msm-wins__content .headline-lg {
  margin-bottom: 28px;
}

.msm-wins__content .headline-lg em {
  font-style: italic;
  color: var(--sage);
}

/* --- MSM Responsive (hero/wins) --- */
@media (max-width: 1024px) {
  .msm-hero__inner {
    gap: 48px;
    text-align: center;
  }

  .msm-hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .msm-hero__visual--inline {
    max-width: 400px;
    margin-bottom: 32px;
  }

  .msm-wins__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .msm-wins__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .msm-wins__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .msm-wins__inner + .msm-wins__inner {
    margin-top: 60px;
    padding-top: 48px;
  }
}

/* --- MSM Proof Grid (stacked social proof images) --- */
.msm-proof-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.msm-proof-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* --- MSM Checklist (is for you / isn't for you) --- */
.msm-list-header {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.msm-list-header--green {
  color: var(--sage-deeper);
  border-color: var(--sage-pale);
}

.msm-list-header--rose {
  color: var(--rose-dark);
  border-color: var(--rose-light);
}

.msm-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.msm-checklist__item {
  padding-left: 0;
}

.msm-checklist__item strong {
  display: block;
  font-size: 17px;
  color: var(--sage-deeper);
  margin-bottom: 4px;
}

.msm-checklist--rose .msm-checklist__item strong {
  color: var(--rose-dark);
}

.msm-checklist__item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* --- MSM "It Takes" List --- */
.msm-takes-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msm-takes-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.msm-takes-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* --- MSM Screenshot Grid (stacked testimonial images) --- */
.msm-screenshot-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.msm-screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* --- MSM Difference List --- */
.msm-difference-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.msm-difference__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.msm-difference__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.msm-difference__item strong {
  display: block;
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.msm-difference__item p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
}

/* --- MSM Included Blocks --- */
.msm-included-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.msm-included-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.msm-included-block img {
  width: 100%;
  border-radius: 16px;
}

/* --- MSM Screenshot Wall (two-column testimonial grid) --- */
.msm-screenshot-wall {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: flex-start;
}

.msm-screenshot-wall__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.msm-screenshot-wall img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* --- MSM Enrollment List --- */
.msm-enrollment-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.msm-enrollment__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.msm-enrollment__item--bonus {
  background: var(--orange-pale);
  border-color: var(--orange-light);
}

.msm-enrollment__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.msm-enrollment__item--bonus .msm-enrollment__check {
  background: var(--orange-light);
  color: white;
}

.msm-enrollment__item strong {
  display: block;
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.msm-enrollment__item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* --- MSM Responsive (components) --- */
@media (max-width: 768px) {
  .msm-screenshot-grid {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .msm-difference__item,
  .msm-enrollment__item {
    padding: 20px 24px;
  }

  .msm-screenshot-wall {
    gap: 16px;
  }

  .pricing__cards--three {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .msm-perfect__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .msm-filter__item {
    padding: 16px 20px;
  }

  .msm-difference__item,
  .msm-enrollment__item {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .msm-screenshot-wall {
    flex-direction: column;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ============================================
   MSM PREMIUM ENHANCEMENTS
   ============================================ */

/* --- 1. Hero Entrance Choreography --- */
.msm-hero__content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: msm-heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.msm-hero__content > *:nth-child(1) { animation-delay: 0.15s; }
.msm-hero__content > *:nth-child(2) { animation-delay: 0.30s; }
.msm-hero__content > *:nth-child(3) { animation-delay: 0.45s; }
.msm-hero__content > *:nth-child(4) { animation-delay: 0.60s; }
.msm-hero__content > *:nth-child(5) { animation-delay: 0.75s; }

@keyframes msm-heroIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating decorative shapes */
.msm-hero::before {
  animation: msm-float 20s ease-in-out infinite;
}

.msm-hero::after {
  animation: msm-float 25s ease-in-out infinite reverse;
}

@keyframes msm-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -15px); }
  50% { transform: translate(-10px, 20px); }
  75% { transform: translate(15px, 10px); }
}

/* --- 2. CTA Button Shimmer + Pulse --- */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  left: 120%;
}

.msm-hero__actions .btn--primary {
  animation: msm-ctaPulse 3s ease-in-out 2s infinite;
}

@keyframes msm-ctaPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(78, 94, 67, 0.25); }
  50% { box-shadow: 0 12px 45px rgba(78, 94, 67, 0.45); }
}

.msm-hero__actions .btn--primary:hover {
  animation: none;
}

/* --- 3. Card & List Hover Micro-Interactions --- */

/* Perfect For cards — colored top border reveal */
.msm-perfect__card {
  position: relative;
}

.msm-perfect__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.msm-perfect__card:hover::before {
  opacity: 1;
}

/* Difference items — lift + left border accent */
.msm-difference__item {
  transition: all 0.35s ease;
  border-left: 3px solid transparent;
}

.msm-difference__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-left-color: var(--sage);
}

/* Enrollment items — lift + left border accent */
.msm-enrollment__item {
  transition: all 0.35s ease;
  border-left: 3px solid transparent;
}

.msm-enrollment__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-left-color: var(--sage);
}

.msm-enrollment__item--bonus:hover {
  border-left-color: var(--orange);
}

/* Filter items — subtle lift */
.msm-filter__item {
  transition: all 0.3s ease;
}

.msm-filter__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Screenshot & proof images — lift + shadow */
.msm-proof-grid img,
.msm-screenshot-grid img,
.msm-screenshot-wall img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.msm-proof-grid img:hover,
.msm-screenshot-grid img:hover,
.msm-screenshot-wall img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

/* Image frames — glow shadow on hover */
.msm-hero__image-frame,
.msm-wins__image-frame {
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.msm-hero__image-frame:hover,
.msm-wins__image-frame:hover {
  box-shadow: 0 30px 80px rgba(78, 94, 67, 0.15), 0 0 0 1px rgba(78, 94, 67, 0.05);
  transform: translateY(-4px);
}

/* Curriculum rows — left border + warm tint */
.page-msm .features-v2__item {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.page-msm .features-v2__item:hover {
  padding-left: 16px;
  border-left-color: var(--orange);
  background: rgba(255, 171, 94, 0.06);
  border-radius: 0 12px 12px 0;
}

/* --- 4. Section Polish --- */

/* Section gradient blends */
.msm-section {
  position: relative;
}

.msm-section--cream + .msm-section--warm::before,
.msm-section--warm + .msm-section--cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

.msm-section--cream + .msm-section--warm::before {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.msm-section--warm + .msm-section--cream::before {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

/* Glassmorphism on wide testimonial card */
.page-msm .testimonial-card--wide {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.page-msm .testimonial-card--wide:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Bonus enrollment item glow */
.msm-enrollment__item--bonus {
  position: relative;
  overflow: hidden;
}

.msm-enrollment__item--bonus::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 171, 94, 0.12) 0%,
    transparent 60%
  );
  animation: msm-bonusGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes msm-bonusGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Final CTA ambient dot grid */
.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  background-position: 0 0, 30px 45px;
  pointer-events: none;
  animation: msm-dotDrift 30s linear infinite;
}

@keyframes msm-dotDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}

/* --- 5. Gradient Text --- */
.msm-gradient-text {
  background: linear-gradient(135deg, var(--sage-deeper) 0%, var(--teal) 60%, var(--sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- 6. Reveal Direction Variants --- */
.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left.reveal--visible,
.reveal--right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- 7. Pricing Card Premium Treatment --- */
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 70px rgba(78, 94, 67, 0.2);
}

.pricing-card__price {
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-card__price {
  transform: scale(1.05);
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy {
  padding-top: clamp(120px, 12vw, 160px);
  padding-bottom: var(--section-pad);
}

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

.privacy__effective {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-lighter);
  margin-top: 12px;
  letter-spacing: 1px;
}

.privacy__intro {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 48px;
  color: var(--text);
}

.privacy__heading {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.privacy__subheading {
  margin-top: 28px;
  margin-bottom: 16px;
}

.privacy__content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy__content a {
  color: var(--sage-deeper);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.privacy__content a:hover {
  color: var(--sage);
}

.privacy__list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy__list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
  font-size: 17px;
}

.privacy__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.privacy__contact {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 24px;
}

.privacy__contact p {
  margin-bottom: 8px;
}

.privacy__contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .privacy__heading {
    margin-top: 36px;
    padding-top: 24px;
  }

  .privacy__contact {
    padding: 20px;
  }
}

/* ============================================
   MEMBER LOGIN PAGE
   ============================================ */
.login {
  padding-top: clamp(120px, 12vw, 160px);
  padding-bottom: var(--section-pad);
  min-height: 100vh;
}

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

.login__sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-light);
  margin-top: 12px;
}

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

.login__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 32px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.login__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--sage-pale);
}

.login__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-pale);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--sage-deeper);
}

.login__card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--sage-deeper);
  margin-bottom: 6px;
}

.login__card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.login__card-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deeper);
  padding: 8px 24px;
  border: 1.5px solid var(--sage);
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.login__card:hover .login__card-btn {
  background: var(--sage-deeper);
  color: var(--cream);
  border-color: var(--sage-deeper);
}

@media (max-width: 768px) {
  .login__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .login__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .login__card {
    padding: 32px 24px 28px;
  }
}

/* --- Testimonial scroll-snap enhancement --- */
.testimonials__track {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.testimonials__track > * {
  scroll-snap-align: start;
}

/* --- 8. Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .msm-hero__content > * {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .msm-hero__actions .btn--primary {
    animation: none !important;
  }

  .msm-hero::before,
  .msm-hero::after {
    animation: none !important;
  }

  .final-cta::after {
    animation: none !important;
  }

  .msm-enrollment__item--bonus::after {
    animation: none !important;
  }

  .btn--primary::after {
    transition: none !important;
  }
}
