﻿/* override bootstrap */
.container {
    padding-left: 0;
    padding-right: 0;
}

/* Plans Intro Section with Inline Enroll Card */
.plans-intro-section {
    background-color: #FFFFFF;
    padding: 60px 0px 40px 0px;
}

    .plans-intro-section .container {
        max-width: 1148px;
        margin: 0 auto;
        padding: 0 0 0 0;
    }

.plans-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 14px;
    align-items: start;
}

.plans-intro-text {
    min-width: 0;
}

.plans-breadcrumb {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    color: #73767B;
    margin-bottom: 24px;
}

.plans-main-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 62px;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin-bottom: 15px;
}

.plans-subtitle {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin-bottom: 20px;
}

.plans-description {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    color: #505357;
    max-width: 100%;
}

/* Plan Filter Section - Full bleed grey background */
.plan-filter-section {
    background-color: #F6F6F6;
    padding: 0 0;
    height: 60px;
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.plan-filter-wrapper {
    max-width: 1148px;
    margin: 0 auto;
    padding: 0 60px 0 0px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.plan-filter-label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin: 0;
    flex-shrink: 0;
    max-width: 168px;
    width: 100%;
}

.plan-filter-tabs {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

.plan-filter-tab {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0%;
    color: #0072CE;
    text-decoration: underline;
    padding: 15px 0px;
    text-align: center;
    border: none;
    background: transparent;
    transition: all 0.3s;
    white-space: nowrap;
    max-width: 168px;
    width: 100%;
}

    .plan-filter-tab:hover {
        color: #1E3575;
    }

    .plan-filter-tab.active {
        background-color: #1E3575;
        color: #FFFFFF;
        text-decoration: none;
    }

/* Coverage Matrix Container - Constrained to 1148px */
.coverage-matrix-container {
    max-width: 1148px;
    margin: 0 auto;
}

/* Coverage Matrix - Desktop */
.coverage-matrix-section {
    margin-bottom: 80px;
    width: 100%;
}

.coverage-matrix-desktop {
    display: block;
}

.coverage-matrix-mobile {
    display: none;
}

.coverage-matrix {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
    background-color: #FFFFFF;
}

    .coverage-matrix thead th {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #2B2B2B;
        text-align: center;
        vertical-align: middle;
        background-color: #F6F6F6;
        line-height: 1.2;
        width: 88px;
        height: 70px;
    }

        .coverage-matrix thead th.plan-name-column,
        .coverage-matrix thead th.plan-price-column {
            background-color: #FFFFFF;
        }

        .coverage-matrix thead th.plan-name-column {
            text-align: left;
        }

.coverage-icon-label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2B2B2B;
    line-height: 18px;
    letter-spacing: 0%;
    display: block;
}

.plan-name-cell {
    text-align: center;
    background-color: #F6F6F6;
    vertical-align: middle;
    max-height: 50px;
    height: 50px;
    width: 168px;
}

.plan-price-cell {
    text-align: center;
    background-color: #F6F6F6;
    vertical-align: middle;
    height: 50px;
    width: 98px;
}

.plan-name {
    font-size: 18px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #1E3575;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0%;
    display: block;
}

.plan-price {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #1E3575;
    line-height: 100%;
    letter-spacing: 0%;
}

    .plan-price sup {
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .plan-price sub {
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }

/* Coverage cells with conditional backgrounds */
.coverage-cell {
    text-align: center;
    font-weight: 700;
    vertical-align: middle;
    height: 50px;
    width: 86px;
}

    .coverage-cell img {
        display: inline-block;
    }

    .coverage-cell.covered {
        background-color: #D9EAF8;
        color: #1E3575;
    }

    .coverage-cell.not-covered {
        background-color: #D9D9D9;
        color: #B8B8B8;
    }

/* Mobile Coverage Matrix */
.coverage-matrix-mobile {
    display: none;
    position: relative;
    margin-bottom: 40px;
}

.mobile-coverage-carousel {
    position: relative;
    padding: 0;
}

    .mobile-coverage-carousel .carousel-inner {
        padding: 0 50px 0 17px; /* Space for controls */
        margin-top: 190px;
    }

    .mobile-coverage-carousel .carousel-item {
        transition: transform 0.6s ease-in-out;
    }

        .mobile-coverage-carousel .carousel-item.active {
            opacity: 1;
        }

    /* Mobile Carousel Controls — use SVG image buttons */
    .mobile-coverage-carousel .carousel-control-prev,
    .mobile-coverage-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-coverage-carousel .carousel-control-prev {
        left: -23px;
    }

    .mobile-coverage-carousel .carousel-control-next {
        right: 6px;
    }

        /* Size the SVG arrow images */
        .mobile-coverage-carousel .carousel-control-prev img,
        .mobile-coverage-carousel .carousel-control-next img {
            width: 20px;
            height: 20px;
            display: block;
        }

    .mobile-coverage-carousel .carousel-indicators {
        position: static;
        margin-top: 20px;
        margin-bottom: 0;
    }

        .mobile-coverage-carousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #D9D9D9;
            border: none;
            opacity: 1;
            margin: 0 5px;
        }

            .mobile-coverage-carousel .carousel-indicators button.active {
                background-color: #0072CE;
            }

/* Mobile Matrix Table */
.coverage-matrix-mobile-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
    table-layout: fixed;
}

    .coverage-matrix-mobile-table thead th {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #2B2B2B;
        padding: 8px 4px;
        text-align: center;
        background-color: #F6F6F6;
        line-height: 1.2;
        vertical-align: middle;
        border: 1px solid #1E3575;
    }

        /* First column header - HIDE IT */
        .coverage-matrix-mobile-table thead th:first-child {
            width: 68px;
            background-color: transparent;
            border: none;
        }

        /* Plan header columns */
        .coverage-matrix-mobile-table thead th.mobile-plan-header {
            width: 66px;
            height: 94px;
            padding: 6px 3px;
            background-color: #F6F6F6;
            border: 1px solid #1E3575;
            vertical-align: middle;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

    /* Row headers (left column) */
    .coverage-matrix-mobile-table tbody th {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #2B2B2B;
        padding: 6px 4px;
        text-align: left;
        background-color: #F6F6F6;
        line-height: 16px;
        vertical-align: middle;
        width: 68px;
        border: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

        .coverage-matrix-mobile-table tbody th sup {
            font-size: 8px;
            line-height: 0;
        }

    /* Coverage cells */
    .coverage-matrix-mobile-table tbody td {
        text-align: center;
        padding: 12px 4px;
        width: 65px;
        height: 64px;
        vertical-align: middle;
        border: none;
    }

        .coverage-matrix-mobile-table tbody td.covered {
            background-color: #D9EAF8;
        }

        .coverage-matrix-mobile-table tbody td.not-covered {
            background-color: #D9D9D9;
        }

/* Plan header - horizontal layout */
.mobile-plan-header {
    display: table-cell !important;
    vertical-align: middle !important;
    text-align: center !important;
}

.mobile-plan-name {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E3575;
    display: block;
    line-height: 16px;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.solid-line {
    display: inline-block;
    width: 2em;
    border-bottom: 2px solid #D9D9D9;
    vertical-align: middle;
}

.mobile-plan-price {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1E3575;
    line-height: 1;
    display: block;
    padding-top: 4px;
    margin: 0 auto;
}

/* Fixed height for the name zone */
.mobile-plan-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    margin-bottom: 0;
    overflow-wrap: anywhere;
}

/* Divider line always appears right after the fixed-height name zone */
.solid-line {
    display: block;
    margin: 4px auto;
    border-bottom: 2px solid #D9D9D9;
}

/* Price follows the line, consistently positioned */
.mobile-plan-price {
    padding-top: 6px;
    padding-bottom: 6px;
    margin: 0 auto;
}

    .mobile-plan-price sup {
        font-size: 9px;
    }

.mobile-plan-price-permo {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #1E3575;
    line-height: 1;
}

/* Checkmark images */
.coverage-matrix-mobile-table img.checkmark {
    width: 18px;
    height: 14px;
    display: inline-block;
}

/* Plan Accordions */

.plan-accordions-hr {
    margin: 60px 0 60px 0;
}

    .plan-accordions-hr hr {
        border-top: 1px solid #D9D9D9;
        margin: 0;
    }

.plan-accordions-header {
    background-color: #FFFFFF;
    text-align: left;
}

.plan-accordionsheader h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0%;
    color: #2B2B2B;
    padding-bottom: 14.42px;
}

.plan-accordions-description {
    background-color: #FFFFFF;
    text-align: left;
}

    .plan-accordions-description p {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        margin: 0;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0%;
        color: #2B2B2B;
        padding-bottom: 14.42px;
    }

.plan-accordions-section {
    margin-bottom: 40px;
}

.plan-accordion {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 0;
    border: 2px solid #D9D9D9;
}

/* Desktop Row 1: Icon + Title on left, Price box on right */
.plan-accordion-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 32px;
    background-color: #FFFFFF;
}

