
:root {
  --navy: #081426;
  --navy2: #0d1b2f;
  --blue: #2f80ed;
  --steel: #6f7f95;
  --light: #f5f7fb;
  --line: #dce4ef;
  --white: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background: #fff;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.02em;
  font-size: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #526174;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.main-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 610px;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .9;
}
.hero-inner {
  position: relative;
  padding: 120px 0 110px;
}
.eyebrow, .section-kicker {
  color: #5da8ff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 20px;
}
h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(46px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -.05em;
}
.hero-copy {
  max-width: 680px;
  color: #b8c5d8;
  font-size: 20px;
  line-height: 1.6;
  margin: 28px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  padding: 18px 26px;
  border: 1px solid transparent;
}
.btn.primary {
  background: #fff;
  color: var(--navy);
}
.btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.trust-row span {
  border: 1px solid rgba(255,255,255,.18);
  color: #b8c5d8;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section {
  padding: 86px 0;
}
.white { background: #fff; }
.light { background: var(--light); }
.dark {
  background: var(--navy2);
  color: #fff;
}
.two-col, .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 22px;
}
p {
  color: #5f6d80;
  font-size: 17px;
  line-height: 1.7;
}
.dark p { color: #b8c5d8; }
.center { text-align: center; }
.cards {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  background: #fff;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 270px;
}
.icon {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 36px;
}
.card h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
  margin: 0 0 14px;
}
.card p {
  font-size: 15px;
  margin: 0;
}
.checklist {
  display: grid;
  gap: 14px;
}
.checklist div {
  border: 1px solid rgba(255,255,255,.18);
  padding: 18px 20px;
  color: #d9e5f6;
  font-weight: 700;
}
.stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stats div {
  padding: 34px 24px;
  border-right: 1px solid var(--line);
}
.stats div:last-child { border-right: 0; }
.stats strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 12px;
}
.stats span {
  font-weight: 800;
  color: var(--navy);
}
.cta {
  background: linear-gradient(135deg, var(--navy), #132844);
  color: #fff;
}
.cta-box {
  text-align: center;
  max-width: 800px;
}
.cta p {
  color: #c6d2e4;
}
footer {
  background: #06101f;
  color: #98a8bd;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .two-col, .split, .cards, .stats {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .hero-inner { padding: 80px 0; }
  .footer-inner { flex-direction: column; }
}
