/* ============================================================
   Mind Pulse Center — Landing Page
   Type: Manrope (display + body/UI)
   ============================================================ */

:root {
  --paper: #F8F5EF;
  --paper-alt: #F1ECE2;
  --ink: #1E2B29;
  --ink-soft: #4A5654;
  --ink-faint: #7C8886;

  --sky: #7EB8DB;
  --sky-deep: #3E6D91;
  --sky-tint: #E7F1F8;

  --navy: #17262A;
  --navy-soft: #223438;

  --maroon: #9A2A1F;
  --line: rgba(30, 43, 41, 0.12);

  --edge-pad: clamp(20px, 6vw, 96px);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -25px rgba(23, 38, 36, 0.35);
  --shadow-tight: 0 8px 24px -12px rgba(23, 38, 36, 0.3);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

/* ============================================================
   SCROLL REVEAL (base — kept early so component :hover rules
   defined later in the cascade can still win on equal specificity)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.9) translateY(14px); }
[data-reveal="pop"] { transform: scale(0.82); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
h1 em { font-style: normal; font-weight: 800; color: var(--sky-deep); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.wrap {
  padding: 0 var(--edge-pad);
}

.section { padding: 110px 0; }

/* ---------- Progress pulse bar ---------- */
.pulse-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sky-deep), var(--sky));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px var(--sky-tint);
}
.eyebrow-invert { color: var(--sky); }
.tricare-mark { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head-title { margin: 0; }
.section-head-title h2 { margin-bottom: 0; }
.section-lede {
  max-width: 56ch;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}
.section-head-light h2,
.section-lede-invert { color: #F4F2ED; }
.section-lede-invert { font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--sky-deep);
  color: #fff;
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { background: var(--sky); box-shadow: 0 14px 30px -10px rgba(62, 109, 145, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--sky-deep);
  border-color: var(--sky-deep);
}
.btn-outline:hover { background: var(--sky-deep); color: #fff; }
.btn-outline-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-invert:hover { background: #fff; color: var(--navy); }
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-tight);
}
.btn-white:hover { background: var(--sky-tint); }
.btn-lg { padding: 17px 34px; font-size: 0.98rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px -30px rgba(15, 24, 27, 0.35);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 84px;
  padding: 0 var(--edge-pad);
}
.brand { flex-shrink: 0; min-width: max-content; }
.brand-logo {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--sky-deep); }
.header-cta-slot {
  justify-self: end;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-cta-slot .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.header-call:hover { color: var(--sky-deep); }
.header-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-call-number { display: none; }
@media (min-width: 1180px) {
  .header-call-number { display: inline; }
}
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,24,27,0.92) 0%, rgba(15,24,27,0.72) 32%, rgba(15,24,27,0.32) 56%, rgba(15,24,27,0.08) 74%),
    linear-gradient(0deg, rgba(15,24,27,0.55) 0%, rgba(15,24,27,0) 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(76px, 14vh, 130px);
  padding-bottom: max(24px, calc(clamp(76px, 14vh, 130px) - 85px));
  padding-left: var(--edge-pad);
  padding-right: var(--edge-pad);
}

.hero-bottom { max-width: 700px; text-align: left; }
.hero-bottom h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(1.9rem, min(4.2vw, 6.4vh), 3.6rem);
}
.hero-bottom h1 em { font-style: normal; font-weight: 800; color: #A9CEE6; }
.hero-sub {
  font-size: clamp(0.92rem, 1.8vh, 1.08rem);
  max-width: 50ch;
  color: #DCE3E0;
  margin-bottom: 0.6em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(16px, 3vh, 32px);
}
.btn-ghost-invert {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-invert:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #DCE3E0;
}
.hero-call-link:hover { color: #fff; }
.hero-call-link svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---------- Reusable CTA row (primary + call) ---------- */
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-row .btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.hero-float-card {
  position: absolute;
  z-index: 3;
  right: var(--edge-pad);
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background: rgba(248,245,239,0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.hero-float-badge {
  position: absolute;
  top: -18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  box-shadow: var(--shadow-tight);
}
.hero-float-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-deep);
}
.hero-float-name {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 10px;
}
.hero-float-card p { font-size: 0.86rem; margin: 0; color: var(--ink-soft); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { padding: 56px 0; border-bottom: 1px solid var(--line); }
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trust-bar-left { flex: 1; min-width: 0; }
.trust-bar-label {
  text-align: left;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px 44px;
}
.trust-bar-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}
.trust-bar-logos img:hover { opacity: 1; filter: grayscale(0); }
.trust-bar-logos img.tricare-highlight {
  height: 72px;
  opacity: 1;
  filter: none;
  padding: 0 8px;
}
.trust-bar-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  flex-shrink: 0;
}
.press-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-shrink: 0;
}
.press-row img { height: 52px; width: auto; opacity: 0.9; }

/* ============================================================
   WHAT IS TMS
   ============================================================ */
.what-is-tms { background: var(--navy); }
.tms-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tms-fact {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-tight);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.tms-fact:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.tms-fact h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
}
.tms-fact-dash {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sky);
  margin: 12px 0 14px;
  flex-shrink: 0;
}
.tms-fact p { font-size: 0.92rem; margin-bottom: 0; }
.tms-fact img { height: 40px; width: auto; margin-top: 24px; align-self: flex-start; }

/* ============================================================
   DIFFERENTIATORS (light section, dark accent cards)
   ============================================================ */
.difference {
  background: var(--paper);
  position: relative;
}
.diff-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.diff-intro { max-width: 420px; }
.diff-intro h2 { margin-bottom: 14px; }
.diff-intro-lede { color: var(--ink-soft); margin-bottom: 28px; }

