.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    max-width: 64rem; 
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(31, 41, 55, 0.5); 
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stats-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.stats-card:hover::after {
    opacity: 1;
}

.gradient-digital {
    font-size: 1.875rem; 
    font-weight: bold;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Подпись под числом */
.stats-label {
    color: #9ca3af; 
    font-size: 0.875rem;
}