.statistics-section {
    padding: 80px 0;
    background: #ffffff;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.statistics-heading {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.statistics-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    animation: statFadeInUp 0.6s ease forwards;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff5722;
}

.stat-circular-progress {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.stat-circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-circle-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from -90deg, #ff5722 0deg, #ff7043 var(--progress), transparent var(--progress));
    transition: --progress 2s ease-in-out;
}

.stat-circle-inner {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-plus {
    font-size: 1.5rem;
    color: #ff5722;
    font-weight: 600;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
    text-align: center;
}

@keyframes statFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .statistics-heading {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-circular-progress {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle-inner {
        top: 12px;
        left: 12px;
        width: 96px;
        height: 96px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}