/* ============================================================
   HOLINA REHAB x HOLINA CLINIC — Landing Page
   components.css: All UI components
   Build: June 2026 | Static Prototype v1.0
   ============================================================ */

/* ── STICKY NAVIGATION ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 34, 64, 0.0);
  transition: background var(--dur-base) var(--ease-in-out),
              border-color var(--dur-base) var(--ease-in-out),
              box-shadow var(--dur-base) var(--ease-in-out);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(8, 58, 72, 0.97);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  padding: 3px 8px;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(245,240,232,0.25);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--rehab-green); /* TBD: update with final Holina Rehab green */
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--rehab-green-dark);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--rehab-green);
  color: var(--rehab-teal);
  border-color: var(--rehab-green);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--rehab-green-dark);
  border-color: var(--rehab-green-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(161, 189, 59, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}

.btn--secondary:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}

.btn--secondary-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.btn--whatsapp:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  color: #fff;
}

.btn--green {
  background: var(--rehab-green);
  color: var(--rehab-teal);
  border-color: var(--rehab-green);
  font-weight: 700;
}

.btn--green:hover {
  background: var(--rehab-green-dark);
  border-color: var(--rehab-green-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(161, 189, 59, 0.40);
}

.btn--green-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--green-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Inline text link CTA */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast);
}

.cta-link:hover {
  gap: 10px;
  color: #1578b8;
}

.cta-link svg {
  width: 16px;
  height: 16px;
}

/* ── SECTION 1: HERO ── */

.s-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 0;
  overflow: hidden;
  background: var(--rehab-teal);
}

@media (min-width: 1024px) {
  .s-hero {
    min-height: min(100svh, 780px);
    align-items: flex-start;
  }
}

/* Real photo: positioned behind overlay via .hero-bg-img */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay: strong dark base + left-to-right gradient for legibility */
.s-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(8, 58, 72, 0.82) 0%,
      rgba(10, 76, 96, 0.68) 40%,
      rgba(8, 40, 60, 0.52) 70%,
      rgba(8, 40, 60, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.00) 60%,
      rgba(0,0,0,0.25) 100%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: 140px 72px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-content .eyebrow {
  color: rgba(245, 240, 232, 0.6);
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: var(--space-md);
  max-width: 560px;
}

/* Force 2-line break: each span on its own line */
.hero-content h1 span {
  display: block;
}

.hero-content h1 em {
  font-style: normal;
  color: #D4EF5A;
}

.hero-subheading {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  margin-bottom: var(--space-md);
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-sub-accent {
  display: block;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 700;
  color: #D4EF5A;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.hero-sub-body {
  display: block;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(245, 240, 232, 0.72);
  font-weight: 400;
  line-height: 1.65;
}

.hero-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.68);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245,240,232,0.15);
}

.trust-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-sep {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.25);
  padding: 0 10px;
}

/* Hero placeholder visual (right column) */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-chamber-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-chamber-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-align: center;
  padding: 0 24px;
}

.hero-chamber-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(245,240,232,0.15);
}

@media (max-width: 900px) {
  .hero-inner {
    padding-block: 120px 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subheading {
    max-width: 100%;
  }

  .hero-body {
    max-width: 100%;
  }
}

/* ── SECTION 2: THE PROBLEM ── */

.s-problem {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F0E8 0%, #FAF8F3 100%);
}

.s-problem .container {
  position: relative;
  z-index: 3;
}

.problem-body {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.problem-body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
}

.problem-body p strong {
  color: var(--navy);
  font-weight: 600;
}

.problem-body-detail {
  font-size: 14px !important;
  color: var(--gray-500, #6b7280) !important;
  font-style: italic;
  margin-top: 6px;
  line-height: 1.7 !important;
}

.problem-cta {
  text-align: left;
  margin-top: var(--space-xl);
}

/* ── Problem section split layout ── */
.problem-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0 64px;
  align-items: center;
}

.problem-content-col {
  display: flex;
  flex-direction: column;
}

.section-header--left {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.section-header--left h2 {
  text-align: left;
}

.problem-visual-col {
  display: flex;
  justify-content: center;
}

.problem-video-wrap {
  position: relative;
  width: 260px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8, 58, 72, 0.22), 0 0 0 1px rgba(8, 58, 72, 0.08);
}

.problem-arrival-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problem-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(8,58,72,0.7) 0%, transparent 100%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

@media (max-width: 768px) {
  .problem-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl) 0;
  }
  .problem-visual-col {
    order: -1;
  }
  .problem-video-wrap {
    width: 220px;
    height: 300px;
    margin-inline: auto;
  }
  .section-header--left,
  .section-header--left h2,
  .problem-cta {
    text-align: center;
  }
}

.reasons-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.foundation-bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foundation-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.foundation-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rehab-green);
  flex-shrink: 0;
}

.symptom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  max-width: 680px;
  margin: 28px auto 0;
  justify-content: center;
}

/* .chip and .chip:hover defined below in Premium Polish block (line ~2206) */

/* ── SECTION 3: WHY BODY SUPPORT ── */

.s-foundation {
  background: var(--white);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 5fr 7fr; /* asymmetric: text 42% / video 58% */
  gap: var(--space-3xl);
  align-items: center;
}

.foundation-text .eyebrow {
  color: var(--blue);
}

.foundation-text h2 {
  margin-bottom: var(--space-md);
}

.foundation-text h2 em {
  font-style: normal;
  display: block;
  color: var(--blue);
}

.foundation-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-md);
}

.foundation-image {
  position: relative;
}

.foundation-img-placeholder {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--cream-dark) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.foundation-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  padding: 0 24px;
}

.foundation-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--cream-dark);
}

/* ── BIO RECOVERY VIDEO (Section 3) ── */

.bio-recovery-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: #F5F1EB;
}

.bio-recovery-video-player {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Poster img: hidden by default, only shown for reduced-motion users */
.bio-recovery-poster {
  display: none;
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .bio-recovery-video-player { display: none; }
  .bio-recovery-poster        { display: block; }
}

/* Decorative accent */
.foundation-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blue-light);
  z-index: -1;
}

@media (max-width: 768px) {
  .foundation-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .foundation-image {
    order: -1;
  }

  .foundation-image::before {
    display: none;
  }
}

/* ── SECTION 4: BRAIN / BODY / NERVOUS SYSTEM ── */

.s-pillars {
  /* background set per-zone via .pillars-header / .pillars-cards-bg */
}

.s-pillars .section-header--center {
  margin-bottom: 0;
}

.s-pillars .eyebrow--light {
  color: rgba(245, 240, 232, 0.5);
}

.pillars-headline {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.3s var(--ease-out), border-color 0.3s;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(161, 189, 59, 0.4);
}

.pillar-icon-large {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

/* Large ghost SVG fills the container */
.pillar-ghost-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--rehab-green);
  pointer-events: none;
}

/* Smaller sharp foreground icon centered */
.pillar-fg-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  color: rgba(245, 240, 232, 0.75);
  flex-shrink: 0;
  transition: color 0.3s, filter 0.3s;
}

