.public-hero {
  padding: clamp(64px, 9vw, 112px) 0;
  background: #12172b;
  color: #fff;
}

.public-hero .wrap {
  text-align: center;
}

.public-hero h1 {
  max-width: 18ch;
  margin-inline: auto;
}

.public-hero .service-intro {
  max-width: 66ch;
  margin: 22px auto 0;
  color: #d9dce8;
  font-size: clamp(17px, 2vw, 20px);
}

.public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.public-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  color: #202b6b;
  font-weight: 800;
  text-decoration: none;
}

.public-cta:hover {
  background: #eef0ff;
  color: #202b6b;
}

.public-cta.secondary {
  background: transparent;
  color: #fff;
}

.public-cta.secondary:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.proof-item {
  padding: 28px;
  background: #fff;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-item p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfd2da;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font: 800 15px Inter, sans-serif;
  cursor: pointer;
}

.contact-form button:hover {
  background: #272d83;
}

.error-code {
  margin: 0 0 10px;
  color: #bfc3ff;
  font-size: clamp(64px, 14vw, 132px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
}

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