/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #414042;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== COLOUR TOKENS ========== */
:root {
  --coral: #f16468;
  --coral-dark: #cf515b;
  --coral-light: #f16468;
  --coral-pale: #ffffff;
  --navy: #171c60;
  --navy-light: #171c60;
  --slate: #414042;
  --grey-warm: #f7f5f2;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-400: #999;
  --grey-600: #666;
  --white: #ffffff;
  --text-primary: #414042;
  --text-secondary: #414042;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.08);
  --max-width: 1320px;
  --section-pad: 100px;
}

/* ========== UTILITIES ========== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.preorder-offer-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  margin-top: 16px;
  padding: 5px 10px;
  border: 1px solid rgba(23,28,96,0.1);
  border-radius: 999px;
  background: rgba(23,28,96,0.035);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(65,64,66,0.62);
  white-space: normal;
}
.preorder-cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.preorder-cta-stack .preorder-offer-note { margin-top: 0; }
.preorder-offer-note strong { color: var(--navy); font-weight: 800; }
.interior-hero-content .preorder-offer-note,
.section-mri-promise .preorder-offer-note,
.section-cta-banner .preorder-offer-note,
.section-banner-cta .preorder-offer-note {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}
.interior-hero-content .preorder-offer-note strong,
.section-mri-promise .preorder-offer-note strong,
.section-cta-banner .preorder-offer-note strong,
.section-banner-cta .preorder-offer-note strong {
  color: var(--white);
}
.section-cta-banner p.preorder-offer-note,
.section-banner-cta p.preorder-offer-note {
  display: flex;
  width: fit-content;
  max-width: none;
  margin: 16px auto 0;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

/* ========== PROMO BANNER ========== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 260;
  background: var(--coral);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-banner-text { font-weight: 400; }
.promo-banner-text strong { font-weight: 700; }
.promo-banner-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.promo-banner-cta:hover { opacity: 0.85; }

/* ========== TOP BANNER ========== */
.top-banner {
  position: relative;
  z-index: 200;
  background: var(--coral);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.top-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
  text-underline-offset: 2px;
}
.top-banner a:hover { opacity: 0.85; }

