/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.testimonial-quote {
    margin-bottom: 24px;
}

.testimonial-quote svg {
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.author-company {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* Calculator Warning */
.calculator-warning {
    margin-top: 24px;
    padding: 16px 24px;
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    color: #92400E;
    font-size: 15px;
    line-height: 1.6;
}

.calculator-warning a {
    color: #92400E;
    font-weight: 600;
    text-decoration: underline;
}

.calculator-warning a:hover {
    color: #78350F;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote p {
        font-size: 16px;
    }
}
