.stats-section {
    padding: 120px 20px;
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-text {
    text-align: left;
    margin-bottom: 60px;
}

.stats-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.stats-text p {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-info {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    color: #4A6FDC;
    font-weight: 700;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 5px;
    font-weight: 500;
}

.stat-desc {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Glow effect */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 80px 20px;
    }

    .stats-text h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .stats-text p {
        margin: 0 auto;
    }

    .stat-item {
        padding: 25px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }