    /* ========== STATS BAR ========== */
    .stats-bar {
        background: white;
        border-bottom: 1px solid var(--cream-200);
    }

    .stats-bar-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }

    .stat-block {
        padding: 2.5rem 1.5rem;
        border-right: 1px solid var(--cream-200);
    }

    .stat-block:last-child {
        border-right: none;
    }

    .stat-block-number {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--green-800);
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .stat-block-label {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-medium);
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* ========== GOOGLE REVIEWS ========== */
    /* Review component styles in global.css */
    .google-reviews {
        padding: 5rem 2rem;
        background: var(--cream-50);
    }

    .google-reviews-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ========== CUSTOMER STORIES ========== */
    .testimonials {
        padding: 5rem 2rem;
        background: white;
    }

    .testimonials-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .testimonials-header h2 {
        color: var(--green-900);
        margin-bottom: 0.75rem;
    }

    .testimonials-header p {
        font-size: 1.125rem;
        color: var(--text-medium);
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-card {
        display: grid;
        grid-template-columns: min(420px, 40%) 1fr;
        background: var(--cream-50);
        border-radius: var(--radius-sm);
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .testimonial-card:last-child {
        margin-bottom: 0;
    }

    .testimonial-card:nth-child(even) {
        grid-template-columns: 1fr min(420px, 40%);
    }

    .testimonial-card:nth-child(even) .testimonial-image {
        order: 2;
    }

    .testimonial-card:nth-child(even) .testimonial-body {
        order: 1;
    }

    .testimonial-image {
        position: relative;
        min-height: 340px;
    }

    .testimonial-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .testimonial-body {
        padding: 2.5rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-project {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-heading);
        font-size: 0.8125rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--brand-600);
        margin-bottom: 1rem;
    }

    .testimonial-project svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-quote {
        font-size: 1.0625rem;
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        padding-left: 1.25rem;
        border-left: 3px solid var(--brand-400);
        font-style: italic;
    }

    .testimonial-footer {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--green-100), var(--green-200));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.875rem;
        color: var(--green-700);
        flex-shrink: 0;
    }

    .testimonial-author {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--green-900);
        font-size: 0.9375rem;
        line-height: 1.3;
    }

    .testimonial-location {
        font-size: 0.8125rem;
        color: var(--text-light);
    }

    /* CTA uses global .quote-section from global.css */

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .stats-bar-inner {
            grid-template-columns: repeat(2, 1fr);
        }

        .stat-block:nth-child(2) {
            border-right: none;
        }

        .stat-block:nth-child(3),
        .stat-block:nth-child(4) {
            border-top: 1px solid var(--cream-200);
        }

        .testimonial-card,
        .testimonial-card:nth-child(even) {
            grid-template-columns: 1fr;
        }

        .testimonial-card:nth-child(even) .testimonial-image {
            order: 0;
        }

        .testimonial-card:nth-child(even) .testimonial-body {
            order: 0;
        }

        .testimonial-image {
            min-height: 280px;
        }

        .testimonial-body {
            padding: 2rem;
        }
    }

    @media (max-width: 768px) {
        .stats-bar-inner {
            grid-template-columns: 1fr 1fr;
        }

        .stat-block {
            padding: 1.75rem 1rem;
        }

        .stat-block-number {
            font-size: 2rem;
        }

        .google-reviews {
            padding: 3.5rem 1.5rem;
        }

        .testimonials {
            padding: 3.5rem 1.5rem;
        }

        .testimonial-image {
            min-height: 220px;
        }
    }
