/* ============ REQUEST FORM (lead capture) ============ */
.req-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
}
.req-form-block::before, .req-form-empty::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
}
.req-form-empty { background: var(--bg-elev); padding: 56px 48px; }
.req-form-modal { padding: 40px; max-width: 720px; }
.req-form-head { margin-bottom: 28px; }
.req-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.req-field-wide { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .req-grid { grid-template-columns: 1fr; }
  .req-form { padding: 32px 24px; }
}

.req-sent {
  text-align: center;
  padding: 80px 48px;
}
.req-sent-mark {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: rgba(234,90,12,0.12);
  border: 2px solid var(--accent);
  color: var(--accent-bright);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  animation: pop 0.5s ease-out;
}
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.empty-state-rich { padding: 0; text-align: left; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 20px 40px;
  overflow-y: auto;
  animation: fade-in 0.25s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-body {
  position: relative;
  width: 100%;
  max-width: 720px;
  animation: slide-up 0.35s cubic-bezier(.2,.7,.2,1);
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}
.modal-close:hover {
  background: var(--bg-elev-2);
  color: var(--ink);
  border-color: var(--ink);
}
