.lead-modal[hidden] { display: none; }
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 18, 35, 0.72);
}
.lead-modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}
.lead-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #607087;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.lead-modal h2 { margin: 0 34px 8px 0; color: #152944; font-size: 24px; line-height: 1.2; }
.lead-modal-intro { margin: 0 0 18px; color: #607087; font-size: 15px; line-height: 1.5; }
.lead-form { display: grid; gap: 13px; }
.lead-field { display: grid; gap: 6px; color: #263952; font-size: 14px; font-weight: 700; }
.lead-field input, .lead-field textarea {
  width: 100%;
  border: 1px solid #ccd7e5;
  border-radius: 5px;
  padding: 11px 12px;
  color: #20344f;
  background: #fff;
  font: inherit;
  font-weight: 400;
}
.lead-field textarea { min-height: 86px; resize: vertical; }
.lead-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #52657f;
  font-size: 13px;
  line-height: 1.42;
}
.lead-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: #1f5fc3; }
.lead-check a { color: #1f5fc3; text-decoration: underline; }
.lead-submit {
  height: 46px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #2867c8 0%, #1c54aa 100%);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.lead-submit:disabled { cursor: wait; opacity: .7; }
.lead-form-status { min-height: 20px; margin: 0; color: #b42318; font-size: 14px; line-height: 1.4; }
.lead-success { padding: 16px 0 2px; color: #1f6c42; font-size: 18px; font-weight: 700; line-height: 1.5; }
body.lead-modal-open { overflow: hidden; }
