.order-hero {
    padding: 48px 0 20px;
}
.order-hero h1 {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #003087;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 12px;
}
.order-hero p { color: var(--muted); max-width: 680px; }

.wizard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px 26px 32px;
    box-shadow: 0 12px 40px rgba(0,48,135,.07);
    margin: 10px 0 70px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}
.step-dot {
    background: #f4f7fb;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: .82rem;
    color: #667;
    font-weight: 700;
}
.step-dot.active { background: #003087; color: #fff; }
.step-dot.done { background: #e8f0ff; color: #003087; }

.level-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.level-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    background: #fff;
}
.level-card input { display: none; }
.level-card strong { display: block; color: #003087; font-size: .95rem; }
.level-card span { display: block; color: #888; font-size: .8rem; margin-top: 4px; }
.level-card.selected { border-color: #003087; box-shadow: 0 0 0 2px rgba(0,48,135,.18); background: #f4f7fb; }

.express-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px dashed rgba(211,47,47,.35);
    background: #fff7f7;
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
}
.price-summary {
    background: #f4f7fb;
    border-radius: 16px;
    padding: 18px;
    margin: 18px 0;
}
.price-summary .big {
    font-size: 2rem;
    font-weight: 800;
    color: #d32f2f;
    font-family: Roboto, sans-serif;
}
.stage-row {
    display: grid;
    grid-template-columns: 90px 1fr 180px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.hint { color: #667; font-size: .9rem; margin-top: 6px; }
.min-note { color: #b71c1c; font-weight: 600; font-size: .92rem; }

.assign-screen {
    text-align: center;
    padding: 50px 16px;
}
.spinner {
    width: 72px; height: 72px; margin: 0 auto 22px;
    border: 6px solid #e6ecf7;
    border-top-color: #003087;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.assign-art {
    font-size: 3rem;
    margin-bottom: 8px;
}
.pay-box {
    background: #f4f7fb;
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
}
.pay-box code {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #003087;
    letter-spacing: .02em;
    margin: 4px 0 10px;
}
.copy-btn {
    border: 0; background: #003087; color: #fff;
    border-radius: 999px; padding: 8px 14px; cursor: pointer; font-weight: 700;
}
.wizard-nav { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.hidden { display: none !important; }
.order-banner {
    background: linear-gradient(135deg, #003087, #0a4cc2);
    color: #fff;
    border-radius: 22px;
    padding: 28px 26px;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 18px;
    align-items: center;
    margin: 10px 0 40px;
    box-shadow: 0 16px 40px rgba(0,48,135,.22);
}
.order-banner h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.order-banner p { color: rgba(255,255,255,.88); margin-bottom: 0; }
.order-banner .btn { background: #d32f2f; color: #fff; }
@media (max-width: 900px) {
    .level-grid, .steps, .stage-row, .order-banner { grid-template-columns: 1fr; }
}
