
:root {
  --navy: #0f2742;
  --navy-2: #163b63;
  --gold: #d9b45f;
  --gold-dark: #b7913e;
  --slate: #415064;
  --light: #f6f7f9;
  --white: #ffffff;
  --border: #dfe4ea;
  --shadow: 0 22px 55px rgba(15, 39, 66, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

img, svg { max-width: 100%; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 228, 234, 0.8);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(15, 39, 66, 0.18);
}

.logo-mark svg {
  width: 30px;
  height: 30px;
}

.logo span small {
  display: block;
  color: var(--slate);
  font-weight: 650;
  letter-spacing: 0;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #24344b;
  font-weight: 650;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-dark);
}

.mobile-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 9px 10px;
  color: var(--navy);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(217, 180, 95, .28);
}

.btn-primary:hover { background: #e4c16f; }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(15, 39, 66, .18);
}

.btn-outline {
  color: var(--navy);
  border-color: #c9d2de;
  background: var(--white);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(217,180,95,.24), transparent 36%),
    linear-gradient(135deg, #0f2742 0%, #163b63 54%, #102a47 100%);
  color: var(--white);
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

h1, h2, h3 {
  line-height: 1.08;
  margin: 0 0 16px;
  color: inherit;
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
  color: var(--navy);
}

h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero p {
  color: rgba(255,255,255,.86);
  font-size: 19px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.16);
}

.hero-card .metric {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.hero-card .metric:last-child { border-bottom: 0; }

.metric-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(217,180,95,.2);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.metric strong {
  display: block;
  font-size: 18px;
}

.metric span {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin-top: 2px;
}

.section {
  padding: 74px 0;
}

.section-muted {
  background: var(--light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--slate);
  font-size: 18px;
  margin: 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 14px 38px rgba(15, 39, 66, 0.06);
}

.card p {
  color: var(--slate);
  margin: 0;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(217, 180, 95, .16);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: #2d3c50;
}

.feature-list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 900;
  flex: 0 0 auto;
}

.band {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.band h2 { color: var(--white); }

.band p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

.stats {
  display: grid;
  gap: 14px;
}

.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.page-title {
  padding: 64px 0 36px;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  border-bottom: 1px solid var(--border);
}

.page-title p {
  color: var(--slate);
  font-size: 19px;
  max-width: 760px;
}

.breadcrumb {
  color: var(--gold-dark);
  font-weight: 750;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.naics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.naics span {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  color: #27364d;
  font-size: 14px;
}

.callout {
  border-left: 5px solid var(--gold);
  background: #fff9ea;
  padding: 22px 24px;
  border-radius: 14px;
  color: #29384d;
}

.contact-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel p, .contact-panel li {
  color: rgba(255,255,255,.82);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  padding: 15px 16px;
  border-radius: 14px;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: #27364d;
  font-weight: 700;
}

.form input, .form textarea {
  border: 1px solid #cdd6e2;
  border-radius: 13px;
  padding: 13px 14px;
  font: inherit;
  width: 100%;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  background: #0b1b2d;
  color: rgba(255,255,255,.76);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.footer strong {
  color: var(--white);
}

.footer a:hover { color: var(--gold); }

.small {
  font-size: 13px;
  color: #6b7687;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-grid,
  .grid-2,
  .grid-3,
  .band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 58px 0; }
  .section { padding: 54px 0; }
  .naics { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .logo span { font-size: 14px; }
  .logo span small { font-size: 11px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .band { padding: 26px; }
}
