/* ============ TOKENS ============ */
:root {
  --bg: #eef2f7;            /* cool light gray */
  --bg-2: #e1e7f0;          /* slightly darker cool gray */
  --paper: #ffffff;          /* clean white */
  --ink: #1a2435;            /* charcoal navy (matches logo bg) */
  --ink-2: #3d4f63;          /* mid blue-gray */
  --ink-3: #6b7d92;          /* light blue-gray */
  --line: #d4dde8;           /* cool border */
  --accent: #1e88e5;         /* logo blue */
  --accent-2: #42a5f5;       /* lighter blue */
  --accent-soft: #e3f2fd;    /* very light blue */
  --gold: #8b95a3;           /* silver (replaces gold) */
  --shadow-sm: 0 1px 2px rgba(26,36,53,.06), 0 2px 6px rgba(26,36,53,.04);
  --shadow-md: 0 6px 18px rgba(26,36,53,.08), 0 2px 6px rgba(26,36,53,.05);
  --shadow-lg: 0 24px 60px -20px rgba(26,36,53,.25), 0 8px 24px rgba(26,36,53,.08);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; font-weight: 500; }
h1 strong { font-weight: 700; }
h1 em {
  font-style: italic;
  color: #6b9dc4;
  font-weight: 400;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.05rem; }
p { color: var(--ink-2); margin: 0; }

.eyebrow {
  display: inline-block;
  font: 600 0.78rem/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 7px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.section-head { margin-bottom: 40px; }
.section-head--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; color: var(--ink-2); }

.link-muted { color: var(--ink-2); font-weight: 500; font-size: 0.93rem; }
.link-muted:hover { color: var(--ink); }
.link-inline { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #122c47; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn--ghost:hover { background: var(--paper); }
.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  background: rgba(246,241,232,0.78);
  border-bottom: 1px solid rgba(227,218,199,0.55);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { color: var(--accent); display: inline-flex; }
.brand__mark-img {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
}
.footer .brand__mark-img { width: 32px; height: 32px; }
.brand__name {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__name em { font-style: normal; color: var(--accent); font-weight: 500; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.93rem; color: var(--ink-2); font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}
.nav__cta { display: flex; align-items: center; gap: 18px; }

@media (max-width: 920px) {
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .nav__cta .link-muted { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(30,136,229,0.12), transparent 60%),
    radial-gradient(700px 400px at -5% 100%, rgba(139,149,163,0.10), transparent 60%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.hero__copy .lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 540px;
}
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__bullets {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 0.93rem; color: var(--ink-2); font-weight: 500;
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}

/* hero visual */
.hero__visual {
  position: relative;
  height: 500px;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.reveal.animate-in {
  opacity: 1;
}
.hero__card--main.reveal { transition-delay: 0s; }
.hero__card--badge.reveal { transition-delay: 0.25s; }
.hero__card--quote.reveal { transition-delay: 0.45s; }

/* Live monitor wave — animated stroke draw */
.hero__card--main.animate-in .hero__wave polyline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-wave 1.6s ease-out 0.4s forwards, pulse-wave 2s ease-in-out 2s infinite;
}
@keyframes draw-wave {
  to { stroke-dashoffset: 0; }
}
@keyframes pulse-wave {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Subtle pulse on the active tag */
.hero__card--main.animate-in .hero__card-tag {
  animation: tag-pulse 2s ease-in-out infinite;
}
@keyframes tag-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}
.hero__photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  border: 2px dashed var(--line);
  box-shadow: var(--shadow-md);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  color: var(--ink-3);
}
.hero__photo-placeholder svg { color: var(--ink-3); opacity: 0.6; }
.hero__photo-placeholder strong {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}
.hero__photo-placeholder small {
  font-size: 0.85rem;
  color: var(--ink-3);
}
.hero__photo-placeholder code {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Inter', monospace;
  font-size: 0.85em;
}
.hero__card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero__card--main {
  top: 30px; left: 0; right: 0;
  padding: 22px 24px;
  color: var(--ink);
}
.hero__card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--ink-3);
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.hero__card-title { font-weight: 600; color: var(--ink); }
.hero__card-tag {
  background: var(--accent-soft); color: var(--accent);
  padding: 4px 10px; border-radius: 99px;
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.04em;
}
.hero__monitor {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; padding: 18px 0;
}
.hero__metric {
  text-align: center;
  padding: 10px 6px;
  background: var(--bg);
  border-radius: var(--r-sm);
}
.hero__metric-label {
  display: block; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px;
}
.hero__metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem; font-weight: 500; color: var(--ink);
}
.hero__metric-value small { font-size: 0.65rem; color: var(--ink-3); margin-left: 2px; font-family: 'Inter', sans-serif; }

