:root {
  --navy: #0b1f3a;
  --blue: #1f6fff;
  --teal: #1f9d8a;
  --gold: #c79a2b;
  --ink: #17202c;
  --muted: #647085;
  --line: rgba(11, 31, 58, 0.12);
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(11, 31, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand img { height: 54px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  border-color: var(--line);
  background: var(--soft);
}
.nav-links .cta {
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 25px rgba(11, 31, 58, 0.18);
}
.nav-links .cta:hover { background: var(--blue); color: white; }

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero--compact { min-height: 48vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.95) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,31,58,0.90), rgba(11,31,58,0.58), rgba(11,31,58,0.18));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0;
}
.eyebrow {
  display: inline-flex;
  color: #c7f5e9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 22px 0;
  max-width: 850px;
}
.hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: white; color: var(--navy); }
.btn-primary:hover { background: #e9f3ff; }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.32); color: white; }
.btn-secondary:hover { background: rgba(255,255,255,0.12); color: white; }

.section { padding: 84px 22px; }
.section.soft { background: var(--soft); }
.container { width: min(1180px, 100%); margin: 0 auto; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.kicker { color: var(--teal); font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.045em; margin: 10px 0 16px; }
h3 { color: var(--navy); font-size: 1.35rem; line-height: 1.25; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 820px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(11,31,58,0.06);
}
.card-accent { border-top: 4px solid var(--teal); }
.card img.icon { width: 70px; height: 70px; object-fit: contain; margin-bottom: 18px; }
.image-card { overflow: hidden; padding: 0; }
.image-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.image-card .body { padding: 24px; }
.stat-card { background: linear-gradient(135deg, var(--navy), #123a66); color: white; }
.stat-card h3, .stat-card p { color: white; }

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center; }
.panel {
  background: white;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li { position: relative; padding-left: 28px; margin: 12px 0; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 10px; height: 10px; background: var(--teal); border-radius: 999px; }

.contact-strip {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-strip h2 { color: white; margin: 0 0 8px; }
.contact-strip p { color: rgba(255,255,255,0.82); margin: 0; }

.footer {
  background: #071426;
  color: rgba(255,255,255,0.78);
  padding: 54px 22px;
}
.footer h3 { color: white; }
.footer a { color: #c7f5e9; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer-logo { height: 64px; margin-bottom: 14px; }
.small { font-size: 0.9rem; color: rgba(255,255,255,0.58); }

@media (max-width: 900px) {
  .nav-shell { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .grid-2, .grid-3, .grid-4, .split, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 18px; }
  .hero-content { padding: 72px 0; }
}

/* Mobile usability: keep the full menu in the document flow instead of sticky overlay */
@media (max-width: 900px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }
}
