/* =====================================================
   COLORADO HORMONES — STYLES.CSS
   Mobile-first. Desktop layered with min-width queries.
   ===================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy:       #1a1a1a;
  --navy-mid:   #0f3d46;
  --navy-light: #174f5a;
  --gold:       #c8a35a;
  --gold-light: #d9b87a;
  --gold-dim:   rgba(200,163,90,0.15);
  --cream:      #f6f3ee;
  --cream-dim:  rgba(246,243,238,0.92);
  --white:      #ffffff;
  --muted:      rgba(246,243,238,0.7);
}

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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--gold);
  color: #000;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== BODY ===== */
body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}

/* =====================================================
   NAV — MOBILE DEFAULT
   ===================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(to bottom, rgba(26,26,26,0.95) 0%, transparent 100%);
}
.nav-logo { display: block; flex-shrink: 0; }
.nav-logo img { height: 44px; display: block; }
.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-links {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links.open {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(18,18,18,0.99);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 100;
}
.nav-link {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,243,238,0.85);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: none;
  color: var(--cream-dim);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid rgba(246,243,238,0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(246,243,238,0.5); }

/* =====================================================
   HERO — MOBILE: FULL-BLEED OVERLAY
   Blurred photo fills screen, text overlaid at bottom.
   ===================================================== */
.hero {
  position: relative;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
  display: block;
  filter: blur(4px);
  transform: scale(1.08);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,16,22,0.55) 0%,
    rgba(8,16,22,0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  background: transparent;
  padding: 80px 24px 84px;
  position: relative;
  z-index: 2;
}

/* Hide legacy hero elements */
.hero-line, .hero-bg, .hero-image-cta, .hero-badge-cover, .hero-eyebrow { display: none; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8.5vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(246,243,238,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =====================================================
   SECTION BASE — MOBILE
   ===================================================== */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold-light); }

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

/* =====================================================
   PAGE HEADER (inner pages) — MOBILE
   ===================================================== */
.page-header { padding: 80px 20px 44px; }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 8.5vw, 42px) !important;
  font-weight: 300 !important;
  color: var(--cream) !important;
  line-height: 1.1 !important;
  margin: 16px 0 20px !important;
  text-wrap: balance;
}
.page-header p {
  font-size: 17px !important;
  color: rgba(246,243,238,0.72) !important;
  line-height: 1.8;
}

/* =====================================================
   LIGHT SECTIONS
   ===================================================== */
