/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Brand greens (deep sage) */
  --color-cypress: #14342B;
  --color-cypress-dark: #0E2A22;
  --color-moss: #4B6B57;
  --color-sage: #8FAF9A;

  /* Neutrals */
  --color-warm-cream: #FAF9F6;
  --color-stone: #E7E3DC;
  --color-surface: #FFFFFF;

  /* Accents */
  --color-citron: #DDE6C7;
  --color-gold: #C8A96E;
  --color-gold-soft: #E0CDA0;

  /* Text roles */
  --color-text-primary: #14342B;
  --color-text-secondary: #4B6B57;
  --color-text-muted: rgba(20, 52, 43, 0.55);
  --color-text-placeholder: rgba(20, 52, 43, 0.45);
  --color-text-on-dark: #FAF9F6;
  --color-text-on-dark-muted: rgba(250, 249, 246, 0.7);

  /* Borders & dividers */
  --color-border: rgba(20, 52, 43, 0.14);
  --color-border-soft: rgba(20, 52, 43, 0.08);
  --color-border-strong: rgba(20, 52, 43, 0.24);

  /* Surfaces (alpha forms used in components) */
  --tint-cypress-06: rgba(20, 52, 43, 0.06);
  --tint-cypress-10: rgba(20, 52, 43, 0.10);
  --tint-sage-22: rgba(143, 175, 154, 0.22);
  --tint-citron-42: rgba(221, 230, 199, 0.42);
  --tint-gold-22: rgba(200, 169, 110, 0.22);
  --tint-gold-12: rgba(200, 169, 110, 0.12);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  --font-body: 'Outfit', 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;

  /* Radii */
  --radius: 10px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 18px 50px rgba(20, 53, 36, 0.08);
  --shadow-card: 0 8px 32px rgba(20, 53, 36, 0.06);

  /* Status */
  --color-error: #B91C1C;

  /* Brand wordmark (PNG embedded as data URI to keep single-file) */
  --logo-cypress: url("cypress-logo.png");

  /* Gradients */
  --gradient-soft-green: linear-gradient(135deg, var(--tint-sage-22), var(--tint-citron-42));
  --gradient-dark-green: linear-gradient(135deg, #143524 0%, #2F5140 100%);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-primary);
  background: var(--color-warm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--color-citron); color: var(--color-cypress); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; }

section { padding: 100px 32px; }

.section-alt { background: var(--color-surface); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-moss);
  margin-bottom: 18px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.008em;
  margin-bottom: 16px;
  color: var(--color-cypress);
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: var(--color-warm-cream);
  border-bottom: 1px solid var(--color-border-soft);
}

.nav-inner {
  max-width: none;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: inline-block;
  width: 293px;
  height: 85px;
  margin-left: 27px;
  background: var(--logo-cypress) left center / contain no-repeat;
  font-size: 0;
  color: transparent;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  justify-self: start;
}
.assess-nav .nav-logo {
  background-position: center;
  width: 147px;
  height: 43px;
}


/* ============================================================
   NAV TABS + DROPDOWNS
   ============================================================ */
.nav-tabs {
  display: flex;
  gap: 32px;
  justify-self: center;
  align-items: center;
}

.nav-tab {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-cypress);
  cursor: pointer;
  padding: 10px 4px;
  position: relative;
  transition: color 0.2s;
  letter-spacing: -0.005em;
}
.nav-tab:hover { color: var(--color-moss); }
.nav-tab.active { color: var(--color-cypress); }
.nav-tab.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-cypress);
  border-radius: 1px;
}

.nav-cta {
  font-size: 14px;
  padding: 12px 24px;
  justify-self: end;
}

.nav-dropdown {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--color-warm-cream);
  border-bottom: 1px solid var(--color-border-soft);
  box-shadow: 0 16px 32px rgba(20, 53, 36, 0.06);
  padding: 44px 0 48px;
  animation: dropdownFade 0.18s ease;
}
.nav-dropdown.active { display: block; }

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.nav-dropdown-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-cypress);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.nav-dropdown-col h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-moss);
  margin-bottom: 18px;
}

.nav-dropdown-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-col li { padding: 0; }

.nav-dropdown-col a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-cypress);
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.15s, transform 0.15s;
}
.nav-dropdown-col a:hover {
  color: var(--color-moss);
  transform: translateX(2px);
}
.nav-dropdown-col a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .nav-tabs { gap: 22px; }
  .nav-tab { font-size: 14px; }
  .nav-dropdown-inner { grid-template-columns: 200px 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-tabs { display: none; }
  .nav-dropdown { display: none !important; }
}

