/* Lead Capture Section */
.lead-capture {
  background: var(--cream);
  padding: 100px 40px;
}
.lead-capture-inner {
  max-width: 680px;
  margin: 0 auto;
}
.lead-capture .section-label { color: var(--gold-dim); }
.lead-header { margin: 20px 0 48px; }
.lead-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--obsidian);
  line-height: 1.2;
  margin-bottom: 16px;
  font-style: italic;
}
.lead-sub {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* Form */
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-weight: 500;
}
.field input, .field select {
  background: var(--off-white);
  border: 1px solid var(--cream-dark);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--obsidian);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.field input:focus, .field select:focus {
  border-color: var(--gold);
}
.field input::placeholder { color: var(--warm-grey); font-weight: 300; }

/* WhatsApp Button */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, opacity 0.2s;
  width: 100%;
}
.btn-wa:hover { background: #1fb855; }
.btn-wa:disabled { opacity: 0.6; cursor: default; }

/* Success state */
.wa-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 32px;
  background: var(--off-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  margin-top: 8px;
}
.wa-success.visible { display: flex; }
.wa-success .success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}
.wa-success .success-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wa-success .success-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--obsidian);
  font-weight: 500;
}
.wa-success .success-text span {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
}
.wa-success .success-text em {
  font-size: 13px;
  color: var(--warm-grey);
  font-style: italic;
  font-family: var(--font-display);
}
.wa-success .success-redirect {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #25D366;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.lead-note {
  text-align: center;
  font-size: 13px;
  color: var(--warm-grey);
  margin-top: 20px;
  font-style: italic;
  font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 600px) {
  .lead-capture { padding: 80px 20px; }
  .field-row { grid-template-columns: 1fr; }
}