/* Desktop: 2-column top area */
.plan-accordion-top {
    display: grid;
    grid-template-columns: 1fr 240px;
    align-items: stretch;
}

/* Left column contains icon+title row, description, link */
.plan-accordion-left {
    padding: 30px 32px;
}

/* Icon + title aligned horizontally */
.plan-accordion-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
}

.plan-accordion-icon {
    width: 31.49px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 24px;
}

    .plan-accordion-icon img {
        object-fit: contain;
        max-width: initial;
        height: initial;
    }

.plan-accordion-title {
    flex: 1;
}

    .plan-accordion-title h3 {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #2B2B2B;
        margin: 0;
        line-height: 100%;
    }

/* Price box - Grey background on right, full height */
.plan-accordion-price {
    background-color: #F6F6F6;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.price-amount {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 100%;
    letter-spacing: 0%;
    display: block;
    margin-bottom: 4px;
}

    .price-amount sup {
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
    }

.price-term {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2B2B2B;
    line-height: 24px;
    letter-spacing: 0%;
}

.plan-enroll-btn {
    display: inline-block;
    background-color: #0072CE;
    color: #FFFFFF;
    border: 2px solid #0072CE;
    border-radius: 999px;
    padding: 0 24px;
    height: 52px;
    width: 206px;
    line-height: 46px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

    .plan-enroll-btn:hover {
        background-color: #1E3575;
        border-color: #1E3575;
        color: #FFFFFF;
    }

/* Desktop Row 2: Description (full width) */
.plan-accordion-description-row {
    padding: 0px 32px 30px 32px;
    background-color: #FFFFFF;
}

/* Description sits under title in left column */
.plan-accordion-description {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #505357;
    margin: 18px 0 18px 0;
}

/* Show/hide for desktop vs mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Bottom Section - White background with expandable content */
.plan-accordion-content {
    padding: 30px 32px;
    background-color: #FFFFFF;
    border-top: 2px solid #D9D9D9;
}

.plan-accordion-details {
    border-top: 2px solid #D9D9D9;
    background: #FFFFFF;
}

.plan-accordion-details-inner {
    padding: 24px 32px 30px 32px;
}

.plan-accordion-details-two-column {
    display: flex;
    gap: 60px;
}

.plan-accordion-details-box {
}

.plan-accordion-details h4 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0%;
    color: #505357;
    margin-bottom: 16px;
}