.pillar-card:hover .pillar-icon-large {
  transform: scale(1.08);
}

.pillar-card:hover .pillar-fg-icon {
  color: var(--rehab-green);
  filter: drop-shadow(0 0 6px rgba(161, 189, 59, 0.5));
}

.pillar-card-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
}

.pillar-card-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--rehab-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.62);
}

.pillar-bullets-new {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(245, 240, 232, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-bullets-new li {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.72);
  padding-left: 18px;
  position: relative;
}

.pillar-bullets-new li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--rehab-green);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pillars-headline {
    font-size: clamp(38px, 10vw, 60px);
  }
}

/* ── SECTION 5: PROTOCOL PACKAGES ── */

.s-packages {
  background: var(--white);
}

.packages-subtext {
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
  margin-top: -var(--space-md);
  margin-bottom: var(--space-xl);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Base card */
.pkg-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  position: relative;
}

/* .pkg-card:hover — defined below with translateY(-5px) + shadow-xl */

/* Starter — subdued */
.pkg-card--starter {
  border-color: var(--gray-200);
}

/* Essential */
.pkg-card--essential {
  border-color: var(--blue);
  border-width: 1.5px;
}

/* Deep Reset — visually dominant, persistent green highlight */
.pkg-card--deep-reset {
  border-color: var(--rehab-green);
  border-width: 2.5px;
  box-shadow: 0 0 0 1px rgba(161, 189, 59, 0.22),
              var(--shadow-lg),
              0 0 48px rgba(161, 189, 59, 0.16);
  background: linear-gradient(
    160deg,
    rgba(161, 189, 59, 0.07) 0%,
    var(--white) 45%
  );
  position: relative;
  z-index: 1;
}

.pkg-recommended-note {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(161, 189, 59, 0.85);
  margin: -8px 0 12px;
  letter-spacing: 0.01em;
}

/* Back to Yourself — navy premium */
.pkg-card--flagship {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* .pkg-card--flagship descendants — fully overridden by final block at end of file */

/* Badge */
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.pkg-badge--entry {
  background: var(--gray-100);
  color: var(--gray-600);
}

.pkg-badge--essential {
  background: var(--blue-light);
  color: var(--blue);
}

.pkg-badge--recommended {
  background: var(--rehab-green);
  color: var(--rehab-teal);
  font-weight: 800;
}

/* .pkg-badge--flagship — overridden by final block at end of file */

.pkg-card h3 {
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.pkg-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pkg-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pkg-currency {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.pkg-usd,
.pkg-thb {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0;
}

.pkg-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.pkg-divider {
  height: 1px;
  background: var(--gray-200);
  border: none;
}

.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-includes li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pkg-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1.5px;
  background: var(--blue);
}

.pkg-best-for {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.pkg-best-for strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  color: var(--gray-400);
}

.pkg-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-600);
}

.pkg-note {
  font-size: 11px;
  color: var(--gray-400);
  font-style: italic;
  line-height: 1.5;
}

.pkg-cta {
  margin-top: auto;
}

.pkg-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 13px 20px;
}

.packages-footnote {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .pkg-price {
    font-size: 32px;
  }

  .pkg-chips-row {
    gap: 5px;
  }

  .pkg-chip {
    font-size: 10px;
    padding: 4px 9px;
  }

  .pkg-details summary {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .pkg-cta .btn {
    min-height: 48px;
    font-size: 15px;
  }
}

/* ── SECTION 6: WHY PROTOCOLS ── */

.s-why-protocols {
  background: var(--off-white);
}

.why-protocols-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.why-protocols-inner h2 {
  margin-bottom: var(--space-md);
}

.why-protocols-inner h2 em {
  font-style: normal;
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  color: var(--blue);
  margin-top: 4px;
}

.why-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  border-top: 1px solid var(--gray-200);
}

.why-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-200);
}

.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.why-point-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ── SECTION 7: MEDICAL TRUST ── */

.s-trust {
  background: var(--navy);
  padding-block: var(--space-3xl);
}

.trust-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Dr. Lilach photo area */
.trust-photo-col {
  position: relative;
}

.dr-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 300px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}

.dr-photo-placeholder .dr-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(27,143,214,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.05em;
}

.dr-photo-placeholder span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-align: center;
  padding: 0 20px;
}

.trust-photo-col .dr-caption {
  margin-top: var(--space-md);
}

.dr-caption strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.dr-caption span {
  font-size: 13px;
  color: rgba(245,240,232,0.55);
}

/* Trust content */
.trust-content .eyebrow {
  color: rgba(245,240,232,0.5);
}

.trust-content h2 {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.trust-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,240,232,0.72);
  margin-bottom: var(--space-lg);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
}

.trust-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Safety steps */
.trust-steps-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: var(--space-md);
}

.trust-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trust-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-sm);
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245,240,232,0.58);
}

@media (max-width: 900px) {
  .trust-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dr-photo-placeholder {
    max-width: 200px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-inline: auto;
  }

  .trust-photo-col .dr-caption {
    text-align: center;
  }
}

/* Trust section photo strip (real chamber photos below the steps) */
.trust-photo-strip {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-photo-strip img,
.trust-photo-strip .strip-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.trust-photo-strip .strip-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  text-align: center;
  padding: 12px;
}

/* Reasons section: single feature photo above grid */
.reasons-feature-photo {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 320px;
}

.reasons-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── SECTION 8: REASONS ── */

.s-reasons {
  background: var(--rehab-teal);
}

.s-reasons .section-header--center h2 {
  color: var(--cream);
}

.reasons-editorial {
  max-width: 760px;
  margin-inline: auto;
}

.reason-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-md);
  align-items: baseline;
  padding: var(--space-lg) 0;
}

.reason-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--rehab-green);
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.85;
}

.reason-text strong {
  display: block;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}

.reason-text p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.58);
}

.reason-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(161, 189, 59, 0.2) 20%,
    rgba(245, 240, 232, 0.12) 60%,
    transparent 100%
  );
  margin: 0;
}

@media (max-width: 600px) {
  .reason-row {
    grid-template-columns: 48px 1fr;
    gap: var(--space-sm);
  }
}

/* ── SECTION 9: FAQ ── */

.s-faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-fast);
}

.faq-trigger:hover .faq-q {
  color: var(--blue);
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  transition: color var(--dur-fast);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-base) var(--ease-out);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  transition: transform var(--dur-base) var(--ease-out);
}

.faq-item.open .faq-icon {
  background: var(--blue);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0;
}

.faq-item.open .faq-body {
  opacity: 1;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  padding-bottom: var(--space-md);
}

/* ── SECTION 10: FINAL CTA ── */

/* ── TESTIMONIALS ─────────────────────────── */

.s-testimonials {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
}

.testimonial-card {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(140, 90, 70, 0.12);
  border-left: 3px solid rgba(8, 58, 72, 0.30);
  border-radius: var(--radius-md);
  padding: 28px 24px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 43, 60, 0.08);
  margin-top: 4px;
}

.testimonial-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-sessions {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--rehab-teal);
  opacity: 0.75;
}

