/* Softnix — lead-gated datasheet download modal */
.lead-dl-modal {
  position: fixed; inset: 0; z-index: 400;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lead-dl-modal.open { display: flex; }
.lead-dl-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 24, 39, .78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lead-dl-dialog {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  padding: 28px 24px 24px;
}
.lead-dl-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #D6E3EE; background: #fff; color: #0F2A44;
  display: grid; place-items: center; cursor: pointer;
}
.lead-dl-close:hover { background: #F0F6FB; border-color: #2786C2; color: #2786C2; }
.lead-dl-title {
  margin: 0 36px 8px 0;
  font-size: 1.25rem; font-weight: 700; color: #0F2A44; line-height: 1.35;
}
.lead-dl-sub {
  margin: 0 0 18px; font-size: .92rem; color: #5B6B7C; line-height: 1.55;
}
.lead-dl-form {
  min-height: 120px;
}
.lead-dl-form iframe { max-width: 100% !important; }
.lead-dl-note {
  margin: 14px 0 0; font-size: .78rem; color: #8A9AAB;
}
