body {
    background:
        radial-gradient(980px 360px at 10% -20%, rgba(224, 122, 95, 0.28) 0%, rgba(224, 122, 95, 0) 72%),
        radial-gradient(900px 340px at 88% -20%, rgba(51, 65, 85, 0.12) 0%, rgba(51, 65, 85, 0) 72%),
        var(--besto-bg);
}

.wizard-page {
    max-width: 1180px;
    width: calc(100% - 56px);
    margin: 1.8rem auto 3.2rem;
}

.wizard-page.wizard-page--narrow {
    max-width: 980px;
}

.wizard-progress {
    margin-bottom: 1rem;
    border: 1px solid #ecdccf;
    border-radius: 1.2rem;
    background: linear-gradient(170deg, #fff8f2 0%, #fffdfb 100%);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    padding: 0.55rem;
}

.wizard-progress-track {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.wizard-progress-step {
    min-height: 52px;
    border-radius: 0.95rem;
    border: 1px solid #e9ddd3;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.48rem 0.62rem;
    text-decoration: none;
    color: #4b5563;
}

.wizard-progress-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #d9c6b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 900;
    color: #91543a;
    background: #fff6ef;
    flex-shrink: 0;
}

.wizard-progress-text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.wizard-progress-step.is-active {
    border-color: #e3b79f;
    background: linear-gradient(150deg, #fff0e6 0%, #ffe8db 100%);
    box-shadow: 0 8px 18px rgba(201, 111, 74, 0.2);
    color: #7f3f26;
}

.wizard-progress-step.is-active .wizard-progress-index {
    border-color: #c96f4a;
    background: #c96f4a;
    color: #fff;
}

.wizard-progress-step.is-done .wizard-progress-index {
    border-color: #95c6a6;
    color: #1f6a39;
    background: #eaf8ef;
}

.wizard-progress-step.is-clickable {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wizard-progress-step.is-clickable:hover {
    transform: translateY(-2px);
    border-color: #d7b4a1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    color: #374151;
}

.wizard-progress-step.is-locked {
    background: #f8fafc;
    border-style: dashed;
    color: #8a95a6;
}

.wizard-progress-step.is-locked .wizard-progress-index {
    border-color: #d6dee8;
    background: #eef2f7;
    color: #718096;
}

.wizard-page form {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    padding: 0;
}

.wizard-card {
    border-radius: 1.5rem;
    border: 1px solid #efe6df;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14), 0 6px 20px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.wizard-card-body {
    padding: 2.1rem;
}

.wizard-step-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid #f0d3c6;
    color: #934d33;
    background: #fff6ef;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.45rem 0.86rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .wizard-page {
        width: calc(100% - 24px);
        margin-top: 1rem;
    }

    .wizard-progress-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wizard-card-body {
        padding: 1.15rem;
    }
}
