/* Progress Steps */
.step-bar-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.step-milestone {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #757575;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
}

.step-milestone.completed .step-number {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.step-label {
    font-size: 14px;
    margin-top: 8px;
    color: #757575;
}

.step-milestone.completed .step-label {
    color: var(--theme-color);
}

.step-line {
    position: absolute;
    height: 2px;
    background: #e0e0e0;
    flex: 1;
    margin: 0 20px;
}

.step-line.completed {
    background: var(--theme-color);
}

/* Pricing Cards */
.pricing-wrap {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    margin: 1rem 0;
}

.pricing-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-wrap.active {
    border: 2px solid var(--theme-color);
}

.pricing-header {
    padding: 25px;
    background: #f8f9fa;
    text-align: center;
}

.pr-price-value {
    font-size: 48px;
    color: var(--theme-color);
    margin: 0;
}

/* Success Message */
.success-wrap {
    padding: 3rem 0;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
}
