/* ============================================
   Private MD — Boutique Design System
   Direct Primary Care | Folsom, CA
   ============================================ */

:root {
  --primary: #5E8E91;
  --primary-light: #8BB5B8;
  --primary-dark: #6A9194;
  --cream: #EEE9E1;
  --cream-light: #F5F3F0;
  --cream-dark: #E2DDD4;
  --charcoal: #2A3535;
  --charcoal-light: #3D4F4F;
  --charcoal-muted: #4A5959;
  --terracotta: #B8A196;
  --terracotta-hover: #A89186;
  --gold: #B8A196;
  --gold-light: #D4C4B5;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --border: #E2DDD4;
  --shadow-sm: 0 2px 8px rgba(42, 47, 48, 0.04);
  --shadow-md: 0 4px 20px rgba(42, 47, 48, 0.07);
  --shadow-lg: 0 12px 40px rgba(42, 47, 48, 0.10);
  --shadow-photo: 0 8px 30px rgba(42, 47, 48, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; }

/* === ACCESSIBILITY === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* Coming Soon Banner */
.coming-soon-banner {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.coming-soon-banner a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.coming-soon-banner a:hover {
  color: var(--white);
}

.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;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* === NAV === */
nav {
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(232, 226, 216, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); font-weight: 400; }
.nav-logo svg.logo-mark {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: -4px;
  color: var(--gold);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-links .nav-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.3s, transform 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
}

/* === HERO === */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 161, 150, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(123, 165, 168, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 50px;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 18px;
  color: var(--charcoal-light);
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 400;
}

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

.hero-location {
  margin-top: 28px;
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-bottom: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
}

/* === CREDENTIAL STRIP === */
.credential-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.credential-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

.credential-divider {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* === BUTTONS === */
.btn-primary {
  background: #9A8275;
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #8B7668;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 123, 95, 0.25);
}

.btn-secondary {
  color: var(--charcoal);
  padding: 14px 36px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-phone:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 165, 168, 0.25);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 14px 38px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* === SECTION LAYOUT === */
.section {
  padding: 100px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--charcoal);
  font-weight: 400;
}

.section p {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 400;
}

.section-intro {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 8px;
  font-weight: 400;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}

/* === WHY PRIVATE MD === */
.why-section {
  padding: 100px 60px;
  background: var(--white);
}

.why-inner {
  max-width: 960px;
  margin: 0 auto;
}

.why-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--charcoal);
  font-weight: 400;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--cream-light);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(123, 165, 168, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 400;
}

/* === BENEFITS LIST (legacy) === */
.benefits-list {
  list-style: none;
  margin-top: 32px;
}

.benefits-list li {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.75;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-weight: 400;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* === SERVICES GRID === */
.section-sub {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 400;
}

/* === SERVICE ACCORDION === */
.services-accordion {
  max-width: 760px;
}

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

.service-item:last-child {
  border-bottom: none;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.service-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0;
  flex: 1;
  padding-right: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.service-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.service-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.service-toggle::before,
.service-toggle::after {
  content: '';
  position: absolute;
  background: var(--charcoal-muted);
  transition: transform 0.3s ease;
}

.service-toggle::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-toggle::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-item.open .service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-item.open .service-detail {
  max-height: 500px;
  padding-bottom: 20px;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail li {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.65;
  padding: 4.5px 0;
  padding-left: 18px;
  position: relative;
  font-weight: 400;
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.service-detail p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 400;
}

/* === BENEFITS PROSE === */
.benefits-prose {
  margin-top: 32px;
}

.benefits-prose h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.benefits-prose h3:first-child {
  margin-top: 0;
}

.benefits-prose p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 400;
}

/* === ABOUT / PHYSICIANS === */
.about {
  background: var(--cream);
  padding: 100px 60px;
}

.about-inner {
  max-width: 840px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-weight: 400;
  text-align: center;
}

.about-intro {
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 52px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  font-weight: 400;
}

.about-content {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.about-content:last-of-type {
  margin-bottom: 0;
}

.about-photo {
  flex-shrink: 0;
  width: 240px;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
}

.about-text { flex: 1; }

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-weight: 600;
}

.physician-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-muted);
  margin-bottom: 16px !important;
  letter-spacing: 0.03em;
}

