:root {
  --bg: #07111f;
  --bg-2: #0d1b2d;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --text: #142033;
  --muted: #5f6f83;
  --white: #ffffff;
  --line: rgba(20, 32, 51, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #1887d9;
  --blue-2: #48b8ff;
  --gold: #f2b84b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: white; padding: 10px 14px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand img { width: 220px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; color: var(--white); font-weight: 600; font-size: 0.96rem; }
.site-nav a { opacity: 0.88; transition: opacity 0.2s ease, color 0.2s ease; }
.site-nav a:hover { opacity: 1; color: var(--blue-2); }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(72, 184, 255, 0.55); border-radius: 999px; }
.menu-toggle { display: none; background: transparent; color: white; border: 1px solid var(--line-dark); border-radius: 10px; padding: 8px 11px; font-size: 1.35rem; }

.section { padding: 76px 0; }
.section-dark { background: var(--bg); color: var(--white); }
.section-muted { background: var(--surface-2); }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-weight: 800; text-transform: none; letter-spacing: 0.03em; font-size: 0.86rem; }
.section-dark .eyebrow, .hero .eyebrow { color: var(--blue-2); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.0rem, 3.9vw, 3.55rem); }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.75rem); }
h3 { font-size: 1.14rem; }
p { margin: 0; }

.hero { position: relative; overflow: hidden; min-height: 660px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(7,17,31,0.96), rgba(7,17,31,0.76)), url('../images/service-item.jpg') center/cover no-repeat; transform: scale(1.02); }
.hero::after { content: ''; position: absolute; width: 620px; height: 620px; right: -210px; top: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(24,135,217,0.38), transparent 62%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); gap: 46px; align-items: center; padding: 58px 0; }
.hero-subtitle { margin-top: 20px; max-width: 760px; font-size: clamp(1.02rem, 1.55vw, 1.22rem); color: rgba(255,255,255,0.82); }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: white; box-shadow: 0 14px 34px rgba(24,135,217,0.26); }
.btn-secondary { color: white; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }
.trust-row { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { border: 1px solid var(--line-dark); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); padding: 8px 11px; border-radius: 999px; font-size: 0.9rem; }
.hero-card { background: rgba(255,255,255,0.09); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.hero-card h2 { font-size: 1.32rem; margin-bottom: 12px; }
.hero-card p { color: rgba(255,255,255,0.78); margin-bottom: 18px; }
ul { margin: 0; padding-left: 20px; }
.hero-card li { margin: 8px 0; color: rgba(255,255,255,0.9); }

.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.two-col p { font-size: 1.03rem; color: var(--muted); }
.align-start { align-items: start; }
.align-start p + p { margin-top: 18px; }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-heading p:last-child { margin-top: 14px; color: var(--muted); font-size: 1.02rem; }
.section-heading.compact { margin-bottom: 34px; }
.cards { display: grid; gap: 22px; }
.five-cards { grid-template-columns: repeat(5, 1fr); }
.three-cards { grid-template-columns: repeat(3, 1fr); }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 34px rgba(20,32,51,0.06); }
.card-number { color: var(--blue); font-weight: 900; font-size: 0.86rem; letter-spacing: 0.08em; }
.card h3 { margin: 0 0 12px; }
.card p { color: var(--muted); }
.accent-card { background: linear-gradient(145deg, #07111f, #0f2944); color: white; border-color: rgba(72,184,255,0.32); }
.accent-card p { color: rgba(255,255,255,0.78); }

.feature-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.feature-grid p { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }
.offer-box { margin-top: 28px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.offer-box h3 { margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin: 10px 0; color: var(--muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.panel { border-radius: var(--radius); padding: 36px; }
.dark-panel { background: linear-gradient(145deg, var(--bg), #103457); color: white; box-shadow: var(--shadow); }
.dark-panel p { color: rgba(255,255,255,0.78); margin-bottom: 24px; }

.federal-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.federal-grid p { color: rgba(255,255,255,0.8); margin-top: 16px; font-size: 1.02rem; }
.naics-card { background: rgba(255,255,255,0.08); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 28px; }
.naics-card h3 { margin-bottom: 16px; }
.naics-card li { margin: 12px 0; color: rgba(255,255,255,0.84); }

.contact { background: linear-gradient(180deg, #fff, #f6f9fc); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.contact p { color: var(--muted); margin-top: 16px; font-size: 1.01rem; }
.contact-details { margin-top: 24px; }
.contact-details p { margin-top: 10px; }
.contact-details a { color: var(--blue); font-weight: 800; }
.contact-form { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20,32,51,0.1); padding: 28px; display: grid; gap: 12px; }
.contact-form label { font-weight: 800; color: var(--text); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(20,32,51,0.18); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: white; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(24,135,217,0.18); border-color: var(--blue); }
.form-note { font-size: 0.9rem !important; margin-top: 0 !important; }
.hp-field { display: none !important; }
.recaptcha-wrap { margin: 8px 0 2px; min-height: 78px; }

.site-footer { background: #050c16; color: white; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr; gap: 34px; }
.footer-logo { width: 180px; margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.7); }
.site-footer h3 { font-size: 1rem; margin-bottom: 12px; }
.site-footer a { display: block; color: rgba(255,255,255,0.76); margin: 8px 0; }
.site-footer a:hover { color: var(--blue-2); }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom a { margin: 0; }

@media (max-width: 1100px) {
  .five-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; inset: 78px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #07111f; border: 1px solid var(--line-dark); border-radius: 18px; padding: 14px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero { min-height: auto; }
  .hero-grid, .two-col, .feature-grid, .federal-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 86px 0 64px; }
  .three-cards, .five-cards, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 180px; }
  .hero-card, .card, .contact-form, .panel, .naics-card { padding: 22px; }
}
