/**
 * home-social-proof.css — Testimonial placeholders & trust badges
 * ---------------------------------------------------------------
 * WHY placeholder-based: These testimonials and trust badges use
 * placeholder content until verified customer quotes and real partner
 * logos are available. Replace the placeholder text and badge labels
 * with production-ready copy before launch.
 *
 * Chunk 464
 */

/* ── Section container ─────────────────────────────────────────── */
.landing-social-proof {
    padding: 4rem 1.5rem;
    background: #f8fafc; /* slate-50 — matches existing landing palette */
}

.landing-social-proof__inner {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

/* ── Heading ───────────────────────────────────────────────────── */
.landing-social-proof__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.landing-social-proof__intro {
    font-size: 1.05rem;
    color: #64748b; /* slate-500 */
    margin: 0 0 2.5rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── Testimonial grid ──────────────────────────────────────────── */
.landing-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    list-style: none;
    padding: 0;
}

/* ── Testimonial card ──────────────────────────────────────────── */
.landing-testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    padding: 1.75rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.landing-testimonial-card blockquote {
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155; /* slate-700 */
    font-style: italic;
    flex: 1;
}

.landing-testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    color: #94a3b8; /* slate-400 */
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}

.landing-testimonial-card__name {
    font-weight: 600;
    color: #475569; /* slate-600 */
    display: block;
}

.landing-testimonial-card__role {
    display: block;
    margin-top: 0.15rem;
}

/* ── Trust badges ──────────────────────────────────────────────── */
.landing-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
}

.landing-trust-badge__icon {
    flex-shrink: 0;
    color: #3b82f6; /* blue-500 — matches hero accent */
}

/* ── Responsive: tablet ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .landing-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Responsive: mobile ────────────────────────────────────────── */
@media (max-width: 640px) {
    .landing-social-proof {
        padding: 3rem 1rem;
    }

    .landing-social-proof__heading {
        font-size: 1.4rem;
    }

    .landing-testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .landing-testimonial-card {
        padding: 1.25rem 1rem;
    }

    .landing-trust-badges {
        gap: 0.5rem;
    }

    .landing-trust-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
}
