:root {
  --navy: #061d3d;
  --navy-2: #082b5d;
  --gold: #e59a10;
  --gold-2: #ffbd2e;
  --ink: #0d1b32;
  --muted: #667085;
  --line: #d9e2ef;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 29, 61, 0.14);
}

* { 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(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(6, 29, 61, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(6, 29, 61, 0.1); }
.brand img { width: min(230px, 48vw); }
.site-nav { display: flex; gap: 26px; margin-left: auto; font-size: 14px; font-weight: 800; color: #26364f; }
.site-nav a:hover { color: var(--gold); }
.header-cta, .button, form button {
  border-radius: 12px;
  padding: 13px 19px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(6, 29, 61, 0.12);
}
.header-cta, .button.primary, form button { background: var(--navy); color: #fff; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(100deg, #fff 0%, #f7fbff 42%, #061d3d 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.16) 59%, rgba(5,25,55,0.34) 100%),
    url("assets/hero-banner.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-content {
  position: relative;
  max-width: 760px;
  padding: 130px clamp(22px, 5vw, 90px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1, .section h2, .cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.lead { max-width: 650px; color: #3c4a61; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button.secondary { border: 1px solid rgba(6,29,61,0.18); background: rgba(255,255,255,0.88); color: var(--navy); }
.button:hover, .header-cta:hover, form button:hover { transform: translateY(-1px); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 90px);
  overflow: hidden;
  background: var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(-70px);
}
.trust-strip div { background: #fff; padding: 30px; }
.value-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 14px; border-radius: 50%; background: var(--navy); color: var(--gold-2); font-weight: 900; }
.trust-strip strong { display: block; color: var(--navy); font-size: 18px; }
.trust-strip span:last-child { display: block; margin-top: 8px; color: var(--muted); line-height: 1.55; }

.section { padding: 70px clamp(22px, 5vw, 90px); }
.section-heading { max-width: 840px; margin-bottom: 36px; }
.section h2 { font-size: clamp(34px, 4vw, 56px); }
.cards, .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards article, .steps div {
  padding: 30px;
  border: 1px solid rgba(6,29,61,0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 14px 36px rgba(6,29,61,0.06);
}
.cards span { color: var(--gold); font-weight: 900; }
.cards h3, .steps h3 { margin: 18px 0 10px; color: var(--navy); }
.cards p, .steps p, .split p { color: var(--muted); line-height: 1.65; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 20px clamp(22px, 5vw, 90px);
  padding: 70px;
  border-radius: 32px;
  background: radial-gradient(circle at 80% 10%, rgba(229,154,16,0.25), transparent 28%), linear-gradient(135deg, var(--navy), #031225);
  color: #fff;
}
.split h2, .split .eyebrow { color: #fff; }
.split p { color: #d7e3f5; font-size: 19px; }
.steps b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #fff; }

.cta {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 40px;
  margin: 50px clamp(22px, 5vw, 90px);
  padding: 56px;
  border: 1px solid rgba(6,29,61,0.09);
  border-radius: 32px;
  background: linear-gradient(135deg, #f9fbff, #eaf2fb);
}
form { display: grid; gap: 12px; }
input, textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(6,29,61,0.16);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
form button { border: 0; cursor: pointer; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px clamp(22px, 5vw, 90px); background: #031225; color: #fff; }
footer span { color: #9fb4d0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .menu-toggle { display: grid; gap: 5px; margin-left: auto; border: 0; background: transparent; padding: 8px; }
  .menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); }
  .site-nav { display: none; order: 4; width: 100%; margin-left: 0; padding-top: 10px; }
  .site-nav.is-open { display: grid; gap: 14px; }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 82px; }
  .trust-strip, .cards, .steps, .split, .cta { grid-template-columns: 1fr; }
  .trust-strip { transform: none; margin-top: 22px; }
  .split { padding: 36px; }
  .cta { margin-inline: 22px; padding: 32px; }
  footer { display: block; }
  footer span { display: block; margin-top: 8px; }
}
