:root{
  --navy:#0B2340;
  --blue:#155FC9;
  --teal:#0FA9C0;
  --green:#5FB52F;
  --gold:#E8B63F;
  --red:#D93B36;
  --text:#102842;
  --muted:#546F89;
  --border:#C8DDF0;
  --white:#fff;
  --shadow:0 22px 58px rgba(11,35,64,.14);
  --soft:0 12px 30px rgba(11,35,64,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#F7FCFF 0%,#EFF8FF 48%,#FFF8E7 100%);
  line-height:1.6;
}
a{color:inherit}
.top-strip{
  background:linear-gradient(90deg,var(--blue),var(--teal),var(--green));
  color:#fff;
  text-align:center;
  padding:10px 18px;
  font-size:14px;
  font-weight:800;
}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:18px clamp(20px,5vw,72px);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(21,95,201,.12);
}
.logo-wrap img{width:300px;max-width:72vw;display:block}
nav{display:flex;align-items:center;gap:20px;font-weight:800;color:#45637D}
nav a{text-decoration:none;font-size:14px;white-space:nowrap}
.nav-cta{
  color:#fff;
  background:var(--navy);
  padding:12px 17px;
  border-radius:999px;
}
.hero{
  position:relative;
  min-height:720px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:42px;
  align-items:center;
  padding:72px clamp(20px,5vw,72px);
  background-image:url("assets/hero-care.svg");
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.82) 45%,rgba(255,255,255,.36));
}
.hero-content,.hero-card{position:relative;z-index:1}
.eyebrow,.section-kicker{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:2.4px;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  letter-spacing:-3px;
  max-width:900px;
  margin-bottom:24px;
  color:var(--navy);
}
.hero-sub{
  max-width:760px;
  color:#4F6985;
  font-size:21px;
  line-height:1.65;
  margin-bottom:30px;
}
.hero-actions,.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
}
.btn.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--green),var(--blue));
  box-shadow:0 16px 38px rgba(21,95,201,.22);
}
.btn.secondary{
  color:var(--navy);
  background:#fff;
  border-color:var(--border);
  box-shadow:var(--soft);
}
.micro{color:var(--muted);font-size:14px;margin-top:18px}
.hero-card{
  align-self:end;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(232,182,63,.34);
  border-radius:34px;
  padding:30px;
  box-shadow:var(--shadow);
}
.hero-card h3{font-size:28px;color:var(--navy)}
.quick-list{display:grid;gap:10px}
.quick-list span{
  background:#F7FBFF;
  border:1px solid var(--border);
  padding:12px 14px;
  border-radius:18px;
  color:#405D78;
  font-weight:850;
}
.fit,.education,.disclosures,.faq,.cta-box{
  margin:70px clamp(20px,5vw,72px);
}
.fit,.education,.faq{text-align:center}
.fit h2,.education h2,.disclosures h2,.faq h2,.cta-box h2{
  font-size:clamp(32px,4vw,54px);
  line-height:1.04;
  letter-spacing:-2px;
  color:var(--navy);
  margin-bottom:18px;
}
.section-sub{
  max-width:860px;
  margin:0 auto 34px;
  color:var(--muted);
  font-size:18px;
}
.fit-grid,.education-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  text-align:left;
}
.fit-card,.education-grid article,.disclosure-box,.faq,.cta-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  box-shadow:var(--soft);
}
.fit-card,.education-grid article{
  padding:28px;
}
.fit-card h3,.education-grid h3{font-size:24px;color:var(--navy)}
.fit-card ul{padding-left:20px;margin-bottom:18px}
.fit-card li{margin-bottom:8px;color:#3F5C79}
.fit-card.good{border-top:5px solid var(--green)}
.fit-card.maybe{border-top:5px solid var(--gold)}
.fit-card.not{border-top:5px solid var(--red)}
.text-link{color:var(--blue);font-weight:900;text-decoration:none}
.education-grid p{color:var(--muted)}
.disclosures{text-align:left}
.disclosure-box{
  padding:32px;
  border-left:6px solid var(--gold);
}
.disclosure-box p{
  color:#405D78;
  font-size:17px;
  line-height:1.7;
}
.faq{
  padding:40px;
  text-align:left;
}
.faq h2{text-align:left}
details{
  border-top:1px solid var(--border);
  padding:20px 0;
}
details:last-child{border-bottom:1px solid var(--border)}
summary{
  cursor:pointer;
  color:var(--navy);
  font-size:19px;
  font-weight:900;
}
details p{
  color:var(--muted);
  line-height:1.7;
  max-width:940px;
  margin:14px 0 0;
}
.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:42px;
  background:linear-gradient(135deg,var(--navy),var(--blue),var(--teal));
  color:#fff;
}
.cta-box .section-kicker{color:#FFE5A8}
.cta-box h2{color:#fff}
.cta-box p{color:rgba(255,255,255,.84);max-width:780px}
.cta-box .btn.primary{background:#fff;color:var(--navy)}
footer{
  background:#fff;
  border-top:1px solid var(--border);
  padding:48px clamp(20px,5vw,72px);
  color:var(--muted);
}
footer img{width:300px;max-width:80vw}
.mini-disclaimer{
  max-width:980px;
  line-height:1.7;
}
.footer-links a{
  color:var(--blue);
  font-weight:900;
  text-decoration:none;
}
@media(max-width:980px){
  .site-header{align-items:flex-start;flex-direction:column}
  nav{width:100%;overflow:auto;padding-bottom:4px}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-card{align-self:auto;max-width:560px}
  .fit-grid,.education-grid{grid-template-columns:1fr}
  .cta-box{align-items:flex-start;flex-direction:column}
}
@media(max-width:700px){
  h1{letter-spacing:-1.6px}
  .hero{padding-top:48px}
  .fit,.education,.disclosures,.faq,.cta-box{margin:46px 18px}
  .faq,.cta-box,.disclosure-box{padding:28px}
}
