﻿/* =========================================================
   Residential Redesign
   Scoped to .residential-redesign
   ========================================================= */

.residential-redesign {
    color: #1f191a;
}

    .residential-redesign .res-container {
        width: 1280px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 70px;
    }

    /* Buttons */

    .residential-redesign .res-btn-outline {
        color: #fff;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 6px;
        padding: 12px 28px;
        font-weight: 600;
        text-decoration: none;
    }

        .residential-redesign .res-btn-outline:hover,
        .residential-redesign .res-btn-outline:focus {
            color: #c20430;
            background: #fff;
            text-decoration: none;
        }

    .residential-redesign .res-btn-red {
        width: 100%;
        color: #fff;
        background: #c20430;
        border: 1px solid #c20430;
        border-radius: 10px;
        padding: 13px 18px;
        font-weight: 700;
        text-decoration: none;
    }

        .residential-redesign .res-btn-red:hover,
        .residential-redesign .res-btn-red:focus {
            color: #fff;
            background: #a50328;
            border-color: #a50328;
            text-decoration: none;
        }

    /* Hero */

    /* Hero */

    .residential-redesign .res-hero {
        position: relative;
        display: table;
        width: 100%;
        min-height: 430px;
        overflow: hidden;
        background: #c20430;
    }

    .residential-redesign .res-hero-bg {
        display: table-cell;
        width: 60%;
        vertical-align: middle;
        background: url("/Content/ResidentialRedesign/Hero_Background_May2026.jpg") center center / cover no-repeat;
    }

    .residential-redesign .res-hero .res-container {
        display: table-cell;
        width: 40%;
        vertical-align: middle;
        padding: 0;
        background: #c20430;
    }

    .residential-redesign .res-hero-copy {
        position: relative;
        z-index: 2;
        padding: 75px 55px;
        margin-left: 40px;
        color: #fff;
    }

        .residential-redesign .res-hero-copy:after {
            content: "";
            position: absolute;
            top: -25%;
            right: -190px;
            width: 380px;
            height: 150%;
            background: #c20430;
            border-radius: 0 50% 50% 0;
            z-index: -1;
        }

        .residential-redesign .res-hero-copy h1 {
            margin: 0 0 22px;
            color: #fff;
            font-size: 56px;
            line-height: 1.05;
            font-weight: 800;
        }

    .residential-redesign .res-hero-lead {
        max-width: 420px;
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.5;
    }

    .residential-redesign .res-hero-sub {
        margin-bottom: 30px;
        font-size: 16px;
        font-weight: 600;
    }

    /* Quick Actions */

    .residential-redesign .res-quick-actions {
        padding: 70px 0;
        background: #fff;
        border-bottom: 1px solid rgba(222,225,230,.45);
    }

        .residential-redesign .res-quick-actions h2 {
            margin: 0 0 36px;
            text-align: center;
            color: #1f191a;
            font-size: 26px;
            font-weight: 800;
        }

    .residential-redesign .res-action-card {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 102px;
        padding: 24px 18px 24px 24px;
        gap: 14px;
        color: #1f191a;
        background: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 16px;
        box-shadow: 0 10px 30px -5px rgba(0,0,0,.05), 0 4px 12px -4px rgba(0,0,0,.03);
        text-decoration: none;
        overflow: hidden;
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

        .residential-redesign .res-action-card:before {
            content: "";
            position: absolute;
            left: 0;
            top: 18px;
            bottom: 18px;
            width: 4px;
            background: #c20430;
            border-radius: 0 4px 4px 0;
            transform: scaleY(0);
            transform-origin: center;
            transition: transform .22s ease;
        }

        .residential-redesign .res-action-card:hover,
        .residential-redesign .res-action-card:focus {
            color: #1f191a;
            text-decoration: none;
            transform: translateY(-3px);
            border-color: rgba(194,4,48,.25);
            box-shadow: 0 16px 38px -8px rgba(0,0,0,.14);
        }

            .residential-redesign .res-action-card:hover:before,
            .residential-redesign .res-action-card:focus:before {
                transform: scaleY(1);
            }

    .residential-redesign .res-action-icon {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c20430;
        background: #fef2f2;
        border-radius: 15px;
        transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .residential-redesign .res-action-card:hover .res-action-icon,
    .residential-redesign .res-action-card:focus .res-action-icon {
        color: #fff;
        background: #c20430;
        transform: scale(1.06);
    }

    .residential-redesign .res-action-copy {
        flex: 1;
    }

    .residential-redesign .res-action-card strong {
        display: block;
        font-size: 16px;
        font-weight: 800;
        transition: color .22s ease;
    }

    .residential-redesign .res-action-card small {
        display: block;
        color: #565d6d;
        font-size: 13px;
        line-height: 1.4;
    }

    .residential-redesign .res-action-card:hover strong,
    .residential-redesign .res-action-card:focus strong {
        color: #c20430;
    }

    .residential-redesign .res-action-card > .fa-angle-right {
        color: #a7a5a6;
        transition: transform .22s ease, color .22s ease;
    }

    .residential-redesign .res-action-card:hover > .fa-angle-right,
    .residential-redesign .res-action-card:focus > .fa-angle-right {
        color: #c20430;
        transform: translateX(4px);
    }

    /* Speed Cards */

    .residential-redesign .res-speeds {
        padding: 85px 0 95px;
        background: #fff;
    }

    .residential-redesign .res-section-heading {
        max-width: 640px;
        margin: 0 auto 60px;
        text-align: center;
    }

        .residential-redesign .res-section-heading h2 {
            margin: 0 0 14px;
            color: #1f191a;
            font-size: 36px;
            font-weight: 800;
        }

        .residential-redesign .res-section-heading p {
            color: #a7a5a6;
            font-size: 18px;
            line-height: 1.55;
        }

    .residential-redesign .res-plan-row {
        max-width: 1120px;
        margin: 0 auto;
        display: flex;
    }

        .residential-redesign .res-plan-row > [class*="col-"] {
            display: flex;
        }

    .residential-redesign .res-plan-card {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 440px;
        padding: 36px 32px 30px;
        background: #fff;
        border: 1px solid #bdc1ca;
        border-radius: 16px;
        box-shadow: 0 10px 30px -5px rgba(0,0,0,.04);
    }

        .residential-redesign .res-plan-card.featured {
            border: 2px solid rgba(194,4,48,.65);
            box-shadow: 0 18px 42px -10px rgba(194,4,48,.18), 0 10px 24px -8px rgba(0,0,0,.10);
            transform: translateY(-2px);
        }

    .residential-redesign .res-plan-badge {
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 16px;
        color: #fff;
        background: #c20430;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

    .residential-redesign .res-plan-card h3 {
        margin: 0 0 34px;
        color: #1f191a;
        font-size: 48px;
        line-height: 1.05;
        font-weight: 800;
    }

    .residential-redesign .res-plan-card ul {
        flex: 1;
        margin: 0 0 30px;
        padding: 0;
        list-style: none;
    }

    .residential-redesign .res-plan-card li {
        position: relative;
        margin-bottom: 18px;
        padding-left: 26px;
        font-size: 18px;
        line-height: 1.55;
        font-weight: 500;
        color: #3b3b3b;
    }

        .residential-redesign .res-plan-card li:before {
            content: "\f00c";
            position: absolute;
            top: 1px;
            left: 0;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 12px;
        }

    .residential-redesign .res-plan-footer {
        margin-top: auto;
    }

    .residential-redesign .res-savings {
        margin-bottom: 16px;
        color: #a7a5a6;
        font-size: 13px;
    }

    .residential-redesign .res-plan-card small {
        display: block;
        margin-top: 12px;
        text-align: center;
        color: #a7a5a6;
        font-size: 12px;
    }

    /* Story Section */

    .residential-redesign .res-trust-section {
        padding: 105px 0;
        background: #fff;
    }

    .residential-redesign .res-story-row {
        display: flex;
        align-items: center;
        gap: 70px;
        margin-bottom: 125px;
    }

        .residential-redesign .res-story-row:last-child {
            margin-bottom: 0;
        }

        .residential-redesign .res-story-row.reverse {
            flex-direction: row-reverse;
        }

    .residential-redesign .res-story-copy,
    .residential-redesign .res-story-media {
        width: 50%;
    }

    .residential-redesign .res-story-copy {
        max-width: 560px;
    }

    .residential-redesign .res-red-line {
        display: block;
        width: 48px;
        height: 5px;
        margin-bottom: 30px;
        background: #c20430;
        border-radius: 3px;
    }

    .residential-redesign .res-story-copy h2,
    .residential-redesign .res-testimonial-copy h2,
    .residential-redesign .res-final-cta h2 {
        margin: 0 0 28px;
        color: #1f191a;
        font-size: 48px;
        line-height: 1.1;
        font-weight: 800;
    }

    .residential-redesign .res-story-copy p,
    .residential-redesign .res-testimonial-copy p {
        color: #a7a5a6;
        font-size: 20px;
        line-height: 1.65;
    }

    .residential-redesign .res-story-media img {
        display: block;
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(0,0,0,.16);
    }

    /* Video Testimonial */

    /* Testimonial Section */

    .residential-redesign .res-testimonial {
        padding: 120px 0;
        background: linear-gradient(135deg, #15171b 0%, #1f2329 100%);
        overflow: hidden;
    }

        .residential-redesign .res-testimonial .res-container {
            display: flex;
            align-items: center;
            gap: 90px;
        }

    .residential-redesign .res-testimonial-copy {
        flex: 0 0 38%;
    }

        .residential-redesign .res-testimonial-copy .res-red-line {
            background: #c20430;
        }

        .residential-redesign .res-testimonial-copy h2 {
            margin-bottom: 22px;
            color: #fff;
            font-size: 58px;
            line-height: 1.02;
            font-weight: 800;
        }

        .residential-redesign .res-testimonial-copy p {
            max-width: 420px;
            color: rgba(255,255,255,.72);
            font-size: 18px;
            line-height: 1.7;
        }

    .residential-redesign .res-video-card {
        position: relative;
        display: block;
        flex: 1;
        max-width: 620px;
        border-radius: 24px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 32px 70px rgba(0,0,0,.35), 0 10px 24px rgba(0,0,0,.22);
        transform: translateY(0);
        transition: transform .25s ease, box-shadow .25s ease;
    }

        .residential-redesign .res-video-card img {
            display: block;
            width: 100%;
            height: 330px;
            object-fit: cover;
            object-position: center;
            opacity: .78;
            transform: scale(1);
            transition: opacity .25s ease, transform .35s ease;
        }

        .residential-redesign .res-video-card:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,.35), rgba(0,0,0,.08));
            z-index: 1;
        }

    .residential-redesign .res-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 84px;
        height: 84px;
        margin-top: -42px;
        margin-left: -42px;
        padding-left: 5px;
        color: #c20430;
        background: rgba(255,255,255,.96);
        border-radius: 50%;
        text-align: center;
        line-height: 84px;
        font-size: 30px;
        box-shadow: 0 18px 42px rgba(0,0,0,.35), 0 0 0 10px rgba(255,255,255,.12);
        transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .residential-redesign .res-video-card:hover,
    .residential-redesign .res-video-card:focus {
        transform: translateY(-4px);
        box-shadow: 0 40px 90px rgba(0,0,0,.42), 0 14px 30px rgba(0,0,0,.24);
    }

        .residential-redesign .res-video-card:hover img,
        .residential-redesign .res-video-card:focus img {
            opacity: .92;
            transform: scale(1.04);
        }

        .residential-redesign .res-video-card:hover .res-play-button,
        .residential-redesign .res-video-card:focus .res-play-button {
            transform: scale(1.08);
            background: #fff;
            box-shadow: 0 22px 50px rgba(0,0,0,.42), 0 0 0 14px rgba(255,255,255,.14);
        }

    /* Final CTA */

    .residential-redesign .res-final-cta {
        padding: 95px 0;
        text-align: center;
        color: #fff;
        background: #c20430;
    }

        .residential-redesign .res-final-cta h2 {
            color: #fff;
            font-size: 52px;
        }

        .residential-redesign .res-final-cta p {
            max-width: 600px;
            margin: 0 auto 36px;
            color: #fff;
            font-size: 18px;
            opacity: .9;
        }

/* Responsive */

@media (max-width: 991px) {
    .residential-redesign .res-container {
        padding: 0 35px;
    }

    .residential-redesign .res-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .residential-redesign .res-hero-bg {
        position: relative;
        display: block;
        margin-top: 40px;
    }

        .residential-redesign .res-hero-bg img {
            width: 100%;
            min-height: 260px;
        }

    .residential-redesign .res-hero-mask {
        display: none;
    }

    .residential-redesign .res-plan-row {
        display: block;
    }

    .residential-redesign .res-action-card,
    .residential-redesign .res-plan-card {
        margin-bottom: 22px;
    }

    .residential-redesign .res-story-row,
    .residential-redesign .res-story-row.reverse,
    .residential-redesign .res-testimonial .res-container {
        display: block;
    }

    .residential-redesign .res-story-copy,
    .residential-redesign .res-story-media,
    .residential-redesign .res-testimonial-copy,
    .residential-redesign .res-video-card {
        width: 100%;
    }

    .residential-redesign .res-story-copy {
        margin-bottom: 35px;
    }

    .residential-redesign .res-video-card {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .residential-redesign .res-container {
        padding: 0 22px;
    }

    .residential-redesign .res-hero-copy h1 {
        font-size: 42px;
    }

    .residential-redesign .res-hero-lead {
        font-size: 17px;
    }

    .residential-redesign .res-hero-sub {
        font-size: 16px;
    }

    .residential-redesign .res-quick-actions,
    .residential-redesign .res-speeds,
    .residential-redesign .res-trust-section,
    .residential-redesign .res-testimonial,
    .residential-redesign .res-final-cta {
        padding: 55px 0;
    }

    .residential-redesign .res-plan-card h3 {
        font-size: 38px;
    }

    .residential-redesign .res-story-copy h2,
    .residential-redesign .res-testimonial-copy h2 {
        font-size: 34px;
    }

    .residential-redesign .res-story-copy p,
    .residential-redesign .res-testimonial-copy p {
        font-size: 16px;
    }

    .residential-redesign .res-final-cta h2 {
        font-size: 36px;
    }
}
/* Explore Armstrong */

.residential-redesign .res-explore {
    padding: 95px 0;
    background: #fff;
}

.residential-redesign .res-product-card-row {
    display: flex;
    gap: 24px;
    margin-bottom: 34px;
}

.residential-redesign .res-product-card {
    position: relative;
    flex: 1;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    color: #1f191a;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,.05);
    text-decoration: none;
}

    .residential-redesign .res-product-card:hover,
    .residential-redesign .res-product-card:focus {
        color: #fff;
        text-decoration: none;
        transform: translateY(-4px);
        box-shadow: 0 18px 44px -8px rgba(0,0,0,.18);
    }

.residential-redesign .res-product-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: bottom .35s ease, opacity .35s ease;
    z-index: 1;
}

.residential-redesign .res-product-card:hover .res-product-image,
.residential-redesign .res-product-card:focus .res-product-image {
    bottom: 0;
    opacity: 1;
}

.residential-redesign .res-product-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.25));
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}