.testimonial-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

.testimonials-privacy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: var(--space-lg);
  margin-top: calc(-1 * var(--space-sm));
}

.testimonials-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── FINAL CTA URGENCY LINE ───────────────── */

.final-cta-urgency {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.72);
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 8px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.55;
}

/* ── ─────────────────────────────────────── */

.s-final-cta {
  background: var(--rehab-teal);
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
}

.final-cta-inner .eyebrow--light {
  margin-bottom: var(--space-md);
}

.final-cta-inner h2 {
  color: var(--cream);
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: var(--space-md);
  line-height: 1.35;
  font-weight: 600;
}

.final-cta-inner > p {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.final-cta-buttons {
  margin-bottom: var(--space-md);
}

.final-cta-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: var(--space-lg);
  transition: color var(--dur-fast);
}

.final-cta-link:hover {
  color: var(--cream);
}

.final-cta-trust {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */

.site-footer {
  background: var(--navy);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(245,240,232,0.1);
  margin-bottom: var(--space-lg);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-placeholder {
  height: 28px;
  width: 100px;
  background: rgba(245,240,232,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  font-weight: 500;
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(245,240,232,0.65);
  transition: color var(--dur-fast);
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(245,240,232,0.35);
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(245,240,232,0.3);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }
}

/* ── ANIMATION BASE CLASSES ── */

/* GSAP sets opacity/transform directly — these are just starting values
   for elements that should be invisible until GSAP fires */
.gsap-hero-item,
.gsap-hero-photo,
.gsap-fade-up,
.gsap-card,
.gsap-pkg,
.gsap-badge,
.gsap-step,
.gsap-dr-photo,
.gsap-timeline {
  will-change: transform, opacity;
}

/* ── HERO GLOW ── */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 45% at 68% 55%,
    rgba(27, 143, 214, 0.16) 0%,
    rgba(27, 143, 214, 0.08) 42%,
    rgba(161, 189, 59, 0.04) 65%,
    transparent 78%
  );
  opacity: 0.4;
}

/* Hero photo card — premium framed look */
.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

/* Subtle color wash over hero photo */
.hero-photo-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(8, 58, 72, 0.4) 100%
  );
  pointer-events: none;
}

/* .chip and .chip:hover — defined in Premium Polish block below */

/* pillar-card hover handled in Section 4 block above */

/* ── PACKAGE CARD HOVER ── */
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pkg-card--deep-reset:hover {
  border-color: var(--rehab-green);
  box-shadow: 0 16px 48px rgba(161, 189, 59, 0.18);
}

.pkg-card--flagship:hover {
  box-shadow: 0 20px 56px rgba(8, 58, 72, 0.5);
}

/* Best-for bullets in packages */
.pkg-best-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pkg-best-list li {
  font-size: 12px;
  color: var(--gray-600);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.pkg-best-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1.5px;
  background: var(--rehab-green);
}

.pkg-card--flagship .pkg-best-list li {
  color: rgba(245,240,232,0.65);
}

.pkg-card--flagship .pkg-best-list li::before {
  background: var(--clinic-blue);
}

/* Best-for chips */
.pkg-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pkg-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--rehab-green-light);
  border: 1px solid rgba(161, 189, 59, 0.3);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--rehab-teal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pkg-chip--light {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.2);
  color: rgba(245, 240, 232, 0.75);
}

/* Expandable details toggle */
.pkg-details {
  border-top: 1px solid var(--gray-200);
  padding-top: var(--space-sm);
}

.pkg-details summary {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.pkg-details summary::-webkit-details-marker { display: none; }

.pkg-details summary::after {
  content: '+';
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  margin-left: auto;
}

.pkg-details[open] summary::after {
  content: '\2212';
}

.pkg-details p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-top: 8px;
}

.pkg-details--dark {
  border-color: rgba(245, 240, 232, 0.12);
}

.pkg-details--dark summary {
  color: rgba(245, 240, 232, 0.5);
}

.pkg-details--dark summary::after {
  color: var(--rehab-green);
}

.pkg-details--dark p {
  color: rgba(245, 240, 232, 0.65);
}

/* Extended note in flagship card */
.pkg-extended-note {
  font-size: 12px;
  color: rgba(245,240,232,0.55);
  font-style: italic;
  line-height: 1.55;
  padding: 10px 12px;
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}

/* ── PROTOCOL TIMELINE (Section 6) ── */
.protocol-timeline {
  margin-top: var(--space-xl);
  width: 100%;
  overflow: hidden;
}

.tl-track {
  position: relative;
  padding-top: 28px;
}

/* The horizontal line */
.tl-line {
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.tl-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rehab-teal), var(--rehab-green));
  transform-origin: left center;
  transform: scaleX(0);
}

/* Nodes row */
.tl-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

/* Dot on the line */
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rehab-teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--rehab-teal);
  margin-bottom: var(--space-sm);
  margin-top: -6px;
  flex-shrink: 0;
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}

.tl-node:hover .tl-dot {
  background: var(--rehab-green);
  box-shadow: 0 0 0 2px var(--rehab-green), 0 0 12px rgba(161, 189, 59, 0.4);
}

/* Active dot: last node gets green accent */
.tl-node:last-child .tl-dot {
  background: var(--rehab-green);
  box-shadow: 0 0 0 2px var(--rehab-green);
}

.tl-content {
  padding-top: 4px;
}

/* O2 / mini icon above each timeline label */
.tl-icon-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--rehab-green);
  letter-spacing: 0.04em;
}

.tl-icon-mini svg {
  width: 14px;
  height: 14px;
  color: var(--rehab-green);
}

.tl-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rehab-teal);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.tl-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Mobile: vertical timeline */
@media (max-width: 768px) {
  .tl-track {
    padding-top: 0;
    padding-left: 24px;
    position: relative;
  }

  /* Vertical line on the left */
  .tl-line {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 6px;
    width: 2px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg, var(--rehab-teal), var(--rehab-green));
    border-radius: 2px;
    overflow: visible;
  }

  .tl-line-fill {
    display: none;
  }

  .tl-nodes {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: none;
  }

  .tl-node {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 28px 0;
    position: relative;
  }

  .tl-dot {
    position: absolute;
    left: -31px;
    top: 2px;
    margin: 0;
    flex-shrink: 0;
    z-index: 2;
  }

  .tl-content {
    padding-top: 0;
    flex: 1;
  }

  .tl-icon-mini {
    justify-content: flex-start;
    margin-bottom: 2px;
  }
}

/* ── TRUST PHOTO WRAP ── */
.trust-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0%);
}

.trust-photo-wrap img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── FINAL CTA GLOW ── */
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(161, 189, 59, 0.18) 0%,
    rgba(27, 143, 214, 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
  animation: ctaGlowPulse 6s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.25); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-bg-glow { animation: none; }
}

/* reasons-grid removed — replaced by reasons-editorial */

/* ════════════════════════════════════════════════════════
   PACKAGE CARDS — alignment + Back to Yourself contrast
   June 2026 (final override — must stay at end of file)
════════════════════════════════════════════════════════ */

