:root {
  /* Medical/clinical palette — teal + deep navy + warm gold */
  --brand: #0b6e6a;           /* deep healthcare teal */
  --brand-dark: #074f4c;
  --brand-deep: #1a2b4a;      /* deep navy for headings */
  --accent: #d39420;          /* warm gold accent (used sparingly) */
  --accent-soft: #fef3d4;
  --tint: #e8f4f3;            /* pale teal tint for section bands */
  --text: #1a2b4a;
  --muted: #5b6b85;
  --border: #dfe7ef;
  --bg: #ffffff;
  --bg-soft: #f7fafb;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(26, 43, 74, 0.05);
  --shadow: 0 10px 30px rgba(26, 43, 74, 0.08);
  --max: 1200px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--tint); }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  color: var(--brand-deep);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 1.125rem; color: var(--muted); line-height: 1.6; }

/* ---- Top utility bar ---- */
.utility-bar {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
}
.utility-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.utility-bar a:hover { color: #ffd87a; text-decoration: none; }
.utility-bar .separator { opacity: 0.35; }
.utility-left, .utility-right { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

/* Clean sans-serif logo — single color */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--brand-deep);
  line-height: 1;
  transition: opacity 0.15s;
  gap: 4px;
}
.brand:hover { text-decoration: none; opacity: 0.75; }

.brand-main {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--brand-deep);
  line-height: 1;
}
.brand-main::first-letter { color: var(--brand); }

.brand-sub {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--brand);
  text-transform: uppercase;
  line-height: 1;
}

.brand-rule { display: none; }

.site-footer .brand-main { color: #fff; }
.site-footer .brand-main::first-letter { color: #5fd4cf; }
.site-footer .brand-sub { color: rgba(255, 255, 255, 0.7); }

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a {
  color: var(--text);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav > a:hover { background: var(--bg-soft); color: var(--brand); text-decoration: none; }
.nav > a.active { color: var(--brand); font-weight: 600; }

.nav > a.btn { margin-left: 12px; }
.nav > a.btn-primary, .nav > a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--brand-deep);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.08s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
}

.btn-light {
  background: #fff;
  color: var(--brand-deep);
  border-color: #fff;
}
.btn-light:hover { background: var(--tint); border-color: var(--tint); text-decoration: none; }

/* ---- Hero (strong headline, no photo) ---- */
.hero {
  position: relative;
  padding: 96px 0 96px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 100% -10%, rgba(11, 110, 106, 0.08), transparent 50%),
    radial-gradient(700px 400px at -10% 100%, rgba(26, 43, 74, 0.05), transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 780px;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--tint);
  color: var(--brand-dark);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(11, 110, 106, 0.15);
}
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
}
.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 620px;
  color: var(--muted);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}
.hero-trust-item strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Page header (non-home) ---- */
.page-header {
  padding: 72px 0 56px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* ---- Grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--tint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; color: var(--brand-deep); }
.card p { margin: 0; font-size: 0.95rem; }

/* ---- Eligibility checklist ---- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  background-color: var(--brand);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='black' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.58l7.3-7.29a1 1 0 0 1 1.4 0z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='black' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.58l7.3-7.29a1 1 0 0 1 1.4 0z'/></svg>") no-repeat center / contain;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--brand-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 90% 0%, rgba(11, 110, 106, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin: 0; max-width: 560px; }

/* ---- Contact grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.info-item .icon {
  width: 40px; height: 40px;
  background: var(--tint);
  color: var(--brand);
  border-radius: 8px;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item strong { color: var(--brand-deep); display: block; font-size: 0.95rem; }
.info-item a, .info-item span { color: var(--muted); font-size: 0.95rem; }

/* ---- Form ---- */
.form {
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-deep);
}
.form input, .form textarea, .form select {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 110, 106, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); }

/* ---- JotForm embed ---- */
.jotform-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.jotform-wrap iframe {
  width: 100%;
  min-height: 820px;
  border: 0;
  display: block;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer p { color: rgba(255, 255, 255, 0.75); margin: 0 0 12px; font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .hero-trust { gap: 18px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 24px; }
  .utility-inner { padding: 8px 16px; font-size: 0.8rem; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav.open { display: flex; }
  .nav > a { padding: 12px 14px; }
  .nav > a.btn { margin: 8px 0 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
