/* Waipuna Rise — lead-gated PDF download modal (shared, sitewide) */

#leadFormOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .55);
  z-index: 1600;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#leadFormOverlay.open { display: flex; }

#leadFormCard {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  max-height: 90vh;
  overflow-y: auto;
}

#leadFormClose {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px 8px;
}
#leadFormClose:hover { color: #1a1a1a; }

.lead-form-title { font-family: 'jost'; font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; color: #1a1a1a; }
.lead-form-sub { font-size: .88rem; color: #6b7280; margin-bottom: 18px; }

.lead-form-field { margin-bottom: 14px; }
.lead-form-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 5px; color: #374151; }
.lead-form-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .15);
  font-family: 'jost';
  font-size: .92rem;
  box-sizing: border-box;
}
.lead-form-field input:focus {
  outline: none;
  border-color: var(--primary-color, #006755);
  box-shadow: 0 0 0 3px rgba(0, 103, 85, .12);
}

.lead-form-captcha { margin: 14px 0; }

.lead-form-error {
  display: none;
  background: #fdecea;
  color: #b3261e;
  font-size: .82rem;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.lead-form-error.show { display: block; }

.lead-form-submit { width: 100%; border: none; }
.lead-form-submit:disabled { opacity: .6; pointer-events: none; }

.lead-form-privacy { font-size: .75rem; color: #9ca3af; margin-top: 12px; text-align: center; }

.lead-form-loading { text-align: center; padding: 30px 0; }
.lead-form-spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid rgba(0, 103, 85, .15);
  border-top-color: var(--primary-color, #006755);
  animation: wr-lead-spin .8s linear infinite;
  margin: 0 auto 14px;
}
@keyframes wr-lead-spin { to { transform: rotate(360deg); } }

.lead-form-success { text-align: center; }
.lead-form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0, 103, 85, .1); color: var(--primary-color, #006755);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 14px;
}
.lead-form-download-btn { display: inline-block; margin-top: 10px; text-decoration: none; }

@media (max-width: 480px) {
  #leadFormCard { padding: 26px 20px; }
}
