.firmenwert-page {
    max-width: var(--content-wide);
}

.firmenwert-page .page-hero {
    background:
        linear-gradient(130deg, rgba(18, 16, 13, 0.96) 0%, rgba(18, 16, 13, 0.82) 50%, rgba(249, 115, 22, 0.26) 100%),
        url('/assets/variants/blog-online-firmenwertrechner-768x454-1763819685-w1200.webp');
    background-size: cover;
    background-position: center;
}

.firmenwert-wizard {
    display: grid;
    gap: clamp(1rem, 3vw, 2rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    margin-bottom: 1.4rem;
    border: 1px solid var(--line);
    background: var(--line);
}

.wizard-progress button {
    border: 0;
    background: #fff;
    border-radius: 0;
    padding: 0.72rem 0.35rem;
    color: var(--ink-500);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.wizard-progress button.is-active {
    background: var(--ink-950);
    color: #fff;
}

.wizard-step {
    display: none;
}

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

.step-title {
    margin-bottom: 0.55rem;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.step-description {
    max-width: 62ch;
    color: var(--ink-500);
    margin-bottom: 1.25rem;
}

.result-card {
    position: sticky;
    top: 132px;
}

.result-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 1.25rem 0;
    border: 1px solid var(--line);
    background: var(--line);
}

.result-values > div {
    background: #fff;
    padding: 1rem;
}

.result-values span {
    display: block;
    color: var(--ink-500);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.result-values strong {
    color: var(--orange-700);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

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

.result-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.65rem;
}

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

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

.disclaimer {
    color: var(--ink-500);
    font-size: 0.92rem;
    margin-top: 1rem;
}

.firmenwert-page .choice-option {
    align-items: center;
    gap: 0.65rem;
}

.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-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .wizard-progress {
        grid-template-columns: repeat(3, 1fr);
    }
}