.hero__wave {
  width: 100%; height: 50px; color: var(--accent);
  margin: 4px 0 8px;
}
.hero__card-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--ink-3);
  padding-top: 14px; border-top: 1px solid var(--line);
}
.hero__card-time { color: var(--accent); font-weight: 600; }

.hero__card--badge {
  bottom: 90px; left: -10px;
  padding: 18px 22px;
  background: var(--ink); color: var(--paper);
  border: 0;
  max-width: 230px;
  transform: rotate(-2deg);
}
.badge-stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem; line-height: 1; font-weight: 500;
  color: #fff;
}
.badge-stat__label {
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  margin-top: 6px; line-height: 1.4;
}

.hero__card--quote {
  bottom: 0; right: -10px;
  padding: 18px 20px;
  max-width: 270px;
  transform: rotate(1.5deg);
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--ink);
}
.hero__card--quote svg { color: var(--accent); margin-bottom: 6px; }
.hero__card--quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic; font-size: 1.02rem;
  color: var(--ink); margin: 0 0 10px;
  line-height: 1.4;
}
.hero__card--quote span {
  font-size: 0.78rem; color: var(--ink-2); font-weight: 500;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { height: 460px; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============ TRUST ============ */
.trust {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust__label {
  text-align: center; font-size: 0.83rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 600;
  margin: 0 0 18px;
}
.trust__logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 36px 56px;
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink-3); letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ============ SERVICES ============ */
.services {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,136,229,0.3);
}
.service-card--featured {
  background: linear-gradient(180deg, #1a2435 0%, #243752 100%);
  border: 0;
  color: var(--paper);
}
.service-card--featured h3, .service-card--featured p, .service-card--featured li {
  color: var(--paper);
}
.service-card--featured p, .service-card--featured li { color: rgba(255,255,255,0.78); }
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,0.1); color: #90caf9;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; font-weight: 700; }
.service-card__sub {
  font-size: 0.78em;
  opacity: 0.7;
  white-space: nowrap;
}
.service-card p { font-size: 0.96rem; }
.service-card__list {
  list-style: none; padding: 0; margin: 22px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.service-card--featured .service-card__list { border-top-color: rgba(255,255,255,0.15); }
.service-card__list li {
  font-size: 0.88rem; padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.service-card__list li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
}
.service-card--featured .service-card__list li::before { background: #90caf9; }

.pill {
  position: absolute; top: 18px; right: 18px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
  background: rgba(255,255,255,0.12); padding: 5px 10px;
  border-radius: 99px; border: 1px solid rgba(255,255,255,0.18);
}

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

/* ============ HOW ============ */
.how {
  padding: 72px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,136,229,0.4);
}
.step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; font-size: 1.15rem; font-weight: 700; }
.step p { font-size: 0.95rem; }

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

/* ============ SAFETY ============ */
.safety { padding: 110px 0; }
.safety__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--paper);
  overflow: hidden;
}
.feature {
  padding: 32px 28px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature:nth-child(3n) { border-right: 0; }
.feature:nth-last-child(-n+3) { border-bottom: 0; }
.feature__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px; margin-bottom: 16px;
}
.feature h4 { margin-bottom: 6px; }
.feature p { font-size: 0.92rem; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px;
  padding: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
}
.stat { text-align: center; }
.stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem; font-weight: 500; color: #fff; line-height: 1;
}
.stat__num small { font-size: 1rem; color: rgba(255,255,255,0.5); }
.stat__label {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin-top: 8px; letter-spacing: 0.04em;
}