/* ========== FLOATING NAVIGATION ========== */
.nav-wrapper {
  position: fixed;
  top: 38px; /* below promo banner */
  left: 0;
  right: 0;
  z-index: 250;
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav-wrapper.is-scrolled {
  background: rgba(23,28,96,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-wrapper.is-scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}

/* --- Nav links row --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link-item:hover,
.nav-link-item.is-open {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link-item .chevron {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s;
  font-size: 10px;
  opacity: 0.6;
}
.nav-link-item.is-open .chevron { transform: rotate(180deg); }

/* --- Nav link dimming on sibling hover --- */
.nav-links:hover .nav-link-item:not(:hover):not(.is-open) {
  opacity: 0.45;
}
.nav-links .nav-link-item { transition: color 0.2s, background 0.2s, opacity 0.25s; }

/* --- CTA button --- */
.nav-cta {
  background: transparent;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

/* --- Mega menu dropdown --- */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 720px;
  white-space: normal;
  background: rgba(23,28,96,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  z-index: 200;
}
.mega-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
.mega-menu-featured {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.mega-menu-featured .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  padding-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  background: linear-gradient(135deg, #171c60, #f16468);
  overflow: hidden;
  box-sizing: border-box;
}
.mega-menu-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,28,96,0.95) 0%, rgba(23,28,96,0.7) 40%, transparent 70%);
  z-index: 1;
}
.mega-menu-featured-text {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mega-menu-featured-text .featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
  display: block;
}
.mega-menu-featured-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.mega-menu-featured-text p {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.mega-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-menu-links .mega-link-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 8px 12px 4px;
}
.mega-menu-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mega-menu-links a:hover {
  background: rgba(255,255,255,0.06);
}
.mega-link-icon {
  width: 36px;
  height: 36px;
  background: rgba(241,100,104,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.mega-link-icon svg { width: 18px; height: 18px; color: var(--coral); }
.mega-link-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.mega-link-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  margin-top: 2px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
  position: relative;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(23,28,96,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 130px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu-section {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu-link .mm-chevron {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease;
}
.mobile-menu-section.is-expanded .mobile-menu-link .mm-chevron {
  transform: rotate(180deg);
}
.mobile-menu-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-section.is-expanded .mobile-menu-sub {
  max-height: 400px;
}
.mobile-menu-sub a {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-sub a:hover {
  color: var(--coral);
}
.mobile-menu-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-cta .btn-mobile-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-menu-cta .btn-mobile-primary:hover {
  background: var(--coral-dark);
}
.mobile-menu-cta .btn-mobile-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.mobile-menu-cta .btn-mobile-secondary:hover {
  background: rgba(255,255,255,0.12);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #171c60 0%, #414042 50%, #f16468 100%);
  margin-top: -110px; /* pull hero under the fixed banner + nav */
  padding-top: 110px; /* compensate so content isn't hidden */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
/* Mobile fallback image — hidden on desktop, video hidden on mobile */
.hero-bg-mobile { display: none; }
@media (max-width: 768px) {
  .hero-bg-mobile { display: block !important; }
  .hero-bg-video { display: none !important; }
}

#heroYTPlayer { width: 100%; height: 100%; }
.hero-bg-video iframe,
.hero-bg-video #heroYTPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vh;
  height: 112.5vh;
  min-width: 110%;
  min-height: 110%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.30;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,28,96,0.85) 0%, rgba(23,28,96,0.3) 50%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 80px;
  width: 100%;
}
.hero-tagline {
  display: inline-block;
  background: rgba(241,100,104,0.2);
  border: 1px solid rgba(241,100,104,0.4);
  color: var(--coral-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #f16468;
}
.hero-headline-split {
  display: block;
  max-width: 860px;
  margin-bottom: 0;
}
.hero-headline-split .hero-top {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: #f16468;
  letter-spacing: 0;
  margin-bottom: 12px;
  max-width: 760px;
}
.hero-headline-split .hero-bottom {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.025em;
  text-transform: none;
  max-width: 820px;
  margin-bottom: 32px;
}
.hero .hero-sub {
  font-size: clamp(18px, 1.55vw, 22px);
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 0;
  font-weight: 400;
}
.hero .hero-sub em {
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-sub strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: #f16468;
  margin: 22px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

/* ========== SECTION: WHY miCheckup (VIDEO) ========== */
.section-why {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why-header {
  text-align: center;
  margin-bottom: 48px;
}
.why-header .section-label {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.why-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--navy);
  line-height: 1.15;
}
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--navy);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-wrapper .play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241,100,104,0.9), rgba(23,28,96,0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}
.play-btn {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { margin-left: 4px; }
.video-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== SECTION: STICKY SCROLL STEPS ========== */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  background: var(--grey-100);
}

.section-steps {
  padding: 0;
  background: var(--white);
}
.steps-header {
  padding: calc(var(--section-pad) / 2) 0 24px;
  background: var(--white);
  text-align: center;
}
.steps-header .container {
  max-width: 860px;
}
.steps-header .section-label {
  display: inline-block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.steps-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.steps-header .steps-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 12px;
}
.steps-header .steps-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .steps-header { padding: 32px 0 16px; }
}
/* Outer wrapper — tall enough so that scrolling through it triggers the transitions */
.steps-scroll-outer {
  position: relative;
  /* 3 steps × 100vh each = 300vh of scroll distance */
  height: 300vh;
}
/* The sticky container that pins in the viewport */
.steps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* The visual block — contained width, slight inset from edges */
.steps-block {
  position: relative;
  width: calc(100% - 64px);
  max-width: 1280px;
  height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
/* Image/video side — fills the entire block, behind the card */
.steps-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.steps-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.steps-media-slide.is-active { opacity: 1; }
/* The next slide fades in slightly early so the transition feels smooth */
.steps-media-slide.is-incoming { opacity: 0.4; transition: opacity 0.3s ease; }
.steps-media-slide .img-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
/* Video play button overlay for first slide */
.steps-play-btn {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  padding: 10px 18px 10px 14px;
  border-radius: 100px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  opacity: 0;
  pointer-events: none;
}
.steps-media-slide.is-active .steps-play-btn {
  opacity: 1;
  pointer-events: auto;
}
.steps-play-btn:hover { background: rgba(0,0,0,0.6); }
.steps-play-btn svg { flex-shrink: 0; }

/* Floating card on the right — slides driven by scroll */
.steps-card-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}
.steps-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  pointer-events: auto;
  /* Positioned by JS — no CSS transition, driven per-frame by scroll */
  will-change: transform;
}
/* Card colour variations */
.steps-card[data-step="1"] { background: var(--coral); }
.steps-card[data-step="2"] { background: #171c60; }
.steps-card[data-step="3"] { background: var(--coral-dark); }
.steps-card[data-step="4"] { background: #414042; }

.steps-card .card-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 0;
}
.steps-card .card-step-total {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 32px;
}
.steps-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.steps-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
}
.steps-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  align-self: flex-start;
  backdrop-filter: blur(8px);
}
.steps-card .card-cta:hover { background: rgba(255,255,255,0.25); }
.steps-card .card-cta svg { flex-shrink: 0; }

/* Progress dots */
.steps-progress {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 6;
  display: flex;
  gap: 8px;
}
.steps-progress .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.steps-progress .dot.is-active {
  width: 28px;
  border-radius: 5px;
  background: var(--white);
}

/* ========== SECTION: SPLIT (SCIENCE + ACCORDION CARDS) ========== */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.split-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: linear-gradient(135deg, var(--coral) 0%, #cf515b 50%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
}
.split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.split-left .section-label {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.split-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}
.split-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
  position: relative;
}
.split-left .btn-primary {
  position: relative;
  background: var(--white);
  color: var(--coral);
}
.split-left .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.split-right {
  position: relative;
  overflow: hidden;
}
.split-right .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  background: var(--grey-100);
}
.split-cards-stack {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.split-accordion {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.split-accordion.is-collapsed {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
}
.split-accordion.is-expanded {
  background: var(--coral);
  border: 1px solid var(--coral);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.split-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--white);
}
.split-accordion-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.split-accordion-toggle {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.split-accordion-toggle svg {
  transition: transform 0.3s ease;
}
.split-accordion.is-expanded .split-accordion-toggle svg {
  transform: rotate(180deg);
}
.split-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.split-accordion.is-expanded .split-accordion-body {
  max-height: 200px;
}
.split-accordion-body-inner {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== SECTION: CTA BANNER ========== */
.section-cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241,100,104,0.15), transparent 70%);
  border-radius: 50%;
}
.section-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.6vw, 60px);
  color: var(--white);
  line-height: 1.12;
  max-width: 1100px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  white-space: normal;
}
.section-cta-banner p {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 820px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.section-cta-banner .btn-primary { position: relative; z-index: 2; }

/* ----- mir08 intro variant (post-hero context row) ----- */
.section-cta-intro {
  padding: 72px 0 80px;
}
.section-cta-intro .container {
  max-width: 820px;
  text-align: center;
}
.section-cta-intro .cta-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}
.section-cta-intro .cta-standout {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  color: #f16468;
  letter-spacing: -0.01em;
  margin: 0 auto 28px;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.section-cta-intro p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.cta-banner-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.btn-secondary-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-secondary-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}
