.survey-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 16.66%;
    transition: width 0.4s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 32px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.04);
}

/* Custom Radios & Checkboxes */
.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.custom-radio {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.custom-radio:hover {
    border-color: rgba(234, 88, 12, 0.4);
    background: rgba(234, 88, 12, 0.03);
}

.custom-radio input[type="radio"],
.custom-radio input[type="checkbox"] {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    margin-right: 12px;
    position: relative;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.custom-radio input[type="radio"] + .radio-mark {
    border-radius: 50%;
}

.custom-radio input[type="checkbox"] + .radio-mark {
    border-radius: 4px;
}

.custom-radio input:checked + .radio-mark {
    border-color: var(--primary-color);
}

.custom-radio input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-radio input[type="checkbox"]:checked + .radio-mark::after {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-radio.selected {
    border-color: var(--primary-color);
    background: rgba(234, 88, 12, 0.05);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

select.form-control option {
    background: var(--bg-card);
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .radio-grid {
        grid-template-columns: 1fr !important;
    }
    .survey-card {
        padding: 32px 24px;
    }
    .custom-radio[style*="grid-column: span 2;"] {
        grid-column: span 1 !important;
    }
}