.physician-note {
  font-size: 13px;
  font-style: italic;
  color: var(--charcoal-muted);
  margin-top: 12px;
}

.about p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 400;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.credential-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  background: rgba(123, 165, 168, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
}

/* === WEIGHT MANAGEMENT CALLOUT === */
.weight-callout {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  margin: 48px auto;
  max-width: 760px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.weight-callout::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.weight-callout h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 400;
  position: relative;
}

.weight-callout p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
}

.weight-callout .callout-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  position: relative;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 40px;
  color: var(--charcoal);
  font-weight: 400;
}

.testimonial-item {
  margin-bottom: 20px;
  padding: 40px;
  background: var(--cream-light);
  border-radius: var(--radius-xl);
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-2px);
}

.testimonial-item blockquote {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
  font-weight: 400;
}

.testimonial-item cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.testimonial-note {
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-top: 12px;
  font-style: italic;
}

/* === PRICING === */
.pricing {
  padding: 100px 60px;
  text-align: center;
}

.pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-weight: 400;
}

.pricing-subtitle {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-inner {
  max-width: 480px;
  margin: 32px auto;
  text-align: center;
}

.pricing-inner .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-inner .price-amount .dollar {
  font-size: 28px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-inner .price-amount .period {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-muted);
}

.pricing-inner ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.pricing-inner ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--charcoal);
  padding-left: 24px;
  position: relative;
}

