/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #0d121e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #b0b7c3;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0e17;
}

.testimonial-name {
    font-weight: 700;
    color: #ffffff;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Trust logos */
.trust-logos {
    padding: 40px 0;
    text-align: center;
}

.trust-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b0b7c3;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    max-width: 120px;
    filter: grayscale(100%) brightness(200%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}