body {
    font-family: "Open Sans", sans-serif;
    color: var(--color-text-main);
    background: var(--color-surface-1);
}

/* ============================
    TESTIMONIALS GRID
============================= */
.testimonials-grid-section {
    padding: 80px 0 40px;
}

.testimonial-group {
    margin-bottom: 60px;
}

.testimonial-group-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 6%;
}

.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg, 
        transparent, 
        var(--color-mask-foreground) 20%, 
        var(--color-mask-foreground) 80%, 
        transparent
    );
    mask: linear-gradient(
        90deg, 
        transparent, 
        var(--color-mask-foreground) 20%, 
        var(--color-mask-foreground) 80%, 
        transparent
    );
}

.scroller[data-animated="true"] .scroller__inner {
    animation: scroll 40s linear infinite;
}

.scroller[data-animated="true"][data-direction="right"] .scroller__inner {
    animation-direction: reverse;
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    padding-block: 1rem;
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 400px;
    max-width: 70vw;
    background: var(--color-surface-2);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-main);
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    margin: 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .testimonial-group-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }
}