/* ============================================================
   MOBILE DRAWER (≤900px)
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-cypress);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 52, 43, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 998;
}
.nav-mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 420px);
  background: var(--color-warm-cream);
  box-shadow: -10px 0 40px rgba(20, 52, 43, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nav-mobile-drawer.active { transform: translateX(0); }

.nav-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-stone);
  flex: 0 0 auto;
}
.nav-mobile-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--color-cypress);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-cypress);
  padding: 0;
}
.nav-mobile-close svg { width: 22px; height: 22px; }

.nav-mobile-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px 22px 32px;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-section { margin-bottom: 28px; }
.nav-mobile-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-cypress);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.nav-mobile-section-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin: 18px 0 6px;
}
.nav-mobile-section ul { list-style: none; padding: 0; margin: 0 0 4px; }
.nav-mobile-section li { border-bottom: 1px solid rgba(143, 175, 154, 0.20); }
.nav-mobile-section li:last-child { border-bottom: 0; }
.nav-mobile-section li a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-cypress);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-mobile-section li a:hover,
.nav-mobile-section li a:active {
  color: var(--color-moss);
  transform: translateX(2px);
}
.nav-mobile-section li sup {
  font-size: 10px;
  color: var(--color-moss);
  font-weight: 500;
  margin-left: 3px;
}
.nav-mobile-cta {
  display: flex;
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

body.nav-mobile-open { overflow: hidden; }

@media (min-width: 901px) {
  .nav-mobile-overlay,
  .nav-mobile-drawer { display: none; }
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  #nav .nav-cta { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-cypress);
  color: var(--color-warm-cream);
  border: 1px solid var(--color-cypress);
  padding: 15px 31px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  background: var(--color-cypress-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20, 53, 36, 0.18);
}

.btn:focus-visible {
  outline: 2px solid var(--color-cypress);
  outline-offset: 3px;
}

.btn-lg { font-size: 15px; padding: 17px 40px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 120px;
  background: var(--color-warm-cream);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, var(--hero-text-width, 560px)) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.hero-text {
  padding-left: 70px;
  padding-right: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-cypress);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--color-moss);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-funnel {
  margin-top: 18px;
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.005em;
}

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  background: var(--tint-sage-22);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-image {
    margin: 0 24px;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }
}
.how-section .section-label { color: var(--color-citron); }
.how-section .section-headline { color: var(--color-warm-cream); letter-spacing: -0.008em; }

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.how-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  row-gap: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  color: var(--color-cypress);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border);
}

.how-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -29px;
  width: 28px;
  border-top: 1.5px dashed var(--color-sage);
  z-index: 1;
}

.how-card-num {
  grid-row: 1;
  grid-column: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-stone);
  color: var(--color-moss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.how-card-body {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.how-card-icon {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  justify-self: start;
  margin-top: 14px;
  margin-left: -8px;
}
.how-card-icon img {
  display: block;
  width: 84px;
  height: 84px;
}

.how-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-cypress);
  letter-spacing: -0.008em;
}

.how-card-desc {
  font-size: 14px;
  color: var(--color-moss);
  line-height: 1.6;
}

/* ============================================================
   TRUST BAR  (cream, hairline-bordered)
   ============================================================ */
.trust-bar {
  background: var(--color-surface);
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.trust-bar-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-moss);
  margin-bottom: 24px;
}

.trust-bar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-bar-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-cypress);
  letter-spacing: -0.008em;
}

.trust-bar-item span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  display: block;
  color: var(--color-moss);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section .container { max-width: 1200px; }

.pricing-panel {
  position: relative;
  background: var(--color-warm-cream);
  border: 1px solid var(--color-border-soft);
  border-radius: 22px;
  padding: 44px 56px 120px;
  overflow: hidden;
}
.pricing-leaf {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 400px;
  height: auto;
  transform: translateY(calc(-50% - 20px)) rotate(-15deg);
  transform-origin: center center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.pricing-header {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  max-width: 760px;
}
.pricing-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin: 0 0 14px;
}
.pricing-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-cypress);
  margin: 0;
}
.pricing-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.pricing-anchor {
  border-right: 1px solid var(--color-border);
  padding-right: 32px;
}
.pricing-anchor-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0 0 4px;
  font-weight: 500;
}
.pricing-anchor-amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-cypress);
  margin: 0;
  display: flex;
  align-items: baseline;
}
.pricing-anchor-currency {
  font-size: 38px;
  margin-right: 2px;
  font-weight: 500;
}
.pricing-anchor-period {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}
.pricing-copy { max-width: 280px; }
.pricing-copy-lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-primary);
  margin: 0 0 10px;
}
.pricing-copy-fine {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.pricing-features {
  display: flex;
  gap: 10px;
}
.pricing-feature {
  background: var(--color-surface);
  border-radius: 14px;
  padding: 14px 12px 12px;
  width: 92px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pricing-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-citron);
  border-radius: 50%;
  color: var(--color-cypress);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-feature-icon svg { width: 24px; height: 24px; }
.pricing-feature-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.pricing-feature-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-cypress);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.005em;
}
.pricing-cta {
  align-self: center;
  white-space: nowrap;
  padding: 16px 26px;
}

@media (max-width: 1100px) {
  .pricing-panel { padding: 40px 40px 100px; }
  .pricing-leaf { width: 320px; right: -160px; }
  .pricing-row {
    grid-template-columns: auto 1fr;
    row-gap: 28px;
    column-gap: 28px;
  }
  .pricing-features { grid-column: 1 / -1; }
  .pricing-cta { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 760px) {
  .pricing-panel { padding: 32px 22px 28px; border-radius: 18px; }
  .pricing-leaf { width: 220px; right: -110px; opacity: 0.85; }
  .pricing-row { grid-template-columns: 1fr; gap: 24px; }
  .pricing-anchor { border-right: none; padding-right: 0; }
  .pricing-anchor-amount { font-size: 52px; }
  .pricing-anchor-currency { font-size: 32px; }
  .pricing-features { width: 100%; justify-content: space-between; gap: 8px; }
  .pricing-feature { flex: 1; max-width: none; width: auto; }
  .pricing-cta { width: auto; align-self: flex-start; }
}

/* ============================================================
   WHY CYPRESS  (light 3-column layout)
   ============================================================ */
.why-section {
  background: var(--color-surface);
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 80px;
  align-items: center;
}

.why-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.35vw, 2.1875rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--color-cypress);
  margin: 10px 0 36px;
}

