/* Results Stats Component Styles */

.results-stats {
    padding: 60px 0;
}

.results-stats-inner {
    background: linear-gradient(135deg, var(--accent-primary), #1e3a8a);
    border-radius: 40px;
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.results-stats .section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.results-stats .section-header h2 {
    color: white;
    margin-bottom: 16px;
}

.results-stats .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.results-stats .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
}

.results-stats .stat-card {
    flex: 1 1 230px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results-stats .stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: white;
}

.results-stats .stat-card h3 {
    color: white;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 18px;
}

.results-stats .stat-card p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .results-stats .stats-grid {
        gap: 40px 30px;
    }

    .results-stats .stat-card {
        flex: 0 1 200px;
    }
}

@media (max-width: 768px) {
    .results-stats-inner {
        padding: 60px 24px;
        border-radius: 24px;
    }

    .results-stats .stat-card {
        flex: 0 1 100%;
        max-width: 300px;
    }
}