.progress-panel {
    position: static;
    top: auto;
    z-index: auto;
    background:
        linear-gradient(180deg, rgba(216,169,77,.11), rgba(24,27,37,.96)),
        rgba(24,27,37,.96);
    backdrop-filter: none;
}

.progress-meter {
    width: min(260px, 100%);
    height: 14px;
    border: 1px solid rgba(216,169,77,.28);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0,0,0,.22);
}

.progress-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 999px;
}

.progress-stage-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.progress-stage {
    margin: 0;
}

.progress-stage form {
    margin: 0;
}

.progress-stage button,
.progress-stage .stage-static {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    width: 100%;
    min-height: 86px;
    text-align: left;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    padding: 12px;
    background: rgba(255,255,255,.035);
    color: var(--text);
    font-family: inherit;
    cursor: pointer;
}

.progress-stage.is-locked .stage-static {
    opacity: .55;
    cursor: default;
}

.stage-dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    margin-top: 2px;
    flex: none;
}

.stage-copy strong,
.stage-copy small {
    display: block;
}

.stage-copy strong {
    font-size: .98rem;
    line-height: 1.15;
    margin-bottom: 5px;
}

.stage-copy small {
    color: var(--muted);
    line-height: 1.28;
    font-size: .82rem;
}

.progress-stage.is-complete button,
.progress-stage.is-complete .stage-static {
    border-color: rgba(122,168,116,.38);
    background: rgba(122,168,116,.09);
}

.progress-stage.is-complete .stage-dot {
    border-color: rgba(122,168,116,.8);
    background: radial-gradient(circle, #d9ffd7 0 35%, #7aa874 38% 100%);
}

.progress-stage.is-current button,
.progress-stage.is-current .stage-static {
    border-color: rgba(216,169,77,.72);
    box-shadow: 0 0 0 2px rgba(216,169,77,.12);
    background:
        linear-gradient(135deg, rgba(216,169,77,.18), rgba(255,255,255,.04));
}

.progress-stage.is-current .stage-dot {
    border-color: var(--accent-light);
    background: var(--accent);
}

.progress-stage.is-next button,
.progress-stage.is-next .stage-static {
    border-color: rgba(240,201,119,.42);
}

.progress-stage button:hover {
    transform: translateY(-1px);
    border-color: rgba(240,201,119,.8);
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.next-step-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(216,169,77,.32);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(216,169,77,.15), rgba(255,255,255,.04));
}

.next-step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.next-step-card p {
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.45;
}

.next-step-card form {
    flex: none;
}

@media (max-width: 1100px) {
    .progress-stage-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .progress-stage-list {
        grid-template-columns: 1fr;
    }

    .next-step-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
