.elementor-430 .elementor-element.elementor-element-78b85a4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3edf560 *//* ==================== CUSTOM SCROLLBAR ==================== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-card);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-blue));
    border-radius: 10px;
    border: 2px solid var(--bg-card);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9d6eff, #5b9cff);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #7c4ddb, #3b7ce6);
}

/* Corner between horizontal and vertical scrollbar */
::-webkit-scrollbar-corner {
    background: var(--bg-card);
}

/* Scrollbar for specific elements like comparison table */
.comparison-table::-webkit-scrollbar {
    height: 6px;
}

.comparison-table::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 0 0 20px 20px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    border-radius: 6px;
    border: none;
}

/* Mobile - thinner scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 1px solid var(--bg-card);
    }
}

/* Hide scrollbar on mobile nav */
.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}/* End custom CSS */