.dsa-configurator {
    margin: 24px 0;
    overflow: hidden;
}

.dsa-configurator * {
    box-sizing: border-box;
}

.dsa-hero,
.dsa-wizard,
.dsa-result {
    padding: 28px 0;
}

.dsa-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.dsa-configurator h2,
.dsa-result h3 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    margin: 0 0 12px;
}

.dsa-hero p:last-of-type,
.dsa-step p,
.dsa-result__reason {
    font-size: 17px;
    margin: 0;
    max-width: 820px;
}

.dsa-button {
    cursor: pointer;
}

.dsa-button--primary {
    margin-top: 22px;
}

.dsa-button[disabled] {
    cursor: not-allowed;
    opacity: 0.45;
}

.dsa-progress {
    display: grid;
    gap: 9px;
    margin-bottom: 24px;
}

.dsa-progress span {
    font-size: 14px;
    font-weight: 700;
}

.dsa-progress div {
    border: 1px solid currentColor;
    border-radius: 999px;
    height: 9px;
    overflow: hidden;
}

.dsa-progress i {
    background: currentColor;
    display: block;
    height: 100%;
    width: 12.5%;
}

.dsa-step {
    border: 0;
    margin: 0;
    padding: 0;
}

.dsa-step legend {
    display: block;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 10px;
    padding: 0;
}

.dsa-step--error::after {
    content: "Bitte waehle eine Antwort aus.";
    display: block;
    font-weight: 700;
    margin-top: 14px;
}

.dsa-options {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.dsa-option {
    border: 1px solid currentColor;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr;
    min-height: 92px;
    padding: 16px;
}

.dsa-option:has(input:checked) {
    box-shadow: 0 0 0 2px currentColor;
}

.dsa-option input {
    accent-color: currentColor;
    margin-top: 3px;
}

.dsa-option strong,
.dsa-option small {
    display: block;
}

.dsa-option strong {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.25;
}

.dsa-option small {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 5px;
}

.dsa-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 24px;
}

.dsa-result__label {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.dsa-result__summary {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.4fr 1fr;
    margin: 24px 0;
}

.dsa-result__box,
.dsa-warning,
.dsa-note {
    border: 1px solid currentColor;
    border-radius: 8px;
    padding: 18px;
}

.dsa-result__box h4,
.dsa-result__section h4 {
    font-size: 17px;
    margin: 0 0 10px;
}

.dsa-result__box p {
    margin: 0;
}

.dsa-result__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dsa-result__section ul,
.dsa-warnings {
    margin: 0;
    padding-left: 20px;
}

.dsa-result__section li,
.dsa-warnings li {
    margin: 7px 0;
}

.dsa-warning,
.dsa-note {
    margin-top: 18px;
}

.dsa-ctas {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.dsa-ctas .dsa-button {
    margin: 0;
    width: 100%;
}

.dsa-ctas .dsa-button--scanner-rent {
    background: #575EFE;
    border-color: #575EFE;
    color: #ffffff;
}

.dsa-ctas .dsa-button--scanner-rent:hover {
    background: #464de6;
    border-color: #464de6;
    color: #ffffff;
}

@media (max-width: 760px) {
    .dsa-hero,
    .dsa-wizard,
    .dsa-result {
        padding: 20px 0;
    }

    .dsa-options,
    .dsa-result__summary,
    .dsa-result__grid {
        grid-template-columns: 1fr;
    }

    .dsa-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dsa-ctas {
        grid-template-columns: 1fr;
    }

    .dsa-button {
        width: 100%;
    }
}
