#hero_section {
	background-image: linear-gradient(160deg,rgba(17,17,17,.75) 0%,rgba(30,30,30,.85) 100%) , url(/imageserver/UserMedia/landlroofing/comm-banner002.jpg);
}

#res_products_section,
#com_products_section,
#tile_products_section {
    background: var(--charcoal);
    background-image: linear-gradient(160deg, rgba(122, 193, 67, .05) 0%, transparent 40%);
}
#res_products_section .h2-heading,
#com_products_section .h2-heading,
#tile_products_section .h2-heading {
    color: var(--white);
}
#res_products_section .section-tag,
#com_products_section .section-tag,
#tile_products_section .section-tag {
    background: rgba(122, 193, 67, .15);
}
#res_products_section .section-sub,
#com_products_section .section-sub,
#tile_products_section .section-sub {
    color: rgba(255, 255, 255, .55);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(255, 255, 255, .06);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}
.product-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    background: var(--light-bg);
    border-bottom: 3px solid var(--green);
    min-height: 110px;
}
.product-card-logo {
    max-height: 55px;
    width: auto;
    max-width: 180px;
}
.product-card-body {
    padding: 28px 25px 10px;
    flex-grow: 1;
}
.product-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--black);
}
.product-card-body p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.5em;
    margin: 0 0 18px;
}
.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.product-highlights li {
    position: relative;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    padding-left: 22px;
    margin-bottom: 8px;
    line-height: 1.4em;
}
.product-highlights li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid var(--green);
    border-right: 2px solid var(--green);
    transform: rotate(45deg);
}
.product-card-btn {
    margin: 0 25px 25px;
    text-align: center;
    display: block;
}

/* -- Service Page Section Alternation -- */
#res_intro_section,
#com_intro_section,
#tile_intro_section {
    background: var(--white);
}
#res_quality_section,
#com_quality_section,
#tile_quality_section {
    background: var(--light-bg);
    background-image: linear-gradient(90deg, var(--green) 0%, var(--green) 6px, transparent 6px);
}

/* -- Product Cards Responsive -- */
.product-cards-single {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .product-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .product-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}