.step-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    margin-bottom: 48px;
}

.step-cell {
    flex: 1;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    transition: background .3s;
}

.step-cell:last-child {
    border-right: none;
}

.step-cell.on {
    background: var(--goldp);
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-cell.on .step-num {
    background: var(--dark);
}

.step-info h5 {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
}

.step-info p {
    font-size: 11px;
    color: var(--muted);
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
}

.fc-title {
    font-family: var(--fd);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 6px;
}

.fc-sub {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 32px;
}

.upload-zone {
    border: 2px dashed var(--border);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .3s;
    background: var(--off);
}

.upload-zone:hover {
    border-color: var(--gold);
}

.upload-zone i {
    font-size: 36px;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
}

.upload-zone p {
    font-size: 13px;
    color: var(--muted);
}

.upload-zone strong {
    color: var(--gold);
    cursor: pointer;
}

.pkg-card {
    border: 1.5px solid var(--border);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all .35s;
    position: relative;
}

.pkg-card.on {
    border-color: var(--gold);
    background: var(--goldp);
}

.pkg-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pkg-name {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.pkg-price {
    font-family: var(--fd);
    font-size: 36px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.pkg-price span {
    font-size: 14px;
    font-family: var(--fb);
    color: var(--muted);
    font-weight: 400;
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    text-align: left;
}

.pkg-features li {
    font-size: 13px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-features li i {
    color: var(--gold);
    font-size: 13px;
    width: 14px;
}

.why-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.wli-ic {
    width: 40px;
    height: 40px;
    background: var(--goldp);
    border: 1px solid rgba(196, 151, 63, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wli-ic i {
    color: var(--gold);
    font-size: 16px;
}

.wli-tx h5 {
    font-family: var(--fd);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
}

.wli-tx p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
}

@media(max-width:767px) {
    .step-row {
        flex-direction: column;
    }

    .step-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .form-card {
        padding: 24px;
    }
}