.why-signals {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  margin-left: -17px;
}

.why-signal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.why-signal-icon {
  width: 92px;
  height: 92px;
  display: block;
  flex-shrink: 0;
}

.why-signal span {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-cypress);
  line-height: 1.4;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-left: -5px;
}

.why-body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  align-self: flex-start;
  flex: 1 1 0;
  min-width: 0;
  text-wrap: balance;
}

.why-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.why-right-photo {
  flex-shrink: 0;
  align-self: center;
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--color-warm-cream); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 80px;
  align-items: start;
}

.faq-intro { position: sticky; top: 120px; }

.faq-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin: 0 0 18px;
}

.faq-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-cypress);
  margin: 0 0 36px;
}

.faq-illustration {
  width: 360px;
  height: 360px;
  margin-top: 12px;
  margin-left: -24px;
}
.faq-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  clip-path: circle(40% at 50% 50%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.faq-item:hover { border-color: var(--color-border); }
.faq-item.open { border-color: var(--color-border); }

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 26px;
}

.faq-text { flex: 1; min-width: 0; }

.faq-q {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-cypress);
  line-height: 1.35;
  margin-bottom: 6px;
}

.faq-preview {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--color-moss);
  line-height: 1.55;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-moss);
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--color-cypress); }

.faq-a {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-moss);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 26px;
}

.faq-item.open .faq-a { max-height: 500px; padding: 4px 26px 22px; }

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; text-align: left; }
  .faq-illustration { width: 260px; height: 260px; margin-top: 4px; margin-left: -16px; }
  .faq-row { padding: 18px 20px; gap: 14px; }
  .faq-q { font-size: 16px; }
  .faq-preview { font-size: 14px; }
  .faq-item.open .faq-a { padding: 4px 20px 18px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--color-warm-cream);
  border-top: 1px solid var(--color-border-soft);
}
.final-cta .container {
  padding-top: 72px;
  padding-bottom: 72px;
}
.final-cta-pill {
  background: var(--color-stone);
  border-radius: 28px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.final-cta-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-cypress);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.final-cta-divider {
  width: 1px;
  height: 64px;
  background: var(--color-border-soft);
  justify-self: center;
}
.final-cta-sub {
  color: var(--color-moss);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 22em;
}
.final-cta-pill .btn { white-space: nowrap; }
.final-cta-decoration {
  width: 144px;
  height: 144px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media (max-width: 900px) {
  .final-cta .container { padding-top: 56px; padding-bottom: 56px; }
  .final-cta-pill {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 28px 28px;
    text-align: left;
  }
  .final-cta-divider { display: none; }
  .final-cta-sub { max-width: none; }
  .final-cta-pill .btn { justify-self: start; }
  .final-cta-decoration {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 96px;
    height: 96px;
    opacity: 0.9;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-surface);
  color: var(--color-moss);
  padding: 48px 32px 32px;
  font-size: 13px;
  line-height: 1.8;
  border-top: 1px solid var(--color-border-soft);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 24px;
  color: var(--color-moss);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-cypress); }

.footer-disclaimer {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-soft);
  font-size: 11px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ============================================================
   ASSESSMENT MODAL
   ============================================================ */
#assessment {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-warm-cream);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#assessment.active { display: block; }

.assess-nav {
  position: sticky;
  top: 0;
  background: var(--color-warm-cream);
  border-bottom: 1px solid var(--color-border-soft);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.assess-back, .assess-close {
  font-size: 14px;
  color: var(--color-moss);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}
.assess-close { font-size: 24px; }
.assess-back:hover, .assess-close:hover { color: var(--color-cypress); }

.progress-bar {
  height: 3px;
  background: var(--color-stone);
  border-radius: 2px;
}
.progress-fill {
  height: 100%;
  background: var(--color-cypress);
  transition: width 0.4s;
  border-radius: 2px;
}

.assess-content {
  max-width: 540px;
  margin: 0 auto;
  padding: 56px 24px 140px;
}

.assess-step { display: none; }
.assess-step.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.assess-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--color-cypress);
}

.assess-headline-accent { color: var(--color-moss); }