.diff-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.diff-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--sky);
  margin-bottom: 20px;
}
.diff-card-icon svg { width: 22px; height: 22px; }
.diff-card h3 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0 0 10px;
}
.diff-card p { font-size: 14px; color: #C7CFCC; margin-bottom: 0; }

/* ============================================================
   PHYSICIAN (dark section)
   ============================================================ */
.physician { background: var(--navy); }
.physician-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.physician-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.physician-copy h2 { color: #fff; }
.physician-title {
  font-weight: 700;
  color: var(--sky);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.physician-bio { color: #C7CFCC; }
.physician-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
}
.physician-creds li {
  padding-left: 26px;
  position: relative;
  font-size: 0.94rem;
  color: #C7CFCC;
}
.physician-creds li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.how-it-works-intro { position: sticky; top: 110px; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--sky-tint);
  -webkit-text-stroke: 1.5px var(--sky);
}
.step-body h3 { margin: 0 0 8px; }
.step-body p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   TRICARE
   ============================================================ */
.tricare {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tricare::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(126,184,219,0.16), transparent 55%);
  pointer-events: none;
}
.tricare-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.tricare-copy h2 { color: #fff; }
.tricare-lede { color: #C7CFCC; font-size: 1.05rem; }
.tricare-text { color: #C7CFCC; font-size: 1.05rem; margin-bottom: 0; }
.tricare-media {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 110px;
}
.tricare-badge-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.tricare-badge-ring img { opacity: 1; }

/* ============================================================
   CONDITIONS
   ============================================================ */
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.condition-pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.25s;
}
.condition-pill:hover {
  border-color: var(--sky);
  background: var(--sky-tint);
  color: var(--sky-deep);
}

.protocols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.protocol-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-soft);
  box-shadow: var(--shadow-tight);
}
.protocol-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.protocol-card h3,
.protocol-card p { padding: 0 22px; }
.protocol-card h3 { color: #fff; margin-top: 20px; }
.protocol-card p { font-size: 0.9rem; color: #C7CFCC; padding-bottom: 22px; margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS (dark section)
   ============================================================ */
.testimonials { background: var(--navy); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-soft);
  box-shadow: var(--shadow-tight);
}
.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   INQUIRY (light section)
   ============================================================ */
.inquiry {
  background: var(--paper);
  color: var(--ink);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.inquiry-copy { text-align: left; min-width: 0; }
.inquiry-lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 48ch;
}
.inquiry-contact {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.inquiry-contact .label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-deep);
  margin-bottom: 4px;
}
.inquiry-contact p { color: var(--ink); margin: 0; }

.inquiry-form {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  min-width: 0;
  box-shadow: var(--shadow-soft);
}
.inquiry-form .form-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  min-width: 0;
}
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
.inquiry-form label {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
}
.inquiry-form input,
.inquiry-form select {
  width: 100%;
  min-width: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.inquiry-form input::placeholder { color: rgba(255,255,255,0.22); }
.inquiry-form select {
  color: rgba(255,255,255,0.85);
  appearance: none;
  -webkit-appearance: none;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237EB8DB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 16px;
}
.inquiry-form input:focus,
.inquiry-form select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(126,184,219,0.25);
}
.checkbox-row {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-transform: none;
  font-weight: 500;
  color: #DCE3E0;
}
.checkbox-row input { width: 18px; height: 18px; }
.form-fineprint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success h3 { color: #fff; margin-bottom: 8px; }
.form-success p { color: #C7CFCC; margin-bottom: 0; }
.inquiry-form.is-submitted .form-fields { display: none; }
.inquiry-form.is-submitted .form-success { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #C7CFCC;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; max-width: 26ch; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8FA09C;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #C7CFCC;
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  padding: 26px 0;
  font-size: 0.8rem;
  color: #6E7D7A;
}

/* ---------- Hero entrance (runs on load, not on scroll) ---------- */
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroKenBurns {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero-bg img { animation: heroKenBurns 20s var(--ease) forwards; }
.hero-bottom h1 { animation: heroEnter 0.9s var(--ease) 0.15s both; }
.hero-sub { animation: heroEnter 0.9s var(--ease) 0.35s both; }
.hero-actions { animation: heroEnter 0.9s var(--ease) 0.5s both; }
.hero-float-card { animation: heroEnter 0.9s var(--ease) 0.65s both; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-bg img,
  .hero-bottom h1,
  .hero-sub,
  .hero-actions,
  .hero-float-card {
    animation: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .physician-grid, .tricare-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .physician-media { max-width: 340px; }
  .tricare-media { position: static; }
  .diff-layout { grid-template-columns: 1fr; gap: 36px; }
  .diff-intro { max-width: none; }
  .how-it-works-layout { grid-template-columns: 1fr; gap: 24px; }
  .how-it-works-intro { position: static; }
  .protocols-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .tms-facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float-card { width: 260px; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft) !important;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); }
  .header-inner { display: flex; gap: 12px; }
  .header-cta-slot { margin-left: auto; justify-self: auto; }
  .header-cta-slot .btn { padding: 11px 16px; font-size: 0.76rem; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .trust-bar-inner { flex-direction: column; gap: 32px; }
  .trust-bar-divider { width: 100%; height: 1px; }
  .diff-cards, .protocols-grid, .testimonial-grid, .tms-facts { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  .hero-inner { min-height: unset; padding: 170px var(--edge-pad) 40px; }
  .hero-bottom { max-width: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-float-card {
    position: relative;
    z-index: 3;
    top: auto;
    right: auto;
    width: auto;
    margin: 20px var(--edge-pad) 32px;
    transform: none;
    background: var(--paper);
    backdrop-filter: none;
  }
  .hero-float-badge { top: -16px; right: 16px; }
}