.residential-redesign .res-product-card:hover:after,
.residential-redesign .res-product-card:focus:after {
    opacity: 1;
}

.residential-redesign .res-product-content {
    position: relative;
    z-index: 3;
}

.residential-redesign .res-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    color: #c20430;
    background: #fef2f2;
    border-radius: 16px;
    font-size: 20px;
}

.residential-redesign .res-product-card:hover .res-product-icon,
.residential-redesign .res-product-card:focus .res-product-icon {
    color: #c20430;
    background: #fff;
}

.residential-redesign .res-product-card h3 {
    margin: 0 0 12px;
    color: #1f191a;
    font-size: 26px;
    font-weight: 800;
}

.residential-redesign .res-product-card p {
    max-width: 300px;
    margin: 0 0 28px;
    color: #565d6d;
    font-size: 15px;
    line-height: 1.55;
}

.residential-redesign .res-product-card:hover h3,
.residential-redesign .res-product-card:hover p,
.residential-redesign .res-product-card:focus h3,
.residential-redesign .res-product-card:focus p {
    color: #fff;
}

.residential-redesign .res-product-cta {
    display: inline-block;
    color: #c20430;
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.residential-redesign .res-product-card:hover .res-product-cta,
.residential-redesign .res-product-card:focus .res-product-cta {
    color: #fff;
    opacity: 1;
    transform: translateY(0);
}

.residential-redesign .res-support-link-row {
    display: flex;
    gap: 22px;
}

.residential-redesign .res-support-link-card {
    position: relative;
    flex: 1;
    padding: 26px 28px;
    color: #1f191a;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .residential-redesign .res-support-link-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 4px;
        background: #c20430;
        border-radius: 0 4px 4px 0;
        transform: scaleY(0);
        transform-origin: center;
        transition: transform .22s ease;
    }

    .residential-redesign .res-support-link-card:hover,
    .residential-redesign .res-support-link-card:focus {
        color: #1f191a;
        text-decoration: none;
        transform: translateY(-3px);
        border-color: rgba(194,4,48,.25);
        box-shadow: 0 16px 38px -8px rgba(0,0,0,.12);
    }

        .residential-redesign .res-support-link-card:hover:before,
        .residential-redesign .res-support-link-card:focus:before {
            transform: scaleY(1);
        }

    .residential-redesign .res-support-link-card strong {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 800;
        transition: color .22s ease;
    }

    .residential-redesign .res-support-link-card p {
        margin: 0 0 12px;
        color: #565d6d;
        font-size: 14px;
        line-height: 1.55;
    }

    .residential-redesign .res-support-link-card span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #1f191a;
        font-size: 13px;
        font-weight: 800;
        transition: color .22s ease, transform .22s ease;
    }

    .residential-redesign .res-support-link-card:hover strong,
    .residential-redesign .res-support-link-card:focus strong,
    .residential-redesign .res-support-link-card:hover span,
    .residential-redesign .res-support-link-card:focus span {
        color: #c20430;
    }

    .residential-redesign .res-support-link-card:hover span,
    .residential-redesign .res-support-link-card:focus span {
        transform: translateX(3px);
    }

@media (max-width: 991px) {
    .residential-redesign .res-product-card-row,
    .residential-redesign .res-support-link-row {
        display: block;
    }

    .residential-redesign .res-product-card,
    .residential-redesign .res-support-link-card {
        display: block;
        margin-bottom: 22px;
    }
}

/* Getting Connected */


.residential-redesign .res-steps {
    padding: 95px 0;
    background: #f5f6f8;
}

    .residential-redesign .res-steps .res-section-heading {
        margin-bottom: 58px;
    }

.residential-redesign .res-step-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    max-width: 1050px;
    margin: 0 auto;
}

.residential-redesign .res-step {
    flex: 1;
    text-align: center;
    padding: 0 18px;
}

.residential-redesign .res-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: #c20430;
    background: #fff;
    border: 1px solid rgba(194,4,48,.12);
    border-radius: 18px;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.residential-redesign .res-step small {
    display: block;
    margin-bottom: 10px;
    color: #c20430;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.residential-redesign .res-step h3 {
    margin: 0 0 12px;
    color: #1f191a;
    font-size: 21px;
    font-weight: 800;
}

.residential-redesign .res-step p {
    max-width: 240px;
    margin: 0 auto;
    color: #565d6d;
    font-size: 15px;
    line-height: 1.6;
}
/* Mobile polish - Residential redesign */

