:root {
  --navy: #102a43;
  --navy-2: #183b56;
  --blue: #1f5f8b;
  --blue-bright: #2b7bbb;
  --sky: #dceefb;
  --gold: #e2a93b;
  --ink: #243b53;
  --muted: #627d98;
  --line: #d9e2ec;
  --soft: #f4f8fb;
  --white: #ffffff;
  --success: #237a57;
  --pending: #8a5b0a;
  --shadow: 0 18px 50px rgba(16, 42, 67, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only, .honeypot { position: absolute !important; overflow: hidden; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--white); color: var(--navy); padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.utility-bar { background: var(--navy); color: #e7f3fb; font-size: .82rem; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-links { display: flex; align-items: center; gap: 10px; }
.utility-links a { text-decoration: none; }
.utility-links a:hover { text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(217,226,236,.8); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 46px; height: 46px; padding: 7px; border-radius: 12px; color: var(--blue); background: var(--sky); }
.brand strong { display: block; letter-spacing: .07em; font-size: 1rem; line-height: 1.2; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { text-decoration: none; color: var(--ink); font-weight: 650; font-size: .92rem; }
.primary-nav a:hover { color: var(--blue); }
.primary-nav .nav-cta { color: var(--white); background: var(--blue); border-radius: 999px; padding: 11px 18px; }
.primary-nav .nav-cta:hover { color: var(--white); background: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--soft); padding: 11px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

.hero { position: relative; overflow: hidden; padding: 92px 0 86px; background: linear-gradient(120deg, #f6fbff 0%, #eaf5fb 48%, #dbeef8 100%); }
.hero::before { content: ""; position: absolute; width: 540px; height: 540px; right: -180px; top: -200px; border: 84px solid rgba(31,95,139,.07); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; left: -170px; bottom: -170px; border: 54px solid rgba(226,169,59,.11); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.eyebrow.light { color: #bde3f7; }
h1, h2, h3 { color: var(--navy); line-height: 1.13; margin-top: 0; }
h1 { margin: 18px 0 22px; font-size: clamp(2.55rem, 5vw, 4.75rem); letter-spacing: -.045em; max-width: 920px; }
h2 { font-size: clamp(2rem, 3vw, 3.25rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }
.hero-lead { margin: 0; max-width: 760px; color: #3d5870; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 10px 24px rgba(31,95,139,.2); }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--navy); background: rgba(255,255,255,.78); border-color: var(--line); }
.button-secondary:hover { background: var(--white); box-shadow: 0 10px 24px rgba(16,42,67,.1); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; list-style: none; padding: 0; margin: 28px 0 0; color: var(--navy-2); font-weight: 650; font-size: .9rem; }
.hero-points li::before { content: "✓"; color: var(--success); margin-right: 7px; font-weight: 900; }
.hero-card { padding: 32px; border-radius: 24px; background: var(--navy); color: #dce9f3; box-shadow: var(--shadow); }
.hero-card h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 24px; }
.card-kicker { margin: 0 0 8px; color: #9fd3ec; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; }
.capability-list { display: grid; gap: 11px; }
.capability-list div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.11); }
.capability-list span { display: inline-grid; place-items: center; width: 34px; height: 34px; color: #102a43; background: var(--gold); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.capability-list p { margin: 0; color: #eef6fb; font-weight: 650; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 22px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy); font-size: .95rem; }
.trust-grid span { margin-top: 4px; color: var(--muted); font-size: .82rem; line-height: 1.35; }

.section { padding: 94px 0; }
.section-muted { background: var(--soft); }
.section-dark { color: #dce9f3; background: linear-gradient(120deg, var(--navy), #143c5b); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow::before { display: none; }
.section-heading h2 { margin: 14px 0 16px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 30px rgba(16,42,67,.055); }
.service-card.featured { border-top: 4px solid var(--gold); padding-top: 25px; }
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--blue); background: var(--sky); font-weight: 900; font-size: 1.2rem; }
.service-card h3 { margin: 20px 0 10px; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 18px 0 0; padding-left: 20px; }
.service-card li { margin: 7px 0; color: #486581; font-size: .92rem; }

.government-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.government-grid h2 { margin: 14px 0 18px; }
.government-grid > div:first-child > p { color: #c8d8e5; font-size: 1.05rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.tag-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.06); color: #e6f1f8; font-size: .78rem; font-weight: 700; }
.government-panel { padding: 34px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.government-panel h3 { color: var(--navy); }
.government-panel ol { margin: 22px 0 0; padding-left: 20px; }
.government-panel li { margin: 14px 0; color: var(--ink); }

.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.credential-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.credential-grid h3 { margin: 16px 0 8px; font-size: 1.08rem; }
.credential-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .69rem; line-height: 1; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.status.active { color: #176344; background: #daf5e9; }
.status.verified { color: #1e5279; background: #dceefb; }
.status.pending { color: #7a4d00; background: #fff1cc; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-grid h2 { margin: 14px 0 18px; }
.about-grid p { color: #486581; }
.text-link { display: inline-flex; gap: 8px; margin-top: 14px; color: var(--blue); text-decoration: none; font-weight: 800; }
.values-panel { padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.value { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.value:first-of-type { margin-top: 16px; }
.value > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--navy); background: var(--sky); font-weight: 900; font-size: .75rem; }
.value strong { color: var(--navy); }
.value p { margin: 4px 0 0; font-size: .9rem; }

.contact-section { color: #dce9f3; background: #0b2239; }
.contact-section h2 { color: var(--white); margin: 14px 0 18px; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.contact-copy > p { color: #bed0df; }
.contact-details { display: grid; gap: 16px; margin-top: 32px; }
.contact-details a, .contact-details div { display: block; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { color: #91acc0; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; color: var(--white); font-size: .98rem; }
.quote-form { display: grid; gap: 16px; padding: 32px; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #cbd5df; border-radius: 9px; padding: 12px 13px; color: var(--ink); background: var(--white); outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(43,123,187,.13); }
.quote-form textarea { resize: vertical; }
.form-button { justify-self: start; border: 0; }
.form-note { margin: -3px 0 0; color: var(--muted); font-size: .76rem; }

.site-footer { padding: 42px 0 24px; color: #b7c9d7; background: #071a2c; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 50px; }
.footer-grid strong { color: var(--white); letter-spacing: .05em; }
.footer-grid span { color: #e6f1f8; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p { margin: 7px 0 0; font-size: .87rem; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(130deg, #eef7fb, #dceefb); }
.thank-you-card { width: min(100%, 720px); padding: 48px; border-radius: 24px; text-align: center; background: var(--white); box-shadow: var(--shadow); }
.centered-brand { justify-content: center; text-align: left; }
.success-mark { display: grid; place-items: center; width: 64px; height: 64px; margin: 36px auto 20px; border-radius: 50%; color: var(--white); background: var(--success); font-size: 1.7rem; font-weight: 900; }
.thank-you-card h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.thank-you-card p { max-width: 560px; margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 980px) {
  .utility-inner { justify-content: center; }
  .utility-inner > span { display: none; }
  .hero-grid, .government-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid, .government-grid, .about-grid, .contact-grid { gap: 42px; }
  .hero-card { max-width: 680px; }
  .service-grid, .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .nav-toggle { display: block; cursor: pointer; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 1px); display: none; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.open { display: grid; gap: 5px; }
  .primary-nav a { padding: 10px 8px; }
  .primary-nav .nav-cta { margin-top: 6px; text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-links { gap: 7px; font-size: .75rem; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .65rem; }
  .hero { padding: 70px 0 64px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-card { padding: 24px; }
  .trust-grid, .service-grid, .credential-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:first-child, .trust-grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-grid div { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .service-card, .government-panel, .values-panel, .quote-form { padding: 24px; }
  .contact-grid { gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .thank-you-card { padding: 34px 24px; }
}