.pricing-inner ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.tier-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* Beyond Membership add-ons */
.beyond-membership {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.beyond-membership h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.beyond-membership > p {
  font-size: 14px;
  color: var(--charcoal-muted);
  margin-bottom: 24px;
}
.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.beyond-card {
  display: block;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.beyond-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.beyond-card:hover {
  box-shadow: 0 4px 16px rgba(94,142,145,0.3);
  transform: translateY(-2px);
}
.beyond-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.beyond-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.pricing .price-note {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 8px;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.spots-indicator {
  font-size: 13px;
  color: var(--charcoal-muted);
  font-weight: 500;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.future-pricing-note {
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-top: 12px;
  font-style: italic;
}

/* Age-based pricing tiers */
.pricing-tiers {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 40px auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.pricing-tier {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pricing-tier:hover {
  box-shadow: var(--shadow-md);
}

.pricing-tier.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.pricing-tier .tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier .tier-age {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pricing-tier .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pricing-tier .price-amount .dollar {
  font-size: 24px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-tier .price-amount .period {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-muted);
}

.pricing-tier .price-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  text-decoration: line-through;
  text-decoration-color: var(--charcoal-muted);
}

.pricing-tier .price-hsa {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--primary-dark);
  background: rgba(94, 142, 145, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-top: 4px;
}

.pricing-tier .price-hsa strong {
  font-weight: 700;
  color: var(--primary);
}

/* Pricing includes list */
.pricing-includes {
  max-width: 520px;
  margin: 0 auto 24px;
  text-align: left;
}

.pricing-includes h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}

.pricing-includes ul li {
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--charcoal);
  position: relative;
  break-inside: avoid;
}

.pricing-includes ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.hsa-note {
  font-size: 12px;
  color: var(--charcoal-muted);
  max-width: 640px;
  margin: 12px auto;
  font-style: italic;
}

/* === COMPARISON TABLE === */
.comparison {
  padding: 100px 60px;
  background: var(--cream);
}

.comparison-inner {
  max-width: 760px;
  margin: 0 auto;
}

.comparison h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--charcoal);
  text-align: center;
  font-weight: 400;
}

.comparison > .comparison-inner > p {
  text-align: center;
  font-size: 15px;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead th {
  text-align: left;
  padding: 18px 22px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.comparison-table thead th:first-child { color: var(--charcoal-muted); }
.comparison-table thead th:nth-child(2) { color: var(--primary); }
.comparison-table thead th:nth-child(3) { color: var(--charcoal-muted); }

.comparison-table tbody td {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(232, 226, 216, 0.5);
  color: var(--charcoal-light);
  line-height: 1.6;
  font-weight: 400;
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 13px;
}

.comparison-table tbody td:nth-child(2) {
  color: var(--primary);
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-note {
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-top: 32px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  font-weight: 400;
}

/* === HOW JOINING WORKS === */
.how-it-works {
  padding: 100px 60px;
  max-width: 840px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 44px;
  color: var(--charcoal);
  text-align: center;
  font-weight: 400;
}

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 220px;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 auto 16px;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 400;
}

/* === FAQ === */
.faq {
  padding: 100px 60px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
}

.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 36px;
  color: var(--charcoal);
  font-weight: 400;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0;
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--charcoal-muted);
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 400;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* === FOOTER === */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 48px 60px;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
footer .footer-logo span { color: var(--gold); font-weight: 400; }
footer .footer-logo svg.logo-mark {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: -4px;
  color: var(--gold);
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover { color: rgba(255,255,255,0.9); }

footer p { margin-bottom: 4px; }

.footer-fine-print {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* === PROGRAMS GRID (index.html teaser) === */
.programs-section {
  padding: 100px 60px;
  background: var(--white);
}

.programs-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-weight: 400;
}

.programs-section > div > p.programs-intro {
  text-align: center;
  font-size: 17px;
  color: var(--charcoal-light);
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.program-card {
  background: var(--cream-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.program-card p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
  font-weight: 400;
}

.program-tests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.program-tests span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  background: rgba(123, 165, 168, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

.program-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
}

.program-price span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--charcoal-muted);
  font-weight: 400;
}

.program-card.coming-soon {
  opacity: 0.6;
  border: 2px dashed var(--border);
  background: var(--off-white);
}

.program-card.coming-soon:hover {
  opacity: 0.75;
  border-color: var(--charcoal-muted);
  box-shadow: none;
  transform: none;
}

.program-card.coming-soon .program-price {
  color: var(--charcoal-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* === PROGRAMS PAGE STYLES === */
.program-section {
  padding: 100px 60px;
}

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

.program-content {
  max-width: 880px;
  margin: 0 auto;
}

.program-section-header {
  margin-bottom: 40px;
}

.program-section-header .section-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 12px;
}

.program-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.program-section-header .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
}

.program-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.program-section-header p {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.75;
  max-width: 680px;
  font-weight: 400;
}

.program-callout {
  background: rgba(123, 165, 168, 0.08);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.7;
}

.program-callout em {
  font-style: italic;
  font-weight: 400;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  margin-bottom: 32px;
}

.test-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.55;
  padding: 6px 0;
  font-weight: 400;
}

.test-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.test-item.highlight {
  color: var(--charcoal);
  font-weight: 500;
}

.test-item .note {
  font-size: 13px;
  color: var(--charcoal-muted);
  font-weight: 400;
}

.tiers-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.tiers-row.single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
}

.tier-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tier-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.tier-card .tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
}

.tier-card .tier-price .dollar {
  font-size: 18px;
  vertical-align: top;
}

.tier-card ul {
  list-style: none;
}

.tier-card ul li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--charcoal-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
  font-weight: 400;
}

.tier-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.program-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.detail-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.detail-link:hover { opacity: 0.7; }

.messaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.message-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.program-section.alt .message-card {
  background: var(--white);
}

.message-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.message-card p {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-weight: 400;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coming-card {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.coming-card:hover { opacity: 0.85; }

.coming-card .btn-muted {
  display: block;
  text-align: center;
}

.coming-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal-muted);
  margin-bottom: 12px;
}