.assess-sub {
  font-size: 15px;
  color: var(--color-moss);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group { margin-bottom: 22px; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-moss);
  margin-bottom: 10px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20, 53, 36, 0.16);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-surface);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--color-text-primary);
}
.form-input::placeholder { color: var(--color-text-placeholder); }
.form-input:focus {
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(143, 175, 154, 0.24);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B6B57' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

textarea.form-input {
  min-height: 100px;
  resize: vertical;
  line-height: 1.55;
}

.option-card {
  border: 1px solid rgba(20, 53, 36, 0.10);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  min-height: 56px;
}
.option-card:hover { border-color: var(--color-moss); }

.option-card.selected {
  border-color: var(--color-cypress);
  background: var(--color-citron);
}

.option-radio {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.option-card.selected .option-radio { border-color: var(--color-cypress); }
.option-card.selected .option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-cypress);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.option-card.selected .option-check {
  border-color: var(--color-cypress);
  background: var(--color-cypress);
}
.option-card.selected .option-check::after {
  content: '✓';
  color: var(--color-warm-cream);
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-label { font-size: 15px; color: var(--color-cypress); }
.option-desc { font-size: 13px; color: var(--color-text-muted); }

.bmi-result {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.bmi-eligible { color: var(--color-cypress); font-weight: 600; }
.bmi-maybe { color: var(--color-moss); font-weight: 600; }
.bmi-ineligible { color: var(--color-error); }

.disqualified { text-align: center; padding: 40px 0; }
.disqualified h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-cypress);
  letter-spacing: -0.008em;
  line-height: 1.25;
}
.disqualified p {
  font-size: 15px;
  color: var(--color-moss);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 440px;
}

.results-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.results-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 14px;
}
.results-row:last-child { border-bottom: none; }
.results-label { color: var(--color-moss); }
.results-value { font-weight: 600; color: var(--color-cypress); }

.results-rec {
  background: var(--color-citron);
  border: 1px solid rgba(20, 53, 36, 0.12);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin: 24px 0;
}
.results-rec-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-moss);
  margin-bottom: 10px;
}
.results-rec-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-cypress);
}

.assess-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-warm-cream);
  border-top: 1px solid var(--color-border-soft);
  padding: 16px 24px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.assess-footer-inner { max-width: 540px; margin: 0 auto; }

.plan-option {
  border: 1px solid rgba(20, 53, 36, 0.10);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: var(--color-surface);
  gap: 16px;
}
.plan-option:hover { border-color: var(--color-moss); }
.plan-option.selected { border-color: var(--color-cypress); background: var(--color-citron); }
.plan-option.recommended { border-color: var(--color-cypress); }

.plan-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--color-citron);
  color: var(--color-cypress);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.plan-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 2px; color: var(--color-cypress); letter-spacing: -0.008em; }
.plan-format { font-size: 13px; color: var(--color-text-muted); }
.plan-price { text-align: right; }
.plan-price-amount { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--color-cypress); letter-spacing: -0.02em; }
.plan-price-period { font-size: 12px; color: var(--color-text-muted); }

.payment-divider { height: 1px; background: var(--color-border-soft); margin: 32px 0; }

.card-input-group {
  border: 1px solid rgba(20, 53, 36, 0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--color-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card-input-group:focus-within {
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(143, 175, 154, 0.24);
}
.card-input-row { display: flex; border-top: 1px solid rgba(20, 53, 36, 0.12); }
.card-input-row .form-input { border: none; border-radius: 0; box-shadow: none; }
.card-input-row .form-input:focus { box-shadow: none; }
.card-input-row .form-input + .form-input { border-left: 1px solid rgba(20, 53, 36, 0.12); }
.card-input-group > .form-input { border: none; border-radius: 0; box-shadow: none; }
.card-input-group > .form-input:focus { box-shadow: none; }

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
}

.billing-notice {
  background: var(--color-citron);
  border: 1px solid rgba(20, 53, 36, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-cypress);
}
.billing-notice strong { font-weight: 700; }

.included-list { margin: 24px 0; }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-moss);
}
.included-check {
  color: var(--color-cypress);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}

.confirmation { text-align: center; padding: 40px 0; }
.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-cypress);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.confirmation h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--color-cypress);
}
.confirmation > p {
  font-size: 15px;
  color: var(--color-moss);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 460px;
}

.confirm-steps {
  text-align: left;
  max-width: 420px;
  margin: 32px auto;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
}
.confirm-step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-moss);
}
.confirm-step:last-child { margin-bottom: 0; }
.confirm-step-num {
  background: var(--color-citron);
  color: var(--color-cypress);
  font-weight: 700;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.disclaimer-sm {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 16px;
}




/* How it works — header layout + per-card CTA */
.how-header {
  margin-bottom: 56px;
}
.how-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.how-header .section-headline {
  margin: 0;
}
.how-header .section-headline em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-moss);
}
.how-header-cta-group {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.how-header-cta-meta {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .how-header-row { flex-direction: column; align-items: flex-start; gap: 56px; }
  .how-header-cta-group { width: 100%; }
  .how-header-cta-group .btn { width: 100%; }
  .how-header-cta-meta { left: 0; transform: none; }
}


/* ============================================================
   GOAL MODAL
   ============================================================ */
.goal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 53, 36, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  align-items: center;
  justify-content: center;
  animation: goalFade 0.2s ease;
}
.goal-modal-overlay.active { display: flex; }

@keyframes goalFade { from { opacity: 0; } to { opacity: 1; } }

.goal-modal {
  background: var(--color-surface);
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  padding: 30px 30px 28px;
  box-shadow: 0 24px 60px rgba(20, 53, 36, 0.28);
  animation: goalRise 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes goalRise {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.goal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.goal-modal-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cypress);
  letter-spacing: -0.02em;
  margin: 0;
}
.goal-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-moss);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.goal-modal-close:hover {
  background: var(--color-stone);
  color: var(--color-cypress);
}

