.page-hero--contact {
  background:
    radial-gradient(circle at top left, rgba(18, 56, 91, 0.1), transparent 26%),
    linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
}

.hidden-botcheck {
  display: none !important;
}

.contact-submit {
  position: relative;
  min-width: 160px;
}

.contact-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-submit__loading {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: contact-spin 0.8s linear infinite;
}

.contact-submit.is-loading .contact-submit__text {
  opacity: 0.72;
}

.contact-submit.is-loading .contact-submit__loading {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.contact-form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form-status.is-success {
  color: #0f7b45;
}

.contact-form-status.is-error {
  color: #b42318;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-quick-compact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-main-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-main-card__content h3 {
  margin-bottom: 8px;
}

.contact-main-card__content p {
  margin-bottom: 16px;
  color: #666;
}

.contact-main-card__qr {
  min-width: 110px;
  text-align: center;
}

.contact-main-card__qr img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.contact-main-card__qr span {
  font-size: 13px;
  color: #666;
}

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

.contact-side-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-side-card strong {
  margin-bottom: 6px;
}

.contact-side-card span {
  font-size: 14px;
  color: #666;
}

@media (max-width: 900px) {
  .contact-quick-compact {
    grid-template-columns: 1fr;
  }

  .contact-main-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-main-card__qr {
    text-align: left;
  }

  .contact-main-card__qr img {
    margin: 0 0 8px;
  }
}