* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #142033;
  background: #ffffff;
  line-height: 1.65;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 820px; }
.header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e8edf3;
}
.nav {
  min-height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  color: #142033; text-decoration: none; font-weight: 800;
  letter-spacing: .04em; font-size: 14px;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  background: #2457d6; color: white; font-weight: 800;
}
nav { display: flex; gap: 28px; }
nav a { color: #526174; text-decoration: none; font-size: 14px; font-weight: 600; }
nav a:hover { color: #2457d6; }
.hero {
  min-height: 650px; display: flex; align-items: center;
  background: linear-gradient(135deg, #f6f9ff 0%, #fff 55%, #f3f6fb 100%);
}
.hero-inner { padding: 90px 0; }
.eyebrow {
  margin: 0 0 16px; color: #2457d6;
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
}
h1 {
  max-width: 850px; margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.02; letter-spacing: -.045em;
}
h2 {
  margin: 0 0 20px; font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.03em;
}
h3 { margin: 0 0 10px; font-size: 21px; }
.hero-copy {
  max-width: 700px; margin: 28px 0 34px;
  font-size: 19px; color: #526174;
}
.button {
  display: inline-block; padding: 14px 22px; border-radius: 8px;
  background: #2457d6; color: white; text-decoration: none; font-weight: 700;
}
.section { padding: 105px 0; }
.section-light { background: #f7f9fc; }
.section p { color: #5a687a; font-size: 17px; }
.cards {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  padding: 30px; background: white; border: 1px solid #e5eaf1;
  border-radius: 14px; box-shadow: 0 10px 30px rgba(20,32,51,.04);
}
.statement { background: #142033; color: white; }
.statement p { color: #c7d0dc; max-width: 720px; }
.statement .eyebrow { color: #8fb0ff; }
.contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center;
}
.contact-card {
  display: flex; flex-direction: column; gap: 7px;
  padding: 30px; border: 1px solid #e1e7ef; border-radius: 14px;
  background: #fafbfd;
}
.contact-card strong { font-size: 20px; }
.contact-card span { color: #637083; }
.contact-card a { margin-top: 10px; color: #2457d6; font-weight: 700; }
.footer { border-top: 1px solid #e8edf3; padding: 26px 0; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 20px;
  color: #718096; font-size: 13px;
}
@media (max-width: 760px) {
  .nav { padding: 10px 0; }
  nav { gap: 14px; }
  .hero { min-height: 560px; }
  .cards, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 75px 0; }
  .footer-inner { flex-direction: column; }
}