.goal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goal-option {
  display: flex;
  align-items: center;
  background: var(--color-warm-cream);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-cypress);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  text-align: left;
  width: 100%;
}
.goal-option:hover {
  border-color: var(--color-cypress);
  background: #F2EEE5;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .goal-modal { padding: 24px 22px 22px; border-radius: 18px; }
  .goal-modal-header h2 { font-size: 19px; }
  .goal-option { font-size: 15px; padding: 16px 18px; }
}

.faq-a, .disclaimer-sm, .footer-disclaimer {
  font-family: var(--font-serif);
}
.faq-a { font-size: 15px; line-height: 1.75; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-headline,
.hero-sub,
.hero-funnel,
.hero-image {
  animation: fadeUp 0.7s ease both;
}
.hero-headline { animation-delay: 0s; }
.hero-sub { animation-delay: 0.08s; }
.hero-funnel { animation-delay: 0.20s; }
.hero-image { animation-delay: 0.12s; animation-duration: 1s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .how-cards { grid-template-columns: 1fr; }
  .how-card:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  section { padding: 80px 24px; }
  .nav-inner { padding: 0 20px; }
  .trust-bar-logos { gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-links a { margin-left: 0; margin-right: 20px; }
  .hero { padding: 130px 24px 80px; min-height: 88vh; }
  .nav-logo { width: 213px; height: 62px; margin-left: 0; }
}

@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .how-cards { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .trust-bar { padding: 36px 20px; }
  .trust-bar-logos { gap: 24px; }
  .hero { padding: 110px 20px 80px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { width: 160px; height: 47px; }
  .assess-nav .nav-logo { width: 107px; height: 31px; }
  .btn { padding: 13px 22px; font-size: 13px; }
  .btn-lg { padding: 15px 26px; font-size: 14px; }
  .assess-content { padding: 40px 20px 140px; }
  .assess-headline { font-size: 1.6rem; }
  footer { padding: 36px 20px 24px; }
}

@media (max-width: 380px) {
  .hero-headline { font-size: 1.9rem; }
  .section-headline { font-size: 1.75rem; }
  .pricing-anchor-amount { font-size: 44px; }
  .trust-bar-logos { gap: 20px; }
  .trust-bar-item { font-size: 16px; }
}

/* ============================================================
   PHASE 8 — THREE-PILLAR DESIGN SYSTEM
   ============================================================ */

/* Tune headline weights for Cormorant Garamond (max 700) */
.hero-headline,
.section-headline,
.why-headline,
.faq-headline,
.pricing-headline,
.final-cta-headline,
.assess-headline,
.goal-modal-header h2 {
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

/* Italic emphasis = gold accent */
.hero-headline em,
.section-headline em,
.why-headline em,
.final-cta-headline em,
.faq-headline em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.btn { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em; }

/* Hero eyebrow (above headline) */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

/* Section lead / intro paragraph */
.section-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-moss);
  max-width: 640px;
  margin: 18px auto 0;
}

/* ===== PILLARS SECTION (homepage three-card row) ===== */
.pillars-section {
  background: var(--color-warm-cream);
  padding: 96px 0 100px;
}
.pillars-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.pillars-header .section-label { color: var(--color-gold); }
.pillars-header .section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  color: var(--color-cypress);
  margin-bottom: 6px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  padding: 38px 32px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-border);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.pillar-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-cypress);
  margin: 4px 0 6px;
}
.pillar-card-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-moss);
  margin-bottom: 6px;
}
.pillar-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cypress);
}
.pillar-card-cta svg {
  transition: transform 0.25s ease;
}
.pillar-card:hover .pillar-card-cta svg { transform: translateX(4px); }
@media (max-width: 900px) {
  .pillars-section { padding: 72px 0 80px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-card { padding: 30px 26px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 96px 0;
}
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.testimonials-header .section-label { color: var(--color-gold); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  padding: 36px 32px 30px;
  position: relative;
  margin: 0;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.5;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-cypress);
  margin: 14px 0 22px;
  font-style: italic;
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--color-border-soft);
  padding-top: 16px;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cypress);
}
.testimonial-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
}
.testimonials-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 36px;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .testimonials-section { padding: 72px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== GOAL MODAL (rich) ===== */
.goal-modal { max-width: 540px; }
.goal-modal-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin: -6px 0 18px;
  line-height: 1.55;
}
.goal-option--rich {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  background: var(--color-warm-cream);
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  width: 100%;
  font-family: var(--font-body);
}
.goal-option--rich:hover {
  border-color: var(--color-gold);
  background: var(--color-surface);
  transform: translateY(-1px);
}
.goal-option-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint-gold-12);
  color: var(--color-gold);
}
.goal-option-text { display: flex; flex-direction: column; gap: 2px; }
.goal-option-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-cypress);
}
.goal-option-text em {
  font-style: normal;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.goal-option--secondary { background: transparent; border-style: dashed; }
.goal-option--secondary .goal-option-text strong { color: var(--color-moss); }

/* ===== UTILITY: align Why section's two-paragraph body ===== */
.why-right .why-body-text + .why-body-text { margin-top: 14px; }

/* ===== Smooth nav-cta gold variant for landing pages ===== */
.btn--gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-cypress);
}
.btn--gold:hover {
  background: var(--color-gold-soft);
  border-color: var(--color-gold-soft);
}

