/* Opinions Page Styles */

.opinions-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.opinions-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.opinions-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-full {
    padding: 5rem 0;
}

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

.testimonial-full-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-full-card .rating {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-full-card .quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-full-card .author-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-full-card .author-position {
    color: #6b7280;
    font-size: 0.95rem;
}

.testimonial-full-card .author-company {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .opinions-hero h1 {
        font-size: 2rem;
    }
}

