.firmenwert-page {
    max-width: 1120px;
}

.firmenwert-wizard {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.wizard-progress button {
    border: 1px solid #d1d5db;
    background: #f8fafc;
    border-radius: 999px;
    padding: .65rem .5rem;
    font: inherit;
    cursor: pointer;
}

.wizard-progress button.is-active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}

.wizard-step {
    display: none;
}

.wizard-step.is-active {
    display: block;
}

.step-kicker {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: .9rem;
    color: #475569;
}

.step-title {
    margin-top: 0;
    margin-bottom: .5rem;
}

.step-description {
    color: #475569;
    margin-bottom: 1.25rem;
}

.result-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin: 1.25rem 0;
}

.result-values > div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
}

.result-values span {
    display: block;
    color: #475569;
    font-size: .92rem;
    margin-bottom: .4rem;
}

.result-values strong {
    font-size: 1.15rem;
}

.result-breakdown {
    display: grid;
    gap: .8rem;
    margin: 1rem 0 0;
}

.result-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: .65rem;
}

.result-breakdown dt {
    font-weight: 600;
}

.result-breakdown dd {
    margin: 0;
    text-align: right;
}

.disclaimer {
    color: #64748b;
    font-size: .95rem;
    margin-top: 1rem;
}

.firmenwert-page .choice-option {
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
}

.firmenwert-page .choice-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0;
}

.firmenwert-page .choice-option span {
    font-size: 0.95rem;
    line-height: 1.45;
}

@media (max-width: 960px) {
    .firmenwert-wizard {
        grid-template-columns: 1fr;
    }

    .result-values {
        grid-template-columns: 1fr;
    }
}
