:root {
  --navy: #173d5b;
  --navy-deep: #102f48;
  --teal: #4f99a2;
  --teal-dark: #347c85;
  --teal-pale: #eaf4f3;
  --gold: #c6a269;
  --warm-white: #fbfaf7;
  --cream: #f3efe8;
  --white: #ffffff;
  --ink: #243640;
  --muted: #5d6d74;
  --line: #d9e5e4;
  --shadow: 0 18px 48px rgba(23, 61, 91, .10);
  --shadow-soft: 0 8px 28px rgba(23, 61, 91, .07);
  --radius: 20px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--navy);
  font-family: inherit;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.2;
  text-wrap: balance;
  hyphens: none;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.16rem; }
p:last-child { margin-bottom: 0; }

.skip-link {
  left: 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 20px rgba(23, 61, 91, .05);
  backdrop-filter: blur(12px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--container));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brand-link { flex: 0 0 auto; }
.brand-link img { width: 248px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 9px 12px;
  font-weight: 700;
  cursor: pointer;
}

.section { padding: 88px 24px; }
.section--white { background: var(--white); }
.section--mist { background: var(--teal-pale); }
.section--cream { background: var(--cream); }
.container { width: min(100%, var(--container)); margin: 0 auto; }
.narrow { width: min(100%, 780px); margin: 0 auto; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { max-width: 680px; margin-right: auto; margin-left: auto; color: var(--muted); font-size: 1.03rem; }
.eyebrow, .section-label {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.button, .hero-btn, .cta-btn, .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: .94rem;
  font-weight: 750;
  padding: 13px 26px;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .hero-btn:hover, .cta-btn:hover, .submit-btn:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 61, 91, .18);
  transform: translateY(-2px);
}

.brand-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  background: var(--warm-white);
  padding: 94px 24px 165px;
  text-align: center;
}
.brand-hero::before, .brand-hero::after, .page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 360px;
  height: 260px;
  opacity: .42;
  background: url("contours.svg") center/contain no-repeat;
}
.brand-hero::before { top: -70px; left: -70px; }
.brand-hero::after { top: -80px; right: -80px; transform: scaleX(-1); }
.hero-inner { width: min(100%, 1180px); margin: 0 auto; }
.hero-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.brand-hero h1 { max-width: 1180px; margin: 0 auto 22px; color: var(--navy); font-size: clamp(2.35rem, 4.1vw, 3.3rem); }
.gold-rule { width: 112px; height: 4px; margin: 0 auto 22px; border-radius: 3px; background: var(--gold); }
.hero-lead { max-width: 760px; margin: 0 auto 14px; color: var(--teal-dark); font-size: clamp(1.15rem, 2vw, 1.42rem); font-weight: 700; line-height: 1.5; }
.hero-sub2 { max-width: 710px; margin: 0 auto 32px; color: var(--muted); font-size: 1.02rem; }
.hero-waves { position: absolute; right: 0; bottom: -1px; left: 0; z-index: -1; width: 100%; }

.feature-grid, .cards-grid, .credentials, .support-grid, .contact-cards, .resource-grid, .related-grid {
  display: grid;
  gap: 24px;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .card, .cred-card, .support-item, .contact-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 34px 28px;
  text-align: center;
}
.icon-disc {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.icon-disc svg { width: 30px; height: 30px; stroke: currentColor; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .94rem; }

.who-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.who-copy h2 { max-width: 620px; margin-bottom: 18px; }
.who-copy p { color: var(--muted); }
.who-quote {
  position: relative;
  margin: 0;
  border: 1px solid #cfe1df;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 42px;
  color: var(--navy);
  font-size: 1.23rem;
  font-weight: 650;
  line-height: 1.55;
}
.who-quote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 24px;
  color: var(--gold);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  opacity: .8;
}
.who-quote strong { display: block; margin-top: 20px; color: var(--teal-dark); font-size: .98rem; }

.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.care-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px 24px;
  text-align: center;
}
.care-letter {
  width: 52px;
  height: 52px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}
.care-card p { color: var(--muted); font-size: .92rem; }
.principle { padding: 74px 24px; background: var(--white); text-align: center; }
.principle blockquote { max-width: 900px; margin: 0 auto; color: var(--navy); font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 750; line-height: 1.4; }
.principle p { max-width: 760px; margin: 20px auto 0; color: var(--muted); }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale), var(--warm-white));
  padding: 76px 24px 78px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero::before { top: -70px; right: -80px; transform: scaleX(-1); }
