.pxc-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #090b0c;
    padding: 30px 40px;
    box-sizing: border-box;
}

.pxc-stats-single {
    grid-template-columns: 1fr;
    width: fit-content;
    max-width: 100%;
}

.pxc-stat-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 90px;
    padding: 10px 30px;
    box-sizing: border-box;
    transition: transform .3s ease;
}

.pxc-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: rgba(255,255,255,.15);
}

.pxc-stats-single .pxc-stat-item::after {
    display: none;
}

.pxc-stat-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pxc-stat-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: #d8ff00;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: filter .3s ease;
}

.pxc-stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pxc-stat-number {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.pxc-stat-title {
    margin-top: 8px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.pxc-stat-item:hover {
    transform: translateY(-3px);
}

.pxc-stat-item:hover .pxc-stat-icon svg {
    filter: drop-shadow(0 0 7px #d8ff00);
}

@media (max-width: 900px) {
    .pxc-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 25px 20px;
    }

    .pxc-stat-item {
        padding: 20px;
    }

    .pxc-stat-item:nth-child(2)::after {
        display: none;
    }

    .pxc-stat-number {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .pxc-stats,
    .pxc-stats-single {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .pxc-stat-item {
        justify-content: flex-start;
        padding: 20px 15px;
    }

    .pxc-stat-item::after {
        display: none !important;
    }

    .pxc-stat-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .pxc-stat-icon svg {
        width: 50px;
        height: 50px;
    }

    .pxc-stat-number {
        font-size: 32px;
    }

    .pxc-stat-title {
        font-size: 14px;
    }
}
