.lead-form .step { display: none; }
.lead-form[data-active-step="1"] .step[data-step="1"],
.lead-form[data-active-step="2"] .step[data-step="2"],
.lead-form[data-active-step="3"] .step[data-step="3"] { display: block; }

.lead-form .step-progress { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.lead-form .step-progress span { flex: 1; height: 4px; border-radius: 999px; background: #e7e9ee; }
.lead-form .step-progress span.is-active { background: #0d6efd; }

.lead-form .service-card {
    display: block;
    cursor: pointer;
    padding: 1rem 1.1rem;
    border: 1px solid #e0e3eb;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    transition: all .15s ease;
}
.lead-form .service-card:hover { border-color: #b9c4dd; }
.lead-form .service-card input { position: absolute; opacity: 0; pointer-events: none; }
.lead-form .service-card input:checked + .service-card-body { color: #0d6efd; }
.lead-form .service-card:has(input:checked) {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .12);
}
.lead-form .service-card-body strong { display: block; font-size: 1rem; }
.lead-form .service-card-body small { color: #6b7280; }

.lead-form .pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.lead-form .pill {
    display: inline-flex;
    align-items: center;
    padding: .5rem .9rem;
    border: 1px solid #e0e3eb;
    border-radius: 999px;
    cursor: pointer;
    background: #fff;
    font-size: .92rem;
}
.lead-form .pill input { position: absolute; opacity: 0; pointer-events: none; }
.lead-form .pill:has(input:checked) { border-color: #0d6efd; background: #eef4ff; color: #0d6efd; }

.lead-form .step-actions { display: flex; justify-content: space-between; gap: .75rem; margin-top: 1.25rem; }

.lead-form .field-error { color: #b42318; font-size: .85rem; margin-top: .25rem; display: none; }
.lead-form .field-error.is-shown { display: block; }

.lead-form .file-hint { color: #6b7280; font-size: .85rem; }

.lead-form .honeypot-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