.section-light { background: #1a1a1a; padding: 40px 0; }
.section-light .section-inner {
  background: var(--cream);
  border-radius: 16px;
  margin: 0 16px;
  padding: 44px 24px;
  max-width: calc(100% - 32px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}
.section-light .section-label { color: var(--navy-mid); }
.section-light .section-title { color: var(--navy); font-weight: 400; }
.section-light .section-title em { color: var(--gold); }
.section-light .section-inner p { font-size: 17px; line-height: 1.85; color: #1a1a1a; }
.section-light .divider { background: var(--gold); }
.section-light p, .section-light li { color: #111111; }
.section-light .symptom-list li { color: #111111 !important; font-weight: 400 !important; }
.section-light .symptom-note { color: #2a2a2a !important; font-style: italic; }
.section-light .symptom-list li::before { color: var(--gold); }
.section-light .step-dot { border-color: rgba(15,61,70,0.35); background: rgba(15,61,70,0.09); color: var(--navy); }
.section-light .step-title { color: var(--navy); }
.section-light .step-body { color: #1a1a1a; }

/* =====================================================
   POSITIONING SECTION — MOBILE
   ===================================================== */
.positioning-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.positioning-proof { display: flex; flex-direction: column; gap: 0; }
.positioning-proof > div { padding: 24px !important; }

/* =====================================================
   SYMPTOMS — MOBILE
   ===================================================== */
.symptoms .section-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }

.symptom-list {
  list-style: none;
  column-count: 1;
  margin-top: 16px;
}
.symptom-list li {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  break-inside: avoid;
  margin-bottom: 12px;
}
.symptom-list li::before {
  content: '\2022';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.symptom-note {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  font-style: italic;
}

/* =====================================================
   DIFFERENTIATORS — MOBILE
   ===================================================== */
.diff-list { margin-top: 36px; border-top: 1px solid rgba(200,164,90,0.2); }
.diff-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(200,164,90,0.12);
}
.diff-lhs { display: flex; align-items: baseline; gap: 16px; }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}
.diff-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}
.diff-body { font-size: 17px; color: var(--cream-dim); line-height: 1.8; }

/* =====================================================
   HOW IT WORKS / STEPS — MOBILE
   ===================================================== */
.how { border-top: 1px solid rgba(200,163,90,0.12); }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 16px;
  margin-top: 36px;
  position: relative;
}
.steps::before { display: none; }
.step { padding: 0 4px; text-align: center; position: relative; }
.step-dot {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,164,90,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  background: var(--navy-mid);
  position: relative; z-index: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-body { font-size: 16px; color: var(--cream-dim); line-height: 1.75; }

/* =====================================================
   PROVIDER — MOBILE
   ===================================================== */
.provider-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 20px;
}
.provider-photo { position: relative; }
.provider-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 260px;
  margin: 0 auto;
  background: var(--navy-light);
  border: 1px solid rgba(200,164,90,0.2);
  position: relative;
  overflow: hidden;
}
.provider-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 80px; height: 80px;
  border: 1px solid rgba(200,164,90,0.2);
  border-radius: 50%;
}
.provider-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
}
.provider-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.provider-bio {
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 24px;
}
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
}
.credential-list li {
  font-size: 15px;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.credential-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

/* =====================================================
   PRICING — MOBILE
   ===================================================== */
.pricing-stack { margin-top: 36px; display: flex; flex-direction: column; }
.pricing-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: rgba(200,164,90,0.45);
  font-size: 18px;
}
.pricing-row {
  background: var(--navy);
  border: 1px solid rgba(200,164,90,0.14);
  border-radius: 10px;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.pricing-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.pricing-row-phase {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.pricing-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pricing-row-tagline {
  font-size: 15px;
  color: rgba(246,243,238,0.72);
  line-height: 1.8;
}
.pricing-row-right { display: flex; flex-direction: column; }
.pricing-row-price {
  font-family: 'Jost', sans-serif;
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-row-price sup { font-size: 20px; font-weight: 300; vertical-align: super; }
.pricing-row-price .per { font-size: 18px; font-weight: 300; color: rgba(246,243,238,0.72); }
.pricing-row-cadence { font-size: 12px; color: rgba(246,243,238,0.4); margin-bottom: 20px; }
.pricing-row-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.pricing-row-features li {
  font-size: 15px;
  color: rgba(246,243,238,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.pricing-row-features li::before {
  content: '';
  width: 12px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.pricing-row-cherry {
  margin-top: 12px; margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(200,164,90,0.18);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(246,243,238,0.45);
  line-height: 1.7;
}
.pricing-row-cherry strong { color: var(--gold-light); font-weight: 400; }

/* =====================================================
   WAITLIST / FORM — MOBILE
   ===================================================== */
.waitlist { border-top: 1px solid rgba(200,163,90,0.15); }
.waitlist .section-inner { text-align: center; }
.waitlist-form { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(246,243,238,0.15);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: rgba(200,164,90,0.5); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.form-success {
  display: none;
  background: var(--gold-dim);
  border: 1px solid rgba(200,164,90,0.3);
  padding: 20px 28px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--gold-light);
  text-align: center;
}

/* =====================================================
   FOOTER — MOBILE
   ===================================================== */
footer { padding: 40px 20px; text-align: center; border-top: 1px solid rgba(246,243,238,0.07); }
.footer-logo { margin-bottom: 16px; }
.footer-text { font-size: 12px; color: var(--muted); line-height: 1.8; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* =====================================================
   MOBILE CTA BAR
   ===================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(18,18,18,0.97);
  border-top: 1px solid rgba(200,163,90,0.22);
  z-index: 199;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-cta-bar.visible { display: flex; }
.mobile-cta-bar .btn-primary {
  width: 100%;
  padding: 15px 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
body.mobile-bar-showing { padding-bottom: 72px; }

/* =====================================================
   MODAL — MOBILE: BOTTOM SHEET
   ===================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.88);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: var(--navy-mid);
  border: 1px solid rgba(200,164,90,0.2);
  max-width: 100%;
  width: 100%;
  padding: 40px 20px 36px;
  position: relative;
  border-radius: 8px 8px 0 0;
  animation: fadeUp 0.35s ease both;
}
.modal-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}
.modal-divider { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; margin-bottom: 20px; }
.modal-body { font-size: 14px; color: var(--cream-dim); line-height: 1.85; margin-bottom: 16px; }
.modal-note { font-size: 13px; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}
.modal-close:hover { color: var(--cream); }

/* =====================================================
   GRID HELPERS — MOBILE: STACKED
   Uses !important to override inline styles in HTML.
   ===================================================== */
.two-col-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  margin-top: 32px !important;
}
.three-col-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  margin-top: 32px !important;
}
.eval-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2px !important;
  margin-top: 36px !important;
}
.eval-grid > div { padding: 28px 20px !important; }

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


/* =====================================================
   TABLET (601px+)
   ===================================================== */
@media (min-width: 601px) {
  .section-inner { padding: 60px 32px; }
  .section-light .section-inner { padding: 56px 40px; margin: 0 24px; max-width: calc(100% - 48px); }
  .page-header { padding: 88px 32px 52px; }
  .page-header h1 { font-size: clamp(30px, 7vw, 48px) !important; }
  .symptom-list { column-count: 2; column-gap: 24px; }
  .symptom-list li { font-size: 17px; }
  .section-light .symptom-list li { font-size: 17px !important; }
  .symptom-note { font-size: 15px; }
  .section-light .symptom-note { font-size: 15px !important; }
}


/* =====================================================
   DESKTOP (901px+)
   ===================================================== */
@media (min-width: 901px) {

  /* Nav */
  nav { padding: 22px 48px; }
  .nav-logo img { height: 52px; }
  .nav-links {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    z-index: auto;
  }
  .nav-link { font-size: 11px; letter-spacing: 0.14em; color: rgba(246,243,238,0.65); }
  .nav-cta {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,164,90,0.35);
    padding: 9px 22px;
    border-radius: 2px;
    transition: all 0.4s;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    background: none;
    font-family: 'Jost', sans-serif;
  }
  .nav-cta.nav-cta--hidden { opacity: 0; pointer-events: none; }
  .nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); }
  .nav-toggle { display: none; }

  /* Kill mobile bar on desktop */
  .mobile-cta-bar { display: none !important; }
  body.mobile-bar-showing { padding-bottom: 0; }

  /* Hero — desktop: full-bleed overlay */
  .hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: auto;
  }
  .hero-photo::before {
    background: linear-gradient(
      to right,
      #1a1a1a 0%,
      #1a1a1a 28%,
      rgba(26,26,26,0.88) 42%,
      rgba(26,26,26,0.25) 62%,
      transparent 80%
    );
  }
  .hero-photo img { object-position: center top; filter: none; transform: none; }
  .hero-content {
    background: transparent;
    padding: 140px 2% 80px 10%;
    max-width: 720px;
    position: relative;
    z-index: 2;
  }
  .hero h1 { font-size: clamp(40px, 4.5vw, 74px); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; max-width: 440px; margin-bottom: 48px; }
  .hero-cta-group { flex-direction: row; gap: 16px; }
  .btn-primary { display: inline-block; width: auto; }
  .btn-ghost { display: inline-block; }

  /* Sections */
  .section-inner { max-width: 1100px; padding: 100px 48px; }
  .section-title { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; }
  .divider { margin: 28px 0; }

  /* Page header */
  .page-header { padding: 160px 10% 80px; }
  .page-header h1 {
    font-size: clamp(42px, 6vw, 72px) !important;
    margin: 20px 0 28px !important;
  }
  .page-header p { font-size: 18px !important; max-width: 580px; }

  /* Positioning */
  .positioning-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
  .positioning-proof > div { padding: 32px !important; }

  /* Symptoms */
  .symptoms .section-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .symptom-list { column-count: 2; column-gap: 40px; }
  .symptom-list li { font-size: 17px; }
  .section-light .symptom-list li { font-size: 17px !important; }
  .section-light { padding: 64px 0; }
  .section-light .section-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 80px 64px;
    border-radius: 20px;
  }

  /* Differentiators */
  .diff-list { margin-top: 64px; }
  .diff-item { grid-template-columns: 2fr 3fr; gap: 40px 60px; padding: 44px 0; }
  .diff-title { font-size: clamp(20px, 2.4vw, 28px); }

  /* Steps */
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; }
  .steps::before {
    display: block;    content: '';
    position: absolute;
    top: 28px; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .section-light .steps::before {
    background: linear-gradient(to right, transparent, rgba(15,61,70,0.3), transparent);
  }
  .step { padding: 0 28px; }
  .step-dot { width: 56px; height: 56px; font-size: 20px; margin-bottom: 28px; }
  .step-title { font-size: 22px; margin-bottom: 12px; }

  /* Provider */
  .provider-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    padding: 80px 48px;
    max-width: 1100px;
  }
  .provider-photo-frame {
    width: 100%;
    height: 520px;
    aspect-ratio: auto;
    max-width: none;
  }
  .provider-name { font-size: 42px; }
  .provider-bio { font-size: 16px; margin-bottom: 32px; }

  /* Pricing */
  .pricing-row { padding: 40px 48px; grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .pricing-row-name { font-size: 32px; }
  .pricing-row-tagline { font-size: 15px; }
  .pricing-row-price { font-size: 56px; }
  .pricing-row-price sup { font-size: 22px; }
  .pricing-row-price .per { font-size: 20px; }
  .pricing-row-features { grid-template-columns: 1fr 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr 1fr; }
  .waitlist .section-inner { max-width: 640px; }

  /* Footer */
  footer { padding: 48px; }
  .footer-links { gap: 32px; }

  /* Modal — centered on desktop */
  .modal-backdrop { padding: 24px; align-items: center; }
  .modal-box { max-width: 540px; padding: 52px 48px; border-radius: 0; }

  /* Grid helpers — desktop multi-column */
  .two-col-grid { grid-template-columns: 1fr 1fr !important; gap: 48px !important; margin-top: 48px !important; }
  .three-col-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 32px !important; margin-top: 52px !important; }
  .eval-grid { grid-template-columns: 1fr 1fr !important; gap: 2px !important; margin-top: 52px !important; }
  .eval-grid > div { padding: 36px 40px !important; }
}

/* =====================================================
   WIDE DESKTOP (1200px+)
   ===================================================== */
@media (min-width: 1200px) {
  nav { padding: 22px 64px; }
  .section-inner { padding: 100px 64px; }
}
}
