:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #122033;
  --muted: #5b6880;
  --line: #dbe2ec;
  --accent: #0d5bd7;
  --accent-dark: #0a47a8;
  --success: #0e7c66;
  --shadow: 0 16px 40px rgba(11, 26, 50, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* { 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(--text);
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.15rem; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(13, 91, 215, 0.08);
  color: var(--accent);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.page-title { font-size: clamp(2.3rem, 5vw, 4rem); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); max-width: 14ch; }
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 65ch; }
.grid { display: grid; gap: 24px; }
.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: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.card h3 { font-size: 1.2rem; }
.muted { color: var(--muted); }
.kicker { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
}
.btn-secondary { background: transparent; border-color: var(--line); }
.btn-secondary:hover { background: var(--surface-2); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(251, 252, 254, 0.82);
  border-bottom: 1px solid rgba(219, 226, 236, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-tag {
  color: var(--muted);
  font-size: .82rem;
  margin-top: .35rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.55rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  padding: .35rem .15rem;
}
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.hero {
  padding: 92px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -.045em;
  margin-bottom: 1rem;
}
.hero-copy .sub {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-panel {
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-panel .metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 1.25rem; }
.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.metric .label { color: var(--muted); font-size: .86rem; }
.metric .value { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.list-clean { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 12px; }
.list-clean li { display: flex; gap: .75rem; align-items: flex-start; }
.list-clean li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: .5rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}
.band {
  background: linear-gradient(135deg, #0f2340 0%, #162f55 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.band .muted { color: rgba(255,255,255,.78); }
.band {
  color: #ffffff;
}
.band p,
.band li {
  color: rgba(255,255,255,0.85);
}
.check-list li {
  color: rgba(255,255,255,0.9);
}
.pillars .card h3, .service-list .card h3 { margin-bottom: .6rem; }
.quote {
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.cta-box {
  background: linear-gradient(135deg, #eaf2ff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.check-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  font-weight: 800;
  color: var(--success);
}
.tablet {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.steps { counter-reset: step; display: grid; gap: 18px; }
.steps .step {
  position: relative;
  padding: 24px 24px 24px 74px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 91, 215, .12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.form-card {
  max-width: 760px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label { display: block; font-weight: 700; margin-bottom: .4rem; }
input, textarea, select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--text);
}
textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .92rem; }
.alert {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(14,124,102,.08);
  color: var(--success);
  display: none;
}
.site-footer {
  padding: 36px 0 54px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
.footer-links { display: grid; gap: .75rem; }
.small { font-size: .92rem; }
.hero-mini {
  padding: 72px 0 34px;
}
.hero-mini .page-title { max-width: 14ch; }
.banner-note {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 980px) {
  .hero-grid, .split, .grid-4 { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251,252,254,.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 1rem 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 0; }
  .site-nav .btn { margin-top: .75rem; }
  .form-grid { grid-template-columns: 1fr; }
}
/* FIX: CTA button text color in nav */
.site-nav a.btn-primary {
  color: #ffffff !important;
}