/* Grid: all cells same height */
.packages-grid {
  align-items: stretch;
}

/* Cards: fill full cell height, flex column, CTA pinned bottom */
.pkg-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px;
}

/* Consistent internal spacing */
.pkg-card .pkg-badge     { margin-bottom: 14px; }
.pkg-card h3             { margin-bottom: 16px; }
.pkg-card .pkg-price-block { margin-bottom: 16px; }
.pkg-card .pkg-divider   { margin-top: 0; margin-bottom: 14px; }
.pkg-card .pkg-includes  { margin-bottom: 14px; }
.pkg-card .pkg-chips-row { margin-bottom: 14px; }
.pkg-card .pkg-details   { margin-bottom: 10px; }
.pkg-card .pkg-note      { margin-bottom: 16px; font-size: 11px; }
.pkg-card .pkg-cta       { margin-top: auto; padding-top: 6px; }

/* ── Back to Yourself: full contrast override ── */

/* Base: all text near-white */
.pkg-card--flagship,
.pkg-card--flagship * {
  color: rgba(255, 255, 255, 0.92);
}

/* Strong white: title + price */
.pkg-card--flagship h3,
.pkg-card--flagship .pkg-price {
  color: #FFFFFF;
}

/* Secondary text: minimum 0.88 */
.pkg-card--flagship .pkg-thb,
.pkg-card--flagship .pkg-currency,
.pkg-card--flagship .pkg-duration,
.pkg-card--flagship .pkg-note,
.pkg-card--flagship .pkg-details summary,
.pkg-card--flagship .pkg-details p,
.pkg-card--flagship .pkg-details--dark summary,
.pkg-card--flagship .pkg-details--dark p {
  color: rgba(255, 255, 255, 0.88);
}

/* Includes: full legibility */
.pkg-card--flagship .pkg-includes li {
  color: rgba(255, 255, 255, 0.92);
}

.pkg-card--flagship .pkg-includes li::before {
  background: var(--rehab-green);
}

/* Dividers: visible on dark */
.pkg-card--flagship .pkg-divider {
  background: rgba(255, 255, 255, 0.20);
}

/* Chips on dark card */
.pkg-chip--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

/* ── Flagship badge: clearly visible ── */
.pkg-badge--flagship {
  background: rgba(27, 143, 214, 0.35);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ════════════════════════════════════════════════════════
   PREMIUM POLISH — Hero · S2 · S3 · S4
   June 2026
════════════════════════════════════════════════════════ */

/* ── HERO: VIDEO-READY STRUCTURE ──────────────────── */

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: none; /* Remove display:none and add src when footage is ready */
}

/* Toggle: add class="has-video" to <section> to activate */
.s-hero.has-video .hero-bg-img  { display: none; }
.s-hero.has-video .hero-bg-video { display: block; }

/* ── SECTION 2: ATMOSPHERE + HIERARCHY + SILHOUETTE ─ */

/* Layered fog — suggests nervous system depletion without imagery */
.s-problem {
  position: relative;
  overflow: hidden;
}

.s-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%,
      rgba(8, 58, 72, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 4% 90%,
      rgba(27, 143, 214, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 94% 52%,
      rgba(27, 143, 214, 0.04) 0%, transparent 55%);
}

.s-problem .container {
  position: relative;
  z-index: 1;
}

/* Stronger, more authoritative eyebrow */
.s-problem .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--blue);
}

/* Section 2 heading: slightly larger for weight */
.s-problem h2 {
  font-size: clamp(26px, 3.2vw, 40px);
}

/* Symptom chips — compact pill tags */
.symptom-label {
  display: block;
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 58, 72, 0.52);
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  cursor: default;
}

.chip::before {
  display: none;
}

.chip:hover {
  transform: translateY(-1px);
}

/* Brain family — mist blue (cognitive symptoms) */
.chip--brain {
  background: rgba(210, 232, 248, 0.55);
  border-color: rgba(75, 174, 232, 0.20);
  color: #1e5070;
}
.chip--brain:hover {
  background: rgba(210, 232, 248, 0.80);
  border-color: rgba(75, 174, 232, 0.35);
}

/* Body family — pale sage (physical symptoms) */
.chip--body {
  background: rgba(215, 232, 218, 0.55);
  border-color: rgba(100, 155, 110, 0.20);
  color: #284830;
}
.chip--body:hover {
  background: rgba(215, 232, 218, 0.80);
  border-color: rgba(100, 155, 110, 0.35);
}

/* Nervous system family — pale teal (regulation symptoms) */
.chip--nervous {
  background: rgba(212, 232, 235, 0.55);
  border-color: rgba(8, 58, 72, 0.15);
  color: #1a3c44;
}
.chip--nervous:hover {
  background: rgba(212, 232, 235, 0.80);
  border-color: rgba(8, 58, 72, 0.28);
}

@media (max-width: 600px) {
  .symptom-chips {
    gap: 7px 8px;
    max-width: 100%;
    padding: 0 4px;
  }

  .chip {
    font-size: 12px;
    padding: 5px 13px;
  }
}

/* ── SECTION 4: NEW PILLAR CARDS (pcn-card) ─────── */

/* Override s-pillars: no longer all teal — it wraps two zones */
.s-pillars {
  background: transparent;
  padding: 0;
}

.s-pillars .section-header--center {
  margin-bottom: 0;
}

/* Dark teal header zone */
.pillars-header {
  background: var(--rehab-teal);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pillars-header .eyebrow--light {
  color: rgba(245, 240, 232, 0.5);
}

/* Light cream card zone */
.pillars-cards-bg {
  background: #F7F4EF;
  padding: var(--space-2xl) 0 var(--space-3xl);
}

/* Cards grid — same as before */
.pillars-cards-bg .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

/* New card */
.pcn-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.pcn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* Photo area */
.pcn-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}

.pcn-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.pcn-card:hover .pcn-photo {
  transform: scale(1.04);
}

/* Body */
.pcn-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcn-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}

.pcn-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.pcn-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcn-bullets li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.pcn-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--rehab-green);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .pillars-cards-bg .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pcn-photo-wrap {
    aspect-ratio: 16 / 7;
  }
}

/* ── DR. LILACH TRUST STRIP ──────────────────────── */

.dr-trust-strip {
  background: #EEF6FB;
  border-top: 1px solid rgba(75, 174, 232, 0.18);
  border-bottom: 1px solid rgba(75, 174, 232, 0.18);
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}

.dr-strip-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(75, 174, 232, 0.30);
}

.dr-strip-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.dr-strip-text strong {
  color: var(--rehab-teal);
}

.dr-strip-text p {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  margin: 3px 0 0;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .dr-trust-strip {
    gap: 14px;
    padding: 16px 20px;
  }

  .dr-strip-photo {
    width: 48px;
    height: 48px;
  }

  .dr-strip-text {
    font-size: 13px;
  }

  .dr-strip-text p {
    font-size: 12px;
  }
}

/* ── TIMELINE: PROGRESSIVE TEXT DARKNESS ────────── */

