*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#172033;
  background:#f5f7fb;
}
.hero{
  min-height:92vh;
  padding:28px;
  background:
    radial-gradient(circle at 75% 20%, rgba(49,105,180,.22), transparent 30rem),
    linear-gradient(135deg,#ffffff 0%,#eaf0f8 55%,#dbe6f3 100%);
  display:flex;
  flex-direction:column;
}
.nav{
  display:flex;
  justify-content:flex-end;
  gap:20px;
  max-width:1180px;
  width:100%;
  margin:0 auto;
}
.nav a{
  color:#28364d;
  text-decoration:none;
  font-weight:600;
  font-size:.95rem;
}
.nav a:hover{text-decoration:underline}
.hero-content{
  max-width:1180px;
  width:100%;
  margin:auto;
  padding:80px 0;
}
.eyebrow{
  color:#315f9d;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  font-size:.86rem;
}
h1{
  margin:12px 0 20px;
  max-width:900px;
  font-size:clamp(3.2rem,9vw,7.6rem);
  line-height:.96;
  letter-spacing:-.06em;
}
.lead{
  max-width:760px;
  color:#56657c;
  font-size:clamp(1.08rem,2vw,1.35rem);
  line-height:1.65;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}
.primary{background:#1c4f91;color:white}
.secondary{background:white;color:#1c4f91;border:1px solid rgba(28,79,145,.25)}
main{max-width:1180px;margin:0 auto;padding:58px 28px}
.section{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:44px;
  align-items:start;
  margin:48px 0;
  padding:38px;
  border-radius:28px;
  background:white;
  box-shadow:0 18px 50px rgba(23,32,51,.08);
}
.section-label{
  color:#315f9d;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:800;
}
h2{margin:0;font-size:clamp(2rem,4vw,3.3rem);letter-spacing:-.04em}
.section p{line-height:1.75;color:#56657c;font-size:1.05rem}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin:48px 0;
}
.card{
  min-height:230px;
  padding:28px;
  border-radius:28px;
  background:white;
  box-shadow:0 18px 50px rgba(23,32,51,.08);
  border:1px solid rgba(23,32,51,.06);
}
.card h3{margin:0 0 14px;font-size:1.35rem}
.card p{color:#607086;line-height:1.65}
.card.highlight{
  background:linear-gradient(135deg,#1c4f91,#3c78c2);
  color:white;
}
.card.highlight p{color:rgba(255,255,255,.82)}
.card.highlight a{color:white;font-weight:800}
.footer{
  max-width:1180px;
  margin:0 auto;
  padding:36px 28px 52px;
  color:#69778c;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.footer a{color:#315f9d;text-decoration:none;font-weight:700}
.footer p{width:100%;margin:4px 0 0}
.subpage{
  max-width:860px;
  margin:0 auto;
  padding:70px 28px;
  line-height:1.7;
}
.subpage h1{font-size:clamp(2.5rem,7vw,5rem)}
.back{display:inline-block;margin-top:30px;color:#315f9d;font-weight:700}
@media(max-width:850px){
  .nav{justify-content:flex-start;overflow:auto}
  .section{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .hero{min-height:auto}
}