@media (max-width: 767px) {
    .residential-redesign .res-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .residential-redesign .res-hero-copy {
        padding: 42px 0 36px;
    }

        .residential-redesign .res-hero-copy h1 {
            font-size: 34px;
            line-height: 1.08;
            margin-bottom: 18px;
        }

    .residential-redesign .res-hero-lead {
        font-size: 16px;
        line-height: 1.45;
    }

    .residential-redesign .res-hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .residential-redesign .res-hero-bg {
        min-height: 190px;
    }

    .residential-redesign .res-quick-actions h2,
    .residential-redesign .res-section-heading h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    .residential-redesign .res-section-heading {
        margin-bottom: 34px;
    }

        .residential-redesign .res-section-heading p {
            font-size: 14px;
            line-height: 1.5;
        }

    .residential-redesign .res-action-card {
        min-height: 82px;
        padding: 18px 18px;
        margin-bottom: 14px;
    }

    .residential-redesign .res-action-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .residential-redesign .res-plan-card {
        min-height: 0;
        padding: 30px 26px 26px;
        margin-bottom: 20px;
    }

        .residential-redesign .res-plan-card h3 {
            font-size: 34px;
            margin-bottom: 26px;
        }

        .residential-redesign .res-plan-card ul {
            margin-bottom: 22px;
        }

    .residential-redesign .res-story-row {
        margin-bottom: 58px;
    }

    .residential-redesign .res-red-line {
        margin-bottom: 18px;
    }

    .residential-redesign .res-story-copy h2,
    .residential-redesign .res-testimonial-copy h2 {
        font-size: 30px;
    }

    .residential-redesign .res-story-copy p,
    .residential-redesign .res-testimonial-copy p {
        font-size: 15px;
        line-height: 1.55;
    }

    .residential-redesign .res-product-card {
        min-height: 210px;
        padding: 24px;
        margin-bottom: 18px;
    }

        .residential-redesign .res-product-card h3 {
            font-size: 22px;
        }

    .residential-redesign .res-support-link-card {
        display: block;
        padding: 22px 24px;
        margin-bottom: 14px;
        border: 1px solid #ededed;
        border-radius: 14px;
        background: #fff;
    }

    .residential-redesign .res-step {
        margin-bottom: 34px;
    }

    .residential-redesign .res-step-icon {
        width: 56px;
        height: 56px;
    }

    .residential-redesign .res-final-cta h2 {
        font-size: 30px;
    }

    .residential-redesign .res-final-cta p {
        font-size: 14px;
        margin-bottom: 24px;
    }
}
/* Mobile hero + quick action cleanup */