.plan-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .plan-includes-list li {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0%;
        color: #505357;
        padding-left: 0;
        margin-bottom: 8px;
    }

        .plan-includes-list li:before {
            content: '• ';
            color: #2B2B2B;
            font-weight: bold;
            margin-right: 8px;
        }

.plan-includes-list-numbered {
    list-style: none;
    counter-reset: num;
    padding: 0;
    margin: 0;
}

    .plan-includes-list-numbered li {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0%;
        color: #2B2B2B;
        padding-left: 0;
        margin-bottom: 8px;
        counter-increment: num;
    }

        .plan-includes-list-numbered li:before {
            content: counter(num)'. ';
            color: #2B2B2B;
            font-weight: bold;
            margin-right: 8px;
        }

.plan-toggle-link {
    display: inline-flex;
    align-items: center;
/*    gap: 8px;*/
    color: #0072CE;
    text-decoration: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-top: 0;
    cursor: pointer;
}

    .plan-toggle-link:hover {
        color: #1E3575;
    }

    .plan-toggle-link .arrow-icon {
        width: 18px;
        height: 10px;
        margin: 0px 10px 0 0;
        transition: transform 0.3s;
        transform: rotate(90deg);
    }

/* Rotate arrow when expanded */
.plan-toggle-open[data-expanded="true"] .arrow-icon,
.plan-toggle-close[data-expanded="true"] .arrow-icon {
    transform: rotate(-90deg);
}

.plan-toggle-close {
    display: none;
}

