/* ====== STATISTICS DASHBOARD ====== */
#statistics-dashboard {
    padding: var(--section-padding); background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%); color: white; position: relative; overflow: hidden; }

#statistics-dashboard::before {
    content: ''; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }

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

.stat-card {
    backdrop-filter: var(--backdrop-blur); -webkit-backdrop-filter: var(--backdrop-blur); border-radius: var(--border-radius); text-align: center; transition: var(--hover-transition); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: var(--box-shadow); }

.stat-card:hover {
    transform: var(--hover-lift); }

.stat-icon {
    font-size: 3rem; margin-bottom: 20px; }

.stat-counter {
    font-weight: 700; margin: 10px 0; line-height: 1; font-family: var(--font-heading); }

.stat-label {
    opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