@media (max-width: 767px) {
    .residential-redesign .res-hero {
        background: #c20430;
    }

        .residential-redesign .res-hero .res-container {
            padding-left: 26px;
            padding-right: 26px;
        }

    .residential-redesign .res-hero-copy {
        padding: 44px 0 38px;
    }

        .residential-redesign .res-hero-copy h1 {
            max-width: 320px;
            font-size: 34px;
            line-height: 1.05;
            margin-bottom: 18px;
        }

    .residential-redesign .res-hero-lead {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .residential-redesign .res-hero-sub {
        max-width: 320px;
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 24px;
    }

    .residential-redesign .res-hero .res-btn-outline {
        display: inline-block;
        padding: 11px 22px;
        font-size: 13px;
    }

    .residential-redesign .res-hero-bg {
        min-height: 205px;
        background-position: center center;
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .residential-redesign .res-quick-actions {
        padding-top: 48px;
        padding-bottom: 48px;
    }

        .residential-redesign .res-quick-actions h2 {
            max-width: 260px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 26px;
            font-size: 22px;
            line-height: 1.2;
        }

    .residential-redesign .res-action-card {
        display: flex;
        align-items: center;
        min-height: 84px;
        padding: 18px 48px 18px 18px;
        gap: 14px;
    }

    .residential-redesign .res-action-copy {
        min-width: 0;
    }

    .residential-redesign .res-action-card strong {
        font-size: 15px;
        line-height: 1.2;
    }

    .residential-redesign .res-action-card small {
        font-size: 12px;
        line-height: 1.3;
    }

    .residential-redesign .res-action-card > .fa-angle-right {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
    }

    .residential-redesign .res-action-card:hover > .fa-angle-right,
    .residential-redesign .res-action-card:focus > .fa-angle-right {
        transform: translateY(-50%) translateX(4px);
    }
}
/* Mobile hero refinement */

@media (max-width: 767px) {
    .residential-redesign .res-hero {
        min-height: 0;
        background: #c20430;
    }

    .residential-redesign .res-hero-bg {
        display: none;
    }

    .residential-redesign .res-hero .res-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .residential-redesign .res-hero-copy {
        padding: 54px 0 52px;
    }

        .residential-redesign .res-hero-copy h1 {
            max-width: 330px;
            font-size: 38px;
            line-height: 1.05;
            margin-bottom: 18px;
        }

    .residential-redesign .res-hero-lead {
        max-width: 330px;
        font-size: 16px;
        line-height: 1.5;
    }

    .residential-redesign .res-hero-sub {
        max-width: 330px;
        font-size: 14px;
        margin-bottom: 28px;
    }

    .residential-redesign .res-hero .res-btn-outline {
        padding: 12px 24px;
        font-size: 13px;
    }
}

.residential-redesign .res-explore {
    padding-top: 120px;
    padding-bottom: 110px;
}

@media (max-width: 767px) {
    .residential-redesign .res-product-card {
        min-height: 170px;
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .residential-redesign .res-step {
        margin-bottom: 26px;
    }

        .residential-redesign .res-step h3 {
            font-size: 18px;
        }

        .residential-redesign .res-step p {
            font-size: 14px;
            line-height: 1.45;
        }
}

@media (max-width: 767px) {
    .residential-redesign .res-hero {
        background: #c20430;
        overflow: hidden;
    }

    .residential-redesign .res-hero-bg {
        min-height: 185px;
        border-top: none;
        border-bottom: none;
        margin-bottom: -1px;
    }
}

@media (max-width: 767px) {
    .residential-redesign .res-hero {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.residential-redesign .res-final-cta .res-btn-outline {
    display: inline-block;
    min-width: 240px;
    padding: 16px 34px;
    font-size: 15px;
    font-weight: 800;
    border-width: 2px;
    border-radius: 10px;
    text-align: center;
    transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

    .residential-redesign .res-final-cta .res-btn-outline:hover,
    .residential-redesign .res-final-cta .res-btn-outline:focus {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0,0,0,.16);
    }

@media (max-width: 767px) {
    .residential-redesign .res-final-cta .res-btn-outline {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
    }
}
.residential-redesign .res-quick-actions {
    padding: 55px 0;
}

/* Explore Armstrong Product Cards */

.residential-redesign .res-product-card-row {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}

.residential-redesign .res-product-card-static {
    flex: 1;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .residential-redesign .res-product-card-static:hover {
        transform: translateY(-6px);
        border-color: rgba(194,4,48,.20);
        box-shadow: 0 24px 50px rgba(0,0,0,.10), 0 10px 24px rgba(0,0,0,.06);
    }

.residential-redesign .res-product-card-image {
    height: 220px;
    overflow: hidden;
}

    .residential-redesign .res-product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.residential-redesign .res-product-card-static:hover
.res-product-card-image img {
    transform: scale(1.05);
}

.residential-redesign .res-product-card-content {
    padding: 28px;
}

    .residential-redesign .res-product-card-content h3 {
        margin: 0 0 12px;
        color: #1f191a;
        font-size: 32px;
        font-weight: 800;
    }

    .residential-redesign .res-product-card-content p {
        margin: 0 0 22px;
        color: #565d6d;
        font-size: 15px;
        line-height: 1.6;
    }

.residential-redesign .res-product-card-link {
    color: #c20430;
    font-size: 14px;
    font-weight: 800;
}

.residential-redesign .res-product-card-static:hover
.res-product-card-link {
    text-decoration: underline;
}

@media (max-width: 991px) {

    .residential-redesign .res-product-card-row {
        display: block;
    }

    .residential-redesign .res-product-card-static {
        display: block;
        margin-bottom: 24px;
    }

    .residential-redesign .res-product-card-image {
        height: 200px;
    }

    .residential-redesign .res-product-card-content h3 {
        font-size: 24px;
    }
}



/* =========================================================
   Internet Redesign
   Scoped to .internet-redesign
   ========================================================= */

.internet-redesign {
    color: #1f191a;
}

    .internet-redesign * {
        box-sizing: border-box;
    }

    .internet-redesign .int-container {
        width: 1240px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 70px;
    }

    /* Buttons */

    .internet-redesign .int-btn-red {
        color: #fff;
        background: #c20430;
        border: 1px solid #c20430;
        border-radius: 10px;
        padding: 13px 26px;
        font-weight: 800;
        text-decoration: none;
    }

        .internet-redesign .int-btn-red:hover,
        .internet-redesign .int-btn-red:focus {
            color: #fff;
            background: #a50328;
            border-color: #a50328;
            text-decoration: none;
        }

    .internet-redesign .int-btn-outline {
        color: #1f191a;
        background: #fff;
        border: 1px solid #d8d8d8;
        border-radius: 8px;
        padding: 11px 22px;
        font-weight: 800;
        text-decoration: none;
    }

        .internet-redesign .int-btn-outline:hover,
        .internet-redesign .int-btn-outline:focus {
            color: #c20430;
            border-color: #c20430;
            text-decoration: none;
        }

    .internet-redesign .int-btn-white {
        color: #c20430;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 10px;
        padding: 15px 30px;
        font-weight: 800;
        text-decoration: none;
    }

        .internet-redesign .int-btn-white:hover,
        .internet-redesign .int-btn-white:focus {
            color: #a50328;
            background: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }

    /* Shared Headings */

    .internet-redesign .int-section-heading {
        max-width: 720px;
        margin: 0 auto 56px;
        text-align: center;
    }

        .internet-redesign .int-section-heading h2 {
            margin: 0 0 14px;
            color: #1f191a;
            font-size: 40px;
            line-height: 1.1;
            font-weight: 800;
        }

        .internet-redesign .int-section-heading p {
            margin: 0;
            color: #8c8f96;
            font-size: 17px;
            line-height: 1.6;
        }

    /* Hero */

    .internet-redesign .int-hero {
        padding: 95px 0 110px;
        background: #fff;
    }

        .internet-redesign .int-hero .int-container {
            display: flex;
            align-items: center;
            gap: 90px;
        }

    .internet-redesign .int-hero-copy {
        flex: 1;
    }

        .internet-redesign .int-hero-copy h1 {
            max-width: 560px;
            margin: 0 0 22px;
            color: #1f191a;
            font-size: 56px;
            line-height: 1.02;
            font-weight: 800;
        }

        .internet-redesign .int-hero-copy p {
            max-width: 540px;
            margin: 0 0 30px;
            color: #565d6d;
            font-size: 18px;
            line-height: 1.65;
        }

    .internet-redesign .int-hero-actions {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .internet-redesign .int-text-link {
        color: #1f191a;
        font-weight: 800;
        text-decoration: none;
    }

        .internet-redesign .int-text-link:hover,
        .internet-redesign .int-text-link:focus {
            color: #c20430;
            text-decoration: none;
        }

    .internet-redesign .int-hero-media {
        flex: 0 0 48%;
    }

        .internet-redesign .int-hero-media img {
            display: block;
            width: 100%;
            border-radius: 26px;
            box-shadow: 0 26px 60px rgba(0,0,0,.18);
        }

    /* Plans */

    .internet-redesign .int-plans {
        padding: 100px 0;
        background: #fafafb;
    }

    .internet-redesign .int-plan-row {
        display: flex;
        gap: 26px;
    }

    .internet-redesign .int-plan-card {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 360px;
        padding: 28px;
        background: #fff;
        border: 1px solid #dfe2e7;
        border-radius: 18px;
        box-shadow: 0 12px 32px rgba(0,0,0,.04);
    }

        .internet-redesign .int-plan-card.featured {
            border: 2px solid rgba(194,4,48,.7);
            box-shadow: 0 22px 48px rgba(194,4,48,.15), 0 12px 32px rgba(0,0,0,.06);
            transform: translateY(-4px);
        }

    .internet-redesign .int-plan-badge {
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 16px;
        color: #fff;
        background: #c20430;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .internet-redesign .int-plan-eyebrow {
        display: block;
        margin-bottom: 8px;
        color: #565d6d;
        font-size: 13px;
        font-weight: 800;
    }

    .internet-redesign .int-plan-card h3 {
        margin: 0 0 10px;
        color: #101828;
        font-size: 46px;
        line-height: 1;
        font-weight: 800;
    }

        .internet-redesign .int-plan-card h3 span {
            font-size: 18px;
            color: #565d6d;
            font-weight: 700;
        }

    .internet-redesign .int-plan-card > p {
        min-height: 42px;
        margin: 0 0 12px;
        color: #565d6d;
        font-size: 14px;
        line-height: 1.6;
    }

    .internet-redesign .int-plan-card ul {
        flex: 1;
        margin: 0 0 30px;
        padding: 0;
        list-style: none;
    }

    .internet-redesign .int-plan-card li {
        position: relative;
        margin-bottom: 13px;
        padding-left: 24px;
        color: #1f191a;
        font-size: 14px;
        line-height: 1.45;
    }

        .internet-redesign .int-plan-card li:before {
            content: "\f00c";
            position: absolute;
            left: 0;
            top: 1px;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 12px;
        }

    .internet-redesign .int-plan-card .btn {
        width: 100%;
        margin-top: auto;
    }

    /* Why */

    .internet-redesign .int-why {
        padding: 90px 0;
        background: #fff;
    }

    .internet-redesign .int-proof-row {
        display: flex;
        gap: 0;
        border-top: 1px solid #eceff3;
        border-bottom: 1px solid #eceff3;
    }

    .internet-redesign .int-proof-item {
        flex: 1;
        padding: 36px 28px;
        text-align: center;
        border-right: 1px solid #eceff3;
    }

        .internet-redesign .int-proof-item:last-child {
            border-right: 0;
        }

        .internet-redesign .int-proof-item span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: #c20430;
            font-size: 30px;
        }

        .internet-redesign .int-proof-item h3 {
            margin: 0 0 10px;
            color: #1f191a;
            font-size: 18px;
            font-weight: 800;
        }

        .internet-redesign .int-proof-item p {
            max-width: 230px;
            margin: 0 auto;
            color: #565d6d;
            font-size: 16px;
            line-height: 1.6;
            opacity: .8;
        }

    /* More Than Speed */

    .internet-redesign .int-more {
        padding: 100px 0 110px;
        background: #fafafb;
    }

    .internet-redesign .int-feature-card-row {
        display: flex;
        gap: 28px;
    }

    .internet-redesign .int-feature-card {
        flex: 1;
        display: block;
        overflow: hidden;
        color: #1f191a;
        background: #fff;
        border: 1px solid #ededed;
        border-radius: 20px;
        text-decoration: none;
        box-shadow: 0 16px 38px rgba(0,0,0,.06);
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

        .internet-redesign .int-feature-card:hover,
        .internet-redesign .int-feature-card:focus {
            color: #1f191a;
            text-decoration: none;
            transform: translateY(-6px);
            border-color: rgba(194,4,48,.25);
            box-shadow: 0 24px 54px rgba(0,0,0,.12);
        }

        .internet-redesign .int-feature-card img {
            display: block;
            width: 100%;
            height: 210px;
            object-fit: cover;
        }

        .internet-redesign .int-feature-card div {
            padding: 26px;
        }

        .internet-redesign .int-feature-card h3 {
            margin: 0 0 12px;
            color: #1f191a;
            font-size: 30px;
            line-height: 1.15;
            font-weight: 800;
        }

        .internet-redesign .int-feature-card p {
            margin: 0 0 20px;
            color: #565d6d;
            font-size: 15px;
            line-height: 1.55;
        }

        .internet-redesign .int-feature-card span {
            color: #c20430;
            font-size: 15px;
            font-weight: 800;
        }



    /* Built For You */

    .internet-redesign .int-built {
        padding: 110px 0;
        background: #fff;
    }

    .internet-redesign .int-built-layout {
        display: flex;
        align-items: center;
        gap: 65px;
    }

    .internet-redesign .int-audience-list {
        flex: 0 0 310px;
    }

        .internet-redesign .int-audience-list button {
            display: block;
            width: 100%;
            margin-bottom: 16px;
            padding: 22px 24px;
            text-align: left;
            background: #fff;
            border: 1px solid #eceff3;
            border-radius: 14px;
            box-shadow: 0 10px 24px rgba(0,0,0,.04);
        }

            .internet-redesign .int-audience-list button.active {
                border-left: 5px solid #c20430;
                box-shadow: 0 16px 36px rgba(0,0,0,.08);
            }

        .internet-redesign .int-audience-list strong {
            display: block;
            margin-bottom: 6px;
            color: #1f191a;
            font-size: 17px;
            font-weight: 800;
        }

        .internet-redesign .int-audience-list small {
            color: #565d6d;
            font-size: 13px;
        }

    .internet-redesign .int-built-main {
        flex: 1;
    }

        .internet-redesign .int-built-main img {
            display: block;
            width: 100%;
            border-radius: 22px;
            box-shadow: 0 22px 50px rgba(0,0,0,.14);
            margin-bottom: 30px;
        }

        .internet-redesign .int-built-main h3 {
            margin: 0 0 14px;
            color: #1f191a;
            font-size: 30px;
            font-weight: 800;
        }

        .internet-redesign .int-built-main p {
            max-width: 680px;
            margin: 0 0 22px;
            color: #565d6d;
            font-size: 16px;
            line-height: 1.65;
        }

    .internet-redesign .int-pill-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

        .internet-redesign .int-pill-row span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 12px;
            color: #1f191a;
            background: #fff4f6;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }

        .internet-redesign .int-pill-row i {
            color: #c20430;
        }

    /* Local Support */

    .internet-redesign .int-local {
        padding: 110px 0;
        background: #fafafb;
    }

        .internet-redesign .int-local .int-container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

    .internet-redesign .int-local-media,
    .internet-redesign .int-local-copy {
        flex: 1;
    }

        .internet-redesign .int-local-media img {
            display: block;
            width: 100%;
            border-radius: 22px;
            box-shadow: 0 22px 50px rgba(0,0,0,.14);
        }

        .internet-redesign .int-local-copy h2 {
            margin: 0 0 22px;
            color: #1f191a;
            font-size: 44px;
            line-height: 1.08;
            font-weight: 800;
        }

        .internet-redesign .int-local-copy p {
            margin: 0 0 26px;
            color: #565d6d;
            font-size: 17px;
            line-height: 1.7;
        }

        .internet-redesign .int-local-copy ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .internet-redesign .int-local-copy li {
            position: relative;
            margin-bottom: 12px;
            padding-left: 26px;
            color: #1f191a;
            font-size: 15px;
            font-weight: 700;
        }

            .internet-redesign .int-local-copy li:before {
                content: "\f00c";
                position: absolute;
                left: 0;
                top: 1px;
                color: #c20430;
                font-family: FontAwesome;
            }

    /* FAQ */

    .internet-redesign .int-faq {
        padding: 100px 0;
        background: #fff;
    }

    .internet-redesign .int-faq-list {
        max-width: 900px;
        margin: 0 auto;
        border-top: 1px solid #e6e8ec;
    }

        .internet-redesign .int-faq-list details {
            border-bottom: 1px solid #e6e8ec;
        }

        .internet-redesign .int-faq-list summary {
            position: relative;
            padding: 22px 34px 22px 0;
            color: #1f191a;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            list-style: none;
        }

            .internet-redesign .int-faq-list summary::-webkit-details-marker {
                display: none;
            }

            .internet-redesign .int-faq-list summary:after {
                content: "\f107";
                position: absolute;
                right: 0;
                top: 22px;
                color: #565d6d;
                font-family: FontAwesome;
            }

        .internet-redesign .int-faq-list details[open] summary:after {
            content: "\f106";
            color: #c20430;
        }

        .internet-redesign .int-faq-list details p {
            max-width: 760px;
            margin: 0;
            padding: 0 0 22px;
            color: #565d6d;
            font-size: 15px;
            line-height: 1.65;
        }

    .internet-redesign .int-faq-help {
        margin: 28px 0 0;
        text-align: center;
        color: #565d6d;
        font-size: 15px;
    }

        .internet-redesign .int-faq-help a {
            color: #c20430;
            font-weight: 800;
        }

    /* Final CTA */

    .internet-redesign .int-final-cta {
        padding: 105px 0;
        text-align: center;
        color: #fff;
        background: #c20430;
    }

        .internet-redesign .int-final-cta h2 {
            margin: 0 0 16px;
            color: #fff;
            font-size: 48px;
            line-height: 1.08;
            font-weight: 800;
        }

        .internet-redesign .int-final-cta p {
            max-width: 700px;
            margin: 0 auto 34px;
            color: #fff;
            font-size: 18px;
            line-height: 1.6;
            opacity: .9;
        }

/* Responsive */

@media (max-width: 991px) {
    .internet-redesign .int-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .internet-redesign .int-hero .int-container,
    .internet-redesign .int-plan-row,
    .internet-redesign .int-proof-row,
    .internet-redesign .int-feature-card-row,
    .internet-redesign .int-built-layout,
    .internet-redesign .int-local .int-container {
        display: block;
    }

    .internet-redesign .int-hero-copy,
    .internet-redesign .int-hero-media,
    .internet-redesign .int-local-media,
    .internet-redesign .int-local-copy {
        width: 100%;
    }

    .internet-redesign .int-hero-copy {
        margin-bottom: 38px;
    }

    .internet-redesign .int-plan-card,
    .internet-redesign .int-feature-card,
    .internet-redesign .int-proof-item {
        margin-bottom: 24px;
    }

        .internet-redesign .int-plan-card.featured {
            transform: none;
        }

    .internet-redesign .int-proof-row {
        border: 0;
    }

    .internet-redesign .int-proof-item {
        border: 1px solid #eceff3;
        border-radius: 16px;
    }

    .internet-redesign .int-local-media {
        margin-bottom: 38px;
    }
}

@media (max-width: 767px) {
    .internet-redesign .int-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .internet-redesign .int-hero,
    .internet-redesign .int-plans,
    .internet-redesign .int-why,
    .internet-redesign .int-more,
    .internet-redesign .int-built,
    .internet-redesign .int-local,
    .internet-redesign .int-faq,
    .internet-redesign .int-final-cta {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .internet-redesign .int-hero-copy h1 {
        font-size: 38px;
    }

    .internet-redesign .int-hero-copy p {
        font-size: 16px;
    }

    .internet-redesign .int-hero-actions {
        display: block;
    }

        .internet-redesign .int-hero-actions .btn {
            width: 100%;
            margin-bottom: 14px;
        }

    .internet-redesign .int-section-heading {
        margin-bottom: 36px;
    }

        .internet-redesign .int-section-heading h2 {
            font-size: 30px;
        }

        .internet-redesign .int-section-heading p {
            font-size: 14px;
        }

    .internet-redesign .int-plan-card h3 {
        font-size: 44px;
    }

    .internet-redesign .int-built-main h3,
    .internet-redesign .int-local-copy h2 {
        font-size: 30px;
    }

    .internet-redesign .int-pill-row {
        display: block;
    }

        .internet-redesign .int-pill-row span {
            margin: 0 0 10px;
        }

    .internet-redesign .int-final-cta h2 {
        font-size: 34px;
    }

    .internet-redesign .int-final-cta p {
        font-size: 15px;
    }
}


.internet-redesign .int-hero-media {
    flex: 0 0 50%;
}
.int-section-accent {
    width: 42px;
    height: 4px;
    background: #c20430;
    border-radius: 999px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {

    .internet-redesign .int-hero .int-container {
        display: flex;
        flex-direction: column;
    }

    .internet-redesign .int-hero-media {
        order: 1;
        margin-bottom: 0px;
    }

    .internet-redesign .int-hero-copy {
        order: 2;
        margin-bottom: 0;
    }
}

.internet-redesign .int-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #c20430;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.internet-redesign .int-section-accent {
    width: 42px;
    height: 4px;
    margin-bottom: 22px;
    background: #c20430;
    border-radius: 999px;
}
/* Internet plan card polish */

.internet-redesign .int-plan-card.featured .int-plan-eyebrow {
    color: #c20430;
}

.internet-redesign .int-plan-card > p {
    min-height: 56px;
    font-size: 15px;
    line-height: 1.6;
}

.internet-redesign .int-plan-card li {
    font-size: 15px;
    line-height: 1.55;
}

.internet-redesign .int-plan-card.featured {
    border: 2px solid rgba(194,4,48,.8);
    box-shadow: 0 24px 52px rgba(194,4,48,.18), 0 12px 32px rgba(0,0,0,.08);
    transform: translateY(-6px);
}

    .internet-redesign .int-plan-card.featured .int-btn-red {
        box-shadow: 0 10px 22px rgba(194,4,48,.22);
    }

/* Internet page card typography boost */

.internet-redesign .int-plan-card {
    padding: 34px 32px;
}

.internet-redesign .int-plan-eyebrow {
    font-size: 14px;
    font-weight: 900;
}

.internet-redesign .int-plan-card.featured .int-plan-eyebrow {
    color: #c20430;
}

.internet-redesign .int-plan-card > p {
    font-size: 16px;
    line-height: 1.6;
    min-height: 60px;
}

.internet-redesign .int-plan-card li {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 15px;
}

.internet-redesign .int-plan-card h3 {
    font-size: 60px;
}

    .internet-redesign .int-plan-card h3 span {
        font-size: 20px;
    }

@media (max-width: 767px) {
    .internet-redesign .int-plan-card {
        padding: 30px 26px;
    }

    .internet-redesign .int-plan-eyebrow {
        font-size: 14px;
    }

    .internet-redesign .int-plan-card > p {
        font-size: 15px;
        min-height: 0;
    }

    .internet-redesign .int-plan-card li {
        font-size: 15px;
    }

    .internet-redesign .int-plan-card h3 {
        font-size: 48px;
    }
}

.internet-redesign .int-proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    background: #fff4f6;
    border-radius: 16px;
}

    .internet-redesign .int-proof-icon img {
        width: 26px;
        height: 26px;
    }

.internet-redesign .int-proof-item {
    padding: 42px 30px;
}

    .internet-redesign .int-proof-item h3 {
        font-size: 19px;
    }

    .internet-redesign .int-proof-item p {
        font-size: 15px;
        line-height: 1.6;
    }

.int-benefit-item {
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: all .3s ease;
}

    .int-benefit-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(0,0,0,.08);
    }

    .int-benefit-item h3 {
        font-size: 18px;
        font-weight: 700;
    }

    .int-benefit-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .int-benefit-item:hover .int-proof-icon {
        background: #c20430;
    }

        .int-benefit-item:hover .int-proof-icon img {
            filter: brightness(0) invert(1);
        }

.internet-redesign .int-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #c20430;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.internet-redesign .int-card-arrow {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .25s ease;
}

.internet-redesign .int-feature-card:hover .int-card-arrow {
    width: 14px;
    opacity: 1;
    margin-left: 6px;
}


/* More Than Speed card link hover arrow */

.internet-redesign .int-feature-card .int-card-link {
    display: inline-flex;
    align-items: center;
    color: #c20430;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.internet-redesign .int-feature-card .int-card-arrow {
    display: inline-block;
    width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    transition: width .22s ease, margin-left .22s ease, opacity .22s ease;
}

.internet-redesign .int-feature-card:hover .int-card-arrow,
.internet-redesign .int-feature-card:focus .int-card-arrow {
    width: 12px;
    margin-left: 6px;
    opacity: 1;
}
/* Force More Than Speed caret to hide until hover */

.internet-redesign .int-feature-card .int-card-arrow,
.internet-redesign .int-feature-card .int-card-arrow i {
    display: inline-block;
    max-width: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transition: max-width .22s ease, opacity .22s ease, margin-left .22s ease;
}

.internet-redesign .int-feature-card:hover .int-card-arrow,
.internet-redesign .int-feature-card:focus .int-card-arrow,
.internet-redesign .int-feature-card:hover .int-card-arrow i,
.internet-redesign .int-feature-card:focus .int-card-arrow i {
    max-width: 16px;
    width: 16px;
    opacity: 1;
    margin-left: 6px;
}

/* Built For You interactive */

.internet-redesign .int-built-main {
    position: relative;
    transition: opacity .25s ease, transform .25s ease;
}

    .internet-redesign .int-built-main.is-changing {
        opacity: 0;
        transform: translateX(12px);
    }

.internet-redesign .int-audience-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .internet-redesign .int-audience-card.active {
        border-left: 5px solid #c20430;
        box-shadow: 0 16px 36px rgba(0,0,0,.08);
    }

.internet-redesign .int-audience-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #c20430, #e21b4d);
    border-radius: 0 999px 999px 0;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.internet-redesign .int-audience-card.active .int-audience-progress {
    animation: intAudienceProgress 8s linear forwards;
}

@keyframes intAudienceProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


@keyframes intAudienceProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.internet-redesign .int-audience-card:hover,
.internet-redesign .int-audience-card:focus {
    transform: translateY(-2px);
    border-color: rgba(194,4,48,.25);
}


/* Built For You progress bar fix */

.internet-redesign .int-audience-card {
    position: relative;
    overflow: hidden;
}

    .internet-redesign .int-audience-card .int-audience-progress {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 5;
        display: block;
        height: 4px;
        width: 100%;
        background: #c20430;
        border-radius: 0 999px 999px 0;
        transform: scaleX(0);
        transform-origin: left center;
        opacity: 0;
        pointer-events: none;
    }

    .internet-redesign .int-audience-card.active .int-audience-progress {
        opacity: 1;
        animation: intAudienceProgress 8s linear forwards;
    }

@keyframes intAudienceProgress {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@media (max-width: 767px) {

    .int-built-layout {
        display: block;
    }

    .int-audience-list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

        .int-audience-list::-webkit-scrollbar {
            display: none;
        }

    .int-audience-card {
        flex: 0 0 auto;
        min-width: 130px;
        padding: 14px 18px;
        white-space: nowrap;
    }

        .int-audience-card small {
            display: none;
        }

    .int-built-main img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.int-plan-disclaimers {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.int-broadband-labels {
    margin-bottom: 20px;
}

    .int-broadband-labels a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #bf0d3e;
        text-decoration: none;
        transition: all .2s ease;
    }

        .int-broadband-labels a:hover {
            color: #9e0b33;
        }

.int-plan-disclaimers p {
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    margin: 10px 0;
}

.int-plan-disclaimers a {
    color: #bf0d3e;
    font-weight: 600;
}

.int-audience-list button strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

    .int-audience-list button strong i {
        width: 22px;
        text-align: center;
        color: #666;
        transition: color .25s ease;
    }

.int-audience-list button.active strong i {
    color: #bf0d3e;
}

.int-audience-list button:hover strong i {
    color: #bf0d3e;
}

.int-audience-list button strong i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7f7f7;
    color: #666;
    transition: all .25s ease;
}

.int-audience-list button.active strong i {
    background: rgba(191, 13, 62, .1);
    color: #bf0d3e;
}

.int-audience-list button:hover strong i {
    background: rgba(191, 13, 62, .1);
    color: #bf0d3e;
}

/* Mobile Quick Action cleanup */

@media (max-width: 767px) {
    .residential-redesign .res-quick-actions {
        padding: 42px 0;
    }

        .residential-redesign .res-quick-actions h2 {
            max-width: none;
            margin: 0 0 20px;
            text-align: left;
            font-size: 22px;
            line-height: 1.2;
        }

    .residential-redesign .res-action-card {
        min-height: 72px;
        padding: 14px 46px 14px 16px;
        margin-bottom: 10px;
        gap: 12px;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(0,0,0,.05);
    }

    .residential-redesign .res-action-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 13px;
    }

    .residential-redesign .res-action-card strong {
        font-size: 15px;
        line-height: 1.2;
    }

    .residential-redesign .res-action-card small {
        font-size: 12px;
        line-height: 1.3;
    }

    .residential-redesign .res-action-card > .fa-angle-right {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a7a5a6;
        background: #f5f6f8;
        border-radius: 50%;
        font-size: 14px;
    }

    .residential-redesign .res-action-card:active {
        transform: scale(.985);
    }
}

/* Community Hotspot page */

.internet-redesign .int-simple-hero {
    padding: 95px 0 80px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #eceff3;
}

    .internet-redesign .int-simple-hero h1 {
        max-width: 900px;
        margin: 0 auto 18px;
        color: #1f191a;
        font-size: 58px;
        line-height: 1.05;
        font-weight: 800;
    }

    .internet-redesign .int-simple-hero p {
        max-width: 720px;
        margin: 0 auto;
        color: #565d6d;
        font-size: 20px;
        line-height: 1.55;
    }

.internet-redesign .int-hotspot-map {
    padding: 85px 0 75px;
    background: #fafafb;
}

.internet-redesign .int-map-card {
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    background: #e6e8ec;
    border: 1px solid #d8dce3;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,.10);
}

    .internet-redesign .int-map-card iframe {
        display: block;
        width: 100%;
        min-height: 520px;
    }

.internet-redesign .int-map-note {
    margin: 24px 0 0;
    text-align: center;
    color: #565d6d;
    font-size: 15px;
}

    .internet-redesign .int-map-note i {
        margin-right: 8px;
        color: #c20430;
    }

.internet-redesign .int-hotspot-steps {
    padding: 90px 0;
    background: #fff;
    border-top: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
}

.internet-redesign .int-centered-accent {
    display: block;
    width: 70px;
    height: 4px;
    margin: 22px auto 0;
    background: #c20430;
    border-radius: 999px;
}

.internet-redesign .int-hotspot-step-row {
    display: flex;
    justify-content: center;
    gap: 90px;
    max-width: 900px;
    margin: 0 auto;
}

.internet-redesign .int-hotspot-step {
    flex: 1;
    text-align: center;
}

    .internet-redesign .int-hotspot-step .int-proof-icon {
        margin-bottom: 22px;
    }

    .internet-redesign .int-hotspot-step h3 {
        margin: 0;
        color: #1f191a;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 800;
    }

@media (max-width: 767px) {
    .internet-redesign .int-simple-hero {
        padding: 58px 0 48px;
    }

        .internet-redesign .int-simple-hero h1 {
            font-size: 38px;
        }

        .internet-redesign .int-simple-hero p {
            font-size: 16px;
        }

    .internet-redesign .int-hotspot-map,
    .internet-redesign .int-hotspot-steps {
        padding: 58px 0;
    }

    .internet-redesign .int-map-card iframe {
        min-height: 420px;
    }

    .internet-redesign .int-hotspot-step-row {
        display: block;
    }

    .internet-redesign .int-hotspot-step {
        margin-bottom: 34px;
    }

        .internet-redesign .int-hotspot-step:last-child {
            margin-bottom: 0;
        }
}

.int-hotspot-step i {
    color: #C8102E;
    font-size: 30px;
}

/* Internet Security page */

.internet-redesign .int-security-product {
    padding: 110px 0 125px;
    background: #fafafb;
}

.internet-redesign .int-security-layout {
    display: flex;
    align-items: center;
    gap: 95px;
    max-width: 1050px;
    margin: 0 auto;
}

.internet-redesign .int-security-media,
.internet-redesign .int-security-copy {
    flex: 1;
}

.internet-redesign .int-security-media {
    text-align: center;
}

.internet-redesign .int-security-badge {
    display: inline-block;
    margin-bottom: 48px;
    padding: 9px 22px;
    color: #c20430;
    background: #fff0f4;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.internet-redesign .int-security-media img {
    display: block;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.internet-redesign .int-security-copy h2 {
    margin: 0 0 22px;
    color: #1f191a;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
}

.internet-redesign .int-security-copy > p {
    max-width: 560px;
    margin: 0 0 28px;
    color: #565d6d;
    font-size: 18px;
    line-height: 1.7;
}

.internet-redesign .int-security-list {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

    .internet-redesign .int-security-list li {
        position: relative;
        margin-bottom: 16px;
        padding-left: 34px;
        color: #1f191a;
        font-size: 17px;
        font-weight: 800;
    }

        .internet-redesign .int-security-list li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 19px;
        }

.internet-redesign .int-security-copy .int-btn-red {
    display: inline-block;
    width: auto;
    min-width: 330px;
    padding: 17px 30px;
    text-align: center;
    font-size: 16px;
}

.internet-redesign .int-security-note {
    margin-top: 18px !important;
    color: #7a7f89 !important;
    font-size: 14px !important;
}

/* Security accordions */

.internet-redesign .int-security-details {
    padding: 105px 0 120px;
    background: #fff;
}

.internet-redesign .int-accordion-list {
    max-width: 900px;
    margin: 0 auto;
}

    .internet-redesign .int-accordion-list details {
        border-bottom: 1px solid #e1e4ea;
    }

    .internet-redesign .int-accordion-list summary {
        position: relative;
        padding: 26px 42px 26px 0;
        color: #1f191a;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
        list-style: none;
    }

        .internet-redesign .int-accordion-list summary::-webkit-details-marker {
            display: none;
        }

        .internet-redesign .int-accordion-list summary:after {
            content: "\f107";
            position: absolute;
            right: 0;
            top: 26px;
            color: #565d6d;
            font-family: FontAwesome;
        }

    .internet-redesign .int-accordion-list details[open] summary:after {
        content: "\f106";
        color: #c20430;
    }

.internet-redesign .int-accordion-content {
    padding: 0 0 30px;
}

    .internet-redesign .int-accordion-content ul,
    .internet-redesign .int-accordion-content ol {
        margin: 0;
        padding-left: 22px;
        color: #565d6d;
        font-size: 17px;
        line-height: 1.8;
    }

    .internet-redesign .int-accordion-content li {
        margin-bottom: 6px;
    }

/* Mobile */

@media (max-width: 767px) {
    .internet-redesign .int-security-product,
    .internet-redesign .int-security-details {
        padding: 58px 0;
    }

    .internet-redesign .int-security-layout {
        display: block;
    }

    .internet-redesign .int-security-media {
        margin-bottom: 42px;
    }

    .internet-redesign .int-security-badge {
        margin-bottom: 28px;
    }

    .internet-redesign .int-security-media img {
        max-width: 240px;
    }

    .internet-redesign .int-security-copy h2 {
        font-size: 32px;
    }

    .internet-redesign .int-security-copy > p {
        font-size: 16px;
    }

    .internet-redesign .int-security-list li {
        font-size: 15px;
    }

    .internet-redesign .int-security-copy .int-btn-red {
        width: 100%;
        min-width: 0;
    }

    .internet-redesign .int-accordion-list summary {
        font-size: 16px;
    }

    .internet-redesign .int-accordion-content ul,
    .internet-redesign .int-accordion-content ol {
        font-size: 15px;
    }
}

.int-alert {
    margin-bottom: 30px;
    padding: 20px 24px;
    background: #FFF8E6;
    border: 1px solid #F3D98D;
    border-radius: 12px;
    color: #5d4b18;
    line-height: 1.7;
}

    .int-alert strong {
        display: block;
        margin-bottom: 8px;
        color: #8C6414;
    }

.int-spec-table {
    width: 100%;
    border-collapse: collapse;
}

    .int-spec-table th {
        width: 220px;
        padding: 24px;
        background: #fafafa;
        border: 1px solid #e8e8e8;
        text-align: left;
        vertical-align: top;
        font-size: 16px;
        font-weight: 700;
    }

    .int-spec-table td {
        padding: 24px 30px;
        border: 1px solid #e8e8e8;
        vertical-align: top;
    }

    .int-spec-table ul {
        margin: 0;
        padding-left: 20px;
    }

    .int-spec-table li {
        margin-bottom: 10px;
        line-height: 1.7;
    }

@media (max-width:767px) {

    .int-spec-table,
    .int-spec-table tbody,
    .int-spec-table tr,
    .int-spec-table th,
    .int-spec-table td {
        display: block;
        width: 100%;
    }

        .int-spec-table th {
            border-bottom: none;
            background: #f7f7f7;
        }

        .int-spec-table td {
            border-top: none;
            margin-bottom: 18px;
        }
}

/* =========================================================
   Enhanced Wi-Fi Page
   Uses .internet-redesign wrapper
   ========================================================= */

.internet-redesign .enhanced-wifi-hero .int-hero-copy h1 {
    max-width: 600px;
}

    .internet-redesign .enhanced-wifi-hero .int-hero-copy h1 em,
    .internet-redesign .enhanced-wifi-hero .int-hero-copy h1 .red {
        color: #c20430;
        font-style: normal;
    }

/* Why Enhanced Wi-Fi */

.internet-redesign .enhanced-why {
    padding: 95px 0;
    background: #fafafb;
}

.internet-redesign .enhanced-benefit-row {
    display: flex;
    gap: 26px;
}

.internet-redesign .enhanced-benefit-card {
    flex: 1;
    padding: 34px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .internet-redesign .enhanced-benefit-card:hover {
        transform: translateY(-5px);
        border-color: rgba(194,4,48,.22);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
    }

    .internet-redesign .enhanced-benefit-card .int-proof-icon {
        margin-bottom: 22px;
        color: #c20430;
    }

    .internet-redesign .enhanced-benefit-card h3 {
        margin: 0 0 12px;
        color: #1f191a;
        font-size: 19px;
        line-height: 1.2;
        font-weight: 800;
    }

    .internet-redesign .enhanced-benefit-card p {
        max-width: 240px;
        margin: 0 auto;
        color: #565d6d;
        font-size: 15px;
        line-height: 1.6;
    }

/* Split Sections */

.internet-redesign .enhanced-split {
    padding: 110px 0;
    background: #fff;
}

.internet-redesign .enhanced-app-section {
    background: #fafafb;
}

.internet-redesign .enhanced-split-layout {
    display: flex;
    align-items: center;
    gap: 90px;
    max-width: 1120px;
    margin: 0 auto;
}

    .internet-redesign .enhanced-split-layout.reverse {
        flex-direction: row-reverse;
    }

.internet-redesign .enhanced-split-media,
.internet-redesign .enhanced-split-copy {
    flex: 1;
}

    .internet-redesign .enhanced-split-media img {
        display: block;
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 24px 58px rgba(0,0,0,.16);
    }

    .internet-redesign .enhanced-split-copy h2 {
        margin: 0 0 22px;
        color: #1f191a;
        font-size: 44px;
        line-height: 1.08;
        font-weight: 800;
    }

    .internet-redesign .enhanced-split-copy p {
        margin: 0 0 28px;
        color: #565d6d;
        font-size: 17px;
        line-height: 1.7;
    }

.internet-redesign .enhanced-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .internet-redesign .enhanced-check-list li {
        position: relative;
        padding-left: 28px;
        color: #1f191a;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.5;
    }

        .internet-redesign .enhanced-check-list li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 16px;
        }

.internet-redesign .enhanced-app-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

    .internet-redesign .enhanced-app-buttons img {
        height: 44px;
        width: auto;
        display: block;
    }

/* Protection */

.internet-redesign .enhanced-protection {
    padding: 115px 0;
    background: linear-gradient(135deg, #15171b 0%, #1f2329 100%);
}

    .internet-redesign .enhanced-protection .int-section-heading h2 {
        color: #fff;
    }

    .internet-redesign .enhanced-protection .int-section-heading p {
        color: rgba(255,255,255,.72);
    }

.internet-redesign .enhanced-security-card-row {
    display: flex;
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

.internet-redesign .enhanced-security-card {
    flex: 1;
    padding: 34px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .internet-redesign .enhanced-security-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 58px rgba(0,0,0,.32);
    }

    .internet-redesign .enhanced-security-card .int-proof-icon {
        margin-bottom: 24px;
    }

    .internet-redesign .enhanced-security-card h3 {
        margin: 0 0 14px;
        color: #1f191a;
        font-size: 22px;
        line-height: 1.2;
        font-weight: 800;
    }

    .internet-redesign .enhanced-security-card p {
        margin: 0;
        color: #565d6d;
        font-size: 15px;
        line-height: 1.6;
    }

.internet-redesign .enhanced-security-link {
    margin: 42px 0 0;
    text-align: center;
}

    .internet-redesign .enhanced-security-link a {
        color: rgba(255,255,255,.8);
        font-size: 15px;
        font-weight: 800;
        text-decoration: none;
    }

        .internet-redesign .enhanced-security-link a:hover {
            color: #fff;
        }

/* Mobile */

@media (max-width: 991px) {
    .internet-redesign .enhanced-benefit-row,
    .internet-redesign .enhanced-split-layout,
    .internet-redesign .enhanced-split-layout.reverse,
    .internet-redesign .enhanced-security-card-row {
        display: block;
    }

    .internet-redesign .enhanced-benefit-card,
    .internet-redesign .enhanced-security-card {
        margin-bottom: 24px;
    }

    .internet-redesign .enhanced-split-media {
        margin-bottom: 38px;
    }
}

@media (max-width: 767px) {
    .internet-redesign .enhanced-why,
    .internet-redesign .enhanced-split,
    .internet-redesign .enhanced-protection {
        padding: 58px 0;
    }

    .internet-redesign .enhanced-split-copy h2 {
        font-size: 32px;
    }

    .internet-redesign .enhanced-split-copy p {
        font-size: 16px;
    }

    .internet-redesign .enhanced-check-list {
        display: block;
    }

        .internet-redesign .enhanced-check-list li {
            margin-bottom: 13px;
        }

    .internet-redesign .enhanced-app-buttons {
        flex-wrap: wrap;
    }

        .internet-redesign .enhanced-app-buttons img {
            height: 40px;
        }

    .internet-redesign .enhanced-security-card {
        padding: 28px;
    }
}

.internet-redesign .enhanced-benefit-card .int-proof-icon,
.internet-redesign .enhanced-security-card .int-proof-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    border-radius: 18px;
}

    .internet-redesign .enhanced-benefit-card .int-proof-icon img,
    .internet-redesign .enhanced-security-card .int-proof-icon img {
        width: 30px;
        height: 30px;
    }

.internet-redesign .enhanced-benefit-card h3 {
    font-size: 20px;
}

.internet-redesign .enhanced-security-card h3 {
    font-size: 24px;
}

.internet-redesign .enhanced-app-buttons img {
    height: 48px;
}

/* Final CTA outline button */

.internet-redesign .int-final-cta .int-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 260px;
    min-height: 58px;
    padding: 15px 34px;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 14px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

    .internet-redesign .int-final-cta .int-btn-white:hover,
    .internet-redesign .int-final-cta .int-btn-white:focus {
        color: #c20430;
        background: #fff;
        border-color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,.18);
    }

    .internet-redesign .int-final-cta .int-btn-white i {
        margin-left: 10px;
        transition: transform .25s ease;
    }

    .internet-redesign .int-final-cta .int-btn-white:hover i,
    .internet-redesign .int-final-cta .int-btn-white:focus i {
        transform: translateX(4px);
    }

@media (max-width: 767px) {
    .internet-redesign .int-final-cta .int-btn-white {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
}


.internet-redesign .enhanced-security-card .int-proof-icon {
    width: 60px;
    height: 60px;
    background: #fff4f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .internet-redesign .enhanced-security-card .int-proof-icon i,
    .internet-redesign .enhanced-security-card .int-proof-icon svg {
        color: #c8102e;
        fill: #c8102e;
        font-size: 26px;
    }

/* ---------------------------------------
   Plan Pricing
----------------------------------------*/

.internet-redesign .int-plan-pricing {
    margin: 10px 0 28px;
}

.internet-redesign .int-plan-price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.internet-redesign .int-plan-price {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 900;
    color: #c20430;
}

.internet-redesign .int-plan-price-unit {
    font-size: 1.35rem;
    font-weight: 800;
    color: #c20430;
}

.internet-redesign .int-plan-price-term {
    font-size: 1.25rem;
    color: #555;
}

.internet-redesign .int-plan-savings {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1f1f;
}

.internet-redesign .int-plan-offer {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px;
    background: #fff2f5;
    color: #c20430;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 999px;
}

/* =========================================================
   Broadband Labels - Restyle existing Bootstrap panel
   ========================================================= */

.internet-redesign .int-bb-panel-group {
    max-width: 1120px;
    margin: 26px auto 0;
    padding: 0 22px;
}

.internet-redesign .int-bb-panel {
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.internet-redesign .int-bb-panel-heading {
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
}

    .internet-redesign .int-bb-panel-heading .panel-title {
        margin: 0;
        font-size: inherit;
    }

.internet-redesign .int-bb-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 4px;
    color: #c20430;
    background: transparent;
    border: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease;
}

    .internet-redesign .int-bb-toggle:hover,
    .internet-redesign .int-bb-toggle:focus {
        color: #9f0327;
        text-decoration: none;
        outline: none;
    }

    .internet-redesign .int-bb-toggle i {
        font-size: 17px;
        transition: transform .25s ease;
    }

    /* Bootstrap updates aria-expanded automatically */

    .internet-redesign .int-bb-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

.internet-redesign .int-bb-hide-text {
    display: none;
}

.internet-redesign
.int-bb-toggle[aria-expanded="true"]
.int-bb-show-text {
    display: none;
}

.internet-redesign
.int-bb-toggle[aria-expanded="true"]
.int-bb-hide-text {
    display: inline;
}

/* Expanded content */

.internet-redesign .int-bb-panel-body {
    margin-top: 22px;
    padding: 40px 34px;
    background: #fff;
    border: 1px solid #dfe2e7;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(0,0,0,.08);
}

.internet-redesign .int-bb-heading {
    max-width: 680px;
    margin: 0 auto 32px;
    text-align: center;
}

    .internet-redesign .int-bb-heading h3 {
        margin: 0 0 10px;
        color: #1f191a;
        font-size: 28px;
        line-height: 1.15;
        font-weight: 800;
    }

    .internet-redesign .int-bb-heading p {
        margin: 0;
        color: #70757f;
        font-size: 14px;
        line-height: 1.6;
    }

/* Keep current broadband-label layout, just modernize spacing */

.internet-redesign #broadbandLabels .flex-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.internet-redesign #broadbandLabels .flex-item {
    flex: 1;
    min-width: 0;
    max-width: 340px;
}

.internet-redesign #broadbandLabels .broadband-label {
    width: 100%;
    margin: 0 auto;
}

.internet-redesign #broadbandLabels bblabel {
    display: block;
    width: 100%;
}

/* Remove old Bootstrap panel styling */

.internet-redesign .int-bb-panel > .panel-heading {
    border: 0;
}

.internet-redesign .int-bb-panel .panel-collapse {
    border: 0;
}

.internet-redesign .int-bb-panel .panel-body {
    border-top: 0 !important;
}

/* Tablet/mobile */

@media (max-width: 991px) {
    .internet-redesign #broadbandLabels .flex-row {
        display: block;
    }

    .internet-redesign #broadbandLabels .flex-item {
        width: 100%;
        max-width: 620px;
        margin: 0 auto 30px;
    }

        .internet-redesign #broadbandLabels .flex-item:last-child {
            margin-bottom: 0;
        }
}

@media (max-width: 767px) {
    .internet-redesign .int-bb-panel-group {
        padding: 0 18px;
    }

    .internet-redesign .int-bb-toggle {
        font-size: 14px;
    }

    .internet-redesign .int-bb-panel-body {
        margin-top: 16px;
        padding: 28px 14px;
        border-radius: 14px;
    }

    .internet-redesign .int-bb-heading {
        margin-bottom: 26px;
    }

        .internet-redesign .int-bb-heading h3 {
            font-size: 23px;
        }

        .internet-redesign .int-bb-heading p {
            font-size: 13px;
        }
}

/* =========================================================
   FCC Broadband Labels
   Restyles existing Bootstrap collapse
   ========================================================= */

.internet-redesign .int-bb-panel-group {
    width: 100%;
    max-width: 1120px;
    margin: 24px auto 0;
    padding: 0 22px;
}

.internet-redesign .int-bb-panel {
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

    .internet-redesign .int-bb-panel > .int-bb-panel-heading {
        padding: 0 !important;
        text-align: center;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: 0 !important;
        box-shadow: none !important;
    }

.internet-redesign .int-bb-panel-heading .panel-title {
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0;
    font-size: inherit;
}

/* Toggle link */

.internet-redesign .int-bb-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    padding: 10px 4px;
    color: #c20430;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease;
}

    .internet-redesign .int-bb-toggle:hover,
    .internet-redesign .int-bb-toggle:focus {
        color: #9f0327;
        text-decoration: none;
        outline: none;
    }

    .internet-redesign .int-bb-toggle i {
        font-size: 17px;
        transition: transform .25s ease;
    }

/* View / Hide wording */

.internet-redesign .int-bb-show-text {
    display: inline;
}

.internet-redesign .int-bb-hide-text {
    display: none;
}

.internet-redesign
.int-bb-toggle[aria-expanded="true"]
.int-bb-show-text {
    display: none;
}

.internet-redesign
.int-bb-toggle[aria-expanded="true"]
.int-bb-hide-text {
    display: inline;
}

.internet-redesign
.int-bb-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/*
   While labels initialize, make the toggle appear closed
   even though the Bootstrap panel is technically open.
*/

.internet-redesign
.bb-labels-initializing
.int-bb-show-text {
    display: inline !important;
}

.internet-redesign
.bb-labels-initializing
.int-bb-hide-text {
    display: none !important;
}

.internet-redesign
.bb-labels-initializing
.int-bb-toggle i {
    transform: none !important;
}

/*
   Keep the panel measurable so the broadband-label script
   can render, but prevent the labels from flashing onscreen.
*/

.internet-redesign
.bb-labels-initializing
.int-bb-panel-body {
    visibility: hidden;
}

/* Expanded label container */

.internet-redesign .int-bb-panel-body {
    margin-top: 22px;
    padding: 40px 34px;
    background: #fff;
    border: 1px solid #dfe2e7;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(0,0,0,.08);
}

.internet-redesign .int-bb-panel .panel-collapse,
.internet-redesign .int-bb-panel .panel-body {
    border: 0;
}

.internet-redesign .int-bb-panel .panel-body {
    border-top: 0 !important;
}

/* Intro heading */

.internet-redesign .int-bb-heading {
    max-width: 1200px;
    margin: 0 auto 34px;
    text-align: center;
}

    .internet-redesign .int-bb-heading h3 {
        margin: 0 0 10px;
        color: #1f191a;
        font-size: 28px;
        line-height: 1.15;
        font-weight: 800;
    }

    .internet-redesign .int-bb-heading p {
        margin: 0;
        color: #70757f;
        font-size: 14px;
        line-height: 1.6;
    }

/* Existing broadband-label layout */

.internet-redesign #broadbandLabels .flex-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.internet-redesign #broadbandLabels .flex-item {
    flex: 1;
    min-width: 0;
    max-width: 500px;
}

.internet-redesign #broadbandLabels .broadband-label {
    width: 100%;
    margin: 0 auto;
}