.tl-node:nth-child(1) .tl-text { color: rgba(26, 43, 60, 0.52); }
.tl-node:nth-child(2) .tl-text { color: rgba(26, 43, 60, 0.64); }
.tl-node:nth-child(3) .tl-text { color: rgba(26, 43, 60, 0.76); }
.tl-node:nth-child(4) .tl-text { color: rgba(26, 43, 60, 0.90); font-weight: 500; }

.tl-node:nth-child(1) .tl-label { color: rgba(26, 43, 60, 0.55); }
.tl-node:nth-child(2) .tl-label { color: rgba(26, 43, 60, 0.68); }
.tl-node:nth-child(3) .tl-label { color: rgba(26, 43, 60, 0.82); }
.tl-node:nth-child(4) .tl-label { color: rgba(26, 43, 60, 0.95); font-weight: 700; }

/* ── SECTION 3: CINEMATIC VIDEO VISUAL ───────────── */

/* More dominant framing for video card */
.bio-recovery-video {
  position: relative;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.13),
    0 0 0 1px rgba(27, 143, 214, 0.12),
    0 0 80px rgba(27, 143, 214, 0.08);
}

/* Cinematic inner border ring */
.bio-recovery-video::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(27, 143, 214, 0.20);
  pointer-events: none;
  z-index: 2;
}

/* ── SECTION 4: PILLAR CARDS + PNG VISUAL SYSTEM ─── */

.pillar-card {
  position: relative;
  overflow: hidden;
}

/* All direct children sit above image + overlay layers */
.pillar-card > *:not(.pillar-card-bg) {
  position: relative;
  z-index: 3;
}

/* PNG background visual — bottom-right anchor */
.pillar-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.88) contrast(0.88) brightness(0.90);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillar-card--has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 58, 72, 0.42) 0%,
    rgba(8, 58, 72, 0.10) 45%,
    rgba(8, 58, 72, 0.52) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.pillar-card:hover .pillar-card-bg {
  opacity: 0.48;
  transform: scale(1.04);
}

/* CSS ::before decorations reduced — PNG is now primary visual layer */
.pillar-card::before {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  transition: opacity 0.4s;
}

.pillars-grid .pillar-card:nth-child(1)::before {
  top: -50px; right: -50px;
  width: 210px; height: 210px;
  background: radial-gradient(circle at center,
    rgba(27, 143, 214, 0.07) 0%,
    transparent 70%
  );
}

.pillars-grid .pillar-card:nth-child(2)::before {
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: transparent;
  border: 1px solid rgba(161, 189, 59, 0.10);
  box-shadow:
    0 0 0 22px rgba(161, 189, 59, 0.03),
    0 0 0 44px rgba(161, 189, 59, 0.015);
}

.pillars-grid .pillar-card:nth-child(3)::before {
  inset: 0;
  border-radius: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 22px,
    rgba(27, 143, 214, 0.016) 22px,
    rgba(27, 143, 214, 0.016) 24px
  );
  opacity: 0.6;
}

.pillar-card:hover::before { opacity: 1; }

@media (max-width: 768px) {
  .pillar-card-bg {
    width: 54%;
    right: -12%;
    bottom: -6%;
    opacity: 0.20;
  }
  .pillar-card:hover .pillar-card-bg {
    opacity: 0.24;
    transform: none;
  }
}

/* Tighten pillar card hover to match new border */
.pillar-card:hover {
  border-color: rgba(161, 189, 59, 0.50);
}

/* ── SECTION 2: VIDEO VISUAL ─────────────────────── */

.problem-video-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.problem-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.22;
  filter: saturate(0.5) contrast(0.85) brightness(1.1);
}

.problem-video-softener {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(245,240,232,0.75) 0%,
      rgba(245,240,232,0.30) 35%,
      rgba(245,240,232,0.30) 65%,
      rgba(245,240,232,0.75) 100%
    );
  z-index: 2;
}

/* ── RECOVERY BRIDGE (between S2 and S3) ── */

.s-recovery-bridge {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.recovery-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl) var(--space-3xl);
  align-items: start;
  max-width: 860px;
  margin-inline: auto;
}

/* Left column: explanation */

.recovery-bridge-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.recovery-bridge-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 14px;
  font-style: italic;
}

.recovery-bridge-position {
  font-size: 14px;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.recovery-bridge-close {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}

.recovery-bridge-close strong {
  color: var(--navy);
  font-weight: 600;
}

/* Right column: compact list */

.recovery-bridge-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500, #6b7280);
  margin-bottom: 14px;
  line-height: 1.55;
}

.recovery-bridge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.recovery-bridge-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.recovery-bridge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rehab-teal);
  opacity: 0.7;
}

@media (max-width: 680px) {
  .recovery-bridge {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .recovery-bridge-right {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
  }
}

/* ── FOUNDATION GOAL LINE ── */

.foundation-goal {
  font-size: 15px;
  font-weight: 600;
  color: var(--rehab-teal);
  margin-top: -4px;
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

/* ── FAQ SOURCES NOTE ── */

.faq-sources {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: var(--space-lg);
  margin-top: calc(-1 * var(--space-sm));
}

/* ── REASONS CTA — full-width on mobile ── */

@media (max-width: 600px) {
  .reasons-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════
   MOBILE-FIRST OVERRIDES — Nav + Hero
   Applied: June 2026
════════════════════════════════════════════════════════ */

/* ── NAV: 2-row stacked layout on mobile ── */

@media (max-width: 520px) {
  .site-nav {
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 12px;
    gap: 9px;
  }

  /* Logos row: bigger and more readable */
  .nav-logos {
    gap: 10px;
  }

  .nav-logo {
    height: 46px;
    padding: 4px 10px;
  }

  .nav-divider {
    height: 24px;
  }

  /* CTA: full-width, centered, taller tap target */
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 14px;
    border-radius: var(--radius-pill);
  }

  /* Push hero content down to clear 2-row nav */
  .hero-inner {
    padding-top: 148px;
    padding-bottom: 60px;
  }
}

/* ── HERO: centered + readable on mobile ── */

@media (max-width: 600px) {
  .hero-inner {
    padding-top: 140px;
    padding-bottom: 56px;
  }

  /* Center all hero text */
  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-subheading {
    font-size: 16px;
    max-width: 100%;
  }

  /* Buttons: stacked, full width */
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Trust bar: centered, separator hidden, items on own lines */
  .hero-trust {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    font-size: 12px;
    white-space: normal;
  }

  /* Eyebrow: slightly more readable */
  .hero-content .eyebrow {
    font-size: 11px;
    line-height: 1.5;
    white-space: normal;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
   June 2026
════════════════════════════════════════════════════════ */

.testimonial-carousel {
  max-width: 680px;
  margin-inline: auto;
}

.tc-track {
  position: relative;
  min-height: 180px;
}

.tc-slide {
  display: none;
  animation: tcFadeIn 0.42s var(--ease-out) forwards;
}

.tc-slide.active {
  display: block;
}

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

/* Reuse existing .testimonial-card styles — just ensure no grid here */
.tc-slide .testimonial-card {
  margin: 0;
}

.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.tc-prev,
.tc-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
  flex-shrink: 0;
}

.tc-prev:hover,
.tc-next:hover {
  border-color: var(--blue);
  background: rgba(75, 174, 232, 0.07);
  transform: scale(1.06);
}

.tc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.tc-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

.testimonials-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 20px;
}

/* ════════════════════════════════════════════════════════
   SCIENCE SECTION
   June 2026
════════════════════════════════════════════════════════ */

.s-science {
  background: var(--navy);
  color: var(--cream);
}

.s-science .eyebrow {
  color: rgba(245, 240, 232, 0.45);
}

.s-science h2 {
  color: var(--cream);
}

.science-intro {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(245, 240, 232, 0.65);
  max-width: 520px;
  margin-inline: auto;
  margin-top: var(--space-sm);
  text-align: center;
  line-height: 1.7;
}

.science-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.science-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.science-video-player {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.science-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sci-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: background var(--dur-fast);
}

.sci-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.sci-card-icon {
  color: var(--rehab-green);
  margin-bottom: 10px;
}

.sci-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.sci-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  margin: 0;
}

@media (max-width: 768px) {
  .science-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ════════════════════════════════════════════════════════
   DR. LILACH CENTERED TRUST BLOCK
   June 2026
════════════════════════════════════════════════════════ */

.s-dr-trust {
  background: linear-gradient(135deg, #F0F8FE 0%, #EAF5FC 100%);
  border-top: 3px solid rgba(75, 174, 232, 0.25);
  border-bottom: 3px solid rgba(75, 174, 232, 0.15);
}

.dr-trust-block {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 52px;
  align-items: center;
  text-align: left;
}

.dt-photo-col {
  display: flex;
  justify-content: center;
}

.dt-content-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dt-photo-wrap {
  width: 200px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(75, 174, 232, 0.45);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(75, 174, 232, 0.12);
  flex-shrink: 0;
}

.dt-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 680px) {
  .dr-trust-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .dt-photo-wrap {
    width: 140px;
    height: 172px;
    margin-inline: auto;
  }
  .dt-content-col {
    align-items: center;
  }
}

.s-dr-trust .eyebrow {
  color: var(--blue);
  margin: 0;
}

.s-dr-trust h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #1A2B3C;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.s-dr-trust h2 strong {
  color: var(--blue);
  font-weight: 700;
}

.dt-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5568;
  max-width: 480px;
  margin: 0;
}