@media (max-width: 640px) {
  .section-cta-intro { padding: 56px 0 64px; }
  .cta-banner-buttons { flex-direction: column; width: 100%; padding: 0 24px; }
  .cta-banner-buttons a { width: 100%; justify-content: center; }
}

/* ========== SECTION: STATS ========== */
.section-stats {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.stats-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.stats-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 32px;
  border-left: 1px solid var(--grey-200);
}
.stat-item:first-child {
  border-left: none;
}
.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ========== SECTION: CONTENT BLOCKS (alternating text + image) ========== */
.section-content-blocks {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 80px;
}
.content-block:has(.cb-text:only-child) {
  grid-template-columns: 1fr;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-block.is-reversed {
  direction: rtl;
}
.content-block.is-reversed > * {
  direction: ltr;
}
.cb-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}
.cb-text .cb-label {
  display: inline-block;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cb-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 400;
}
.cb-text .cb-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cb-text .cb-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.cb-text .cb-body p {
  margin-bottom: 16px;
}
.cb-text .cb-body p:last-child {
  margin-bottom: 0;
}
.cb-text .cb-body a:not(.cite-ref) {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-text .cb-body a:not(.cite-ref):hover {
  color: var(--navy);
}
.cb-text .cb-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.cb-text .cb-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.cb-text .cb-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.cb-text .cb-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.cb-text .cb-body table th {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 16px 10px 0;
  border-bottom: 2px solid var(--grey-200);
}
.cb-text .cb-body table td {
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--grey-100);
  color: var(--text-secondary);
}
/* Highlight callout box — used for key value propositions (MRI, physician guidance, etc.) */
.cb-callout {
  position: relative;
  background: linear-gradient(135deg, var(--coral-pale), var(--coral-light));
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.cb-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 500;
}
.cb-callout strong {
  color: var(--coral-dark);
  font-weight: 700;
}
.cb-callout .callout-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb-callout .callout-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}
/* Dark theme callout variant — for use inside dark sections (mir07, etc.) */
.cb-callout--dark {
  background: rgba(241, 100, 104, 0.12);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.cb-callout--dark p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.cb-callout--dark strong {
  color: var(--coral-light);
  font-weight: 700;
}
/* ===== RESULT OUTCOME CARDS ===== */
.result-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 768px) { .result-cards { grid-template-columns: 1fr; } }
.result-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  overflow: hidden;
}
.result-card--clear {
  background: linear-gradient(135deg, #f0faf4, #e6f5ec);
  border: 2px solid #4caf50;
}
.result-card--signal {
  background: linear-gradient(135deg, var(--coral-pale), var(--coral-light));
  border: 2px solid var(--coral);
}
.result-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.result-card--clear .result-card-badge {
  background: #4caf50;
  color: #fff;
}
.result-card--signal .result-card-badge {
  background: var(--coral);
  color: #fff;
}
.result-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.result-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  margin: 0;
}
.result-card-body strong { color: var(--coral-dark); font-weight: 700; }

.cb-text .cb-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: gap 0.2s ease;
}
.cb-text .cb-cta:hover {
  gap: 10px;
}
.cb-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.cb-image .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  background: var(--grey-100);
}
.cb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== SECTION: STORY SCROLL (sticky bg + flowing text) ========== */
.story-scroll-outer {
  position: relative;
  /* height set by JS */
  margin-bottom: -35vh; /* let next section peek into the viewport gap below sticky */
}
.story-scroll-sticky {
  position: sticky;
  top: 0;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.story-scroll-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-scroll-bg .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #171c60 0%, #414042 100%);
}
.story-scroll-bg video,
.story-scroll-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-scroll-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23,28,96,0.5);
  z-index: 1;
}
.story-scroll-viewport {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 64px;
  will-change: transform, opacity;
}
.story-slide .story-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.story-slide h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 68px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  max-width: 1000px;
  font-style: italic;
}
.story-slide p {
  font-size: clamp(24px, 4vw, 52px);
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
  max-width: 960px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ========== SECTION: TEAM / BIOS ========== */
.section-team {
  position: relative;
  z-index: 6;
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.team-header {
  text-align: center;
  margin-bottom: 56px;
}
.team-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 12px;
}
.team-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.team-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-100);
  margin-bottom: 20px;
}
.team-card-image .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--grey-400);
  background: var(--grey-100);
}
.team-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover .team-card-image img {
  transform: scale(1.03);
}
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-card .team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.team-card .team-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.team-card:hover .team-link {
  color: var(--coral);
}

/* ========== SECTION: RESOURCES / BLOG ========== */
.section-resources {
  padding: var(--section-pad) 0;
  background: var(--grey-warm);
}
.resources-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.resources-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
}
.resources-tabs {
  display: flex;
  gap: 8px;
}
.resources-tabs button {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.resources-tabs button.active,
.resources-tabs button:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.resource-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.resource-card .card-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--grey-400);
  background: var(--grey-100);
}
.resource-card .card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.resource-card .card-body { padding: 24px; }
.resource-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.resource-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.resource-card .card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--grey-400);
}
.resource-card .card-meta .dot { width: 3px; height: 3px; background: var(--grey-400); border-radius: 50%; }

