/* ==========================================================================
   Homepage — Specific Styles
   ========================================================================== */

/* Testimonial platform logo (Yelp) */
.testimonial-platform {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

/* ── Homepage hero mobile ──────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Reduce the huge 200px top padding to something compact */
    .hero--home {
        padding: 100px 0 48px;
    }

    /* Full-width text — the 70% cap adds no value on a 375px screen */
    .hero--home .hero__text,
    .hero--home .hero__actions {
        width: 100%;
    }

    /* Tighten subtitle spacing */
    .hero__subtitle {
        margin-bottom: 16px;
        font-size: 15px;
    }

    /* Smaller title on phones */
    .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        margin-bottom: 12px;
    }

    /* Shrink badge pills so 2 fit per row */
    .hero__badges {
        margin-top: 20px;
        gap: 6px;
    }

    .hero__badge {
        font-size: 10px;
        padding: 4px 10px;
        letter-spacing: 0.06em;
    }

    /* CTA buttons: stack but full-width for easy tap targets */
    .hero--home .hero__actions {
        margin-top: 24px;
        flex-direction: column;
        gap: 12px;
    }

    .hero--home .hero__actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