.dt-body strong {
  color: #1A2B3C;
  font-weight: 600;
}

.dt-credential {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0;
}

.dt-credentials {
  margin-top: var(--space-md);
  text-align: left;
}

.dt-name {
  font-size: 13px;
  font-weight: 600;
  color: #1A2B3C;
  margin: 0 0 14px;
}

.dt-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: 480px;
}

.dt-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(75, 174, 232, 0.10);
  border: 1px solid rgba(75, 174, 232, 0.30);
  border-radius: 20px;
  padding: 5px 13px;
  line-height: 1.4;
}

@media (max-width: 680px) {
  .dt-credentials { text-align: center; }
  .dt-chips { justify-content: center; }
}

/* ── Why-protocols CTA link ── */
.why-protocols-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ── Packages standalone sessions note ── */
.pkg-standalone-note {
  text-align: center;
  font-size: 13px;
  color: rgba(26, 43, 60, 0.50);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  padding: 10px 16px;
  border-top: 1px solid rgba(26, 43, 60, 0.08);
  padding-top: var(--space-md);
}

/* ════════════════════════════════════════════════════════
   PILLAR CARD — refined hierarchy
   June 2026
════════════════════════════════════════════════════════ */

.pcn-title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.15;
}

.pcn-protocol-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rehab-green);
  background: rgba(161, 189, 59, 0.10);
  border: 1px solid rgba(161, 189, 59, 0.25);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 8px;
}

.pcn-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.pcn-bullets li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.pcn-bullets li::before {
  background: var(--blue);
}

/* ════════════════════════════════════════════════════════
   TIMELINE — short + strong + progressive
   June 2026
════════════════════════════════════════════════════════ */

.tl-node:nth-child(1) .tl-text,
.tl-node:nth-child(1) .tl-label { color: rgba(26, 43, 60, 0.50); }

.tl-node:nth-child(2) .tl-text,
.tl-node:nth-child(2) .tl-label { color: rgba(26, 43, 60, 0.65); }

.tl-node:nth-child(3) .tl-text,
.tl-node:nth-child(3) .tl-label { color: rgba(26, 43, 60, 0.80); }

.tl-node:nth-child(4) .tl-text,
.tl-node:nth-child(4) .tl-label {
  color: rgba(26, 43, 60, 0.95);
  font-weight: 600;
}

.tl-node:nth-child(4) .tl-dot {
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(26, 43, 60, 0.15);
}

.tl-text strong {
  font-weight: 700;
}

/* Dots on mobile — ensure not clipped */
@media (max-width: 600px) {
  .tl-track {
    padding-left: 8px;
  }

  .tl-dot {
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════════════════════
   PROBLEM SECTION — tighter desktop spacing
   June 2026
════════════════════════════════════════════════════════ */

.s-problem {
  padding-block: var(--space-2xl) var(--space-xl);
}

/* ════════════════════════════════════════════════════════
   HERO SUBHEADING — accent line mobile
   June 2026
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-sub-accent {
    font-size: 18px;
  }
  .hero-sub-body {
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════
   PACKAGES — scarcity notice
   June 2026
════════════════════════════════════════════════════════ */

.pkg-scarcity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(75, 174, 232, 0.07);
  border: 1px solid rgba(75, 174, 232, 0.20);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.pkg-scarcity svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.pkg-default-path {
  text-align: center;
  font-size: 15px;
  color: var(--navy);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.pkg-default-path strong {
  color: var(--rehab-teal);
}

/* ════════════════════════════════════════════════════════
   SCIENCE SECTION — dual photo layout (replaces video)
   June 2026
════════════════════════════════════════════════════════ */

.science-photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

.science-photo-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.science-photo-top {
  transform: translateX(0);
}

.science-photo-bottom {
  transform: translateX(18px);
}

.science-photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 200px;
}

@media (max-width: 768px) {
  .science-photos {
    grid-template-rows: auto auto;
    height: auto;
  }
  .science-photo-top,
  .science-photo-bottom {
    transform: none;
  }
  .science-photo-item img {
    height: 240px;
  }
}

/* Carousel card — ensure blockquote has no default margin */
.tc-slide.testimonial-card {
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   CHIPS TABLE — 3-column grouped layout
   June 2026
════════════════════════════════════════════════════════ */

.chips-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
  max-width: 720px;
  margin-inline: auto;
}

.chips-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.chips-col-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  margin-bottom: 4px;
}

.chips-col-header--brain {
  background: rgba(210, 232, 248, 0.90);
  color: #1e5070;
  border: 1.5px solid rgba(75, 174, 232, 0.25);
}

.chips-col-header--body {
  background: rgba(215, 232, 218, 0.90);
  color: #284830;
  border: 1.5px solid rgba(100, 155, 110, 0.25);
}

.chips-col-header--nervous {
  background: rgba(212, 232, 235, 0.90);
  color: #1a3c44;
  border: 1.5px solid rgba(8, 58, 72, 0.18);
}

.chips-column .chip {
  text-align: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .chips-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .chips-col-header {
    font-size: 9px;
    padding: 7px 8px;
    letter-spacing: 0.06em;
  }
  .chips-column .chip {
    font-size: 12px;
    padding: 8px 6px;
  }
}

/* ════════════════════════════════════════════════════════
   SCIENCE SECTION — alternating treatment rows
   June 2026
════════════════════════════════════════════════════════ */

.science-treatments {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
}

.sci-treatment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sci-treatment:first-child {
  border-top: none;
  padding-top: 0;
}

/* Step counter — large faint number behind content */
.sci-step-num {
  display: block;
  font-size: 80px;
  font-weight: 800;
  line-height: 0.85;
  color: rgba(161, 189, 59, 0.12);
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  font-family: var(--font-sans);
  pointer-events: none;
  user-select: none;
}

.sci-treatment--reverse .sci-treatment-text {
  order: 2;
}

.sci-treatment--reverse .sci-treatment-photo {
  order: 1;
}

.sci-treatment-icon {
  color: var(--rehab-green);
  margin-bottom: 12px;
}

.sci-treatment-text h4 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sci-treatment-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.70);
  margin: 0;
}

