
:root{
  --bg:#f5f7fb;
  --card:#ffffff;
  --text:#202534;
  --muted:#687083;
  --primary:#2957a4;
  --primary-dark:#1e4180;
  --accent:#e6eefc;
  --border:#dbe2ee;
  --shadow:0 8px 28px rgba(30,50,90,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.site-header{
  background:linear-gradient(135deg,#17376e,#2e63b8);
  color:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 4px 18px rgba(0,0,0,.12);
}
.header-inner{
  max-width:1180px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
}
.logo{font-weight:800;font-size:21px;white-space:nowrap}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.nav a{
  color:#fff;
  padding:8px 11px;
  border-radius:9px;
  font-size:14px;
  opacity:.95;
}
.nav a:hover{background:rgba(255,255,255,.14);text-decoration:none}
.hero{
  background:linear-gradient(135deg,#edf3ff,#ffffff);
  border-bottom:1px solid var(--border);
}
.hero-inner{
  max-width:1180px;
  margin:auto;
  padding:70px 20px 58px;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--primary);
  font-weight:800;
}
h1{font-size:46px;line-height:1.1;margin:12px 0 16px}
.hero p{max-width:760px;font-size:18px;color:#4f5870}
.container{max-width:1180px;margin:auto;padding:34px 20px 60px}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
}
.card h2,.card h3{margin-top:0}
.card p:last-child{margin-bottom:0}
.stat{
  display:flex;justify-content:space-between;gap:15px;
  padding:12px 0;border-bottom:1px solid var(--border)
}
.stat:last-child{border-bottom:0}
.badge{
  display:inline-block;padding:5px 10px;border-radius:999px;
  background:var(--accent);color:var(--primary);font-size:12px;font-weight:700;
}
.quote{
  border-left:4px solid var(--primary);
  padding:14px 18px;
  background:#f8faff;
  border-radius:0 12px 12px 0;
  color:#505a70;
}
.list{padding-left:20px}
.site-footer{
  background:#142441;color:#cbd5e8;margin-top:40px
}
.footer-inner{
  max-width:1180px;margin:auto;padding:28px 20px;
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap
}
.footer-inner a{color:#dce7ff}
.backtop{font-size:13px}
@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr}
  h1{font-size:38px}
  .nav{display:none}
}
@media(max-width:620px){
  .grid{grid-template-columns:1fr}
  .hero-inner{padding-top:44px}
  h1{font-size:34px}
}
