.footer-lead {
  margin-top: 44px;
  padding: 64px 0;
  border-top: 1px solid rgba(37, 37, 38, .1);
  background: #f2f5f8;
  color: #252526;
}

.footer-lead + .site-footer {
  margin-top: 0;
}

.footer-lead__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: center;
}

.footer-lead__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #921241;
  font-size: 13px;
  font-weight: 800;
}

.footer-lead h2 {
  margin: 0;
  color: #171719;
  font-size: 36px;
  line-height: 1.2;
}

.footer-lead__intro > p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(37, 37, 38, .68);
  font-size: 15px;
  line-height: 1.8;
}

.footer-lead__points {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: rgba(37, 37, 38, .78);
  font-size: 14px;
}

.footer-lead__points li {
  position: relative;
  padding-left: 18px;
}

.footer-lead__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #921241;
}

.footer-lead__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-lead__field {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(37, 37, 38, .16);
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: #252526;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.footer-lead__field:focus {
  border-color: rgba(146, 18, 65, .62);
  box-shadow: 0 0 0 3px rgba(146, 18, 65, .09);
}

.footer-lead__field--wide,
.footer-lead__actions,
.footer-lead [data-form-alert],
.footer-lead [id^="aliyun-captcha-"] {
  grid-column: 1 / -1;
}

textarea.footer-lead__field {
  min-height: 96px;
  padding-top: 13px;
  resize: vertical;
}

.footer-lead__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-lead__actions p {
  margin: 0;
  color: rgba(37, 37, 38, .56);
  font-size: 12px;
  line-height: 1.6;
}

.footer-lead__submit {
  min-width: 138px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: #921241;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.footer-lead__submit:hover {
  background: #731033;
  transform: translateY(-1px);
}

.footer-lead__submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

@media (max-width: 900px) {
  .footer-lead__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-lead {
    padding: 48px 0;
  }

  .footer-lead__inner {
    width: min(100% - 28px, 1180px);
  }

  .footer-lead h2 {
    font-size: 30px;
  }

  .footer-lead__form {
    grid-template-columns: 1fr;
  }

  .footer-lead__field,
  .footer-lead__field--wide,
  .footer-lead__actions,
  .footer-lead [data-form-alert],
  .footer-lead [id^="aliyun-captcha-"] {
    grid-column: auto;
  }

  .footer-lead__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-lead__submit {
    width: 100%;
  }
}
