/* ============================================
   MRP Landing Page — Metabolic Rhythm Reset
   Design: Sloane Aris (CCD) — v2.0 SA Quality Elevation
   Build: Noor al-Rashid (Lead Frontend Architect)

   Mobile-first. Design target: 375px.
   Breakpoints: 768px (tablet), 1280px (desktop).
   Typography: Playfair Display + Newsreader + Instrument Sans
   All colors from Sloane's palette. No hex outside :root.
   ============================================ */

:root {
  /* Colors — unchanged from v1 */
  --color-primary:      #1A2B3C;
  --color-surface:      #F7F8FA;
  --color-card:         #FFFFFF;
  --color-cta:          #0E9C8A;
  --color-cta-hover:    #0B7D6E;
  --color-accent-mint:  #AAF0D1;
  --color-accent-blue:  #3A7BD5;
  --color-text:         #2D3748;
  --color-text-light:   #64748B;
  --color-success:      #22C55E;
  --color-warm:         #F59E0B;
  --color-tint:         #F0F4F8;

  /* v2 atmospheric colors */
  --hero-center:        #243B53;
  --hero-edge:          #111D2B;

  /* v2 Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Newsreader', Georgia, serif;
  --font-sans:    'Instrument Sans', system-ui, sans-serif;

  /* Spacing — unchanged */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --space-xxl:  7.5rem;

  /* v2 radii */
  --radius-btn:   10px;
  --radius-card:  16px;
  --radius-pill:  999px;
  --radius-photo: 50%;

  /* v2 shadows */
  --shadow-card:
    0 1px 3px rgba(26, 43, 60, 0.04),
    0 8px 24px rgba(26, 43, 60, 0.08),
    0 24px 48px rgba(26, 43, 60, 0.04);
  --shadow-elevated:
    0 1px 3px rgba(26, 43, 60, 0.04),
    0 8px 24px rgba(26, 43, 60, 0.08),
    0 24px 48px rgba(26, 43, 60, 0.04);
  --shadow-photo: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-cta: 0 4px 14px rgba(14, 156, 138, 0.3);

  /* Layout */
  --content-max:  720px;
  --section-max:  960px;
  --page-max:     1440px;
  --margin-mobile: 24px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* v2: Selection color */
::selection {
  background: rgba(14, 156, 138, 0.2);
  color: var(--color-primary);
}

/* v2: Noise texture on light surfaces */
.section--surface,
.section--tint {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Utilities */
.icon--check { color: var(--color-success); flex-shrink: 0; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-cta);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   BUTTONS — v2: glow shadow, lift hover
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.3px;
  text-align: center;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.15s ease;
}

.btn--primary {
  background-color: var(--color-cta);
  color: var(--color-card);
  padding: 1rem 2rem;
  min-height: 48px;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(14, 156, 138, 0.4);
  background-color: var(--color-cta-hover);
}

.btn--primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(14, 156, 138, 0.3);
}

.btn--full { width: 100%; }

.btn--hero {
  font-size: 1.0625rem;
  padding: 1.125rem 2rem;
  min-height: 56px;
  width: 100%;
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.125rem;
  min-height: 36px;
  background-color: var(--color-cta);
  color: var(--color-card);
  box-shadow: none;
}

.btn--sm:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* ============================================
   STICKY HEADER — v2: frosted glass
   ============================================ */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(26, 43, 60, 0.92);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 52px;
}

.sticky-header.is-visible { transform: translateY(0); }

.sticky-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-header__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-card);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ============================================
   HERO — v2: breathing gradient, atmosphere
   ============================================ */
