/* g410/testimonials — design "testimonials" de la home (bundle standalone) */

.testimonials {
    --te-ink: var(--ink, #00202f);
    --te-blue: var(--blue, #359ee0);
    --te-blue-deep: var(--blue-deep, #1f4a7e);
    --te-blue-soft: var(--blue-soft, #e7f3fc);
    --te-line: var(--line, #e7ebee);
    --te-muted: var(--muted, #5a6b76);
    --te-radius: var(--radius-lg, 22px);
    --te-shadow-sm: var(--shadow-sm, 0 1px 2px rgba(0, 32, 47, .06), 0 2px 6px rgba(0, 32, 47, .04));
    --te-display: var(--font-display, "Manrope", ui-sans-serif, system-ui, sans-serif);

    background: var(--te-blue-soft);
    padding: 96px 0;
    color: var(--te-ink);
}

.testimonials > .container {
    max-width: var(--container-width, 1240px);
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials .section-head {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.testimonials .section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--te-blue-deep);
    margin-bottom: 16px;
}
.testimonials .section-head .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--te-blue);
    display: inline-block;
}
.testimonials .section-head h2 {
    margin: 0;
    font-family: var(--te-display);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.1;
    color: var(--te-ink);
    text-wrap: balance;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonials .quote {
    background: #fff;
    border-radius: var(--te-radius);
    padding: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--te-shadow-sm);
    position: relative;
}
.testimonials .quote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 22px;
    font-family: var(--te-display);
    font-size: 96px;
    line-height: 1;
    color: var(--te-blue);
    opacity: .35;
    pointer-events: none;
}
.testimonials .quote p {
    font-family: var(--te-display);
    font-size: 19px;
    line-height: 1.45;
    color: var(--te-ink);
    font-weight: 500;
    margin: 8px 0 0;
}
.testimonials .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--te-line);
    margin-top: auto;
}
.testimonials .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--te-blue), var(--te-blue-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--te-display);
    font-weight: 700;
    font-size: 17px;
    flex: none;
    overflow: hidden;
}
.testimonials .avatar.avatar-img {
    display: block;
    object-fit: cover;
    background: var(--te-blue-soft);
}
.testimonials .quote-author .name {
    font-family: var(--te-display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--te-ink);
}
.testimonials .quote-author .role {
    font-size: 13px;
    color: var(--te-muted);
    line-height: 1.3;
}

@media (max-width: 1000px) {
    .quote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .quote-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 64px 0; }
}