/* ========== BANNER CTA (above footer) ========== */
.section-banner-cta {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.section-banner-cta .cta-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  background: linear-gradient(135deg, #ffffff 0%, #f16468 100%);
  z-index: 0;
}
.section-banner-cta .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 1;
}
.section-banner-cta .cta-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 820px;
}
.section-banner-cta .cta-rule {
  width: 80px;
  height: 2px;
  background: var(--white);
  margin-bottom: 28px;
  opacity: 0.6;
}
.section-banner-cta h2 {
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
  font-weight: 400;
}
.section-banner-cta h2 em {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  color: #f16468;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.section-banner-cta h2 strong {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}
.section-banner-cta h2 i {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 18px;
}
.section-banner-cta h2 i b {
  font-style: italic;
  font-weight: 600;
  color: #f16468;
}
.section-banner-cta .btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.section-banner-cta .btn-cta-pill:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== SECTION: FAQ ========== */
.section-faq {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #f16468 0%, #cf515b 40%, #171c60 100%);
  position: relative;
  overflow: hidden;
}
.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  position: relative;
}
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-sidebar h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
}
.faq-sidebar p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.faq-sidebar .btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}
.faq-sidebar .btn-cta-pill:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.faq-sidebar-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-top: auto;
}
.faq-sidebar-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--grey-400);
  background: rgba(0,0,0,0.25);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-item:hover {
  background: rgba(255,255,255,0.04);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8px 22px 0;
  gap: 24px;
}
.faq-question h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 48px 24px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--coral); }
.newsletter-form button {
  background: var(--coral);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--coral-dark); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--coral); }
.footer-watermark {
  position: relative;
  overflow: hidden;
  height: 120px;
  margin-top: 40px;
}
.footer-watermark span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

/* ========== MOBILE: STEPS (alternating image + text) ========== */
.steps-mobile {
  display: none; /* shown via media query */
  flex-direction: column;
  gap: 0;
}
.steps-mobile-item {
  display: grid;
  grid-template-columns: 1fr;
}
.steps-mobile-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.steps-mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps-mobile-text {
  padding: 32px 24px;
  background: var(--navy);
  color: var(--white);
}
.steps-mobile-text .card-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.steps-mobile-text .card-step-total {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 2px;
}
.steps-mobile-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.steps-mobile-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.steps-mobile-text .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
}

/* ========== MOBILE: STORY SCROLL (stacked text over bg) ========== */
.story-mobile {
  display: none; /* shown via media query */
  position: relative;
  overflow: hidden;
}
.story-mobile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-mobile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-mobile-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23,28,96,0.6);
}
.story-mobile-content {
  position: relative;
  z-index: 1;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.story-mobile-item {
  text-align: center;
}
.story-mobile-item .story-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.story-mobile-item h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
}
.story-mobile-item p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  line-height: 1.25;
  font-style: italic;
}
.story-mobile-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto;
}

/* ========== COMPONENT ID TAGS & DIVIDERS ========== */
.mir-tag {
  display: none;
  background: #414042;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  font-family: 'Inter', monospace;
  position: relative;
  z-index: 10;
}
.mir-tag span {
  opacity: 0.5;
  color: #fff;
  margin-left: 8px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.component-divider {
  background: var(--grey-warm);
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.component-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  background: var(--grey-warm);
  padding: 0 20px;
}

/* ========== INTERIOR PAGE HERO ========== */
.interior-hero {
  position: relative;
  height: 527px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: -110px;
  padding-top: 110px;
}
.interior-hero.is-inline-demo {
  margin-top: 0;
  padding-top: 0;
}
.interior-hero .hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-400);
  background: linear-gradient(135deg, #414042 0%, #171c60 100%);
  z-index: 0;
}
.interior-hero .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,28,96,0.55) 0%, rgba(23,28,96,0.1) 60%, transparent 100%);
  z-index: 1;
}
.interior-hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 64px 40px;
  max-width: 720px;
}
.interior-hero-content .hero-rule {
  width: 80px;
  height: 2px;
  background: var(--white);
  margin-bottom: 24px;
  opacity: 0.5;
}
.interior-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 12px;
}
.interior-hero-content .hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 540px;
}
.interior-hero-content .btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 20px;
}
.interior-hero-content .btn-cta-pill:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 90;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 52px;
  max-width: 1440px;
  margin: 0 auto;
}
.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb-links a {
  color: var(--grey-600);
  transition: color 0.2s;
}
.breadcrumb-links a:hover {
  color: var(--coral);
}
.breadcrumb-links .bc-sep {
  color: var(--grey-400);
  font-size: 12px;
}
.breadcrumb-links .bc-current {
  color: var(--navy);
  font-weight: 500;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.breadcrumb-nav a {
  font-size: 14px;
  color: var(--grey-600);
  transition: color 0.2s;
  white-space: nowrap;
}
.breadcrumb-nav a:hover {
  color: var(--navy);
}
.breadcrumb-nav .bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.breadcrumb-nav .bc-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* ========== AUTHOR BOX (E-E-A-T) ========== */
.section-author-box {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section-author-box .container { max-width: var(--max-width); }
.author-box {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
}
.ab-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.ab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-info { flex: 1; }
.ab-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 6px;
}
.ab-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}
.ab-name a {
  color: #fff;
  text-decoration: none;
}
.ab-name a:hover {
  color: var(--coral-light);
}
.ab-title {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 12px;
  line-height: 1.4;
}
.ab-bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 16px;
}
.ab-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--coral);
  text-decoration: none;
}
.ab-link:hover {
  color: var(--coral-light);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; gap: 16px; }
  .ab-link { justify-content: center; }
}

