.form-card { max-width: 760px; }
.standard-form, .quote-form {
    display: grid;
    gap: 1rem;
}
label { font-weight: 700; }
input, textarea, select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font: inherit;
}
textarea { resize: vertical; }
.form-progress {
    color: #475467;
    font-weight: 700;
}
.form-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-note {
    color: #667085;
    font-size: 0.95rem;
    margin: 0;
}
.submission-state, .success-state, .submission-feedback {
    text-align: center;
    padding-top: 1rem;
}
.loader-circle {
    width: 74px;
    height: 74px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 6px solid rgba(11, 111, 184, 0.15);
    border-top-color: #0b6fb8;
    animation: spin 0.9s linear infinite;
}
.ad-ready-slot {
    background: radial-gradient(circle, rgba(11,111,184,0.08) 0%, rgba(11,111,184,0.02) 100%);
}
.feedback-copy { color: #344054; }
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