.sci-treatment-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 4 / 3;
}

.sci-treatment-photo img,
.sci-treatment-photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .sci-treatment {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .sci-treatment--reverse .sci-treatment-text {
    order: 1;
  }
  .sci-treatment--reverse .sci-treatment-photo {
    order: 2;
  }
  .sci-treatment-photo {
    aspect-ratio: 16 / 9;
  }
}

/* ════════════════════════════════════════════════════════
   HERO — bottom fade to hide subtitle bleed + sub-body fix
════════════════════════════════════════════════════════ */

.s-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(8, 58, 72, 0.80) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-sub-body {
  display: block;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════
   PILLARS HEADER — video background
════════════════════════════════════════════════════════ */

.pillars-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.22;
}

.pillars-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 58, 72, 0.55) 0%,
    rgba(8, 58, 72, 0.30) 50%,
    rgba(8, 58, 72, 0.70) 100%
  );
}

.pillars-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(212, 239, 90, 0.90) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.40);
}

/* ── Brain / Body / Nervous System animated words ── */
.pbn-eyebrow {
  display: block;
  opacity: 0;
  transform: translateY(10px);
}

.pbn-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform, text-shadow;
}

/* Glow color per word — applied by GSAP on enter */
.pbn-word--brain  { --pbn-glow: rgba(212, 239, 90, 0.75); }
.pbn-word--body   { --pbn-glow: rgba(161, 189, 59, 0.75); }
.pbn-word--ns     { --pbn-glow: rgba(75, 174, 232, 0.65); }

/* Reduced motion: show immediately */
@media (prefers-reduced-motion: reduce) {
  .pbn-eyebrow,
  .pbn-word { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════
   CHIPS TABLE — headers as titles, not chips
════════════════════════════════════════════════════════ */

.chips-col-header {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom-width: 2.5px;
  border-bottom-style: solid;
  text-align: left;
  margin-bottom: 10px;
}

.chips-col-header--brain {
  background: transparent;
  border-color: rgba(75, 174, 232, 0.50);
  color: #1e5070;
}

.chips-col-header--body {
  background: transparent;
  border-color: rgba(100, 155, 110, 0.50);
  color: #284830;
}

.chips-col-header--nervous {
  background: transparent;
  border-color: rgba(8, 58, 72, 0.40);
  color: #1a3c44;
}

/* ════════════════════════════════════════════════════════
   IMAGE POSITIONS — brain / HBOT / NAD+ face centering
════════════════════════════════════════════════════════ */

/* Brain pillar — push down so head is not cropped */
[aria-labelledby="pillar-brain"] .pcn-photo {
  object-position: center 20%;
}

/* HBOT treatment photo — woman's face center */
.sci-treatment:first-child .sci-treatment-photo img {
  object-position: center 20%;
}

/* NAD+ treatment photo — woman's face center */
.sci-treatment:nth-child(2) .sci-treatment-photo img {
  object-position: center 15%;
}

/* Methylation treatment photo */
.sci-img--methyl {
  object-position: center 25%;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS — restore decorative opening quote
════════════════════════════════════════════════════════ */

.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
  font-style: normal;
  margin-bottom: -8px;
  font-family: Georgia, serif;
}

/* ════════════════════════════════════════════════════════
   PACKAGES — equal card heights
════════════════════════════════════════════════════════ */

.packages-grid {
  align-items: stretch;
}

.pkg-card {
  display: flex;
  flex-direction: column;
}

.pkg-cta {
  margin-top: auto;
}

/* ════════════════════════════════════════════════════════
   PROTOCOL MILESTONES — horizontal circle timeline + arrow
════════════════════════════════════════════════════════ */

/* Container: flex row, circles connected by animated line */
.protocol-milestones {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  overflow: visible;
  background: transparent;
  gap: 0;
  margin-top: var(--space-xl);
  padding: 0 0 8px;
}

/* Animated horizontal line — runs between circle centres */
.protocol-milestones::before {
  content: '';
  position: absolute;
  top: 32px; /* half of 64px circle */
  left: 12.5%; /* starts at centre of first circle */
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,
    rgba(161, 189, 59, 0.35) 0%,
    #A1BD3B 55%,
    #D4EF5A 88%
  );
  z-index: 1;
  transition: width 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.protocol-milestones.ms-animated::before {
  width: 75%; /* 12.5% → 87.5% = centre of last circle */
}

/* Arrowhead — fades in after line finishes, sits past right edge of last circle */
.protocol-milestones::after {
  content: '';
  position: absolute;
  top: 23px; /* 32px - 9px (half arrow height) */
  left: calc(87.5% + 35px); /* centre of last circle + its radius + 3px gap */
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #D4EF5A;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.35s ease 2.2s;
}

.protocol-milestones.ms-animated::after {
  opacity: 1;
}

/* Extend the line to the right edge of the last circle */
.protocol-milestones.ms-animated::before {
  width: calc(75% + 32px);
}

/* Each step: circle node at top, tag + text centred below */
.milestone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
  background: transparent !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.milestone.ms-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Circle node — progressive green fill */
.milestone-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.milestone--1 .milestone-num {
  background: #eef3e5;
  color: rgba(8, 58, 72, 0.45);
  border: 2px solid rgba(161, 189, 59, 0.28);
}

.milestone--2 .milestone-num {
  background: #dce9bc;
  color: rgba(8, 58, 72, 0.65);
  border: 2px solid rgba(161, 189, 59, 0.50);
}

.milestone--3 .milestone-num {
  background: #c2d98a;
  color: #083A48;
  border: 2px solid rgba(161, 189, 59, 0.80);
}

.milestone--4 .milestone-num {
  background: #A1BD3B;
  color: #fff;
  border: 2px solid #A1BD3B;
  box-shadow: 0 0 0 5px rgba(161, 189, 59, 0.15);
}

/* Tag */
.milestone-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rehab-teal);
  margin-bottom: 6px;
  background: transparent;
  border: none;
  padding: 0;
}

