:root {
  --ink: #17232d;
  --ink-2: #3b4c59;
  --paper: #f2f6f9;
  --paper-2: #e5edf3;
  --white: #ffffff;
  --hero: #10171b;
  --hero-2: #172733;
  --accent: #4f92cf;
  --accent-dark: #2b669c;
  --line: #c5d1da;
  --line-dark: #385064;
  --ok: #1f6b4f;
  --danger: #8b2f2f;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(20, 27, 31, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
img, svg, canvas { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
}
.nav {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 760;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}
.brand-mark { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: #eef1ee;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
}
.nav-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-contact {
  border: 1px solid rgba(255,255,255,0.45);
  padding: 9px 14px;
  border-radius: 7px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero);
  color: #fff;
  padding: 132px 0 82px;
  min-height: 760px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.hero-grid {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 4;
}
.hero-copy { padding-top: 54px; max-width: 650px; }
.eyebrow {
  margin: 0 0 19px;
  color: #d7d9d7;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; letter-spacing: -0.025em; }
h1 {
  font-size: clamp(3.15rem, 7vw, 6.3rem);
  line-height: 0.98;
  max-width: 760px;
  margin-bottom: 26px;
  font-weight: 780;
}
.hero-lead {
  max-width: 630px;
  color: #d7ddd9;
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
  margin: 0 0 28px;
}
.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #f3f4f1;
  font-size: 0.96rem;
}
.hero-points li { display: flex; gap: 12px; align-items: baseline; }
.hero-points li::before { content: "•"; color: var(--accent); font-weight: 900; }

.globe-wrap {
  position: absolute;
  width: 760px;
  height: 760px;
  left: max(24px, calc(50% - 470px));
  top: -18px;
  opacity: 0.74;
  z-index: 1;
  pointer-events: none;
  background: #10171b;
}
.globe-frame {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #10171b;
  color-scheme: dark;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(16,23,27,0.58);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M0 0H72M0 24H72M0 48H72M0 72H72M0 0V72M24 0V72M48 0V72M72 0V72' stroke='%23579ad6' stroke-width='1' stroke-opacity='0.10'/%3E%3Ccircle cx='24' cy='24' r='1' fill='%23579ad6' fill-opacity='0.15'/%3E%3Ccircle cx='48' cy='48' r='1' fill='%23579ad6' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.contact-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  z-index: 6;
}
.contact-panel h2 { font-size: 1.55rem; margin-bottom: 7px; }
.contact-panel > p { margin: 0 0 20px; color: var(--ink-2); font-size: 0.94rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 0.82rem; font-weight: 720; color: #27343b; }
input, textarea, select {
  width: 100%;
  border: 1px solid #b7c5cf;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 11px 12px;
  min-height: 44px;
}
textarea { min-height: 94px; resize: vertical; }
input:hover, textarea:hover, select:hover { border-color: #7892a6; }
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.79rem;
  color: #49555b;
}
.consent input { width: 17px; min-height: 17px; margin-top: 3px; }
.privacy-warning {
  background: #eaf2f8;
  border-left: 3px solid var(--accent);
  padding: 11px 12px;
  font-size: 0.78rem;
  color: #425563;
  margin-top: 2px;
}
.primary-btn {
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  min-height: 46px;
  font-weight: 800;
}
.primary-btn:hover { background: #68a7dd; }
.primary-btn:active { transform: translateY(1px); }
.form-status { min-height: 22px; margin: 10px 0 0; font-size: 0.84rem; }
.form-status.success { color: var(--ok); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.section { padding: 92px 0; }
.section.alt { background: var(--white); }
.section.dark { background: #16232d; color: #f3f3ef; }
.section-inner { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  font-size: 0.77rem;
  color: var(--accent-dark);
}
.dark .section-kicker { color: #79b9eb; }
.section h2 { font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.05; max-width: 820px; margin-bottom: 25px; }
.section-intro { max-width: 760px; font-size: 1.08rem; color: var(--ink-2); margin: 0; }
.dark .section-intro { color: #cbd1cf; }

.section.dark,
.site-footer {
  position: relative;
  overflow: hidden;
}

.section.dark::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M0 0H72M0 24H72M0 48H72M0 72H72M0 0V72M24 0V72M48 0V72M72 0V72' stroke='%23579ad6' stroke-width='1' stroke-opacity='0.10'/%3E%3Ccircle cx='24' cy='24' r='1' fill='%23579ad6' fill-opacity='0.16'/%3E%3Ccircle cx='48' cy='48' r='1' fill='%23579ad6' fill-opacity='0.16'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  opacity: 0.9;
}

.section.dark > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.trust-stripe {
  background: #edf3f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  padding: 24px 18px 24px 0;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.trust-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.coverage-head {
  margin-bottom: 36px;
}

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

.coverage-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}

.coverage-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.coverage-card p {
  margin: 0 0 14px;
  color: var(--ink-2);
}

.coverage-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.coverage-card li + li {
  margin-top: 6px;
}

.coverage-strip {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #c7d6e2;
  border-radius: 999px;
  background: #f8fbfd;
  color: #26445f;
  font-size: 0.9rem;
  font-weight: 700;
}


.start-paths {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.start-path {
  display: grid;
  grid-template-columns: 92px minmax(220px, 0.72fr) minmax(0, 1.4fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.start-label {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.start-path h3 { margin: 0; font-size: 1.15rem; }
.start-path p { margin: 0; color: var(--ink-2); }

.process-list { margin-top: 52px; border-top: 1px solid var(--line); }
.process-row {
  display: grid;
  grid-template-columns: 92px minmax(200px, 0.7fr) minmax(0, 1.45fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-num { font-weight: 820; color: var(--accent-dark); font-size: 0.9rem; }
.process-row h3 { margin: 0; font-size: 1.15rem; }
.process-row p { margin: 0; color: var(--ink-2); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}
.fact-list { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fact-list li { padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service h3 { margin: 0; font-size: 1.12rem; }
.service p { margin: 0; color: var(--ink-2); }

.proof-strip {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.proof-item { padding: 24px 24px 24px 0; }
.proof-item + .proof-item { border-left: 1px solid var(--line-dark); padding-left: 28px; }
.proof-item strong { display: block; margin-bottom: 6px; color: #fff; }
.proof-item span { color: #c7cdca; }

.faq { margin-top: 50px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 760; font-size: 1.02rem; }
details p { max-width: 860px; color: var(--ink-2); margin: 13px 0 2px; }

.final-cta { background: #3f7fb8; color: #ffffff; }
.final-cta .section-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: end; }
.final-cta h2 { margin-bottom: 0; }
.cta-link {
  justify-self: end;
  display: inline-block;
  text-decoration: none;
  border: 2px solid #d9e9f6;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 820;
}
.cta-link:hover { background: #0f2a3d; color: #fff; border-color: #0f2a3d; }

.site-footer { background: #0f1519; color: #cbd0ce; padding: 34px 0; }
.footer-inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  font-size: 0.86rem;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }

.legal-page { background: var(--paper); }
.legal-header { background: #10171b; color: #fff; padding: 26px 0; }
.legal-header .inner, .legal-main, .legal-footer .inner { width: min(calc(100% - 36px), 900px); margin: 0 auto; }
.legal-header a { color: #fff; text-decoration: none; font-weight: 800; }
.legal-main { padding: 70px 0 90px; }
.legal-main h1 { color: var(--ink); font-size: clamp(2.6rem, 7vw, 4.8rem); margin-bottom: 10px; }
.legal-main h2 { font-size: 1.5rem; margin: 38px 0 10px; }
.legal-main p, .legal-main li { color: #36434a; }
.legal-main ul { padding-left: 22px; }
.legal-note { border-left: 3px solid var(--accent); padding: 12px 15px; background: #e7f0f7; }
.legal-footer { background: #10171b; color: #cbd0ce; padding: 28px 0; font-size: 0.86rem; }

@media (max-width: 980px) {
  .trust-inner, .coverage-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .contact-panel { max-width: 720px; }
  .globe-wrap { left: max(10px, calc(50% - 390px)); top: 28px; width: 700px; height: 700px; opacity: 0.58; }
  .hero-shade { background-color: rgba(16,23,27,0.70); }
  .split, .final-cta .section-inner { grid-template-columns: 1fr; gap: 38px; }
  .cta-link { justify-self: start; }
}

@media (max-width: 720px) {
  .trust-inner, .coverage-grid { grid-template-columns: 1fr; }
  .trust-item { padding-right: 0; }
  .trust-item + .trust-item { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .nav { min-height: 68px; }
  .nav-links a:not(.nav-contact) { display: none; }
  .hero { padding-top: 98px; padding-bottom: 54px; }
  .hero-copy { padding-top: 30px; }
  h1 { font-size: clamp(3.05rem, 17vw, 4.9rem); }
  .contact-panel { padding: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .section { padding: 66px 0; }
  .process-row, .start-path { grid-template-columns: 54px 1fr; gap: 14px; }
  .process-row p, .start-path p { grid-column: 2; }
  .service { grid-template-columns: 1fr; gap: 8px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .globe-wrap { left: -105px; top: 24px; width: 650px; height: 650px; opacity: 0.38; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .globe-frame { display: none; }
}
.gov-disclaimer { margin-top: 20px; color: #59636a; font-size: 0.9rem; }
.legal-brand-accent { color: var(--accent); }
.legal-return { color: #fff; }
