:root {
  --navy-950: #061f4f;
  --navy-900: #082f75;
  --navy-800: #0b3f91;
  --blue-700: #1251ad;
  --blue-600: #1d62c4;
  --blue-200: #b9c9f4;
  --blue-100: #eaf0ff;
  --gold-500: #edae2b;
  --gold-400: #f4bf4d;
  --gold-100: #fff4d6;
  --ink: #10213f;
  --muted: #5b6680;
  --line: #dbe2ef;
  --soft: #f6f8fc;
  --white: #fff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(6, 31, 79, .12);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
svg { width: 1.15em; height: 1.15em; fill: currentColor; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.utility-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .86);
  font-size: .83rem;
}
.utility-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.utility-inner strong { color: var(--gold-400); }
.utility-inner a {
  margin-left: auto;
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.utility-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(8, 47, 117, .08);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(6, 31, 79, .08); }

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 42px;
}
.brand { display: block; width: 190px; flex: 0 0 auto; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
.site-nav > a {
  text-decoration: none;
  font-weight: 750;
  font-size: .94rem;
  color: var(--navy-900);
  position: relative;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-500);
  transition: right .2s ease;
}
.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after { right: 0; }

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .88rem !important; }
.button-gold {
  background: var(--gold-500);
  color: var(--navy-950) !important;
  box-shadow: 0 9px 25px rgba(237, 174, 43, .25);
}
.button-gold:hover { background: var(--gold-400); box-shadow: 0 13px 30px rgba(237, 174, 43, .32); }
.button-outline { color: white; border-color: rgba(255,255,255,.45); background: transparent; }
.button-outline:hover { border-color: white; background: rgba(255,255,255,.08); }
.button-light { background: white; color: var(--navy-900); }
.button-navy { background: var(--navy-900); color: white; }
.button-outline-dark { color: var(--navy-900); border-color: var(--navy-900); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 850;
  text-decoration: none;
}
.text-link span { color: var(--gold-500); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-400); }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 70% 15%, rgba(44, 102, 201, .35), transparent 32%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 62%, #0c469c 100%);
  padding: clamp(68px, 8vw, 112px) 0 95px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent 30%, black 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: clamp(48px, 8vw, 95px);
  align-items: center;
}
.hero h1 { max-width: 700px; margin-bottom: 24px; }
.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 40px; }
.hero-proof {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
}
.hero-proof li {
  min-width: 140px;
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-proof li:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: white; font-size: 1.06rem; }
.hero-proof span { color: rgba(255,255,255,.65); font-size: .82rem; }

.hero-visual { position: relative; padding: 18px 0 30px 24px; }
.hero-photo-frame {
  position: relative;
  border-radius: 160px 160px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.33);
  border: 8px solid rgba(255,255,255,.13);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -100px 100px rgba(6,31,79,.27);
}
.hero-photo-frame img { width: 100%; aspect-ratio: .88 / 1; object-fit: cover; }
.hero-visual::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 78%;
  height: 78%;
  border: 3px solid var(--gold-500);
  border-radius: 160px 160px 24px 24px;
  transform: translate(-8px, -8px);
}
.hero-note {
  position: absolute;
  left: -34px;
  right: -24px;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  color: var(--ink);
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: .91rem;
  line-height: 1.35;
}
.hero-note-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--gold-500);
  font-weight: 900;
}
.hero-note strong { color: var(--navy-900); }
.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -74px;
  height: 115px;
  border-radius: 50% 50% 0 0;
  background: white;
  transform: rotate(-1deg);
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: white;
  padding: 18px 0 26px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(8,47,117,.06);
  border-radius: 14px;
  overflow: hidden;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-icon {
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.trust-grid p { margin: 0; font-size: .83rem; line-height: 1.35; }
.trust-grid strong { color: var(--navy-900); }

.section { padding: clamp(75px, 9vw, 120px) 0; }
.section-soft { background: var(--soft); }
.section-navy { background: var(--navy-950); color: white; }
.section-navy p { color: rgba(255,255,255,.68); }
.section-heading { margin-bottom: 48px; }
.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 70px;
  align-items: end;
}
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { font-size: 1.08rem; margin: 0; }
.centered-heading { text-align: center; max-width: 800px; margin-inline: auto; }
.centered-heading > p:last-child { max-width: 650px; margin-inline: auto; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 54px 58px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.service-row:hover { background: var(--soft); padding-left: 18px; padding-right: 18px; }
.service-number { color: var(--blue-200); font-weight: 900; }
.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--gold-100);
}
.service-icon svg { width: 26px; height: 26px; }
.service-row h3 { margin: 0 0 5px; color: var(--navy-900); }
.service-row p { margin: 0; font-size: .94rem; }
.service-row > a { text-decoration: none; font-weight: 850; color: var(--navy-800); white-space: nowrap; }
.service-row > a span { color: var(--gold-500); margin-left: 5px; }
