:root {
  color: #1f2b27;
  background:
    linear-gradient(90deg, rgba(31, 43, 39, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 43, 39, 0.05) 1px, transparent 1px),
    #f5f8f3;
  background-size: 28px 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.page {
  width: min(1080px, calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0 42px;
}

.hero,
.section {
  border: 1px solid rgba(93, 113, 100, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 250, 0.93);
  box-shadow: 0 18px 44px rgba(47, 68, 60, 0.12);
}

.hero {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 54px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #68786f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin: 0;
  color: #1f2b27;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  margin: 0;
  color: #5f7067;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  background: #203244;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  background: #eff6ff;
  color: #203244;
}

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

.card,
.section {
  padding: 20px;
}

.card {
  border: 1px solid rgba(93, 113, 100, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: #203244;
  font-size: 18px;
}

.card p,
.section p,
.section li {
  color: #5f7067;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.section {
  margin-top: 16px;
}

h2 {
  margin: 0 0 12px;
  color: #203244;
  font-size: 25px;
  letter-spacing: 0;
}

ol,
ul {
  margin: 0;
  padding-left: 22px;
}

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

.links a {
  color: #315a86;
  font-weight: 900;
  text-decoration: none;
}

footer {
  padding: 24px 0 0;
  color: #718078;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
