.survey-wizard {
    max-width: 760px;
    margin: 0 auto;
}
.survey-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    padding: 32px;
    border: 1px solid #eee;
}
.survey-progress {
    height: 8px;
    background: #ececec;
    border-radius: 99px;
    overflow: hidden;
    margin: 12px 0 24px;
}
.survey-progress span {
    display: block;
    height: 100%;
    background: #00722b;
    width: 0;
    transition: width .25s ease;
}
.survey-step { display: none; }
.survey-step.is-active { display: block; }
.survey-question + .survey-question {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.survey-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s, transform .15s;
}
.survey-option:hover {
    border-color: #00722b;
    transform: translateY(-1px);
}
.survey-option.is-selected,
.survey-option input:checked + span,
.survey-option.checked {
    border-color: #00722b;
    background: rgba(0,114,43,.08);
}
.survey-option input {
    margin-right: 10px;
}
html[dir="rtl"] .survey-option,
body.rtl .survey-option {
    text-align: right;
}
.survey-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.survey-list-card {
    height: 100%;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.survey-result-hero {
    background: linear-gradient(135deg, #00722b, #1a2030);
    color: #fff;
    border-radius: 16px;
    padding: 36px;
    margin-bottom: 24px;
}
.survey-result-hero h2,
.survey-result-hero p { color: #fff; }
.pathway-compare {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}
.pathway-compare.is-winner {
    border-color: #00722b;
    box-shadow: 0 0 0 2px rgba(0,114,43,.2);
}
.survey-error {
    color: #9b1c1c;
    font-size: 13px;
    margin-top: 8px;
}
.survey-alert {
    display: none;
    align-items: flex-start;
    gap: 12px;
    background: #fff5f5;
    border: 1px solid #f1c0c0;
    color: #9b1c1c;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.survey-alert.is-visible {
    display: flex;
}
.survey-alert i {
    margin-top: 3px;
    color: #c80000;
}
.survey-card .form-control.is-invalid,
.survey-question.is-incomplete .survey-option {
    border-color: #e7a0a0;
}
.survey-card .form-control.is-invalid {
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(200, 0, 0, .08);
}
.survey-question.is-incomplete h4 {
    color: #c80000;
}
@media (max-width: 767px) {
    .survey-card { padding: 20px; }
    .survey-actions { flex-direction: column-reverse; }
    .survey-actions .btn { width: 100%; }
}
