/* review page styles - Extracted from inline style */

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--stone-200);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
    border-color: var(--green-300);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-600);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--stone-500);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--stone-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--green-300);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--stone-600);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--green-600);
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--stone-800);
    margin: 0 0 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--stone-500);
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-box .btn {
    background: white;
    color: var(--green-600);
    border: none;
    white-space: nowrap;
}

.cta-box .btn:hover {
    background: var(--stone-100);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}