.page-hero .hero-copy { width: min(100%, 1080px); margin: 0 auto; }
.page-hero h1 { max-width: 1040px; margin: 0 auto 16px; font-size: clamp(2.15rem, 3.8vw, 3.2rem); }
.page-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

.about-body { width: min(100%, 980px); margin: 0 auto; }
.about-body > h2 { max-width: 820px; margin: 58px auto 20px; text-align: center; }
.about-body > h2:first-child { margin-top: 0; }
.about-body > p { max-width: 880px; margin-right: auto; margin-left: auto; color: var(--muted); }
.about-intro-copy { max-width: 880px; margin: 0 auto; }
.about-intro-copy p { color: var(--muted); }
.about-intro-copy strong { color: var(--navy); }
.about-focus { margin-top: 32px; color: var(--navy) !important; font-size: 1.05rem; }
.about-note { margin-top: 22px; font-size: .92rem; }
.credentials { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; margin: 34px 0 58px; }
.cred-card { display: grid; grid-template-rows: auto auto 1fr; align-content: start; padding: 30px 22px; text-align: center; }
.cred-card .icon { margin-bottom: 18px; }
.cred-card h4 { min-height: 42px; margin-bottom: 10px; font-size: .92rem; }
.cred-card p { color: var(--muted); font-size: .89rem; }
.intro { max-width: 920px; margin: 0 auto 46px; text-align: center; }
.intro h2 { margin-bottom: 14px; }
.intro p:last-child { color: var(--muted); }
.cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.card { display: flex; flex-direction: column; padding: 34px 30px; }
.card .icon { margin: 0 auto 20px; }
.card h3 { min-height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; text-align: center; font-size: 1.08rem; }
.card > p { color: var(--muted); font-size: .93rem; }
.card-list { margin: 18px 0 0; padding: 0; list-style: none; }
.card-list li { position: relative; margin: 0 0 11px; padding-left: 24px; color: var(--muted); font-size: .9rem; }
.card-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--teal-dark); font-weight: 800; }
.support-section { margin-top: 76px; text-align: center; }
.support-section > p { color: var(--muted); }
.support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; margin-top: 30px; text-align: left; }
.support-item { display: grid; grid-template-rows: auto 1fr; padding: 28px; }
.support-item h3 { min-height: 44px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 1.05rem; }
.support-item p { color: var(--muted); font-size: .92rem; }
.point-note, .disclaimer, .privacy-note {
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--muted);
  padding: 20px 22px;
}
.point-note { margin-top: 36px; }
.disclaimer { margin-top: 20px; border-left: 4px solid var(--teal); }
.disclaimer p { margin: 0; }

