.how-section {
    padding: 80px 0;
    text-align: center;
}

.bg-lightorange{
    background-color: var(--color-bgsecondary);
}

.how-it-works .subtitle {
    margin: 10px auto 60px;
    color: var(--color-text);
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-steps-wrapper {
    position: relative;
}

.how-line {
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff5a1f;
}

.how-steps {
    display: flex;
    gap: 30px;
    position: relative;
}

.how-card {
    position: relative;
    min-width: 240px;
    flex: 1;
}

.how-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #B7B7B7;
    border: 6px solid #EEEEEE;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.how-card:hover .how-dot {
    background: #FFC4AB;
    border: 6px solid var(--color-primary);
}

.how-card .how-card-inner {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #FFFFFF 0%, rgba(254, 91, 21, 0.27) 100%) border-box;
    border-radius: 16px;
    padding: 16px;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    text-align: left;
    height: 100%;
}

.how-card:hover .how-card-inner {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #FE5B15 26.44%, #FFFFFF 42.27%, #FFFFFF 53.56%, #FFAD8A 70.91%) border-box;
}

.how-cardin-wrapper {
    background: white;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
    text-align: left;
}

.how-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.how-icon img {
    width: 100%;
    height: 100%;
}

.how-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.how-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    z-index: 2;
    position: relative;
}

.step-number {
    position: absolute;
    right: 15px;
    bottom: -44px;
    font-size: 106px;
    font-weight: 700;
    color: #f3f3f3;
    pointer-events: none;
}

.how-steps {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    scrollbar-width: thin;
}

@media (max-width: 768px) {
    .how-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}