.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.page-home .brand-logo {
  height: 40px;
}

.page-solutions .brand-logo,
.page-privacy .brand-logo {
  height: 36px;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.35;
}

.consent-check input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
}

.consent-check span {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: 500;
}

.page-home .consent-check a {
  color: #fff;
  text-decoration: underline;
}

.page-solutions .consent-check,
.page-privacy .consent-check {
  color: #64666c;
  font-size: 12px;
}

.page-solutions .consent-check a,
.page-privacy .consent-check a {
  color: inherit;
  text-decoration: underline;
}

.form-status {
  min-height: 18px;
  font-size: 12px;
}

.form-status.is-error {
  color: #d81f26;
}

.form-status.is-success {
  color: #1c7b4f;
}

.is-submitting {
  opacity: 0.72;
  pointer-events: none;
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.44);
}

.success-popup.is-open {
  display: grid;
}

.success-popup__panel {
  width: min(460px, 100%);
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.success-popup__title {
  margin: 0 0 12px;
  color: #161616;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.05;
}

.success-popup__text {
  margin: 0 0 20px;
  color: #64666c;
  font-size: 16px;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 28px;
    max-width: 180px;
  }

  .page-home .brand-logo {
    height: 30px;
  }
}