@media (max-width: 920px) {
  .safety__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .feature:nth-child(2n) { border-right: 0; }
  .feature:nth-last-child(-n+2) { border-bottom: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .safety__grid { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(2n), .feature:nth-child(3n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
}

/* ============ PATIENTS ============ */
.patients {
  padding: 72px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.patients__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 80px; align-items: center;
}
.patients__visual { position: relative; }
.patients__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, #cfe9e2, #86b8ad);
}
.patients__chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--ink-2);
  box-shadow: var(--shadow-md);
}
.patients__chip strong { color: var(--ink); font-weight: 600; }
.patients__chip--1 { top: 24px; right: -24px; }
.patients__chip--2 { bottom: 32px; left: -28px; }

.patients__copy h2 { margin-bottom: 16px; }
.patients__copy > p { margin-bottom: 28px; max-width: 480px; }
.patients__list { margin-bottom: 32px; }
.patients__item {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.patients__item:last-child { border-bottom: 1px solid var(--line); }
.patients__item h5 {
  margin: 0 0 4px; font-size: 1rem; font-weight: 600;
}
.patients__item p { font-size: 0.92rem; }
.check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 920px) {
  .patients__grid { grid-template-columns: 1fr; gap: 56px; }
  .patients__chip--1 { right: 12px; }
  .patients__chip--2 { left: 12px; }
}

/* ============ FAQ ============ */
.faq {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq__grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 80px; align-items: start;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400; color: var(--accent);
  transition: transform .2s ease;
  margin-left: 16px;
}
.faq__item[open] summary::after { content: '–'; }
.faq__item p {
  margin-top: 14px; font-size: 0.97rem; max-width: 600px;
}
.faq__bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  max-width: 600px;
}
.faq__bullets li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.faq__bullets li::before {
  content: '';
  position: absolute;
  left: 6px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 920px) {
  .faq__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ CTA ============ */
.cta {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--ink) 0%, #0f1b2c 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 10% 10%, rgba(30,136,229,0.35), transparent 60%),
    radial-gradient(500px 320px at 95% 95%, rgba(66,165,245,0.18), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 18px; }
.cta h2 + p { color: rgba(255,255,255,0.8); max-width: 460px; }
.cta__bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.cta__form {
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink-2);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.15);
}
.cta__success {
  background: var(--accent-soft); color: var(--accent);
  padding: 12px 14px; border-radius: var(--r-sm);
  font-size: 0.92rem; font-weight: 600;
  margin-top: 12px;
}
.cta__fineprint {
  font-size: 0.78rem; color: var(--ink-3);
  margin-top: 14px; text-align: center;
}

