/* --- Review Stats Component Styles --- */
.review-stats {
    padding: 5rem 0;
    background: #111827;
    color: white;
}

.review-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.review-stats__header {
    text-align: center;
    margin-bottom: 4rem;
}

.review-stats__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.review-stats__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .review-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .review-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-stats__stat {
    background: #1f2937;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.review-stats__stat:hover {
    background: #374151;
    transform: translateY(-4px);
}

.review-stats__stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.review-stats__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    display: block;
}

.review-stats__stat-label {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 0.25rem;
    display: block;
}

.review-stats__stat-unit {
    font-size: 0.9rem;
    color: #9ca3af;
}