/* ========== DISCLOSURES & REFERENCES ========== */
.section-disclosures {
  background: var(--navy);
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section-disclosures .container { max-width: var(--max-width); }
.disclosure-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.disclosure-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.disclosure-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}
.disclosure-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.disclosure-icon {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.disclosure-item.is-expanded .disclosure-icon { transform: rotate(45deg); }
.disclosure-item.is-expanded .disclosure-header h3 { color: rgba(255,255,255,0.7); }
.disclosure-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.disclosure-item.is-expanded .disclosure-body { max-height: 2000px; }
.disclosure-body-inner {
  padding: 0 0 20px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
.disclosure-body-inner p { margin-bottom: 10px; }
.disclosure-body-inner p:last-child { margin-bottom: 0; }
.disclosure-body-inner strong { color: rgba(255,255,255,0.6); font-weight: 600; }

/* References list inside disclosure */
.references-list {
  list-style: none;
  counter-reset: ref-counter;
  padding: 0;
  margin: 0;
}
.references-list li {
  counter-increment: ref-counter;
  position: relative;
  padding-left: 28px;
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease, background 0.2s ease;
}
.references-list li::before {
  content: counter(ref-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  min-width: 20px;
}
.references-list li a {
  color: var(--coral);
  opacity: 0.6;
  text-decoration: none;
  word-break: break-all;
}
.references-list li a:hover { opacity: 1; }
.references-list li em { font-style: italic; }

/* Inline citation superscript links */
.cite-ref {
  font-size: 10px;
  vertical-align: super;
  line-height: 0;
  color: var(--coral);
  opacity: 0.7;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0 1px;
}
.cite-ref:hover { opacity: 1; }

/* Highlight target reference when linked */
.references-list li:target,
.references-list li.is-highlighted {
  color: rgba(255,255,255,0.7);
  background: rgba(241,100,104,0.1);
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: -8px;
  padding-left: 36px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .steps-block { width: calc(100% - 32px); height: 75vh; }
  .steps-card-wrapper { width: 100%; bottom: 0; top: auto; height: auto; max-height: 55%; }
  .steps-card { position: relative; padding: 32px 28px; }
  .steps-card .card-step-num { font-size: 40px; }
  .steps-card h3 { font-size: 20px; }
  .steps-card p { font-size: 14px; margin-bottom: 20px; }
  .section-split { grid-template-columns: 1fr; }
  .split-left { padding: 64px 32px; }
  .split-right { min-height: 480px; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.is-reversed { direction: ltr; }
  .cb-text { padding: 48px 32px; }
  .cb-image { min-height: 340px; }
  .content-block { margin-bottom: 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar-image { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  /* nav-wrapper top is set dynamically by JS based on banner height */
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 60px; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 0 20px 48px; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-item { border-left: none; border-top: 1px solid var(--grey-200); padding: 32px 0 0; }
  .stat-item:first-child { border-top: none; padding-top: 0; }
  .resources-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .resources-header { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hide sticky scroll versions on mobile */
  .section-steps .steps-scroll-outer { display: none; }
  .story-scroll-outer { display: none; margin-bottom: 0; }

  /* Show mobile alternatives */
  .steps-mobile { display: flex !important; }
  .story-mobile { display: block !important; }
  .story-slide { padding: 40px 24px; }
  .story-slide h2 { font-size: 28px; }
  .story-slide p { font-size: 22px; }
  .split-cards-stack { padding: 16px; gap: 8px; }
  .split-accordion-header { padding: 14px 18px; }
  .split-accordion-header h4 { font-size: 16px; }
  .section-banner-cta { min-height: 440px; }
  .section-banner-cta .cta-content { padding: 0 24px 48px; }
  .section-banner-cta h2 em { font-size: 18px; }
  .section-banner-cta h2 strong { font-size: 30px; letter-spacing: -0.018em; }
  .section-banner-cta h2 i { font-size: 26px; margin-top: 14px; }
  .interior-hero { height: 510px; margin-top: -140px; padding-top: 160px; }
  .interior-hero-content { padding: 20px 20px 32px; }
  .interior-hero-content h1 { font-size: 28px; }
  .breadcrumb-inner { padding: 0 20px; }
  .breadcrumb-nav { gap: 16px; }
  .breadcrumb-nav a:not(.bc-cta) { display: none; }
}

/* ========== mir17 — MRI PROMISE (VALUE FEATURE) ========== */
.section-mri-promise {
  position: relative;
  background: linear-gradient(135deg, #171c60 0%, #171c60 45%, #414042 100%);
  padding: var(--section-pad) 0;
  overflow: hidden;
  color: var(--white);
}
.mri-promise-bg-accent {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(241,100,104,0.22) 0%, rgba(241,100,104,0.08) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.mri-promise-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.mri-promise-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(241,100,104,0.25);
}
.mri-promise-media img {
  filter: brightness(0.85) contrast(1.05) saturate(1.1);
}
.mri-promise-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241,100,104,0.12) 0%, transparent 40%, rgba(23,28,96,0.55) 100%);
  pointer-events: none;
}
.mri-promise-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(23,28,96,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(241,100,104,0.45);
  border-radius: 18px;
  padding: 20px 24px;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}
.mri-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.mri-badge-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.mri-badge-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.mri-promise-text { max-width: 560px; }
.mri-promise-text .section-label {
  display: inline-block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(241,100,104,0.45);
  border-radius: 100px;
  background: rgba(241,100,104,0.1);
}
.mri-promise-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.mri-promise-text h2 em { color: #f16468; font-style: italic; }
.mri-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
}
.mri-value-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.mri-value-item { flex: 1; }
.mri-value-item.is-highlight .mri-value-num { color: var(--coral); }
.mri-value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.mri-value-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.mri-value-sep {
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.mri-footer {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
}
.mri-cta { margin-top: 4px; }

@media (max-width: 980px) {
  .mri-promise-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mri-promise-media { aspect-ratio: 16 / 11; max-width: 640px; margin: 0 auto; }
  .mri-promise-text { max-width: 100%; }
  .mri-value-row { flex-wrap: wrap; }
  .mri-value-sep { display: none; }
  .mri-value-item { flex: 1 1 45%; }
}
@media (max-width: 600px) {
  .section-mri-promise { padding: 64px 0; }
  .mri-promise-badge { top: 16px; right: 16px; padding: 14px 18px; min-width: 120px; }
  .mri-badge-value { font-size: 32px; }
}

/* ========== SECTION: mir19 — BLOOD DRAW FEATURE SPLIT ========== */
.section-blood-feature {
  background: var(--white);
  padding: calc(var(--section-pad) * 1.05) 0;
  position: relative;
  overflow: hidden;
}
.section-blood-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  z-index: 0;
}
.blood-feature-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.blood-feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -20px rgba(23, 28, 96, 0.35);
}
.blood-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blood-feature-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 28, 96, 0.25) 100%);
  pointer-events: none;
}
.blood-feature-text {
  padding: 12px 0;
}
.blood-feature-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  padding: 8px 14px;
  background: rgba(241, 100, 104, 0.08);
  border: 1px solid rgba(241, 100, 104, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}
.blood-feature-standout {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  max-width: 560px;
}
.blood-feature-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 28px;
  max-width: 580px;
}
.blood-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blood-feature-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  padding-left: 32px;
  position: relative;
}
.blood-feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.blood-feature-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.blood-feature-buttons .btn-secondary-dark {
  background: transparent;
  border: 1px solid rgba(23, 28, 96, 0.25);
  color: var(--navy);
}
.blood-feature-buttons .btn-secondary-dark:hover {
  background: rgba(23, 28, 96, 0.06);
  border-color: rgba(23, 28, 96, 0.45);
}
@media (max-width: 980px) {
  .blood-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blood-feature-image {
    aspect-ratio: 16 / 10;
    max-height: 480px;
  }
  .section-blood-feature::before {
    width: 100%;
    height: 60%;
    top: 40%;
  }
}
@media (max-width: 600px) {
  .section-blood-feature { padding: 64px 0; }
  .blood-feature-inner { padding: 0 20px; }
  .blood-feature-buttons {
    flex-direction: column;
    gap: 16px;
  }
  .blood-feature-buttons a,
  .blood-feature-buttons .preorder-cta-stack {
    width: 100%;
  }
  .blood-feature-buttons a { justify-content: center; }
  .blood-feature-buttons .preorder-offer-note {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

/* ========== SECTION: CANCER DIRECTORY GRID (mir20) ========== */
.section-directory {
  padding: var(--section-pad) 0;
  background: var(--grey-warm);
}
.directory-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.directory-header .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.directory-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 12px;
}
.directory-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.directory-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  border: 1px solid var(--grey-200);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.directory-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: var(--coral);
}
.dc-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.dc-hook {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}
.dc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  margin-top: auto;
}
.directory-card:hover .dc-link {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section-directory { padding: 64px 0; }
  .directory-grid { grid-template-columns: 1fr; gap: 12px; }
  .directory-card { padding: 20px 18px 16px; }
}

