/* Clear Healthcare Pro — light theme, navy primary, teal accent */

:root {
  --ink:        #0B3B5C;
  --ink2:       #1A5075;
  --mute:       #334E6A;
  --dim:        #6E8598;
  --line:       #D9E4EC;
  --line2:      #C1D0DC;
  --soft:       #F4F8FB;
  --soft2:      #E7F0F5;
  --paper:      #FFFFFF;

  --brand:      #0EA5A4;
  --brand-d:    #0A8382;
  --brand-l:    #3FC1BF;
  --brand-soft: #E0F6F5;

  --accent:     #F59E0B;
  --accent-soft:#FEF3E0;

  --navy:       #0B3B5C;
  --navy2:      #08304B;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--brand); color: white; }

/* ─── Eyebrows / Headings ─── */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--brand-d);
  font-weight: 600;
  text-transform: uppercase;
}
.section-h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--navy);
}

/* ─── Header ─── */
#site-header.is-scrolled {
  box-shadow: 0 4px 24px -6px rgba(11, 59, 92, 0.12);
  border-bottom-color: var(--line2);
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--navy); background: var(--soft); }
.drawer-link {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
}
.drawer-link:hover { background: var(--soft); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(11,59,92,0.08);
}
.btn-primary:hover { background: var(--brand-d); transform: translateY(-1px); box-shadow: 0 6px 16px -6px rgba(14,165,164,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line2);
  border-radius: 8px;
  transition: border-color .15s, background .15s;
}
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-soft); }

/* ─── Cards ─── */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--brand-l);
  box-shadow: 0 12px 32px -12px rgba(11,59,92,0.15);
  transform: translateY(-2px);
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.benefit-row {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

/* ─── Footer ─── */
.footer-head {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-list a { color: rgba(255,255,255,0.75); transition: color .15s; }
.footer-list a:hover { color: white; }