.internet-redesign #broadbandLabels bblabel {
    display: block;
    width: 100%;
}

/* Tablet */

@media (max-width: 991px) {
    .internet-redesign #broadbandLabels .flex-row {
        display: block;
    }

    .internet-redesign #broadbandLabels .flex-item {
        width: 100%;
        max-width: 620px;
        margin: 0 auto 30px;
    }

        .internet-redesign #broadbandLabels .flex-item:last-child {
            margin-bottom: 0;
        }
}

/* Mobile */

@media (max-width: 767px) {
    .internet-redesign .int-bb-panel-group {
        margin-top: 20px;
        padding: 0 18px;
    }

    .internet-redesign .int-bb-toggle {
        font-size: 14px;
    }

    .internet-redesign .int-bb-panel-body {
        margin-top: 16px;
        padding: 28px 14px;
        border-radius: 14px;
    }

    .internet-redesign .int-bb-heading {
        margin-bottom: 26px;
    }

        .internet-redesign .int-bb-heading h3 {
            font-size: 23px;
        }

        .internet-redesign .int-bb-heading p {
            font-size: 13px;
        }
}


/* Broadband Labels desktop sizing */

.internet-redesign .int-bb-panel-group {
    position: relative;
    left: 50%;
    width: calc(100vw - 60px);
    max-width: 1380px;
    margin: 30px 0 0;
    padding: 0;
    transform: translateX(-50%);
}