.toggle-text {
    align-items: center;
    gap: 8px;
    color: #0072CE;
    text-decoration: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-top: 0;
    cursor: pointer;
}

    .toggle-text:hover {
        color: #1E3575;
    }

/* Upgrades Section */
.upgrades-addons-section {
    margin-bottom: 40px;
}

    .upgrades-addons-section h2 {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 36px;
        letter-spacing: 0%;
        color: #2B2B2B;
        margin-bottom: 20px;
    }

    .upgrades-addons-section p {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0%;
        color: #505357;
        margin-bottom: 12px;
    }

        .upgrades-addons-section p span {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 18px;
            font-weight: 600;
            line-height: 30px;
            letter-spacing: 0%;
            color: #0072CE;
            margin-bottom: 12px;
        }

/* Plans Banner Image - CONSTRAINED TO 1148px */
.plans-banner-image {
    width: 100%;
    max-width: 1148px;
    margin: 0 auto;
    height: 474px;
    overflow: hidden;
}

    .plans-banner-image picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .plans-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

/* Enroll Banner */
.enroll-banner {
    background-color: #FFFFFF;
    padding: 0 0 60px 0;
    margin: 0;
}

.enroll-banner-header {
    background-color: #1E3A71;
    color: #FFFFFF;
    padding: 14.42px 20px 10px 20px;
    text-align: center;
}

    .enroll-banner-header h2 {
        margin-bottom: 0px;
    }

.enroll-banner-description {
    background-color: #1E3A71;
    padding: 0px 12% 14.42px 12%;
    text-align: center;
}

    .enroll-banner-description p {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        margin: 0;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0%;
        color: #FFFFFF;
        padding-bottom: 14.42px;
    }

    .enroll-banner-description a {
        display: inline-flex;
        align-items: center;
        color: #FFFFFF;
        text-decoration: underline;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0%;
        margin-top: 0;
        cursor: pointer;
    }

/* What Customers Are Saying Section */
.testimonials-customers-section {
    background-color: #FFFFFF;
    padding: 60px 0 60px 0;
    max-width: 1148px;
    margin: 0 auto;
}

.testimonials-customers-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
}

.testimonials-customers-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B2B2B;
    text-align: left;
    margin: 0;
    flex: 1 1 420px;
    max-width: 560px;
}

.testimonials-customers-card {
    background-color: #D9EAF8;
    padding: 30px 40px;
    flex: 0 0 607px;
    max-width: 560px;
    height: 208px;
    justify-content: center;
}

.testimonials-customers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonials-customers-author {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin: 0;
}

.testimonials-customers-stars {
    color: #FEC426;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.testimonials-customers-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin: 0;
}

/* ZIP Code Modal Styles */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    background-color: #FFFFFF;
    border-bottom: none;
    padding: 32px 32px 20px 32px;
}

.modal-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 100%;
}

.modal-body {
    padding: 32px 32px 32px 32px;
}

.modal-description {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2B2B2B;
    margin-bottom: 20px;
}

#zipForm .input-group {
    border: 2px solid #0072CE;
}

#zipForm .zip-input {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    min-width: 200px;
    height: 52px;
}

    #zipForm .zip-input:focus {
        outline: none;
        box-shadow: none;
        border: none;
    }

#zipForm .zip-submit-btn {
    background-color: #0072CE;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    border-radius: 0;
    transition: background-color 0.3s;
    height: 52px;
    min-width: 120px;
}

    #zipForm .zip-submit-btn:hover {
        background-color: #1E3575;
    }

/* =====================================================
   Heating & Cooling Mobile Matrix — static 4-column table
   No carousel, no controls, no indicators. Full width.
   ===================================================== */