/* ========== Important Safety Information Strip (Global, appears above footer) ========== */
.isi-strip {
  background: #f7f9fa;
  border-top: 1px solid #e4e9ec;
  border-bottom: 1px solid #e4e9ec;
  padding: 40px 0 32px;
  color: #3a4a52;
  font-size: 13px;
  line-height: 1.55;
}
.isi-strip .isi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.isi-strip .isi-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--coral, #f16468);
  margin: 0 0 10px 0;
}
.isi-strip p {
  margin: 0;
  color: #4a5a63;
}
.isi-strip .isi-more {
  margin-top: 20px;
  font-size: 13px;
}
.isi-strip .isi-more a {
  color: var(--coral, #f16468);
  font-weight: 600;
  text-decoration: none;
}
.isi-strip .isi-more a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .isi-strip .isi-grid { grid-template-columns: 1fr; gap: 24px; }
  .isi-strip { padding: 32px 0 24px; font-size: 12px; }
}

/* ========== SECTION: CONTACT FORM (mir22) ========== */
.section-contact-form {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-info h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.2;
}
.contact-form-subtitle {
  font-size: 18px;
  color: #4a5a63;
  line-height: 1.6;
  margin: 0 0 24px;
}
.contact-form-body { color: #4a5a63; line-height: 1.7; font-size: 16px; }
.contact-form-body p { margin: 0 0 16px; }
.contact-form-body a { color: var(--coral); font-weight: 600; text-decoration: none; }
.contact-form-body a:hover { text-decoration: underline; }
.contact-form-wrapper {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e8ecef;
}
.mir-contact-form .form-group {
  margin-bottom: 24px;
}
.mir-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.mir-contact-form label .required { color: var(--coral); }
.mir-contact-form label .optional { color: #8a9aa6; font-weight: 400; font-size: 13px; }
.mir-contact-form input,
.mir-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.mir-contact-form input:focus,
.mir-contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(241, 100, 104, 0.12);
}
.mir-contact-form input::placeholder,
.mir-contact-form textarea::placeholder {
  color: #aab4be;
}
.mir-contact-form textarea { resize: vertical; min-height: 120px; }
.mir-contact-form .btn-primary {
  width: 100%;
  justify-content: center;
}
.form-privacy-note {
  font-size: 13px;
  color: #8a9aa6;
  margin: 16px 0 0;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-form-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrapper { padding: 24px; }
}

/* ========== SECTION: LOCATION CARDS (mir23) ========== */
.section-locations {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.locations-headline {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}
.locations-subtitle {
  font-size: 18px;
  color: #4a5a63;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.location-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e8ecef;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.location-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.location-available .location-status {
  background: rgba(46, 160, 67, 0.12);
  color: #1a7f37;
}
.location-coming-soon .location-status {
  background: rgba(241, 100, 104, 0.1);
  color: var(--coral-dark);
}
.location-city {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.location-province {
  font-size: 15px;
  color: #8a9aa6;
  font-weight: 500;
  margin-bottom: 16px;
}
.location-desc {
  font-size: 15px;
  color: #4a5a63;
  line-height: 1.6;
  margin: 0 0 16px;
}
.location-partner {
  font-size: 14px;
  color: #4a5a63;
  margin: 0 0 20px;
}
.location-cta {
  font-size: 14px;
  padding: 12px 24px;
  text-decoration: none;
}
.location-coming-soon .location-cta {
  background: rgba(23, 28, 96, 0.08);
  color: var(--navy);
}
.location-coming-soon .location-cta:hover {
  background: rgba(23, 28, 96, 0.14);
}
.locations-expansion {
  text-align: center;
  font-size: 16px;
  color: #4a5a63;
  line-height: 1.6;
  padding: 24px 0;
  border-top: 1px solid #e8ecef;
}
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; gap: 20px; }
  .location-card { padding: 28px; }
}

/* ========== SECTION: SITEMAP (mir24) ========== */
.section-sitemap {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}
.sitemap-headline {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: center;
}
.sitemap-subtitle {
  font-size: 17px;
  color: #6b7a85;
  line-height: 1.6;
  margin: 0 auto 56px;
  max-width: 540px;
  text-align: center;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sitemap-group {
  min-width: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e8ecef;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sitemap-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.sitemap-group-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(241, 100, 104, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-links li {
  margin-bottom: 0;
}
.sitemap-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.35;
}
.sitemap-links li a::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d1d9e0;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.sitemap-links li a:hover {
  background: rgba(241, 100, 104, 0.06);
  color: var(--coral);
}
.sitemap-links li a:hover::before {
  background: var(--coral);
  transform: scale(1.4);
}
.sitemap-note {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--coral);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sitemap-group { padding: 28px; }
}
@media (max-width: 600px) {
  .section-sitemap { padding: 48px 0 64px; }
  .sitemap-grid { grid-template-columns: 1fr; gap: 16px; }
  .sitemap-group { padding: 24px; }
}

/* ========== CHECKOUT / ORDER PAGE ========== */
.checkout-body {
  background: var(--grey-warm);
  min-height: 100vh;
}
.checkout-header {
  text-align: center;
  padding: 32px 24px 0;
}
.checkout-logo-img {
  height: 36px;
  width: auto;
  margin: 0 auto;
}
.checkout-wrapper {
  display: flex;
  justify-content: center;
  padding: 32px 24px 48px;
}
.checkout-container {
  width: 100%;
  max-width: 620px;
}

/* Intro */
.checkout-intro { text-align: center; margin-bottom: 36px; }
.checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.checkout-title em {
  font-style: italic;
  color: var(--coral);
}
.checkout-subtitle {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* Sections */
.checkout-section { margin-bottom: 8px; }
.checkout-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.checkout-section-note {
  font-size: 13px;
  color: var(--grey-600);
  margin-bottom: 16px;
}

/* Labels */
.checkout-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.checkout-label .req { color: var(--coral); margin-right: 2px; }
.checkout-info-icon {
  font-size: 14px;
  color: var(--grey-400);
  cursor: help;
  margin-left: 4px;
}

/* Inputs */
.checkout-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-input::placeholder { color: var(--grey-400); }
.checkout-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(241,100,104,0.1);
}

/* Row (two fields side by side) */
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.checkout-field {}
.checkout-field .checkout-label { margin-bottom: 6px; }

/* Select */
.checkout-select-wrap {
  position: relative;
}
.checkout-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.checkout-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--grey-400);
}

