* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #17212b;
  background: #f6f8fb;
  line-height: 1.55;
}

a {
  color: #0b69b7;
}

.topbar {
  background: #0f1f2e;
  color: #fff;
  border-bottom: 4px solid #24a4d8;
}

.topbar-inner,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  color: #dcecf7;
  text-decoration: none;
}

.hero {
  padding: 64px 0 46px;
  background: #fff;
}

.eyebrow {
  color: #0b69b7;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  margin: 12px 0 18px;
  max-width: 920px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.lead {
  max-width: 820px;
  font-size: 20px;
  color: #4b5a67;
}

.actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #0b69b7;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  background: #e8eef4;
  color: #17212b;
}

main section {
  padding: 44px 0;
}

section:nth-child(even) {
  background: #fff;
}

h2 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #dce4ec;
  border-radius: 8px;
  padding: 22px;
}

section:nth-child(even) .card {
  background: #f6f8fb;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin: 8px 0;
}

.contact-band {
  background: #0f1f2e;
  color: #fff;
}

.contact-band a {
  color: #fff;
}

.footer {
  padding: 28px 0;
  background: #08131d;
  color: #c9d6e2;
  font-size: 14px;
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }
}