.hero {
  background: radial-gradient(
    ellipse 120% 80% at 50% 40%,
    var(--hero-center) 0%,
    var(--color-primary) 50%,
    var(--hero-edge) 100%
  );
  background-size: 200% 200%;
  animation: breathe 12s ease-in-out infinite;
  color: var(--color-card);
  padding: var(--space-lg) var(--margin-mobile) var(--space-xl);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

/* Atmospheric image layer behind hero gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-atmosphere-1.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes breathe {
  0%, 100% { background-position: 50% 40%; }
  50% { background-position: 52% 43%; }
}

.hero__inner {
  max-width: var(--section-max);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-mint);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero__author {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-photo);
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-photo);
  background-color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero__photo-placeholder {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-card);
  opacity: 0.5;
}

.hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__author-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
}

.hero__author-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.2px;
}

.hero__stat { margin-top: 6px; }

.hero__stat-numbers {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--color-warm);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6875rem;
  margin-top: 4px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.hero__badge .icon--check { width: 14px; height: 14px; }

.hero__results-qualifier {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  border-left: 2px solid var(--color-accent-mint);
  padding-left: var(--space-xs);
  margin-top: 6px;
  display: block;
}

.hero__reassurance {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.5;
  margin-top: var(--space-sm);
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.hero__disclaimer {
  font-size: 0.625rem;
  opacity: 0.4;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-xl) var(--margin-mobile);
}

.section--surface { background-color: var(--color-surface); }
.section--white {
  background-color: var(--color-card);
  position: relative;
}

/* Science texture layer on solution section */
#solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('science-texture-1.jpg') center/cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

#solution > * {
  position: relative;
  z-index: 1;
}
.section--tint { background-color: var(--color-tint); }

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 560px;
  margin: 0 auto;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.section__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.35;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.section__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-card);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 43, 60, 0.06);
}

.card p { margin-bottom: var(--space-sm); }
.card p:last-child { margin-bottom: 0; }
.card__emphasis { font-weight: 500; color: var(--color-primary); }

/* ============================================
   PHASE CARDS — v2: staggered diagonal
   ============================================ */
.phase-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.phase-card {
  background-color: var(--color-card);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(26, 43, 60, 0.12),
    0 2px 4px rgba(26, 43, 60, 0.04);
}