.internet-redesign .int-bb-panel-body {
    width: 100%;
    max-width: none;
    margin: 20px auto 0;
    padding: 40px 28px 36px;
}

.internet-redesign #broadbandLabels .flex-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

.internet-redesign #broadbandLabels .flex-item {
    flex: 0 0 390px;
    width: 390px;
    max-width: 390px;
    margin: 0;
}

.internet-redesign #broadbandLabels .broadband-label,
.internet-redesign #broadbandLabels bblabel {
    display: block;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .internet-redesign .int-bb-panel-group {
        left: auto;
        width: 100%;
        max-width: 100%;
        margin: 24px auto 0;
        padding: 0;
        transform: none;
    }

    .internet-redesign .int-bb-panel-body {
        padding: 34px 24px;
    }

    .internet-redesign #broadbandLabels .flex-row {
        display: block;
    }

    .internet-redesign #broadbandLabels .flex-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 30px;
    }
}
/* Restore FCC label text alignment */

.internet-redesign #broadbandLabels,
.internet-redesign #broadbandLabels .flex-row,
.internet-redesign #broadbandLabels .flex-item,
.internet-redesign #broadbandLabels .broadband-label,
.internet-redesign #broadbandLabels bblabel {
    text-align: left;
}

/* Remove Bootstrap gray accordion heading background */
.internet-redesign #bbLabelsCollapse .panel-heading,
.internet-redesign #bbLabelsCollapse .panel-title,
.internet-redesign #bbLabelsCollapse .panel-title > a {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
}


