:root {
  --navy: #1e3a8a;
  --navy-dark: #0f2460;
  --emerald: #10b981;
  --teal: #0d9488;
  --ice: #e8f1fb;
  --sky: #eff6ff;
  --ink: #172554;
  --muted: #52617a;
  --white: #fff;
  --border: #dbe7f5;
  --shadow: 0 16px 42px rgba(15, 36, 96, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1152px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; z-index: 100; padding: 10px; background: white; }

.topbar { border-bottom: 1px solid rgba(15, 36, 96, .2); background: var(--navy-dark); color: #dbeafe; font-size: .6875rem; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
.topbar .container { display: flex; justify-content: space-between; gap: 20px; padding-block: 8px; }
.topbar a { color: #6ee7b7; text-decoration: none; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  box-shadow: 0 1px 5px rgba(15, 36, 96, .12);
}
.nav-shell { position: relative; border-bottom: 1px solid rgba(30, 58, 138, .1); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; color: var(--navy); font-size: 1.25rem; font-weight: 800; letter-spacing: -.025em; text-decoration: none; }
.brand span { color: var(--emerald); }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a { color: rgba(30, 58, 138, .8); font-size: .875rem; font-weight: 600; text-decoration: none; }
.nav a:hover, .footer a:hover { color: var(--emerald); }
.nav-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.call-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--navy);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}
.call-button:hover { background: var(--navy-dark); }
.call-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.audit-button { padding: 10px 16px !important; font-size: .8rem !important; }
.nav-toggle { display: none; align-items: center; justify-content: center; border: 1px solid rgba(30,58,138,.2); border-radius: 8px; width: 40px; height: 40px; background: var(--ice); color: var(--navy); }
.nav-toggle svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: var(--white) !important;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(16, 185, 129, .24);
}
.button.secondary { border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.08); box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 60px;
  background:
    radial-gradient(circle at 85% 15%, rgba(16,185,129,.23), transparent 32%),
    linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.hero.has-media {
  isolation: isolate;
  background: var(--navy-dark);
}
.hero.has-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(16,185,129,.28), transparent 32%),
    linear-gradient(105deg, rgba(15, 36, 96, .92) 0%, rgba(30, 58, 138, .88) 55%, rgba(13, 148, 136, .82) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.has-media > .container,
.hero.has-media > .narrow {
  position: relative;
  z-index: 2;
}
.hero-grid { display: grid; grid-template-columns: 1.5fr .8fr; align-items: center; gap: 60px; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.hero p { max-width: 760px; margin: 20px 0 0; color: #dbeafe; font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card { border: 1px solid rgba(255,255,255,.2); border-radius: 18px; padding: 25px; background: rgba(255,255,255,.09); }
.hero-card strong { display: block; margin-bottom: 12px; color: #6ee7b7; }
.hero-card ul { margin: 0; padding-left: 20px; color: #e0f2fe; }
.hero-card-note { margin: 14px 0 0; font-size: .86rem; line-height: 1.45; color: #bfdbfe; }
.breadcrumbs { margin-bottom: 18px; color: #bfdbfe; font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }

.section { padding: 68px 0; }
.section.alt { background: var(--sky); }
.section.dark { background: var(--navy-dark); color: white; }
.section h2 { margin: 0 0 18px; font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; line-height: 1.22; letter-spacing: -.02em; }
.section-lead { max-width: 760px; margin: 0 0 34px; color: var(--muted); font-size: 1.04rem; }
.dark .section-lead { color: #bfdbfe; }
.grid-2, .grid-3 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: white;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin: 0 0 10px; color: var(--navy-dark); font-family: inherit; font-weight: 800; line-height: 1.3; letter-spacing: -.015em; }
.card h2 { font-size: 1.3rem; }
.card h3 { font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 16px; color: var(--teal); font-weight: 800; text-decoration: none; }
.specialty-detail-card { display: flex; flex-direction: column; }
.specialty-detail-card p:not(.eyebrow) { flex: 1; }

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}
.contact-panel > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.contact-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 36, 96, .95), rgba(30, 58, 138, .9), rgba(13, 148, 136, .8));
}
.contact-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 56px;
}
.contact-panel-copy { color: #fff; text-align: left; }
.contact-panel-eyebrow {
  margin: 0;
  color: #6ee7b7;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-panel-copy h2 {
  margin: 12px 0 0;
  max-width: 34rem;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.contact-panel-copy > p {
  max-width: 32rem;
  margin: 16px 0 0;
  color: rgba(219, 234, 254, .95);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-panel-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .2s ease;
}
.contact-panel-phone:hover { background: rgba(255, 255, 255, .2); }

.contact-form {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(30, 58, 138, .16);
}
@media (min-width: 640px) {
  .contact-form { padding: 28px; }
}
.contact-form h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
}
.contact-form-lead {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .875rem;
}
.contact-form-fields { margin-top: 20px; display: grid; gap: 14px; }
.contact-form label {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
}
.contact-form label span { color: #64748b; font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--sky);
  color: var(--navy-dark);
  font: inherit;
  font-size: .875rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #94a3b8; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .25);
}
.contact-form textarea { resize: vertical; min-height: 2.75rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-submit {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: #fff;
  font: inherit;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16, 185, 129, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 148, 136, .4);
}
.form-success {
  margin: 12px 0 0;
  color: #047857;
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
}
.form-success[hidden] { display: none; }
.form-error {
  margin: 12px 0 0;
  color: #b91c1c;
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
}
.form-error[hidden] { display: none; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.blog-grid { align-items: stretch; }
.blog-card { display: flex; min-height: 310px; flex-direction: column; }
.blog-card h2 { font-size: 1.35rem; line-height: 1.32; }
.blog-card > p:not(.eyebrow) { flex: 1; }
.blog-card .text-link { align-self: flex-start; margin-top: 22px; }
.facts { margin: 0; padding: 0; list-style: none; }
.facts li { position: relative; padding: 9px 0 9px 28px; }
.facts li::before { position: absolute; left: 0; color: var(--emerald); content: "✓"; font-weight: 900; }

.content { font-size: 1.02rem; }
.content h2, .content h3 { color: var(--navy-dark); font-family: inherit; font-weight: 800; line-height: 1.3; letter-spacing: -.015em; }
.content h2 { margin-top: 44px; font-size: 1.75rem; }
.content h3 { margin-top: 28px; font-size: 1.25rem; }
.content a { color: var(--teal); font-weight: 700; }
.content blockquote { margin: 30px 0; border-left: 4px solid var(--emerald); padding: 18px 24px; background: var(--sky); }
.article-meta { margin-top: 20px; color: #dbeafe; font-size: .9rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; align-items: start; gap: 55px; }
.article-layout > .content { max-width: 760px; }
.toc { position: sticky; top: 100px; border: 1px solid var(--border); border-radius: 12px; padding: 22px; background: var(--sky); }
.toc strong { display: block; margin-bottom: 8px; }
.toc a,
.toc button {
  display: block;
  border: 0;
  padding: 5px 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: .88rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.source-list { font-size: .9rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: .92rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table th {
  background: var(--sky);
  color: var(--navy-dark);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table a { color: var(--navy); font-weight: 700; text-decoration: none; }
.comparison-table a:hover { color: var(--teal); }
@media (max-width: 720px) {
  .comparison-table { display: block; overflow-x: auto; }
}

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); padding: 19px 0; }
.faq summary { color: var(--navy-dark); font-weight: 800; cursor: pointer; }
.faq p { margin: 10px 0 0; color: var(--muted); }
.cta { border-radius: 20px; padding: 40px; background: linear-gradient(120deg, var(--navy-dark), var(--navy)); color: white; }
.cta h2 { color: white; }
.cta p { max-width: 700px; color: #dbeafe; }

.footer { padding: 52px 0 25px; background: var(--navy-dark); color: #bfdbfe; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
.footer strong { color: white; }
.footer h2, .footer .footer-heading { margin: 0 0 12px; color: #93c5fd; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.footer .footer-heading-sub { margin-top: 18px; }
.footer a { display: block; padding: 4px 0; color: #dbeafe; font-size: .88rem; text-decoration: none; }
.copyright { margin-top: 35px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; font-size: .78rem; }

@media (max-width: 1279px) {
  .call-button { display: none; }
}

@media (max-width: 1100px) {
  .nav { gap: 18px; }
}

@media (max-width: 900px) {
  .hero-grid, .article-layout, .contact-panel-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset: 64px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 15px 20px 22px;
    background: white;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .toc { position: static; }
}

@media (max-width: 560px) {
  .topbar .container { display: block; text-align: center; }
  .topbar a { display: block; margin-top: 3px; }
  .audit-button { display: none; }
  .grid-2, .grid-3, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 50px; }
  .section { padding: 54px 0; }
  .cta { padding: 28px; }
  .contact-panel { padding: 52px 0 56px; }
  .contact-form { padding: 20px; }
  .contact-panel-grid { gap: 36px; }
}