.milestone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

/* Milestone text — uniform style, dark on light bg */
.milestone-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(8, 58, 72, 0.65);
  margin: 0;
  font-weight: 400;
}

.milestone--4 .milestone-text {
  font-weight: 500;
  color: rgba(8, 58, 72, 0.82);
}

/* ════════════════════════════════════════════════════════
   GLOBAL TEXT WIDTH CONTROL — prevent awkward wrapping
   Body text should never span the full container width
════════════════════════════════════════════════════════ */

/* Science section intro */
.science-intro {
  max-width: 520px;
  margin-inline: auto;
}

/* Dr. Lilach body already has max-width: 480px — good */

/* FAQ answer text */
.faq-body p {
  max-width: 640px;
  line-height: 1.75;
}

/* Section subheadings that could orphan */
.section-header--center p {
  max-width: 560px;
  margin-inline: auto;
}

/* Science treatment text — proportional line length */
.sci-treatment-text p {
  max-width: 400px;
}

/* Footer disclaimer — prevent wall of text */
.footer-disclaimer {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

/* Packages footnote */
.packages-footnote {
  max-width: 600px;
  margin-inline: auto;
}

/* Why-protocols section heading */
.why-protocols-inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

/* Section headers centered on light sections */
.s-faq .section-header--center h2,
.s-testimonials .section-header--center h2 {
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  /* Vertical stacked timeline on mobile */
  .protocol-milestones {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0;
    position: relative;
  }

  /* Vertical connector line through circle centres */
  .protocol-milestones::before {
    content: '';
    position: absolute;
    left: 27px; /* half of 54px circle */
    top: 27px;
    bottom: 27px;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, rgba(161,189,59,0.20), rgba(161,189,59,0.70));
    border-radius: 2px;
    transition: none;
  }

  .protocol-milestones.ms-animated::before {
    width: 2px; /* override desktop scaleX animation */
  }

  /* Hide arrowhead */
  .protocol-milestones::after {
    display: none;
  }

  /* Each step: row layout — number left, content right */
  .milestone {
    flex: none;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    opacity: 1;
    transform: none;
  }

  .milestone-num {
    width: 54px;
    height: 54px;
    font-size: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  /* Content aligns left in row layout */
  .milestone-content {
    align-items: flex-start;
    text-align: left;
  }

  .milestone-text {
    font-size: 13px;
    text-align: left;
  }
}

/* ════════════════════════════════════════════════════════
   PACKAGES — Deep Reset featured hero card layout
════════════════════════════════════════════════════════ */

/* 2-col grid: Deep Reset spans full width, the two others sit below */
.packages-grid {
  grid-template-columns: 1fr 1fr;
}

/* Deep Reset: full-width horizontal layout */
.pkg-card--deep-reset {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 52px;
  align-items: start;
  padding: 44px 52px;
}

.pkg-feat-left,
.pkg-feat-right {
  display: flex;
  flex-direction: column;
}

.pkg-feat-left .pkg-note {
  margin-top: auto;
  padding-top: var(--space-md);
}

.pkg-feat-right .pkg-cta {
  margin-top: auto;
  padding-top: var(--space-lg);
}

.pkg-feat-right .pkg-includes {
  margin-bottom: var(--space-sm);
}

/* Standalone sessions block */
.pkg-standalone-block {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(161, 189, 59, 0.06);
  border: 1px solid rgba(161, 189, 59, 0.22);
  border-radius: var(--radius-md);
  max-width: 480px;
  margin-inline: auto;
  margin-top: var(--space-xl);
}

.pkg-standalone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
}

.pkg-standalone-options {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rehab-teal);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.pkg-standalone-cta-text {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

.pkg-standalone-cta-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.pkg-standalone-cta-text a:hover {
  text-decoration: underline;
}

/* Post-grid scarcity note — smaller, lighter */
.pkg-scarcity--after {
  margin-top: var(--space-lg);
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pkg-scarcity--after svg {
  flex-shrink: 0;
  opacity: 0.55;
}

/* Mobile: Deep Reset goes vertical, stays first */
@media (max-width: 860px) {
  .pkg-card--deep-reset {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: 32px 28px;
  }

  .pkg-feat-left .pkg-note {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card--deep-reset {
    padding: 28px 22px;
  }
}

/* ════════════════════════════════════════════════════════
   PROBLEM SECTION — headline emphasis
════════════════════════════════════════════════════════ */

.problem-headline-mark {
  font-style: italic;
  color: var(--rehab-teal);
  font-weight: 700;
}

.s-problem h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS — visible dots + stack peek effect
════════════════════════════════════════════════════════ */

/* Larger, pill-shaped active dot */
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(8, 58, 72, 0.18);
  border: 1.5px solid rgba(8, 58, 72, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}

.tc-dot.active {
  width: 28px;
  height: 10px;
  border-radius: 5px;
  background: var(--blue);
  border-color: var(--blue);
  transform: none;
}

/* Stack peek: ghost cards behind the active slide */
.tc-slide.active.testimonial-card {
  position: relative;
  z-index: 2;
}

.tc-slide.active.testimonial-card::before,
.tc-slide.active.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(140, 90, 70, 0.10);
  z-index: -1;
}

.tc-slide.active.testimonial-card::before {
  transform: rotate(-1.8deg) translate(-5px, 10px);
  opacity: 0.7;
}

.tc-slide.active.testimonial-card::after {
  transform: rotate(1.4deg) translate(5px, 14px);
  opacity: 0.45;
}


/* ══════════════════════════════════════════
   SKY BLUE ACCENT TOUCHES — Holina Clinic brand #4BAEE8
   Subtle markers that carry the clinic identity through the page
═══════════════════════════════════════════ */

/* Testimonials section: sky blue top accent line */
.s-testimonials {
  border-top: 3px solid rgba(75, 174, 232, 0.20);
}

/* Packages section: sky blue top accent line */
.s-packages {
  border-top: 3px solid rgba(75, 174, 232, 0.18);
}

/* Why Protocols section: sky blue top accent line */
.s-why-protocols {
  border-top: 3px solid rgba(75, 174, 232, 0.15);
}

/* Section eyebrow — universal sky blue tint */
.eyebrow {
  color: #4BAEE8;
}

/* Science section treatment cards — sky blue top border accent */
.sci-treatment-card {
  border-top: 3px solid rgba(75, 174, 232, 0.35);
}

/* Timeline node outline glow in sky blue */
.milestone-num {
  box-shadow: 0 0 0 3px rgba(75, 174, 232, 0.15), 0 4px 12px rgba(0,0,0,0.3);
}

/* Pillar cards: subtle sky blue top accent */
.pcn-card {
  border-top: 3px solid rgba(75, 174, 232, 0.22) !important;
}