/* v2: gradient accent borders */
.phase-card--glucose   { border-image: linear-gradient(180deg, #3A7BD5, #2563EB) 1; border-left-width: 4px; }
.phase-card--circadian { border-image: linear-gradient(180deg, #0E9C8A, #047857) 1; border-left-width: 4px; }
.phase-card--flexibility { border-image: linear-gradient(180deg, #7C3AED, #5B21B6) 1; border-left-width: 4px; }
.phase-card--checklist   { border-left-color: var(--color-primary); }

/* v2: staggered indent on mobile (journey progression) */
.phase-card:nth-child(2) { margin-left: var(--space-sm); }
.phase-card:nth-child(3) { margin-left: var(--space-md); }
.phase-card:nth-child(4) { margin-left: var(--space-lg); }

.phase-card__header { margin-bottom: var(--space-xs); }

.phase-card__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-light);
}

.phase-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-top: 2px;
}

.phase-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ============================================
   CALLOUT — v2: gradient border + inner glow
   ============================================ */
.callout {
  background: linear-gradient(135deg, #F0F7FF 0%, var(--color-surface) 100%);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--color-accent-blue), var(--color-cta)) 1;
  box-shadow: inset 0 0 30px rgba(58, 123, 213, 0.04);
}

.callout p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   STATS ROW — v2: oversized Playfair Black
   ============================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stat-block {
  text-align: center;
  flex: 1;
  max-width: 160px;
}

.stat-block__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.stat-block__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stats-qualifier {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  border-left: 2px solid var(--color-accent-mint);
  padding-left: var(--space-xs);
  margin: calc(-1 * var(--space-md)) auto var(--space-md);
  max-width: fit-content;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================
   PRICING CARD — v2: premium elevation
   ============================================ */
.pricing-card {
  background: var(--color-card);
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-elevated);
  text-align: center;
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__terms {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.3px;
  margin-bottom: var(--space-md);
}

.pricing-card__includes {
  text-align: left;
  margin-bottom: var(--space-md);
}

.pricing-card__includes li {
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 1.75rem;
  border-bottom: 1px solid var(--color-surface);
}

.pricing-card__includes li:last-child { border-bottom: none; }

.pricing-card__includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.pricing-card__guarantee {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
  letter-spacing: 0.3px;
}

.pricing-meta {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   FAQ — editorial serif
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background-color: var(--color-card);
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid rgba(26, 43, 60, 0.06);
}

.faq-item__question {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-light);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item[open] .faq-item__question::after { content: "\2212"; }

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text);
}

.faq-item__answer p { margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-primary);
  color: var(--color-card);
  padding: var(--space-lg) var(--margin-mobile);
}

.footer__inner { max-width: var(--content-max); margin: 0 auto; }

.footer__copyright {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.5;
  letter-spacing: 0.3px;
  margin-bottom: var(--space-sm);
}

.footer__disclaimer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.35;
  line-height: 1.8;
}

/* ============================================
   MOBILE BOTTOM CTA BAR
   ============================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-xs) var(--margin-mobile);
  padding-bottom: max(var(--space-xs), env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { min-height: 48px; }

/* ============================================
   SCROLL ANIMATIONS — v2: staggered heartbeat
   ============================================ */
.section__inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section__inner.is-revealed > *:nth-child(1) { transition-delay: 0ms; }
.section__inner.is-revealed > *:nth-child(2) { transition-delay: 100ms; }
.section__inner.is-revealed > *:nth-child(3) { transition-delay: 200ms; }
.section__inner.is-revealed > *:nth-child(4) { transition-delay: 300ms; }
.section__inner.is-revealed > *:nth-child(5) { transition-delay: 400ms; }
.section__inner.is-revealed > *:nth-child(6) { transition-delay: 500ms; }

.section__inner.is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
  :root { --margin-mobile: 32px; }

  .hero { padding: var(--space-xl) var(--margin-mobile); }
  .hero__headline { font-size: 2.75rem; }
  .hero__photo { width: 140px; height: 140px; }
  .hero__stat-numbers { font-size: 2rem; }
  .hero__author-name { font-size: 1rem; }
  .btn--hero { width: auto; min-width: 280px; }
  .hero__reassurance { text-align: left; }

  .section { padding: var(--space-xxl) var(--margin-mobile); }
  .section__heading { font-size: 1.75rem; }
  .section__quote { font-size: 1.625rem; }

  .phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  /* Reset stagger indent for grid */
  .phase-card:nth-child(2),
  .phase-card:nth-child(3),
  .phase-card:nth-child(4) { margin-left: 0; }
  /* Diagonal stagger via grid offset */
  .phase-card:nth-child(2) { transform: translateX(16px); }
  .phase-card:nth-child(3) { transform: translateX(16px); }
  .phase-card:nth-child(4) { transform: translateX(32px); }
  .phase-card:nth-child(2):hover { transform: translateX(16px) translateY(-4px); }
  .phase-card:nth-child(3):hover { transform: translateX(16px) translateY(-4px); }
  .phase-card:nth-child(4):hover { transform: translateX(32px) translateY(-4px); }

  .stats-row { gap: var(--space-lg); }
  .stat-block__number { font-size: 4rem; }

  .trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
  }

  .mobile-cta-bar { display: none; }
}

/* ============================================
   DESKTOP (1280px)
   ============================================ */
@media (min-width: 1280px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .hero__headline { font-size: 3.5rem; letter-spacing: 1px; }
  .hero__subheadline { font-size: 1.125rem; }
  .hero__stat-numbers { font-size: 2.25rem; }

  .hero__photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .hero__photo-placeholder { font-size: 3.5rem; }

  .hero__author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: -1;
  }

  .hero__author-info { align-items: center; }
  .hero__results-qualifier { text-align: center; border-left: none; padding-left: 0; }

  .section__heading { font-size: 2rem; }
  .section__quote { font-size: 2rem; }
  .stat-block__number { font-size: 4.5rem; }
  .pricing-card__price { font-size: 3.5rem; }
  .faq-item__question { font-size: 1rem; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .sticky-header, .mobile-cta-bar, .btn { display: none; }
  body { color: #000; background: #fff; }
  .hero { background: #fff; color: #000; min-height: auto; animation: none; }
}
