body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #142033;
  background: #f3efe7;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 44px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #142033;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong {
  font-size: 1.16rem;
  letter-spacing: 0.01em;
}

.cta {
  border: 1px solid #2b6cb0;
  border-radius: 10px;
  background: #2b6cb0;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  font-weight: 700;
}

.cta.alt {
  background: transparent;
  color: #2b6cb0;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin: 22px 0 10px;
  line-height: 1.05;
}

p.lead {
  font-size: 1.08rem;
  color: #435066;
  max-width: 820px;
}

.grid {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #ccd8ea;
  border-radius: 12px;
  padding: 16px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: #4f5b70;
  line-height: 1.45;
}

.bottom {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

