:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-muted: #eef3ff;
  --text: #102144;
  --text-dim: #4d5f85;
  --brand: #2454ff;
  --brand-dark: #163ac6;
  --accent: #00c7b1;
  --border: #d5dff3;
  --shadow: 0 16px 40px rgba(16, 33, 68, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 248, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 25px rgba(10, 20, 45, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.7px;
}

.brand-sub {
  font-weight: 600;
  color: var(--text);
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.site-nav a {
  padding: 8px 2px;
  font-weight: 600;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  border-color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-solid {
  background: linear-gradient(135deg, var(--brand), #2e8aff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(36, 84, 255, 0.35);
}

.btn-solid:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(36, 84, 255, 0.08);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

h3 {
  margin: 0 0 10px;
}

.lead {
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 14px;
}

.quick-contact {
  display: flex;
  gap: 20px;
}

.quick-contact a {
  color: var(--brand);
  font-weight: 600;
}

.hero-panel {
  background: linear-gradient(155deg, #0e245e 0%, #1a3da4 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.stats {
  padding-bottom: 20px;
}

.stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--brand);
}

.value-link {
  color: var(--brand);
}

.value-link:hover {
  text-decoration: underline;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--brand);
}

.text-link:hover {
  text-decoration: underline;
}

.anchor-point {
  scroll-margin-top: 96px;
}

.section {
  padding: 70px 0;
}

.section.muted {
  background: var(--surface-muted);
}

.section-head {
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(9, 22, 48, 0.04);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.timeline-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.timeline-item span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  background: var(--brand);
}

.cta {
  background: linear-gradient(160deg, #132b76, #2454ff);
  color: #fff;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inner-page .page-hero {
  padding: 64px 0 14px;
}

.contact-card .btn {
  margin-top: 10px;
}

.site-footer {
  background: #0c1735;
  color: #d8e1ff;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 5px 0;
  color: #d8e1ff;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(216, 225, 255, 0.2);
  margin-top: 28px;
  padding: 18px 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 4%;
  }

  .site-nav a {
    padding: 12px 6px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .hero-grid,
  .card-grid.two,
  .card-grid.three,
  .split,
  .timeline,
  .stat-grid,
  .footer-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    display: grid;
  }
}
