.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(13, 11, 26, .74);
}

.lead-modal.is-open {
  display: flex;
}

.lead-dialog {
  width: min(440px, 100%);
  border-radius: 8px;
  background: #171126;
  color: #fff;
  border: 1px solid rgba(255, 215, 0, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  overflow: hidden;
}

.lead-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, #6A00FF, #FF2EB8);
  color: #fff;
}

.lead-head strong {
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.lead-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  height: 46px;
  border: 1px solid rgba(255, 215, 0, .22);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: #0D0B1A;
}

.lead-submit {
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #240616;
  background: linear-gradient(135deg, #FFD700, #ff9d00);
  font-weight: 950;
  cursor: pointer;
}

.lead-message {
  min-height: 22px;
  color: #FFD700;
  font-weight: 850;
}

.lead-message.is-error {
  color: #b42318;
}
