.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
    margin: 0 auto;
    gap: 40px;
    text-align: center;
}

.stats-grid h3 {
    font-size: 3rem;
    font-weight: 900;
}

.logo-wheel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

.logo-wheel {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.logo-wheel-item {
    min-width: 150px;
    height: 90px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
}

.logo-wheel-item img {
    max-height: 60px;
    max-width: 110px;
}

.logo-wheel-item:hover {
    transform: scale(1.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    z-index: 10;
}
