* {
  box-sizing: border-box;
}

:root {
  --ink: #11263d;
  --ink-2: #173b5b;
  --muted: #66788a;
  --line: #dce5ec;
  --soft: #f4f7f9;
  --white: #ffffff;
  --accent: #d88f2d;
  --accent-dark: #b56d10;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1.25;
}

.brand-text span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
}

.hero {
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 85% 20%, rgba(216,143,45,.14), transparent 25%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
}

.btn-primary:hover {
  background: var(--ink-2);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-points span::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(17,38,61,.09);
}

.hero-card-top {
  padding: 22px 26px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.card-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
}

.card-list > div:last-child {
  border-bottom: 0;
}

.card-list b {
  color: var(--accent-dark);
  font-size: 12px;
}

.card-list span {
  font-size: 15px;
  font-weight: 600;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.solution-card .icon {
  margin-bottom: 30px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.solution-card p {
  color: var(--muted);
  font-size: 14px;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.eyebrow.light {
  color: #f1b35e;
}

.gov-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.gov-grid p {
  max-width: 690px;
  color: #c3ced8;
}

.gov-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}

.gov-panel ul {
  padding-left: 20px;
  margin: 20px 0 0;
}

.gov-panel li {
  margin-bottom: 12px;
  color: #dce4eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.contact-intro {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  margin-top: 34px;
}

.contact-details a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cad6df;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fbfcfd;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-wrap p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 4px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .split,
  .gov-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-text span {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .section {
    padding: 66px 0;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
  }
}

.ownership {
  margin-top: 8px !important;
  font-size: 11px !important;
  letter-spacing: .02em;
}