.cta-strip, .cta-section, .cta {
  background: var(--navy);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.cta-strip h2, .cta-section h2, .cta h2 { margin-bottom: 12px; color: var(--white); }
.cta-strip p, .cta-section p, .cta p { max-width: 690px; margin: 0 auto 25px; color: rgba(255,255,255,.8); }
.cta-strip .cta-btn, .cta-section .cta-btn, .cta a {
  background: var(--white);
  color: var(--navy);
}
.cta-strip .cta-btn:hover, .cta-section .cta-btn:hover, .cta a:hover { background: var(--teal-pale); color: var(--navy); }
.cta-section { margin-top: 56px; border-radius: 26px; }

.consult-box { max-width: 900px; margin: 0 auto 34px; border-left: 5px solid var(--gold); border-radius: 0 18px 18px 0; background: var(--white); box-shadow: var(--shadow-soft); padding: 30px 34px; }
.consult-box h2 { margin-bottom: 10px; font-size: 1.45rem; }
.consult-box p { color: var(--muted); }
.contact-cards { max-width: 900px; margin: 0 auto 42px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.contact-card { padding: 30px; text-align: center; }
.contact-card .icon { margin: 0 auto 16px; }
.contact-card a { color: var(--navy); font-size: 1.05rem; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.contact-card p { margin-top: 8px; color: var(--muted); font-size: .9rem; }
.form-section { max-width: 900px; margin: 0 auto; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); padding: 42px; }
.form-section > h2, .form-section > p { text-align: center; }
.form-section > p { margin-bottom: 30px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .9rem; font-weight: 750; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid #bdcdce;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(79,153,162,.14); }
.privacy-note { margin: 4px 0 22px; font-size: .88rem; }
.submit-btn { width: 100%; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.resources-main { padding: 72px 24px 90px; }
.resources-main > * { width: min(100%, var(--container)); margin-right: auto; margin-left: auto; }
.intro-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 34px 38px;
}
.intro-panel p { color: var(--muted); }
.resources-main .intro-panel { text-align: center; }
.quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.quick-link { border: 1px solid var(--line); border-radius: 999px; background: var(--teal-pale); padding: 7px 14px; font-size: .88rem; font-weight: 700; text-decoration: none; }
.search-wrap { margin-top: 30px; }
.search-wrap input { width: 100%; border: 1px solid #bdcdce; border-radius: 14px; background: var(--white); padding: 14px 18px; outline: none; }
.search-wrap input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(79,153,162,.14); }
.section-title { max-width: 900px; margin: 58px auto 8px; text-align: center; }
.section-sub { max-width: 820px; margin: 0 auto; color: var(--muted); text-align: center; }
.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; margin-top: 26px; }
.resource-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.resource-card[hidden] { display: none; }
.card-band { height: 7px; background: linear-gradient(90deg, var(--teal), var(--navy)); }
.card-body { height: 100%; display: flex; flex-direction: column; padding: 26px; }
.tag { display: inline-block; align-self: center; margin-bottom: 12px; border-radius: 999px; background: var(--teal-pale); color: var(--teal-dark); padding: 5px 10px; font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.card-body h3 { min-height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 11px; text-align: center; font-size: 1.02rem; }
.card-body p { color: var(--muted); font-size: .92rem; text-align: center; }
.card-body a { margin-top: auto; padding-top: 8px; font-size: .9rem; font-weight: 800; text-align: center; text-decoration: none; }
.resources-main .cta { margin-top: 58px; border-radius: 24px; }

.article-hero { padding: 64px 24px 58px; background: linear-gradient(135deg, var(--teal-pale), var(--warm-white)); border-bottom: 1px solid var(--line); text-align: center; }
.article-hero > * { width: min(100%, 1040px); margin-right: auto; margin-left: auto; }
.article-hero h1 { margin-bottom: 14px; font-size: clamp(2rem, 3.7vw, 3.15rem); }
.article-hero p { color: var(--muted); font-size: 1.04rem; }
.article-main { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; padding: 64px 0 86px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 46px; align-items: start; }
.article { min-width: 0; }
.article-meta { margin-bottom: 18px; color: var(--teal-dark); font-size: .82rem; font-weight: 750; }
.article .lead { color: var(--navy); font-size: 1.14rem; font-weight: 550; }
.article h2 { margin: 44px 0 14px; font-size: 1.65rem; scroll-margin-top: 115px; }
.article h3 { margin: 30px 0 10px; }
.article p, .article li { color: var(--muted); }
.article ul, .article ol { padding-left: 24px; }
.article li { margin-bottom: 9px; }
.callout, .source-box, .notice {
  margin: 26px 0;
  border-radius: 15px;
  background: var(--teal-pale);
  padding: 23px 25px;
  color: var(--muted);
}
.callout strong { display: block; margin-bottom: 5px; color: var(--navy); }
.callout.warning { border-left: 4px solid var(--gold); background: #f8f2e8; }
.source-box { border: 1px solid var(--line); background: var(--white); }
.source-box h2 { margin-top: 0; font-size: 1.25rem; }
.source-box a { overflow-wrap: anywhere; }
.notice { border-left: 4px solid var(--teal); font-size: .9rem; }
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 25px 0; }
.compare-card { border: 1px solid var(--line); border-radius: 15px; background: var(--white); padding: 22px; }
.compare-card h3 { margin-top: 0; }
.compare-card .mini { color: var(--teal-dark); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.article .cta { margin: 42px 0; border-radius: 22px; }
.article .cta h2 { margin-top: 0; color: var(--white); }
.article .cta a { display: inline-flex; border-radius: 999px; padding: 12px 22px; text-decoration: none; font-weight: 750; }
.sidebar { position: sticky; top: 112px; }
.side-card { margin-bottom: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); padding: 22px; box-shadow: var(--shadow-soft); }
.side-card h2, .side-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.side-card ol { margin: 0; padding-left: 20px; }
.side-card li { margin-bottom: 7px; font-size: .86rem; }
.side-card p { color: var(--muted); font-size: .88rem; }
.related { margin-top: 55px; padding-top: 38px; border-top: 1px solid var(--line); }
.related-grid { grid-template-columns: repeat(3, 1fr); }
.related-grid a { display: flex; align-items: center; min-height: 96px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); padding: 18px; color: var(--navy); font-size: .9rem; font-weight: 750; text-decoration: none; }
.faq-list { display: grid; gap: 13px; margin-top: 30px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-soft); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 20px 52px 20px 22px; color: var(--navy); font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 15px; right: 20px; color: var(--teal-dark); font-size: 1.45rem; font-weight: 600; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.faq-answer p { margin: 0; color: var(--muted); }
.simple-table { width: 100%; margin: 24px 0; border-collapse: collapse; border: 1px solid var(--line); background: var(--white); font-size: .9rem; }
.simple-table th, .simple-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.simple-table th { background: var(--teal-pale); color: var(--navy); font-weight: 750; }

.legal-shell { padding: 72px 24px 90px; }
.legal-body { width: min(100%, 850px); margin: 0 auto; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-soft); padding: clamp(28px, 5vw, 58px); }
.legal-body h2 { margin: 42px 0 16px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 1.4rem; letter-spacing: -.01em; text-transform: none; }
.legal-body p, .legal-body li { color: #46585f; font-size: .94rem; }
.legal-body ol, .legal-body ul { padding-left: 26px; }
.legal-body li { margin-bottom: 8px; }
.legal-body mark { background: #fff1b8; }
.legal-intro { max-width: 760px; margin: 0 auto 28px; color: var(--muted); text-align: center; }

.site-footer { background: var(--navy-deep); color: var(--white); padding: 58px 24px 24px; }
.footer-grid { width: min(100%, var(--container)); margin: 0 auto; display: grid; grid-template-columns: 1.35fr .7fr 1fr; gap: 54px; }
.footer-brand img { width: 240px; border-radius: 4px; }
.footer-brand p { max-width: 340px; margin-top: 18px; color: rgba(255,255,255,.7); }
.site-footer h2 { margin-bottom: 16px; color: var(--white); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-contact p { margin-bottom: 8px; color: rgba(255,255,255,.72); font-size: .9rem; overflow-wrap: anywhere; }
.footer-bottom { width: min(100%, var(--container)); margin: 34px auto 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; color: rgba(255,255,255,.55); font-size: .8rem; text-align: center; }

.status-wrap { min-height: 70vh; display: grid; place-items: center; padding: 60px 24px; }
.status-card { width: min(100%, 650px); border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); padding: 50px; text-align: center; }
.status-card .tick { width: 64px; height: 64px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-pale); color: var(--teal-dark); font-size: 2rem; font-weight: 800; }
.status-card p { color: var(--muted); }

@media (max-width: 1120px) {
  .feature-grid, .cards-grid, .credentials, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card:last-child, .feature-grid .feature-card:last-child { grid-column: 1 / -1; max-width: 560px; justify-self: center; }
  .support-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .side-card { margin: 0; }
}

@media (min-width: 1121px) {
  .feature-card h3,
  .care-card h3,
  .contact-card h3,
  .card h3,
  .support-item h3,
  .card-body h3 { white-space: nowrap; }
  .card > p { min-height: 126px; }
}

@media (min-width: 1121px) and (max-width: 1200px) {
  .credentials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1201px) {
  .cred-card h4 { white-space: nowrap; }
}

@media (max-width: 780px) {
  .site-header { position: relative; }
  .nav-shell { min-height: 76px; gap: 20px; }
  .brand-link img { width: 210px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 101;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 12px 20px 18px;
    box-shadow: 0 15px 25px rgba(23,61,91,.09);
  }
  .nav-links.open { display: flex; }
  .nav-links li, .nav-links a { width: 100%; }
  .nav-links a { display: block; padding: 10px; text-align: center; }
  .nav-links a::after { display: none; }
  .brand-hero { min-height: 580px; padding-top: 68px; }
  .section { padding: 68px 20px; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .who-quote { padding: 38px 28px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .article-main { width: min(calc(100% - 32px), var(--container)); }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .nav-shell { width: min(calc(100% - 28px), var(--container)); }
  .brand-link img { width: 188px; }
  .brand-hero { min-height: 570px; padding: 58px 18px 140px; }
  .brand-hero::before, .brand-hero::after { width: 250px; height: 180px; opacity: .26; }
  .page-hero, .article-hero { padding: 52px 20px; }
  .feature-grid, .cards-grid, .credentials, .care-grid, .contact-cards, .resource-grid, .related-grid, .compare-grid, .form-row, .sidebar { grid-template-columns: 1fr; }
  .cards-grid .card:last-child, .feature-grid .feature-card:last-child { grid-column: auto; max-width: none; }
  .card h3, .cred-card h4 { min-height: 0; }
  .card-body h3, .support-item h3 { min-height: 0; }
  .form-section, .legal-body { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 220px; }
  .cta-section { border-radius: 18px; }
  .article-main { padding-top: 46px; }
  .simple-table { display: block; overflow-x: auto; white-space: nowrap; }
}

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