/* ===== PHASE 8 PAGE FRAMES (PDP, category, quiz) ===== */
.page-wrap { padding-top: 92px; }

/* Category-page hero (used by weight-loss, menopause, vitality) */
.cat-hero {
  background: var(--color-warm-cream);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--color-border-soft);
}
.cat-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.cat-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.cat-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--color-cypress);
  margin-bottom: 18px;
}
.cat-hero-title em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.cat-hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-moss);
  margin-bottom: 28px;
}
.cat-hero-meta {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.005em;
  line-height: 1.65;
  margin-top: 22px;
  max-width: 460px;
}
.cat-hero-art {
  background: var(--tint-sage-22);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-moss);
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.cat-hero-art::after {
  content: 'photography';
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.cat-hero-art--photo {
  aspect-ratio: 4 / 5;
  background: transparent;
}
.cat-hero-art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero-art--photo::after { content: none; }
@media (max-width: 900px) {
  .cat-hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Generic page section spacing */
.page-section { padding: 88px 0; }
.page-section--alt { background: var(--color-warm-cream); }
.page-section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.page-section-header .section-label { color: var(--color-gold); }
.page-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-cypress);
  line-height: 1.1;
}
.page-section-header h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.page-section-header p {
  font-size: 16px;
  color: var(--color-moss);
  margin-top: 14px;
  line-height: 1.6;
}

/* ===== Product carousel (weight-loss landing) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 22px 22px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border);
}
.product-card-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.product-card-tag--branded { color: var(--color-moss); }
.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-cypress);
  line-height: 1.15;
}
.product-card-form {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}
.product-card-price {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-moss);
}
.product-card-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-cypress);
  line-height: 1.1;
}
.product-card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cypress);
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .product-grid--three { grid-template-columns: 1fr; max-width: 420px; }
}

/* ===== Pricing grid (weight-loss product buckets) ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.price-tier {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.price-tier-icon {
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: transparent;
}
.price-tier-icon img {
  width: 106px;
  height: 106px;
  display: block;
  border-radius: 50%;
}
.price-tier-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-cypress);
  line-height: 1.15;
  margin-bottom: 4px;
}
.price-tier-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.price-tier-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border-soft);
  margin-bottom: 20px;
}
.price-tier-from {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cypress);
  font-weight: 700;
  min-height: 14px;
  margin-bottom: 6px;
}
.price-tier-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-cypress);
  line-height: 1;
  margin-bottom: 0;
}
.price-tier-amount sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 400;
}
.price-tier-period-inline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 2px;
}
.price-tier-amount--text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cypress);
  padding-top: 12px;
}
.price-tier-pill {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: #F5F6F0;
  color: var(--color-cypress);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 40px auto 0;
}
.pricing-cta .btn { min-width: 280px; }
.pricing-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-moss);
}
.pricing-cta-note img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== PDP (Product Detail Page) ===== */
.pdp-nav {
  position: sticky;
  top: 0;
  background: var(--color-warm-cream);
  border-bottom: 1px solid var(--color-border-soft);
  padding: 14px 0;
  z-index: 100;
}
.pdp-nav-inner {
  max-width: none;
  margin: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdp-nav-logo {
  display: inline-block;
  width: 293px;
  height: 85px;
  margin-left: 27px;
  background: var(--logo-cypress) left center / contain no-repeat;
  font-size: 0;
  color: transparent;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
@media (max-width: 1100px) { .pdp-nav-logo { width: 213px; height: 62px; } }
@media (max-width: 720px) { .pdp-nav-logo { width: 160px; height: 47px; margin-left: 0; } }
.pdp-nav-trust {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.pdp-hero {
  padding: 60px 0 80px;
  background: var(--color-warm-cream);
}
.pdp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pdp-hero-inner--with-product {
  grid-template-columns: 1.05fr 220px 1fr;
  gap: 28px;
  align-items: center;
}
.pdp-hero-product-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.pdp-hero-product-stage::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 6%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(20,52,43,0.28) 0%, rgba(20,52,43,0.14) 38%, rgba(20,52,43,0) 72%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.7s ease, filter 0.7s ease;
}
.pdp-hero-product-img {
  max-width: 100%;
  max-height: 540px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(20,52,43,0.20)) drop-shadow(0 8px 14px rgba(20,52,43,0.10));
  font-size: 0;
  color: transparent;
  transform-origin: 50% 92%;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.7s ease;
  will-change: transform;
}
.pdp-hero-product-stage:hover .pdp-hero-product-img {
  transform: translateY(-22px) scale(1.04) rotate(-1.2deg);
  filter: drop-shadow(0 44px 48px rgba(20,52,43,0.22)) drop-shadow(0 12px 20px rgba(20,52,43,0.12));
}
.pdp-hero-product-stage:hover::before {
  transform: scaleX(1.18) scaleY(0.6);
  opacity: 0.7;
  filter: blur(14px);
}
.pdp-hero-product-img:not([src]),
.pdp-hero-product-img[src=""] { display: none; }
@media (max-width: 1100px) {
  .pdp-hero-inner--with-product { grid-template-columns: 1fr 200px 0.95fr; gap: 20px; }
  .pdp-hero-product-stage { min-height: 480px; }
  .pdp-hero-product-img { max-height: 480px; }
}
@media (max-width: 980px) {
  .pdp-hero-inner--with-product { grid-template-columns: 1fr; gap: 28px; }
  .pdp-hero-product-stage { min-height: 420px; order: -1; }
  .pdp-hero-product-img { max-height: 480px; }
}
.pdp-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.pdp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-cypress);
  margin-bottom: 14px;
}
.pdp-hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--color-gold);
  margin-bottom: 22px;
}
.pdp-hero-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-moss);
  margin-bottom: 24px;
}
.pdp-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pdp-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-cypress);
  line-height: 1.5;
}
.pdp-bullet-list li::before {
  content: '';
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tint-gold-22);
  position: relative;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A96E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.pdp-buybox {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  padding: 32px 28px;
  position: sticky;
  top: 110px;
}
.pdp-buybox-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-cypress);
  line-height: 1;
}
.pdp-buybox-price sup { font-size: 20px; }
.pdp-buybox-period { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }
.pdp-buybox-ongoing { font-size: 14px; color: var(--color-moss); margin-top: 8px; line-height: 1.5; }
.pdp-buybox hr { border: none; border-top: 1px solid var(--color-border-soft); margin: 22px 0; }
.pdp-buybox-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.pdp-buybox-option {
  border: 1.5px solid var(--color-border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pdp-buybox-option:hover { border-color: var(--color-border-strong); }
.pdp-buybox-option.selected {
  border-color: var(--color-gold);
  background: var(--tint-gold-12);
}
.pdp-buybox-option-name { font-size: 14px; font-weight: 600; color: var(--color-cypress); }
.pdp-buybox-option-detail { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }
.pdp-buybox-option-price { font-size: 14px; font-weight: 600; color: var(--color-cypress); white-space: nowrap; }
.pdp-buybox-disclaimer { font-size: 11px; color: var(--color-text-muted); margin-top: 20px; line-height: 1.65; text-align: center; }

@media (max-width: 900px) {
  .pdp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .pdp-buybox { position: static; }
}

/* PDP info sections */
.pdp-section { padding: 80px 0; }
.pdp-section--alt { background: var(--color-warm-cream); }
.pdp-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
.pdp-section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.pdp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-cypress);
  line-height: 1.1;
}
.pdp-section-title em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.pdp-section-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-moss);
}
.pdp-section-body p + p { margin-top: 16px; }
@media (max-width: 900px) {
  .pdp-section-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* PDP step cards */
.pdp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pdp-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 28px 24px;
}
.pdp-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tint-gold-22);
  color: var(--color-cypress);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pdp-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pdp-step-header .pdp-step-num { margin-bottom: 0; }