@media (max-width: 920px) {
  .cta__inner { grid-template-columns: 1fr; gap: 56px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ MEET CRNAs ============ */
.crnas {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.crnas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.crnas__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
  gap: 24px;
}
.crna-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.crna-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,136,229,0.3);
}
.crna-card__avatar {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.crna-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.crna-card__avatar--1 { background: linear-gradient(135deg, #1e88e5, #42a5f5); }
.crna-card__avatar--2 { background: linear-gradient(135deg, #1a2435, #3d4f63); }
.crna-card__avatar--3 { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.crna-card__avatar--4 { background: linear-gradient(135deg, #5c6f87, #8b95a3); }
.crna-card__pill {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 10px; border-radius: 99px;
  margin-bottom: 12px;
}
.crna-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.crna-card__cred {
  font-size: 0.84rem; color: var(--ink-3);
  margin: 0 0 14px;
}
.crna-card__bio { font-size: 0.92rem; }

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

/* ============ BOOKING WIDGET ============ */
.book {
  padding: 72px 0;
  background:
    radial-gradient(900px 400px at 90% 10%, rgba(30,136,229,0.08), transparent 60%),
    var(--bg);
}
.calendly-inline-widget,
.tidycal-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  width: 100%;
  display: block;
  margin: 0 auto;
  height: 600px;
}
.booking-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking-widget__cal {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.booking-widget__panel {
  padding: 32px;
  min-height: 500px;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
}

.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.cal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem; font-weight: 500; color: var(--ink);
}
.cal__nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  font-size: 1rem;
  transition: all .15s ease;
  background: var(--paper);
}
.cal__nav:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

.cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal__weekdays span {
  text-align: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--ink-3); letter-spacing: 0.12em;
  padding: 8px 0;
}
.cal__grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.day {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
  transition: all .12s ease;
  cursor: pointer;
  padding: 0;
}
.day--empty { cursor: default; pointer-events: none; }
.day:not(:disabled):not(.day--empty):hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
}
.day:disabled { cursor: not-allowed; }
.day--past, .day--closed { color: #b8c2d1; }
.day--full { color: var(--ink-3); text-decoration: line-through; }
.day--available { color: var(--ink); font-weight: 600; }
.day--limited { color: var(--ink); }
.day--selected,
.day--selected:hover {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}
.day__dot {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
}
.day--available .day__dot { background: var(--accent); }
.day--limited .day__dot { background: var(--gold); }
.day--selected .day__dot { background: #fff; }

.cal__legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-3);
}
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal__legend .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
}
.dot--avail { background: var(--accent); }
.dot--limited { background: var(--gold); }
.dot--full { background: var(--ink-3); opacity: 0.5; }

/* Panel — empty */
.panel-empty {
  margin: auto;
  text-align: center;
  max-width: 280px;
}
.panel-empty__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.panel-empty h3 { margin-bottom: 8px; }
.panel-empty p { font-size: 0.92rem; }

/* Panel — slots */
.panel-slots__head { margin-bottom: 22px; }
.panel-slots__head h3 { margin-bottom: 4px; font-size: 1.3rem; }
.panel-slots__head p { font-size: 0.9rem; color: var(--ink-3); }
.panel-slots__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.slot {
  padding: 14px 12px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: center;
  transition: all .15s ease;
}
.slot:not(:disabled):hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-1px);
}
.slot--taken {
  opacity: 0.45;
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot--taken span {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  text-decoration: none; color: var(--ink-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 2px;
}

/* Panel — form */
.panel-back {
  align-self: flex-start;
  font-size: 0.85rem; color: var(--ink-3);
  margin-bottom: 14px;
  padding: 4px 0;
  font-weight: 500;
}
.panel-back:hover { color: var(--accent); }
.panel-form__head {
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.panel-form__head h3 { margin-bottom: 6px; font-size: 1.2rem; }
.panel-form__when { font-size: 0.95rem; color: var(--ink-2); }
.panel-form__when strong { color: var(--accent); font-weight: 600; }
.panel-form__form .field { margin-bottom: 12px; }
.panel-form__form .field-row { margin-bottom: 12px; }
.panel-form__form .field-row .field { margin-bottom: 0; }

/* Panel — success */
.panel-success {
  margin: auto; text-align: center; max-width: 320px;
}
.panel-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 1.8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(30,136,229,0.3);
}
.panel-success h3 { margin-bottom: 10px; }
.panel-success p { margin-bottom: 22px; }
.panel-success p strong { color: var(--ink); font-weight: 600; }

.book__alt {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--ink-3);
}

@media (max-width: 920px) {
  .booking-widget { grid-template-columns: 1fr; }
  .booking-widget__cal { border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-widget__panel { min-height: 380px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 48px 0 24px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.1fr 2fr;
  gap: 64px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand__name em { color: var(--accent-2); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer__cols h6 {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.footer__cols a {
  display: block; padding: 5px 0;
  font-size: 0.92rem; color: rgba(255,255,255,0.65);
}
.footer__cols a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  padding-top: 28px;
  flex-wrap: wrap; gap: 12px;
}
.footer__legal a:hover { color: #fff; }

@media (max-width: 920px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
