/* Soft lead capture — optional email, no content wall */
.ic-soft {
  margin: 28px 0 8px;
  padding: 20px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf6, #f5f1e8);
  border: 1px solid rgba(184, 137, 63, 0.35);
  box-shadow: 0 10px 28px rgba(12, 26, 13, 0.05);
  text-align: left;
}
.ic-soft h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text, #14110a);
}
.ic-soft .ic-soft-hint {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: var(--text-muted, #5c635c);
  line-height: 1.45;
}
.ic-soft-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
@media (max-width: 640px) {
  .ic-soft-row { grid-template-columns: 1fr; }
}
.ic-soft label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #5c635c);
  margin-bottom: 5px;
}
.ic-soft input[type="text"],
.ic-soft input[type="email"] {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.ic-soft button[type="submit"] {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--gold-grad, linear-gradient(135deg, #e9c977, #b8893f));
  color: #14110a;
  font-weight: 800;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.ic-soft button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ic-soft .ic-soft-nl {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-muted, #5c635c);
  line-height: 1.4;
}
.ic-soft .ic-soft-nl input { margin-top: 3px; }
.ic-soft .ic-soft-msg {
  margin-top: 10px;
  font-size: 13.5px;
  min-height: 1.2em;
}
.ic-soft .ic-soft-msg.ok { color: var(--green-600, #233f22); font-weight: 600; }
.ic-soft .ic-soft-msg.err { color: #8a1010; }
