:root {
  --navy-950: #04101f;
  --navy-900: #071b33;
  --navy-800: #0c2d52;
  --blue-600: #0f5da8;
  --blue-500: #1b73c7;
  --slate-700: #36465a;
  --slate-500: #6f7c8c;
  --slate-200: #d8e0e8;
  --slate-100: #edf2f6;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 22px 60px rgba(4, 16, 31, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy-950);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,27,51,.08);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { width: 230px; text-decoration: none; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: .94rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--blue-600); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--navy-800);
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(27,115,199,.28), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #0a3966);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -160px 35%;
  height: 330px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: rotate(-7deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--blue-600);
}
.eyebrow.light { color: #91c8ff; }
.hero .eyebrow { color: #8ec9ff; }
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.45rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}
.hero h1 span { color: #7ec1ff; }
.hero-text {
  max-width: 710px;
  margin: 28px 0 0;
  font-size: 1.13rem;
  color: rgba(255,255,255,.78);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--blue-500); color: white; }
.button.primary:hover { background: #2480d8; }
.button.secondary {
  color: white;
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
}
.button.secondary:hover { background: rgba(255,255,255,.1); }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 36px 90px rgba(0,0,0,.24);
}
.logo-panel {
  background: white;
  border-radius: 18px;
  min-height: 350px;
  display: grid;
  place-items: center;
  padding: 28px;
}
.logo-panel img { width: 100%; }
.capability-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.capability-strip span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 11px 8px;
  text-align: center;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.76);
}

.trust-bar {
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 22px; border-right: 1px solid var(--slate-200); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy-900); }
.trust-grid span { color: var(--slate-500); font-size: .88rem; }

.section { padding: 100px 0; scroll-margin-top: 80px; }
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2, .government h2, .about h2, .contact h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-heading > p:last-child { color: var(--slate-500); font-size: 1.08rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 300px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 30px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #b7cbe0;
}
.number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--blue-600);
  font-weight: 900;
  font-size: .8rem;
}
.service-card h3 {
  margin: 28px 0 12px;
  color: var(--navy-900);
  line-height: 1.25;
  font-size: 1.24rem;
}
.service-card p { margin: 0; color: var(--slate-500); }

.government {
  color: white;
  background:
    radial-gradient(circle at 15% 0%, rgba(27,115,199,.24), transparent 25rem),
    var(--navy-950);
}
.government-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.government h2 { color: white; }
.government p { color: rgba(255,255,255,.72); }
.gov-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}
.gov-card h3 { margin-top: 0; font-size: 1.45rem; }
.gov-card ul { padding-left: 20px; color: rgba(255,255,255,.82); }
.gov-card li { margin: 11px 0; }
.status-note {
  margin: 25px 0 0 !important;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .9rem;
}

.about { background: var(--slate-100); }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.about-accent {
  background: var(--navy-900);
  color: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.about-accent span {
  display: block;
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  color: #84c5ff;
}
.about-accent p { margin-bottom: 0; color: rgba(255,255,255,.76); }
.about p:not(.eyebrow) { color: var(--slate-700); }
.mission {
  border-left: 4px solid var(--blue-500);
  padding-left: 18px;
  margin-top: 26px;
}

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact p { color: var(--slate-500); }
.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-600);
  font-weight: 800;
  word-break: break-word;
}
.contact-form {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 750;
  color: var(--navy-900);
  font-size: .93rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #c9d4df;
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
  color: var(--navy-950);
  background: white;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(27,115,199,.12);
  border-color: var(--blue-500);
}
.full { width: 100%; }
.form-note { margin: 12px 0 0 !important; font-size: .82rem; }

.site-footer {
  padding: 34px 0;
  background: #020b14;
  color: rgba(255,255,255,.72);
}
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.site-footer strong { color: white; }
.site-footer p { margin: 5px 0 0; }
.footer-right { text-align: right; display: grid; gap: 4px; font-size: .88rem; }
.footer-right a { color: #8ec9ff; }

@media (max-width: 980px) {
  .hero-grid, .government-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; min-height: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-accent { max-width: 520px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, var(--max)); }
  .nav-wrap { min-height: 70px; }
  .brand { width: 180px; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--slate-200);
    background: white;
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 800;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 13px;
    right: 13px;
    top: 68px;
    padding: 18px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 4px; }
  .nav-cta { border: 0; padding: 8px 4px; }
  .hero-grid { padding-top: 62px; padding-bottom: 62px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .logo-panel { min-height: 260px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .card-grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .service-card { min-height: auto; }
  .capability-strip { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}
