:root {
  --navy: #0B2341;
  --navy-2: #17385F;
  --blue: #1E88E5;
  --steel: #5C6670;
  --ink: #172033;
  --muted: #5F6B7A;
  --line: #DCE3EA;
  --paper: #FFFFFF;
  --soft: #F5F8FB;
  --max: 1180px;
  --shadow: 0 16px 40px rgba(11,35,65,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 20px; top: 20px; z-index: 9999;
  padding: 10px 14px; background: #fff; color: #000;
  border-radius: 8px;
}
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,227,234,.9);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 82px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand img { width: 270px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 700; color: var(--navy); }
.site-nav a:hover, .site-nav a:focus { color: var(--blue); }
.menu-toggle {
  display: none; border: 0; background: transparent; font-size: 28px; color: var(--navy);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 20px; border-radius: 8px;
  font-weight: 800; text-decoration: none; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 24px rgba(30,136,229,.22);
}
.btn-primary:hover { background: #1477CB; }
.btn-secondary { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.btn-light { border-color: var(--line); color: var(--navy); background: #fff; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .82rem;
  color: var(--blue); font-weight: 900;
}
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(30,136,229,.22), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.hero:after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  min-height: 640px;
  display: grid; grid-template-columns: 1.25fr .75fr;
  align-items: center; gap: 60px;
  padding: 90px 0;
}
.hero h1 {
  margin: 10px 0 22px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero .lead {
  max-width: 760px; font-size: 1.22rem; color: #D7E1EB;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-panel {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow);
}
.hero-panel h2 { margin-top: 0; font-size: 1.45rem; }
.hero-panel ul { padding-left: 20px; margin-bottom: 0; color: #E4EBF2; }

.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading h2 {
  margin: 8px 0 14px; color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08;
}
.section-dark .section-heading h2 { color: #fff; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #D4DEE8; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; box-shadow: 0 8px 24px rgba(11,35,65,.05);
}
.card h3 { margin: 14px 0 8px; color: var(--navy); font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: var(--navy);
  font-weight: 900;
}
.assessment {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center;
}
.assessment-box {
  background: var(--navy); color: #fff; border-radius: 20px;
  padding: 36px; box-shadow: var(--shadow);
}
.assessment-score {
  display: flex; align-items: baseline; gap: 10px; margin: 20px 0;
}
.assessment-score strong { font-size: 4.8rem; line-height: 1; }
.assessment-score span { color: #BFD0E1; }
.score-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14);
}
.check-list { list-style: none; padding: 0; margin: 22px 0; }
.check-list li { position: relative; padding-left: 30px; margin: 10px 0; }
.check-list li:before {
  content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900;
}
.values .card { border-top: 4px solid var(--blue); }
.foundation {
  max-width: 920px; margin: 0 auto; text-align: center;
}
.foundation blockquote {
  margin: 30px auto 0; padding: 26px;
  border-left: 4px solid var(--blue);
  background: rgba(255,255,255,.06);
  text-align: left; border-radius: 0 12px 12px 0;
}
.cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; padding: 42px; border-radius: 18px;
  background: linear-gradient(135deg, #EAF3FC, #F7FAFD);
  border: 1px solid #D8E6F4;
}
.cta h2 { margin: 0 0 8px; color: var(--navy); }
.cta p { margin: 0; color: var(--muted); }

.site-footer { background: #07182C; color: #D5DFE9; padding: 50px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 40px;
}
.footer-logo { width: 240px; margin-bottom: 16px; }
.footer-title { color: #fff; font-weight: 900; margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; color: #D5DFE9; }
.footer-bottom {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .92rem; color: #AFC0D3;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; padding: 90px 0;
}
.page-hero h1 { margin: 8px 0 16px; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1; }
.page-hero p { max-width: 760px; font-size: 1.18rem; color: #D7E1EB; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.prose h2, .prose h3 { color: var(--navy); }
.prose p, .prose li { color: var(--muted); }
.contact-card {
  background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 30px;
}
.note {
  background: #F9FBFD; border-left: 4px solid var(--blue); padding: 18px 20px; border-radius: 0 10px 10px 0;
}
.small { font-size: .92rem; color: var(--muted); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-inner, .assessment, .content-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 82px;
    display: none; flex-direction: column; align-items: stretch;
    padding: 22px; background: #fff; border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { width: 100%; }
  .brand img { width: 220px; }
  .hero-inner { padding: 70px 0; gap: 32px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 66px 0; }
  .hero h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