.heating-mobile-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 1px;
}

    /* Narrow left label column so 4 plan columns have maximum room */
    .heating-mobile-table thead th:first-child,
    .heating-mobile-table tbody th,
    .heating-label-col {
        width: 68px;
        min-width: 68px;
        max-width: 68px;
    }

    /* Plan header cells — equal width, auto-calculated from remaining space */
    .heating-mobile-table thead th.mobile-plan-header {
        width: auto; /* evenly share remaining width */
        height: 94px;
        padding: 4px 2px;
        background-color: #F6F6F6;
        border: 1px solid #1E3575;
        vertical-align: middle;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Tighter fonts inside the header to fit 4 columns */
    .heating-mobile-table .mobile-plan-name {
        font-size: 11px;
        line-height: 14px;
        height: auto; /* override the fixed 42px height from shared rule */
        min-height: 28px;
        display: block;
        margin-bottom: 2px;
    }

    .heating-mobile-table .solid-line {
        display: block;
        width: 2em;
        margin: 4px auto;
        border-bottom: 1px solid #D9D9D9;
    }

    .heating-mobile-table .mobile-plan-price {
    }

        .heating-mobile-table .mobile-plan-price sup {
        }

    .heating-mobile-table .mobile-plan-price-permo {
        font-size: 10px;
    }

    /* Row header cells */
    .heating-mobile-table tbody th {
        font-size: 11px;
        line-height: 13px;
        padding: 5px 3px;
        background-color: #F6F6F6;
        text-align: left;
        vertical-align: middle;
        border: none;
        word-wrap: break-word;
        hyphens: auto;
    }

        .heating-mobile-table tbody th sup {
            font-size: 7px;
        }

    /* Coverage data cells */
    .heating-mobile-table tbody td {
        text-align: center;
        padding: 10px 2px;
        height: 56px;
        vertical-align: middle;
        border: none;
    }

        .heating-mobile-table tbody td.covered {
            background-color: #D9EAF8;
        }

        .heating-mobile-table tbody td.not-covered {
            background-color: #D9D9D9;
        }

    .heating-mobile-table img.checkmark {
        width: 14px;
        height: 11px;
        display: inline-block;
    }

/* Remove the carousel container left/right padding for the heating table */
.coverage-matrix-mobile .heating-mobile-table-wrapper {
    padding: 0;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .plans-intro-section {
        padding: 40px 16px 24px 16px;
    }

    .plans-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plans-breadcrumb {
        font-size: 16px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 600;
        line-height: 32px;
        color: #73767B;
        margin-bottom: 20px;
    }

    .plans-main-title {
        font-size: 32px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 400;
        color: #2B2B2B;
        line-height: 1.4;
        letter-spacing: 0%;
        margin-bottom: 20px;
        padding-right: 20px;
    }

    .plans-subtitle {
        font-size: 20px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 600;
        color: #2B2B2B;
        line-height: 32px;
        letter-spacing: 0%;
        padding-right: 45px;
    }

    .plans-description {
        font-size: 18px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 400;
        color: #2B2B2B;
        line-height: 30px;
        letter-spacing: 0%;
        padding-right: 40px;
    }

    .plan-filter-section {
        padding: 16px 0;
    }

    .plan-filter-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 16px;
    }

    .plan-filter-label {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0%;
        max-width: 100px;
    }

    .plan-filter-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .plan-filter-tab:last-child {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 350px;
    }

    .plan-filter-tab {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;
        background-color: #F6F6F6;
        padding: 10px 16px;
    }

        .plan-filter-tab.active {
            width: 100%;
        }

    .coverage-matrix-desktop {
        display: none !important;
    }

    .coverage-matrix-mobile {
        display: block !important;
    }

    .coverage-matrix-container {
        padding: 0 47px;
        margin-top: 190px;
        margin-bottom: 40px;
    }

    /* Mobile Accordion */
    .plan-accordions-section {
        padding: 0 16px;
    }

    .plan-accordion {
        margin-bottom: 20px;
    }

    .plan-accordions-header {
        margin-top: 18px;
        padding: 0 16px;
    }

    .plan-accordions-description p {
        margin-top: 18px;
        padding: 0 70px 18px 16px;
    }

    .plan-accordion-top {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 12px;
        row-gap: 0;
        align-items: center;
        min-height: 78px;
    }

    .plan-accordion-left {
        display: contents;
    }

    .plan-accordion-heading {
        grid-column: 1;
        grid-row: 1;
        padding: 16px 8px 16px 20px;
        align-items: center;
    }

    .plan-accordion-top-row {
        padding: 20px;
        flex-direction: row;
        align-items: center;
    }

    .plan-accordion-icon {
        width: 32px;
        height: 32px;
        margin: 0;
        flex-shrink: 0;
    }

        .plan-accordion-icon img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

    .plan-accordion-title h3 {
        font-size: 20px;
        line-height: 120%;
        margin: 0;
    }

    .plan-accordion-price {
        grid-column: 2;
        grid-row: 1;
        padding: 16px 16px;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .plan-enroll-btn.mobile-only {
        grid-column: 1 / -1;
        grid-row: 4;
        display: block;
        width: calc(100% - 40px);
        margin: 0 20px 20px 20px;
        text-align: center;
        font-size: 18px;
    }

    .plan-enroll-btn.desktop-only {
        display: none !important;
    }

    .price-amount {
        font-size: 16px;
        margin: 0;
        line-height: 1;
    }

        .price-amount sup {
            font-size: 12px;
        }

    .price-term {
        font-size: 10px;
        line-height: 1;
        margin-left: 6px;
    }

    .plan-accordion-price .price-term {
        display: none;
    }

    .plan-accordion-price .price-amount::after {
        content: "/mo";
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 12px;
        font-weight: 400;
        color: #1E3575;
        margin-left: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        margin-bottom: 20px;
    }

    .plan-accordion-content {
        padding: 20px;
    }

    .plan-accordion-description {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 16px;
        line-height: 22px;
        padding: 16px 75px 0 20px;
        margin: 0;
        border-top: 2px solid #D9D9D9;
    }

    .plan-toggle-open {
        grid-column: 1 / -1;
        grid-row: 3;
        padding: 12px 20px 20px 20px;
    }

    .plan-accordion-details {
        border-top: none;
    }

    .plan-accordion-details-inner {
        padding: 20px;
    }

    .plan-accordion-details h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .plan-includes-list li {
        font-size: 16px;
        line-height: 1.6;
    }

    .plan-toggle-link {
        font-size: 16px;
    }

    .toggle-text {
        font-size: 16px;
    }

    .upgrades-addons-section {
        padding: 0 16px;
        margin-bottom: 30px;
    }

        .upgrades-addons-section h2 {
            font-size: 22px;
        }

        .upgrades-addons-section p {
            font-size: 16px;
            line-height: 1.6;
        }

    .ways-to-enroll-card-inline {
        max-width: 100%;
    }

    .plans-banner-image {
        height: 240px;
    }

    .testimonials-customers-section {
        padding: 0px 16px;
    }

    .testimonials-customers-layout {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .testimonials-customers-title {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 28px;
        line-height: 130%;
    }

    .testimonials-customers-card {
        padding: 24px;
    }

    .testimonials-customers-title,
    .testimonials-customers-card {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .testimonials-customers-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 12px;
    }

    .testimonials-customers-author {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
    }

    .testimonials-customers-stars {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 16px;
    }

    .testimonials-customers-text {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 16px;
        line-height: 26px;
    }

    .modal-header {
        padding: 24px 24px 16px 24px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        padding: 0px 24px 24px 24px;
    }

    .modal-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    #zipForm .input-group {
        flex-direction: column;
        gap: 10px;
    }

    #zipForm .zip-input {
        width: 100%;
        min-width: unset;
    }

    #zipForm .zip-submit-btn {
        width: 100%;
        min-width: unset;
    }
}