/* ==========================================
   Fiber Badge
========================================== */

.internet-redesign .int-fiber-badge {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
    max-width: fit-content;
    align-items: center;
    gap: 6px;
    margin: 8px 0 14px;
    padding: 5px 12px;
    background: #fff4f6;
    border: 1px solid #ffd6de;
    border-radius: 999px;
    color: #c20430;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

    .internet-redesign .int-fiber-badge i {
        color: #c20430;
        font-size: 11px;
    }

/* Fiber speed note */

.internet-redesign .int-fiber-speed-note {
    margin: 8px 0 14px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #555;
}





















/* =========================================================
   Residential Redesign Mobile Overrides
   Keep at very bottom of file
   ========================================================= */

@media (max-width: 767px) {
    .residential-redesign,
    .residential-redesign * {
        box-sizing: border-box;
    }

        .residential-redesign .res-container {
            width: 100%;
            max-width: 100%;
            padding-left: 22px;
            padding-right: 22px;
        }

        .residential-redesign .res-hero {
            display: block;
            min-height: 0;
        }

            .residential-redesign .res-hero .res-container {
                display: block;
                width: 100%;
                padding: 0 22px;
                background: #c20430;
            }

        .residential-redesign .res-hero-copy {
            padding: 48px 0;
        }

            .residential-redesign .res-hero-copy:after {
                display: none;
            }

            .residential-redesign .res-hero-copy h1 {
                font-size: 38px;
                line-height: 1.08;
            }

        .residential-redesign .res-hero-bg {
            display: block;
            width: 100%;
            min-height: 230px;
            background-position: center;
        }

        .residential-redesign .row,
        .residential-redesign .res-plan-row,
        .residential-redesign .res-product-card-row,
        .residential-redesign .res-support-link-row,
        .residential-redesign .res-step-row {
            display: block;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .residential-redesign [class*="col-"] {
            float: none;
            width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

        .residential-redesign .res-action-card,
        .residential-redesign .res-plan-card,
        .residential-redesign .res-product-card,
        .residential-redesign .res-support-link-card,
        .residential-redesign .res-step {
            display: block;
            width: 100%;
            margin-bottom: 22px;
        }

        .residential-redesign .res-story-row,
        .residential-redesign .res-story-row.reverse,
        .residential-redesign .res-testimonial .res-container {
            display: block;
        }

        .residential-redesign .res-story-copy,
        .residential-redesign .res-story-media,
        .residential-redesign .res-testimonial-copy,
        .residential-redesign .res-video-card {
            width: 100%;
        }

        .residential-redesign .res-story-copy {
            margin-bottom: 32px;
        }

        .residential-redesign .res-story-media img,
        .residential-redesign .res-video-card img {
            width: 100%;
            height: auto;
        }

        .residential-redesign .res-video-card {
            margin-top: 32px;
        }

        .residential-redesign .res-quick-actions,
        .residential-redesign .res-speeds,
        .residential-redesign .res-trust-section,
        .residential-redesign .res-testimonial,
        .residential-redesign .res-explore,
        .residential-redesign .res-steps,
        .residential-redesign .res-final-cta {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .residential-redesign .res-section-heading h2,
        .residential-redesign .res-story-copy h2,
        .residential-redesign .res-testimonial-copy h2 {
            font-size: 32px;
            line-height: 1.12;
        }

        .residential-redesign .res-section-heading p,
        .residential-redesign .res-story-copy p,
        .residential-redesign .res-testimonial-copy p,
        .residential-redesign .res-step p {
            font-size: 15px;
        }

        .residential-redesign .res-final-cta h2 {
            font-size: 34px;
            line-height: 1.12;
        }
}