/* Radio */
.checkout-radio-group {
  display: flex;
  gap: 24px;
}
.checkout-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
}
.checkout-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  cursor: pointer;
}

/* Get Started scroll button */
.checkout-scroll-btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.checkout-scroll-btn:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* Product Card */
.checkout-product-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.checkout-product-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.checkout-product-img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.checkout-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.checkout-product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkout-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 6px;
}
.checkout-product-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.checkout-product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.checkout-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.checkout-price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.checkout-price-note {
  font-size: 13px;
  color: var(--grey-600);
  margin-left: auto;
}

/* Divider */
.checkout-divider {
  border: none;
  border-top: 1px solid var(--grey-200);
  margin: 24px 0;
}

/* Agreements */
.checkout-agreement-box {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 14px;
}
.checkout-checkbox:last-child { margin-bottom: 0; }
.checkout-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--coral);
  cursor: pointer;
  margin-top: 1px;
}
.checkout-checkbox a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-checkbox a:hover { color: var(--coral-dark); }

/* Submit Button */
.checkout-submit {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 28px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(241,100,104,0.25);
}
.checkout-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(241,100,104,0.35);
}

/* Trust Signals */
.checkout-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

/* Fine Print */
.checkout-fine-print {
  margin-top: 28px;
  font-size: 12px;
  color: var(--grey-600);
  line-height: 1.7;
  text-align: center;
}
.checkout-fine-print a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Checkout Footer */
.checkout-footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--grey-600);
}
.checkout-footer a {
  color: var(--grey-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-footer a:hover { color: var(--coral); }

/* Responsive */
@media (max-width: 600px) {
  .checkout-title { font-size: 28px; }
  .checkout-row { grid-template-columns: 1fr; gap: 12px; }
  .checkout-product-inner { flex-direction: column; }
  .checkout-product-img { width: 100%; height: 160px; }
  .checkout-trust { flex-direction: column; align-items: center; gap: 12px; }
  .checkout-product-price { flex-wrap: wrap; }
}

/* ===== MyHealthSpan Exit Modal ===== */
.mhs-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(23,28,96,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: mhsFadeIn 0.25s ease;
}
.mhs-modal-overlay.is-visible {
  display: flex;
}
@keyframes mhsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mhs-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px -12px rgba(0,0,0,0.4);
  animation: mhsSlideUp 0.3s ease;
}
@keyframes mhsSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.mhs-modal-header {
  background: #040557;
  padding: 28px 32px 24px;
  text-align: center;
}
.mhs-modal-header-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.mhs-modal-header-logos img.mhs-logo-partner {
  height: 120px;
  width: auto;
  filter: none;
  border-radius: 0;
}
.mhs-modal-header-logos .mhs-x {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 600;
}
.mhs-modal-header h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.mhs-modal-body {
  padding: 28px 32px 32px;
}
.mhs-modal-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-700);
  margin: 0 0 16px;
}
.mhs-modal-body p:last-of-type {
  margin-bottom: 0;
}
.mhs-modal-body strong {
  color: var(--navy);
}
.mhs-modal-actions {
  padding: 0 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mhs-modal-continue {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--coral);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}