/* =====================================================
Back to Top — Sticky Button (All Plans filter only)
===================================================== */
/* Base button — hidden by default, revealed via .visible class */
.back-to-top-btn {
    position: fixed;
    bottom: 425px;
    right: 0px;
    z-index: 1050;
    display: none; /* hidden until .visible is added */
    align-items: center;
    gap: 10px;
    background-color: #0072CE;
    color: #FFFFFF;
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 0 22px;
    height: 40px;
    width:150px;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.back-to-top-btn.visible {
    display: flex;
}

.back-to-top-btn:hover,
.back-to-top-btn:focus {
    background-color: #1E3575;
    color: #FFFFFF;
    outline: none;
}

/* The "Back to Top" label — hidden on mobile */
.back-to-top-label {
    /* shown on desktop, hidden on mobile via media query */
}

/* Chevron SVG icon */
.back-to-top-chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .back-to-top-btn {
        width: 40px;
        height: 30px;
        padding: 0;
        border-radius: 20px 0 0 20px;
        justify-content: center;
        bottom: 425px;
        right: 0px;
        gap: 0;
    }

    /* Hide the text label on mobile — icon only */
    .back-to-top-label {
        display: none;
    }

    .back-to-top-chevron {
        width: 16px;
        height: 16px;
    }
}