/* HealthNexaa marketing site — PayrLabs Softwares Pvt Ltd */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #e6f7f5;
  --dark: #12171f;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --danger: #dc2626;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 23, 31, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding-left: 1.1rem; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; color: var(--muted); }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

/* Nav — shared shell (matches approved homepage) */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 231, 238, 0.8);
}
.site-header .container.nav,
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  min-height: 74px;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}
.brand {
  font-weight: 800; font-size: 1.35rem; color: #102235;
  margin-right: 0; letter-spacing: -0.04em;
  flex: 0 0 auto;
}
.brand span { color: #0f766e; }
.nav-links {
  display: flex; gap: 24px; flex-wrap: nowrap; align-items: center;
  margin-left: auto; flex: 0 1 auto; justify-content: flex-end;
}
.nav-links a {
  font-size: 0.94rem; color: #47566b; font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active { color: #102235; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; padding: 9px 12px; cursor: pointer; font-weight: 800;
  color: #102235; font-family: inherit; font-size: 0.9rem;
}
.nav-links .btn {
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  font-weight: 800; font-size: 0.94rem;
}
.nav-links .btn-dark { background: #102235; color: #fff; }
.nav-links .btn-dark:hover { color: #fff; background: #0b1722; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 10px; padding: 0.8rem 1.25rem;
  font-weight: 700; font-size: 0.95rem; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--dark);
  border: 1px solid var(--line);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

/* Hero / sections */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(900px 400px at 85% 10%, rgba(13,148,136,.12), transparent 60%),
    var(--bg);
}
.eyebrow {
  display: inline-flex; align-items: center;
  background: var(--teal-soft); color: var(--teal);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 22ch; }
.hero .lead { font-size: 1.1rem; max-width: 52ch; }
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section .intro { max-width: 60ch; margin-bottom: 2rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow);
}
.card.soft { background: var(--teal-soft); border: 0; box-shadow: none; }
.card.dark {
  background: var(--dark); color: var(--white); border: 0;
}
.card.dark p { color: #b8c0cc; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card .label { color: var(--teal); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.stat {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
}
.stat strong { display: block; font-size: 1.6rem; color: var(--teal); margin-bottom: 0.25rem; }
.stat span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.problem { background: #fff7f7; border-color: #fecaca; }
.solution { background: var(--teal-soft); border-color: #99f6e4; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.step .num { font-size: 1.5rem; font-weight: 800; color: var(--teal); }

.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.journey-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 1rem;
}
.journey-item small { color: var(--teal); font-weight: 700; }

.cta-band {
  background: var(--teal-soft); text-align: center; padding: 3.5rem 0;
}
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { margin-bottom: 1.25rem; }

/* Clean CTA — no Figma screenshot behind text (avoids ghost “Request a Demo”) */
.cta-band.cta-visual {
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(13,148,136,.18), transparent 70%),
    var(--dark);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band.cta-visual h2 { color: #fff; }
.cta-band.cta-visual p { color: #cbd5e1; }

.form {
  display: grid; gap: 0.9rem; max-width: 560px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.form label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 600; }
.form input, .form select, .form textarea {
  font: inherit; padding: 0.75rem 0.85rem; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg);
}
.form textarea { min-height: 110px; resize: vertical; }
.form .hint { font-size: 0.8rem; font-weight: 500; color: var(--muted); }

.site-footer {
  background: #091a22; color: #fff;
  padding: 54px 0 28px; font-size: 0.95rem;
  border-top: 0;
}
.site-footer .brand { color: #fff; margin-right: 0; }
.site-footer .brand span { color: #8ee4d7; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-blurb { color: #aebfc8; margin-top: 14px; max-width: 390px; }
.footer-title { font-weight: 800; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #b9c9d0; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 42px; padding-top: 22px;
  color: #8ea3ad; font-size: 0.82rem;
}
.footer-top,
.footer-contact,
.copyright { display: none; }

.nav-toggle:focus-visible,
.nav-links a:focus-visible,
.btn:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { position: relative; }
  .nav-links {
    position: absolute; top: 74px; left: 16px; right: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 18px; display: none; flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow); z-index: 120;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.contact-card {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.contact-card p { margin: 0; color: var(--dark); }
.contact-card a { color: var(--teal); font-weight: 600; }

.showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.showcase img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase .caption {
  padding: 1rem 1.15rem 1.2rem;
}
.showcase .caption strong { display: block; margin-bottom: 0.35rem; }
.showcase .caption p { margin-bottom: 0.75rem; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.media-frame img { width: 100%; height: auto; display: block; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-grid .hero-copy { max-width: none; }
.hero-grid h1 { max-width: 16ch; }

/* Inner-page hero icon panels */
.hero-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.hero-icon-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 10px 28px rgba(24, 58, 77, 0.06);
  min-height: 7.5rem;
}
.hero-icon-card .ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.hero-icon-card .ico svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.hero-icon-card.tone-warm .ico { background: #ffe8e4; color: #c2410c; }
.hero-icon-card.tone-blue .ico { background: #eef4ff; color: #2563eb; }
.hero-icon-card.tone-amber .ico { background: #fff5de; color: #b45309; }
.hero-icon-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.hero-icon-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}
.hero-aside-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #536278;
  text-align: center;
}

/* Care continuity flywheel + synced journey */
.flywheel {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  align-self: center;
  width: 100%;
  max-width: 100%;
}
.flywheel-stage {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  --fw-r: 38%;
}
.flywheel-svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.flywheel-orbit {
  transform-origin: 200px 200px;
  animation: flywheel-spin 28s linear infinite;
}
.flywheel-hub-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.1rem;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(18, 23, 31, 0.06);
}
.flywheel-hub-label span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  line-height: 1.1;
}
.flywheel-hub-label strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.flywheel-node {
  position: absolute;
  left: calc(50% + (var(--fw-r) * cos(var(--a))));
  top: calc(50% + (var(--fw-r) * sin(var(--a))));
  transform: translate(-50%, -50%);
  z-index: 3;
  border: 0;
  background: #fff;
  cursor: pointer;
  padding: 0.28rem 0.38rem 0.32rem;
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  font: inherit;
  color: var(--dark);
  min-width: 3.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 3px 10px rgba(18, 23, 31, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.flywheel-node .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.flywheel-node .label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--muted);
  transition: color 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}
.flywheel-node.is-active {
  border-color: #99f6e4;
  background: #f0fdfa;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.14);
  z-index: 4;
}
.flywheel-node.is-active .dot {
  background: var(--teal);
  border-color: var(--teal-dark);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.16);
}
.flywheel-node.is-active .label { color: var(--teal-dark); }
.flywheel-node:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.flywheel-caption {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
  max-width: 34ch;
  min-height: 2.5em;
}
.flywheel-caption strong { color: var(--dark); }

.journey-sync {
  width: 100%;
  max-width: 100%;
  margin-top: 0.1rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}
.journey-sync-head {
  margin-bottom: 0.4rem;
  text-align: center;
}
.journey-sync-head .eyebrow {
  margin-bottom: 0;
  font-size: 0.65rem;
}
.journey-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.25rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.journey-card {
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  box-shadow: none;
  opacity: 0.4;
  filter: saturate(0.7);
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, filter 0.4s ease;
  min-height: 0;
  cursor: pointer;
}
.journey-card .when {
  margin: 0 0 0.12rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
}
.journey-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
}
.journey-card > p:last-child {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--muted);
}
.journey-card.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  border-color: #99f6e4;
  box-shadow: 0 6px 14px rgba(13, 148, 136, 0.12);
}
.journey-card.is-near {
  opacity: 0.7;
  filter: saturate(0.9);
  transform: scale(0.98);
}

/* Home: fit copy + flywheel in first viewport */
.hero.hero-fit {
  padding: 1.1rem 0 1.35rem;
}
.hero.hero-fit .hero-grid {
  gap: 1.1rem 1.5rem;
  align-items: start;
}
.hero.hero-fit .eyebrow {
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
}
.hero.hero-fit h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 0.45rem;
  line-height: 1.15;
}
.hero.hero-fit .lead {
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 0;
}
.hero.hero-fit .btn-row {
  margin-top: 0.75rem;
  gap: 0.55rem;
}
.hero.hero-fit .btn {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}
.hero.hero-fit .hero-trust {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.hero.hero-fit .flywheel {
  gap: 0.4rem;
}
.hero.hero-fit .flywheel-caption {
  font-size: 0.74rem;
  min-height: 2.2em;
  max-width: 32ch;
}
.hero.hero-fit .flywheel-stage {
  width: min(100%, 250px);
}
.hero.hero-fit .flywheel-hub-label {
  width: 4.5rem;
  height: 4.5rem;
}
.hero.hero-fit .flywheel-hub-label span { font-size: 0.48rem; }
.hero.hero-fit .flywheel-hub-label strong { font-size: 0.72rem; }
.hero.hero-fit .flywheel-node {
  min-width: 3.35rem;
  padding: 0.22rem 0.3rem 0.26rem;
}
.hero.hero-fit .flywheel-node .label { font-size: 0.56rem; }
.hero.hero-fit .journey-sync {
  padding-top: 0.4rem;
  margin-top: 0;
}
.hero.hero-fit .journey-sync-head { margin-bottom: 0.3rem; }
.hero.hero-fit .journey-track {
  grid-auto-columns: minmax(132px, 1fr);
  gap: 0.35rem;
}
.hero.hero-fit .journey-card {
  padding: 0.4rem 0.45rem;
}
.hero.hero-fit .journey-card h3 { font-size: 0.68rem; margin-bottom: 0.18rem; }
.hero.hero-fit .journey-card > p:last-child {
  font-size: 0.62rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero.hero-fit .stat-grid {
  margin-top: 1.1rem;
  gap: 0.65rem;
}
.hero.hero-fit .stat {
  padding: 0.75rem 0.85rem;
}
.hero.hero-fit .stat strong { font-size: 1.25rem; margin-bottom: 0.1rem; }
.hero.hero-fit .stat span { font-size: 0.75rem; }

@media (max-width: 900px) {
  .hero.hero-fit { padding-top: 1rem; }
  .hero.hero-fit .flywheel-stage { width: min(100%, 240px); }
}


@keyframes flywheel-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .flywheel-orbit { animation: none; }
  .journey-track { scroll-behavior: auto; }
  .journey-card { transition: none; }
}

.img-compare {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.img-compare img { width: 100%; display: block; }

/* Built comparison (not a pasted Figma screenshot) */
.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}
.compare-col { display: grid; gap: 0.85rem; }
.compare-col-head {
  display: flex; align-items: center; gap: 0.75rem;
  min-height: 2.75rem;
}
.compare-col-head .badge {
  width: 2.5rem; height: 2.5rem; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
}
.compare-col.problem .badge { background: #fee2e2; color: var(--danger); }
.compare-col.solution .badge { background: var(--teal-soft); color: var(--teal-dark); }
.compare-col-head h3 { margin: 0; font-size: 1.15rem; }
.compare-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  min-height: 6.5rem;
  box-shadow: var(--shadow);
  display: grid;
  align-content: start;
  gap: 0.35rem;
}
.compare-card h4 { margin: 0; font-size: 0.98rem; }
.compare-card p { margin: 0; font-size: 0.9rem; }
.compare-card.outcome {
  min-height: 8.5rem;
  text-align: center;
  align-content: center;
  padding: 1.25rem 1.1rem;
}
.compare-col.problem .compare-card.outcome {
  background: #fff1f2;
  border-color: #fecaca;
}
.compare-col.solution .compare-card.outcome {
  background: var(--teal-soft);
  border-color: #99f6e4;
}
.compare-card.outcome h4 { font-size: 1.1rem; }
.compare-col.problem .compare-card.outcome h4 { color: var(--danger); }
.compare-col.solution .compare-card.outcome h4 { color: var(--teal-dark); }

/* Figma section visuals with context */
.visual-block {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.visual-block img { width: 100%; height: auto; display: block; }
.visual-block .visual-meta {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.visual-block .visual-meta p { margin: 0; max-width: 56ch; }
.visual-block .visual-meta strong { display: block; margin-bottom: 0.25rem; color: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.why-grid .card.span-2 { grid-column: span 2; }
.why-grid .card .label { margin-bottom: 0.35rem; }
.why-grid .card h3 { margin-bottom: 0.5rem; }

.hero-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero-panel img { width: 100%; display: block; }

/* Care Programs / Pricing */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.care-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.care-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.care-essential::before { background: #94a3b8; }
.care-silver::before { background: #94a3b8; }
.care-gold::before { background: #d4a017; }
.care-platinum::before { background: var(--teal); }
.care-tier {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
}
.care-card h2 { font-size: 1.15rem; margin: 0; }
.care-card p { margin: 0; font-size: 0.92rem; }
.care-card ul {
  margin: 0.35rem 0 0; padding-left: 1.05rem;
  color: var(--muted); font-size: 0.88rem;
}
.care-card li { margin-bottom: 0.3rem; }
.care-note {
  text-align: center; margin: 1.5rem 0 0;
  color: var(--muted); font-size: 0.95rem;
}

.price-continuum {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.price-kicker {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 1.25rem;
}
.price-rail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}
.price-end strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--dark);
}
.price-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}
.price-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #94a3b8 0%, var(--teal) 55%, #0f766e 100%);
  border-radius: inherit;
}
.price-glow {
  position: absolute; top: 50%; left: 8%; right: 8%;
  height: 2px; transform: translateY(-50%);
  background: rgba(255,255,255,.55);
}
.price-unit {
  margin: 0.85rem 0 0.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.05rem;
}
.price-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-fine {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid h1 { max-width: none; }
  .hero-aside { max-width: 520px; }
  .compare-board { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid .card.span-2 { grid-column: span 2; }
  .care-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .stat-grid, .split, .steps, .journey { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .stat-grid, .split, .steps, .journey, .why-grid, .care-grid { grid-template-columns: 1fr; }
  .why-grid .card.span-2 { grid-column: auto; }
  .hero { padding-top: 3rem; }
  .hero.hero-fit { padding-top: 0.85rem; }
  .price-rail { grid-template-columns: 1fr; gap: 0.6rem; }
  .price-track { order: 2; }
  .price-end-right { order: 3; }
  .price-ticks { grid-template-columns: 1fr 1fr; }
}

/* Legal pages (privacy / terms) */
.legal {
  max-width: 760px;
}
.legal .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.legal p, .legal li {
  color: var(--dark);
}
.legal p { margin-bottom: 0.85rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--teal); text-decoration: underline; }