.mhs-modal-continue:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}
.mhs-modal-back {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--grey-500);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mhs-modal-back:hover {
  color: var(--navy);
}
@media (max-width: 600px) {
  .mhs-modal { margin: 16px; }
  .mhs-modal-header { padding: 24px 20px 20px; }
  .mhs-modal-header h3 { font-size: 19px; }
  .mhs-modal-body { padding: 24px 20px 24px; }
  .mhs-modal-actions { padding: 0 20px 24px; }
}

/* ========== FORM STATUS / reCAPTCHA / NEWSLETTER FEEDBACK ========== */
.form-recaptcha {
  margin: 4px 0 16px;
  min-height: 0;
  display: flex;
  justify-content: flex-start;
}
.form-recaptcha:empty { margin: 0; }
.form-recaptcha > div { transform-origin: 0 0; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  border: 1px solid transparent;
}
.form-status a { color: inherit; text-decoration: underline; }
.form-status.is-success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}
.form-status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

/* Newsletter (footer, dark background) */
.newsletter-form { flex-wrap: wrap; }
.newsletter-status {
  display: none;
  flex-basis: 100%;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.newsletter-status a { color: inherit; text-decoration: underline; }
.newsletter-status.is-success {
  background: rgba(241,100,104,0.10);
  color: #ffffff;
  border-color: rgba(241,100,104,0.50);
}
.newsletter-status.is-error {
  background: rgba(239,68,68,0.10);
  color: #fecaca;
  border-color: rgba(239,68,68,0.45);
}

/* ===== Language switcher (added for multilingual site) ===== */
.nav-right { display:flex; align-items:center; gap:18px; }
.lang-switcher { position:relative; }
.lang-switcher-current {
  display:flex; align-items:center; gap:6px; cursor:pointer;
  background:transparent; border:1px solid rgba(0,0,0,0.15); border-radius:999px;
  padding:7px 12px; font:inherit; font-size:14px; font-weight:600; color:inherit;
  line-height:1; transition:border-color .2s, background .2s;
}
.lang-switcher-current:hover { border-color:rgba(0,0,0,0.35); }
.lang-switcher-current .lang-caret { transition:transform .2s; opacity:.7; }
.lang-switcher.is-open .lang-switcher-current .lang-caret { transform:rotate(180deg); }
.lang-switcher-menu {
  position:absolute; top:calc(100% + 8px); right:0; min-width:140px;
  background:#fff; border:1px solid rgba(0,0,0,0.1); border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12); padding:6px;
  display:none; flex-direction:column; z-index:1000;
}
.lang-switcher.is-open .lang-switcher-menu { display:flex; }
.lang-switcher-link {
  padding:9px 12px; border-radius:8px; font-size:14px; font-weight:500;
  color:#1a1a1a; text-decoration:none; transition:background .15s;
}
.lang-switcher-link:hover { background:rgba(0,0,0,0.05); }
.lang-switcher-link.is-active { font-weight:700; background:rgba(0,0,0,0.04); }
.mobile-menu-langs { display:flex; gap:10px; margin-top:20px; flex-wrap:wrap; }
.mobile-menu-lang {
  padding:8px 16px; border:1px solid rgba(255,255,255,0.4); border-radius:999px;
  font-size:15px; font-weight:600; text-decoration:none;
  color:#fff; opacity:0.85;
}
.mobile-menu-lang:hover { opacity:1; border-color:#fff; }
.mobile-menu-lang.is-active { background:#fff; color:var(--navy); border-color:#fff; opacity:1; }
@media (max-width:980px){ .nav-right .lang-switcher { display:none; } }

/* ===== Footer language switcher ===== */
.footer-langs {
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
  margin:32px 0 8px; padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.footer-lang {
  padding:5px 14px; border-radius:999px;
  font-size:13px; font-weight:600; letter-spacing:0.02em;
  color:rgba(255,255,255,0.65); text-decoration:none;
  border:1px solid rgba(255,255,255,0.18);
  transition:color .2s, border-color .2s, background .2s;
}
.footer-lang:hover { color:#fff; border-color:rgba(255,255,255,0.5); }
.footer-lang.is-active { color:var(--navy); background:#fff; border-color:#fff; }