.pdp-step-header .pdp-step-title { margin-bottom: 0; }
.pdp-step-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-cypress);
  margin-bottom: 8px;
}
.pdp-step-body { font-size: 14px; color: var(--color-moss); line-height: 1.55; }
@media (max-width: 900px) { .pdp-steps { grid-template-columns: 1fr; } }

/* Compliance / disclosure box */
.disclosure-box {
  background: var(--tint-gold-12);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.disclosure-box-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-cypress);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.disclosure-box-body {
  font-size: 14px;
  color: var(--color-moss);
  line-height: 1.6;
}

/* PDP final CTA strip */
.pdp-final-cta {
  background: var(--gradient-dark-green);
  color: var(--color-text-on-dark);
  padding: 80px 0;
  text-align: center;
}
.pdp-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--color-text-on-dark);
}
.pdp-final-cta h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.pdp-final-cta p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-on-dark-muted);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.pdp-final-cta .btn {
  background: var(--color-gold);
  color: var(--color-cypress);
  border-color: var(--color-gold);
}
.pdp-final-cta .btn:hover { background: var(--color-gold-soft); border-color: var(--color-gold-soft); }

/* Symptoms grid (HRT page) */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.symptom-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
}
.symptom-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tint-gold-22);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.symptom-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-cypress);
  margin-bottom: 6px;
}
.symptom-card p {
  font-size: 13px;
  color: var(--color-moss);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .symptoms-grid { grid-template-columns: 1fr; }
}

/* Formulary list (HRT page — links to per-medication detail pages) */
.formulary-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.formulary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 10px;
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
a.formulary-item:hover {
  border-color: var(--color-border);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}
a.formulary-item:hover .formulary-item-name { color: var(--color-cypress-dark, var(--color-cypress)); }
.formulary-item-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-cypress);
}
.formulary-item-form {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 700px) { .formulary-list { grid-template-columns: 1fr; } }

/* Quiz layout (per-pillar simple intake) */
.quiz-shell {
  min-height: 100vh;
  background: var(--color-warm-cream);
  display: flex;
  flex-direction: column;
}
.quiz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--color-border-soft);
}
.quiz-topbar-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-cypress);
  text-decoration: none;
}
.quiz-topbar-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
}
.quiz-progress-bar {
  width: 120px;
  height: 4px;
  background: var(--color-border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.quiz-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
}
.quiz-card {
  width: 100%;
  max-width: 580px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  padding: 48px 44px;
}
.quiz-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.quiz-headline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-cypress);
  line-height: 1.15;
  margin-bottom: 12px;
}
.quiz-headline em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.quiz-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-moss);
  margin-bottom: 28px;
  line-height: 1.55;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.quiz-option {
  background: var(--color-warm-cream);
  border: 1.5px solid var(--color-border-soft);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-cypress);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.quiz-option:hover { border-color: var(--color-gold); transform: translateY(-1px); }
