.impact-metrics {
    position: relative;
    overflow: hidden;
}

.impact-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.metric-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-label {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-top: 0.5rem;
}

.metric-description {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.metric-icon {
    margin-top: 1rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.2);
}

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

.animate-count {
    animation: countUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@media (max-width: 768px) {
    .metric-value {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 1rem;
    }
    
    .metric-description {
        font-size: 0.75rem;
    }
}
