/* Testimonials Section - Reference Style (White on Black) */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, #0a2a5e 50%, var(--color-primary) 100%);
    padding: 80px 0;
    position: relative;
}

/* Cursor spotlight — radial light that follows cursor within the dark section */
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        400px circle at var(--sx, -9999px) var(--sy, -9999px),
        rgba(255, 255, 255, 0.07) 0%,
        rgba(2, 91, 188, 0.18) 45%,
        transparent 70%
    );
}

/* Content sits above the spotlight pseudo-element */
.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.testimonials-heading {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card */
.testimonial-card {
    background: #061635;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    clip-path: none;
}

.testimonial-card::before {
    display: none;
}

/* Number (01. 02. 03.) */
.testimonial-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-main);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Client Info Row */
.client-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* Avatar Circle */
.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-info h4 {
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.client-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .testimonials-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}