.coming-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.coming-card ul li {
  padding: 4px 0;
  font-size: 15px;
  color: var(--charcoal-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
  font-weight: 400;
}

.coming-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

.btn-muted {
  display: inline-block;
  background: transparent;
  color: var(--charcoal-muted);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  border: 1.5px solid var(--border);
}

.btn-muted:hover { border-color: var(--primary); color: var(--primary); }

.trust-section {
  padding: 100px 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.trust-item { text-align: center; }

.trust-icon {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.trust-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.trust-item p {
  font-size: 13px;
  color: var(--charcoal-light);
  line-height: 1.65;
  font-weight: 400;
}

/* Programs page form */
.programs-form-section {
  padding: 100px 60px;
  background: var(--cream);
}

.programs-form-inner {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.programs-form-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-weight: 400;
}

.programs-form-inner > p {
  color: var(--charcoal-light);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.75;
}

.screening-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.screening-form .form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.screening-form input,
.screening-form select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.screening-form input::placeholder { color: var(--charcoal-muted); opacity: 0.5; }
.screening-form input:focus,
.screening-form select:focus { border-bottom: 2px solid var(--primary); }

.screening-form select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.screening-form button {
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}

.screening-form button:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 165, 168, 0.25);
}

.screening-form .form-note {
  font-size: 12px;
  color: var(--charcoal-muted);
  text-align: center;
}

.form-success {
  display: none;
  color: var(--primary);
  font-weight: 400;
  font-size: 17px;
  padding: 32px;
}

.form-error {
  display: none;
  color: #b91c1c;
  font-size: 14px;
  padding: 8px;
  text-align: center;
}

/* === TABLET NAV TIGHTENING === */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .nav-links .nav-cta { padding: 8px 18px; font-size: 13px; }
}

/* === LEGAL PAGE === */
.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p,
.legal-page ul {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 20px;
}
.legal-page li {
  margin-bottom: 4px;
}
.legal-page a {
  color: var(--primary);
  text-decoration: underline;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 868px) {
  nav {
    padding: 0 24px;
    height: 64px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    z-index: 150;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 16px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links .nav-cta {
    text-align: center;
    padding: 14px 24px;
    margin-top: 12px;
    border-bottom: none;
    color: var(--white);
  }

  .hamburger { display: block; }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .mobile-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .hero { padding: 64px 24px 52px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .section, .testimonials, .how-it-works { padding: 52px 24px; }
  .faq { padding: 52px 24px; max-width: 100%; }
  .about { padding: 52px 24px; }
  .about-content { flex-direction: column; align-items: center; text-align: center; }
  .about-photo { width: 200px; height: 250px; }
  .about-intro { text-align: center; }
  .about-credentials { justify-content: center; }

  .why-section { padding: 52px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  .weight-callout { margin: 36px 24px; padding: 36px 24px; }

  .pricing { padding: 52px 24px; }
  .pricing-inner .price-amount { font-size: 36px; }
  .pricing-tiers { flex-direction: column; align-items: center; gap: 16px; }
  .pricing-tier { max-width: 320px; width: 100%; }
  .pricing-tier.featured { transform: none; }
  .pricing-tier .price-amount { font-size: 36px; }
  .pricing-includes ul { columns: 1; }
  .beyond-grid { grid-template-columns: 1fr; }

  .comparison { padding: 52px 16px; }
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 100%;
    font-size: 14px;
  }
  .comparison-table thead th {
    padding: 12px 8px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .comparison-table tbody td {
    padding: 12px 8px;
    font-size: 13px;
  }
  .comparison-table tbody td:first-child {
    width: 28%;
    font-size: 13px;
  }
  .comparison-table tbody td:nth-child(2),
  .comparison-table tbody td:nth-child(3) {
    width: 36%;
  }

  .credential-strip { gap: 10px; flex-wrap: wrap; }
  .credential-badge { font-size: 12px; letter-spacing: 0.1em; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 280px; }

  .cta-section { padding: 52px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .btn-phone, .btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  footer { padding: 32px 24px; }


  .benefits-prose h3 { margin-top: 24px; }

  .programs-section { padding: 52px 24px; }
  .programs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .program-section { padding: 52px 24px; }
  .test-grid { grid-template-columns: 1fr; }
  .tiers-row { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 32px; }
  .tiers-row.single { max-width: 100%; }
  .messaging-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-section { padding: 52px 24px; }
  .programs-form-section { padding: 52px 24px; }
}
