/* ══════════════════════════════════════════════════
   FIVE MOVES — Lead Capture Form
   Embeddable. Minimal. On-brand.
   ══════════════════════════════════════════════════ */

.fm-lead {
  max-width: 520px;
  margin: 0 auto;
  padding: 34px 0;
}

.fm-lead-inner {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.03);
}

.fm-lead-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #2D2D2D;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.fm-lead-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #7a7a7a;
  margin-bottom: 21px;
  line-height: 1.5;
}

.fm-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fm-lead-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 0.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #F8F8F8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; /* iOS Safari kein Auto-Zoom auf focus */
  font-weight: 400;
  color: #2D2D2D;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px; /* Touch-Target Apple HIG */
  -webkit-appearance: none;
  appearance: none;
}

.fm-lead-input:focus {
  border-color: #C11D6F;
  box-shadow: 0 0 0 3px rgba(193,29,111,0.06);
  background: #FFFFFF;
}

.fm-lead-input::placeholder {
  color: #aaa;
  font-weight: 300;
}

.fm-lead-textarea {
  resize: vertical;
  min-height: 60px;
}

.fm-lead-btn {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: none;
  border-radius: 10px;
  background: #C11D6F;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fm-lead-btn:hover {
  background: #9E1759;
}

.fm-lead-btn:active {
  transform: scale(0.98);
}

.fm-lead-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.fm-lead-btn-loading svg {
  animation: fm-spin 1s linear infinite;
}

@keyframes fm-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fm-lead-status {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

.fm-lead-status--ok {
  color: #2d8a4e;
}

.fm-lead-status--err {
  color: #c0392b;
}

/* ── Responsive ─────────────────────────────────── */

@media (max-width: 480px) {
  .fm-lead-inner {
    padding: 21px;
  }
  .fm-lead-row {
    grid-template-columns: 1fr;
  }
}
