 /* =========================================================
   Commercial-cleaning hero banner
   ========================================================= */

.impact-hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.impact-hero-section .pos-rel-ban {
    position: relative;
    min-height: 690px;
}

/* Full background image */
.impact-hero-section .impact-hero-image {
    display: block;
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: center center;
}

/* Overlay content row */
.impact-hero-section .impact-hero-content-row {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 1440px;
    min-height: 690px;
    margin: 0 auto;
    padding: 48px 55px;
    pointer-events: none;
}

/* Frosted white panel */
.impact-hero-section .impact-hero-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    min-height: 590px;
    padding: 76px 68px 54px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 38px;
    box-shadow: 0 14px 35px rgba(25, 45, 57, 0.08);
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

/* Heading */
.impact-hero-section .impact-hero-heading {
    max-width: 500px;
    margin: 0 0 53px;
    color: #202020;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

/* Description */
.impact-hero-section .impact-hero-text {
    max-width: 480px;
    margin: 0 0 68px;
    color: #323232;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.58;
}

/* CTA layout */
.impact-hero-section .impact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 58px;
}

.impact-hero-section .impact-hero-buttons span {
    display: inline-flex;
}

/* Shared CTA styles */
.impact-hero-section .impact-hero-buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 67px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Blue, teal, green quote button */
.impact-hero-section .impact-primary-button {
    min-width: 250px;
    color: #ffffff;
    background: linear-gradient(90deg, #129fd9 0%, #008ab6 48%, #08770d 100%);
    border: 1px solid transparent;
}

.impact-hero-section .impact-primary-button:hover,
.impact-hero-section .impact-primary-button:focus {
    color: #ffffff;
    background: linear-gradient(90deg, #0c8fc7 0%, #0079a3 48%, #05680a 100%);
    box-shadow: 0 9px 22px rgba(0, 113, 151, 0.24);
    transform: translateY(-2px);
}

/* Outlined "See how we work" button */
.impact-hero-section .impact-secondary-button {
    min-width: 235px;
    color: #1487be;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid #4da6d0;
}

.impact-hero-section .impact-secondary-button:hover,
.impact-hero-section .impact-secondary-button:focus {
    color: #ffffff;
    background: #178bc1;
    border-color: #178bc1;
    box-shadow: 0 8px 20px rgba(23, 139, 193, 0.2);
    transform: translateY(-2px);
}

/* Benefit grid */
.impact-hero-section .impact-hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 27px;
    max-width: 510px;
}

.impact-hero-section .impact-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #363636;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
}

.impact-hero-section .impact-benefit-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    color: #168bc4;
    font-size: 22px;
    text-align: center;
}


.impact-testimonials-section {
    position: relative;
    overflow: hidden;
    padding-top: 78px;
    padding-bottom: 85px;
    background-color: #087fc0;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 132, 207, 0.88) 0%,
            rgba(0, 119, 192, 0.86) 50%,
            rgba(0, 111, 181, 0.89) 100%
        ),
        url("//dvm0q8ak413bh.cloudfront.net/data/org/31159/media/img/source/edit/3680497_edit.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Optional soft overlay for more consistent contrast */
.impact-testimonials-section::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    background: rgba(0, 119, 190, 0.14);
}

.impact-testimonials-section .is-container {
    position: relative;
    z-index: 1;
}

/* White centered title */
.impact-testimonials-section .impact-testimonials-heading {
    margin: 0 0 50px;
    color: #ffffff;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Review cards */
.impact-testimonials-section .impact-testimonial-grid {
    justify-content: center;
}

.impact-testimonials-section .impact-testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 605px;
    padding: 62px 62px 55px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 38px;
    box-shadow: 0 14px 34px rgba(0, 58, 92, 0.13);
}

/* Gold stars */
.impact-testimonials-section .impact-stars {
    display: flex;
    gap: 7px;
    margin-bottom: 31px;
    color: #f4ad22;
    font-size: 21px;
    line-height: 1;
}

/* Review copy */
.impact-testimonials-section .impact-testimonial-text {
    margin: 0;
    color: #37383a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* Reviewer stays near bottom, regardless of review length */
.impact-testimonials-section .impact-reviewer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 38px;
    color: #252628;
}

.impact-testimonials-section .impact-reviewer strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* Blue round quote icon */
.impact-testimonials-section .impact-review-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: #0c86c7;
    border-radius: 50%;
    font-size: 21px;
}

.impact-testimonials-section .impact-review-icon i {
    transform: translateY(1px);
}