/* New Stepper Cards Design */
.stepper-cards[data-v-dc17eac9] {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--0f8f1344);
    position: relative;
    width: 100%;
    z-index: 200;
    gap: 20px;
}

.step-card[data-v-dc17eac9] {
    flex: 1;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.step-card[data-v-dc17eac9]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-number[data-v-dc17eac9] {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.step-title[data-v-dc17eac9] {
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-description[data-v-dc17eac9] {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
    flex-grow: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .stepper-cards[data-v-dc17eac9] {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .step-card[data-v-dc17eac9] {
        min-height: 140px;
        padding: 20px 16px;
    }
    
    .step-title[data-v-dc17eac9] {
        font-size: 24px;
    }
    
    .step-description[data-v-dc17eac9] {
        font-size: 13px;
    }
}

/* Legacy stepper styles - keeping for backward compatibility */
.stepper[data-v-dc17eac9] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--0f8f1344);
    position: relative;
    width: 100%;
    z-index: 200
}

.stepper .step[data-v-dc17eac9] {
    flex: 1;
    text-align: center;
    position: relative
}

.stepper .step .circle-wrapper[data-v-dc17eac9] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px
}

.stepper .step .circle-wrapper .circle[data-v-dc17eac9] {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
    pointer-events: none
}

.stepper .step .circle-wrapper .line[data-v-dc17eac9] {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10px;
    width: 100%;
    background: rgba(0, 0, 0, .075);
    z-index: 1;
    transform: translateY(-50%);
    overflow: hidden
}

.stepper .step .circle-wrapper .line[data-v-dc17eac9]:after {
    display: block;
    content: "";
    visibility: hidden;
    height: 100%;
    width: 0%;
    background: #10539f;
    transition: width .5s ease-in-out
}

.stepper .step .circle-wrapper .line--animated[data-v-dc17eac9]:after {
    visibility: visible
}

.stepper .step .label[data-v-dc17eac9] {
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    transition: color .3s ease-in-out
}

.stepper .step.active .label[data-v-dc17eac9] {
    color: #409aff
}

.stepper .step.done .circle[data-v-dc17eac9] {
    background: #10539f;
    border-color: #10539f;
    color: #fff
}

.stepper .step.active .circle[data-v-dc17eac9] {
    background: #409aff;
    border-color: #409aff;
    color: #fff;
    transform: scale(1.2)
}

.stepper .step.active .circle--animated[data-v-dc17eac9] {
    animation: pulse-dc17eac9 2s infinite
}

.stepper .step.done.has-next .line[data-v-dc17eac9]:after {
    width: 100%
}

.stepper .step:not(.done):not(.active) .circle[data-v-dc17eac9] {
    transform: scale(1)
}

.stepper .step:last-child .line[data-v-dc17eac9] {
    display: none
}

.stepper--dark.stepper .circle-wrapper .circle[data-v-dc17eac9] {
    background: #333;
    border-color: #ffffff40;
    color: #fff
}

.stepper--dark .label[data-v-dc17eac9] {
    color: #fff
}

.stepper--dark .step.done .circle[data-v-dc17eac9] {
    background: #10539f;
    border-color: #10539f;
    color: #fff
}

.stepper--dark .step.active .circle[data-v-dc17eac9] {
    background: #409aff;
    border-color: #409aff;
    color: #fff
}

.stepper--dark .step.has-next .line[data-v-dc17eac9] {
    background: rgba(255, 255, 255, .3)
}

.stepper--dark .step.done.has-next .line[data-v-dc17eac9]:after {
    background: #10539f
}

.stepper--overlay .label[data-v-dc17eac9] {
    color: #fff
}

.stepper--overlay .step.has-next .line[data-v-dc17eac9] {
    background: rgba(255, 255, 255, .3)
}

.stepper--overlay .step.done.has-next .line[data-v-dc17eac9]:after {
    background: #10539f
}

@keyframes pulse-dc17eac9 {
    0% {
        box-shadow: 0 0 #409aff66
    }

    70% {
        box-shadow: 0 0 0 10px #409aff00
    }

    to {
        box-shadow: 0 0 #409aff00
    }
}