/* ─── Lead Capture Form ─────────────────────────────────────── */

.contact-form-wrap {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-eyebrow {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0057FF;
  margin-bottom: 12px;
}

.form-headline {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.25;
  margin: 0 0 10px;
}

.form-highlight {
  color: #0057FF;
}

.form-sub {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
}

.lf-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .lf-form-row {
    grid-template-columns: 1fr;
  }
}

.lf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lf-label {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
}

.lf-input {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #f0f0f0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.lf-input::placeholder {
  color: #444;
}

.lf-input:focus {
  border-color: #0057FF;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15);
}

.lf-submit-btn {
  background: #0057FF;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  margin-top: 4px;
  width: 100%;
}

.lf-submit-btn:hover:not(:disabled) {
  background: #0066ff;
  transform: translateY(-1px);
}

.lf-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.lf-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.lf-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lf-spin 0.7s linear infinite;
}

.lf-submit-btn.loading .lf-btn-text {
  display: none;
}

.lf-submit-btn.loading .lf-btn-spinner {
  display: block;
}

@keyframes lf-spin {
  to { transform: rotate(360deg); }
}

.lf-form-error {
  color: #f87171;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 10px;
  background: rgba(248, 113, 113, 0.08);
  border-radius: 6px;
  display: none;
}

.lf-form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #10B981;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
}