/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — Social proof section with glass cards
   ═══════════════════════════════════════════════════════════ */

.un-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.un-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s var(--ease-out-expo);
}

.un-testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(90, 122, 78, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.un-testimonial-quote {
    font-size: 32px;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}

.un-testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--earth-200);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
    font-style: italic;
}

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

.un-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    flex-shrink: 0;
}

.un-testimonial-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    line-height: 1.3;
}

.un-testimonial-role {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--earth-400);
    font-weight: 300;
}

.un-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #FFD700;
    font-size: 14px;
}

/* ── Mobile horizontal scroll ── */
@media (max-width: 600px) {
    .un-testimonials-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .un-testimonial {
        min-width: 300px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}