.quiz-option.selected { border-color: var(--color-gold); background: var(--tint-gold-12); }
.quiz-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quiz-back {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.quiz-back:hover { color: var(--color-cypress); }
.quiz-input {
  width: 100%;
  background: var(--color-warm-cream);
  border: 1.5px solid var(--color-border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-cypress);
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.quiz-input:focus { outline: none; border-color: var(--color-gold); }
@media (max-width: 700px) {
  .quiz-card { padding: 32px 24px; border-radius: 12px; }
  .quiz-headline { font-size: 26px; }
}

/* Reduce em underline in <em> Cormorant — it's italic enough */
em { font-style: italic; }


/* Quiz step visibility — only active step is rendered */
.quiz-step { display: none; }
.quiz-step.active { display: block; }

/* PDP section photo (editorial: photo on left, title + body stacked on right) */
.pdp-section-grid:has(> .pdp-section-photo) {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "photo title"
    "photo body";
  column-gap: 64px;
  row-gap: 28px;
  align-items: start;
}
.pdp-section-grid > .pdp-section-photo {
  grid-area: photo;
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.pdp-section-grid:has(> .pdp-section-photo) > div:not(.pdp-section-body) {
  grid-area: title;
  align-self: end;
}
.pdp-section-grid:has(> .pdp-section-photo) > .pdp-section-body {
  grid-area: body;
}
@media (max-width: 900px) {
  .pdp-section-grid:has(> .pdp-section-photo) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title"
      "photo"
      "body";
    column-gap: 0;
    row-gap: 24px;
  }
  .pdp-section-grid > .pdp-section-photo {
    max-width: 100%;
    aspect-ratio: 5 / 4;
  }
}

/* ============================================================
   LANDING — "WHAT YOU CAN RELY ON" AUTHORITY BLOCKS
   ============================================================ */
.rely-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.rely-block {
  background: var(--color-surface);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rely-block-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.rely-block-icon img {
  display: block;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  object-fit: contain;
  clip-path: circle(42% at 50% 50%);
}
.rely-block-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-cypress);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.rely-block-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}
.rely-cite {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: super;
  margin-left: 1px;
}
.rely-cite a {
  color: var(--color-moss);
  text-decoration: none;
  font-weight: 600;
}
.rely-cite a:hover { color: var(--color-cypress); text-decoration: underline; }
.references-section {
  padding: 40px 0 24px;
  background: var(--color-warm-cream);
  border-top: 1px solid var(--color-stone);
}
.references-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold, var(--color-moss));
  margin: 0 0 14px;
}
.rely-footnotes {
  margin: 0;
  padding: 0 0 0 4px;
  list-style: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.rely-footnotes li {
  margin: 0 0 10px;
  padding-left: 4px;
}
.rely-footnotes li:last-child { margin-bottom: 0; }
.rely-footnotes sup {
  font-weight: 600;
  color: var(--color-cypress);
  margin-right: 4px;
}
.rely-footnotes em { font-style: italic; }
.rely-footnotes a {
  color: var(--color-moss);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.rely-footnotes a:hover { color: var(--color-cypress); }
@media (max-width: 900px) {
  .rely-grid { grid-template-columns: 1fr; gap: 16px; }
  .rely-block { padding: 24px 20px; }
  .rely-block-icon { width: 92px; height: 92px; margin-bottom: 16px; }
  .rely-block-icon img { width: 92px; height: 92px; }
  .references-section { padding: 28px 0 18px; }
  .rely-footnotes { font-size: 12px; }
}

/* ============================================================
   LANDING — TRUST SIGNAL ROW
   ============================================================ */
.trust-row-section {
  padding: 56px 0 24px;
  background: var(--color-warm-cream);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.trust-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.trust-signal-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-citron);
  color: var(--color-cypress);
  flex: 0 0 48px;
}
.trust-signal-icon svg { width: 22px; height: 22px; }
.trust-signal-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-cypress);
  line-height: 1.35;
  max-width: 160px;
}
@media (max-width: 900px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .trust-signal-label { max-width: none; }
}

/* ============================================================
   PDP — CLINICAL EVIDENCE PULL QUOTE
   ============================================================ */
.pdp-evidence-section {
  background: var(--color-warm-cream);
  padding: 24px 0 48px;
}
.pdp-evidence {
  max-width: 880px;
  margin: 0 auto;
  padding: 22px 28px;
  background: var(--color-citron);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
}
.pdp-evidence-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 8px;
}
.pdp-evidence-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-cypress);
  margin: 0;
}
.pdp-evidence-disclaimer {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--color-moss);
  font-style: italic;
}
@media (max-width: 720px) {
  .pdp-evidence { padding: 18px 22px; }
}

/* ============================================================
   FOOTER — paragraph spacing for split disclaimer
   ============================================================ */
.footer-disclaimer p {
  margin: 0 0 10px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
