.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px auto 10% auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg,  #ffb641, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }
}