﻿/* =========================================================
   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;
}

.int-plan-divider {
    height: 1px;
    background: #ececec;
    margin: 1.5rem 0;
}




/* =========================================================
   Armstrong TV Page
   Scoped to .internet-redesign.tv-page
   ========================================================= */

/* Hero */

.internet-redesign.tv-page .tv-hero .int-hero-copy h1 {
    max-width: 540px;
}

.internet-redesign.tv-page .tv-hero .int-hero-media img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
}


/* =========================================================
   Entertainment / Sizzle Reel
   ========================================================= */

.internet-redesign .tv-entertainment {
    padding: 105px 0 110px;
    background: #fafafb;
}

.internet-redesign .tv-sizzle-card {
    position: relative;
    max-width: 1040px;
    margin: 0 auto 56px;
    overflow: hidden;
    background: #090f1a;
    border: 10px solid #1c2737;
    border-radius: 22px;
    box-shadow: 0 28px 65px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.12);
}

.internet-redesign .tv-sizzle-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #090f1a;
}

.internet-redesign .tv-sizzle-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(5,10,20,.08) 0%, rgba(5,10,20,0) 55%, rgba(5,10,20,.22) 100% );
}

.internet-redesign .tv-video-control {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #c20430;
    background: rgba(255,255,255,.94);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    font-size: 16px;
    cursor: pointer;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

    .internet-redesign .tv-video-control:hover,
    .internet-redesign .tv-video-control:focus {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,.32);
        outline: none;
    }


/* Channel Categories */

.internet-redesign .tv-channel-category-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1160px;
    margin: 0 auto;
}

.internet-redesign .tv-channel-category {
    min-width: 0;
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #e6e8ed;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.045);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .internet-redesign .tv-channel-category:hover {
        transform: translateY(-4px);
        border-color: rgba(194,4,48,.22);
        box-shadow: 0 18px 38px rgba(0,0,0,.09);
    }

    .internet-redesign .tv-channel-category > span {
        display: block;
        margin-bottom: 18px;
        color: #c20430;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .03em;
    }

/* Precomposed channel-logo images */

.internet-redesign .tv-channel-logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 105px;
}

    .internet-redesign .tv-channel-logo-image img {
        display: block;
        width: 100%;
        max-width: 240px;
        max-height: 105px;
        height: auto;
        object-fit: contain;
    }

.internet-redesign .tv-channel-category > span {
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .internet-redesign .tv-channel-logo-image {
        min-height: 82px;
    }

        .internet-redesign .tv-channel-logo-image img {
            max-width: 190px;
            max-height: 82px;
        }
}

.internet-redesign .tv-channel-cta {
    margin-top: 42px;
    text-align: center;
}

    .internet-redesign .tv-channel-cta .int-btn-red {
        display: inline-flex;
        justify-content: center;
        min-width: 230px;
    }


/* =========================================================
   Streaming Services
   ========================================================= */

.internet-redesign .tv-streaming {
    padding: 100px 0;
    background: #fff;
}

.internet-redesign .tv-streaming-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}

.internet-redesign .tv-streaming-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 22px 28px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,.035);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .internet-redesign .tv-streaming-logo:hover {
        transform: translateY(-3px);
        border-color: rgba(194,4,48,.2);
        box-shadow: 0 14px 32px rgba(0,0,0,.075);
    }

    .internet-redesign .tv-streaming-logo img {
        display: block;
        width: auto;
        height: auto;
        max-width: 170px;
        max-height: 58px;
        object-fit: contain;
    }

.internet-redesign .tv-streaming-disclaimer {
    max-width: 700px;
    margin: 26px auto 0;
    color: #7b808a;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}


/* =========================================================
   Entertainment Features
   ========================================================= */

.internet-redesign .tv-features {
    padding: 105px 0 115px;
    background: #fff;
}

.internet-redesign .tv-feature-row {
    display: flex;
    align-items: center;
    gap: 95px;
    max-width: 1120px;
    margin: 0 auto 140px;
}
.internet-redesign .tv-features .int-section-heading {
    margin-bottom: 80px;
}

.internet-redesign .tv-feature-copy > p {
    margin-bottom: 32px;
}

    .internet-redesign .tv-feature-row:last-child {
        margin-bottom: 0;
    }

    .internet-redesign .tv-feature-row.reverse {
        flex-direction: row-reverse;
    }

.internet-redesign .tv-feature-media,
.internet-redesign .tv-feature-copy {
    flex: 1;
    min-width: 0;
}

    .internet-redesign .tv-feature-media img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 22px;
        box-shadow: 0 22px 50px rgba(0,0,0,.14);
    }

    .internet-redesign .tv-feature-copy h2 {
        margin: 0 0 20px;
        color: #1f191a;
        font-size: 42px;
        line-height: 1.08;
        font-weight: 800;
    }

    .internet-redesign .tv-feature-copy > p {
        margin: 0 0 26px;
        color: #565d6d;
        font-size: 17px;
        line-height: 1.7;
    }

.internet-redesign .tv-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .internet-redesign .tv-check-list li {
        position: relative;
        margin-bottom: 13px;
        padding-left: 28px;
        color: #1f191a;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 700;
    }

        .internet-redesign .tv-check-list li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 16px;
        }

.internet-redesign .tv-app-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

    .internet-redesign .tv-app-buttons a {
        display: inline-block;
    }

    .internet-redesign .tv-app-buttons img {
        display: block;
        width: auto;
        height: 46px;
    }


/* =========================================================
   Supported Devices
   ========================================================= */

.internet-redesign .tv-devices {
    padding: 105px 0;
    background: #fafafb;
}

.internet-redesign .tv-devices-layout {
    display: flex;
    align-items: center;
    gap: 90px;
    max-width: 1120px;
    margin: 0 auto;
}

.internet-redesign .tv-devices-copy,
.internet-redesign .tv-devices-media {
    flex: 1;
    min-width: 0;
}

    .internet-redesign .tv-devices-copy h2 {
        margin: 0 0 20px;
        color: #1f191a;
        font-size: 44px;
        line-height: 1.08;
        font-weight: 800;
    }

    .internet-redesign .tv-devices-copy > p {
        margin: 0 0 26px;
        color: #565d6d;
        font-size: 17px;
        line-height: 1.7;
    }

.internet-redesign .tv-device-logo-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 30px;
}

    .internet-redesign .tv-device-logo-row img {
        display: block;
        width: auto;
        height: auto;
        max-width: 92px;
        max-height: 34px;
    }

.internet-redesign .tv-devices-copy .int-btn-red {
    display: inline-flex;
    justify-content: center;
    min-width: 210px;
}

.internet-redesign .tv-devices-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(0,0,0,.14);
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991px) {

    .internet-redesign .tv-channel-category-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internet-redesign .tv-streaming-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .internet-redesign .tv-feature-row,
    .internet-redesign .tv-feature-row.reverse,
    .internet-redesign .tv-devices-layout {
        display: block;
    }

    .internet-redesign .tv-feature-media,
    .internet-redesign .tv-devices-media {
        margin-bottom: 38px;
    }
}


@media (max-width: 767px) {

    .internet-redesign .tv-entertainment,
    .internet-redesign .tv-streaming,
    .internet-redesign .tv-features,
    .internet-redesign .tv-devices {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .internet-redesign .tv-sizzle-card {
        margin-bottom: 38px;
        border-width: 5px;
        border-radius: 16px;
    }

    .internet-redesign .tv-video-control {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .internet-redesign .tv-channel-category-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .internet-redesign .tv-channel-category {
        padding: 20px;
    }

        .internet-redesign .tv-channel-category > span {
            margin-bottom: 14px;
        }

    .internet-redesign .tv-streaming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .internet-redesign .tv-streaming-logo {
        min-height: 76px;
        padding: 15px;
    }

        .internet-redesign .tv-streaming-logo img {
            max-width: 96px;
            max-height: 28px;
        }

    .internet-redesign .tv-feature-row {
        margin-bottom: 88px;
    }

    .internet-redesign .tv-feature-media {
        margin-bottom: 34px;
    }

    .internet-redesign .tv-feature-copy h2,
    .internet-redesign .tv-devices-copy h2 {
        font-size: 31px;
    }

    .internet-redesign .tv-feature-copy > p,
    .internet-redesign .tv-devices-copy > p {
        font-size: 18px;
    }

    .internet-redesign .tv-app-buttons {
        flex-wrap: wrap;
    }

        .internet-redesign .tv-app-buttons img {
            height: 42px;
        }

    .internet-redesign .tv-devices-media {
        margin-top: 34px;
        margin-bottom: 0;
    }
    .internet-redesign .tv-features .int-section-heading {
        margin-bottom: 52px;
    }

    .internet-redesign .tv-feature-row:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .internet-redesign .tv-feature-row {
        position: relative;
        padding-bottom: 44px;
        margin-bottom: 44px;
    }

        .internet-redesign .tv-feature-row:not(:last-child):after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: #eceff3;
        }

        .internet-redesign .tv-feature-row:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
        }
}

/* Streaming service cards */

.internet-redesign .tv-streaming-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.internet-redesign .tv-streaming-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 24px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

    .internet-redesign .tv-streaming-card img {
        width: auto;
        max-width: 170px;
        max-height: 58px;
        height: auto;
        object-fit: contain;
    }

@media (max-width:767px) {

    .internet-redesign .tv-streaming-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .internet-redesign .tv-streaming-card {
        min-height: 90px;
        padding: 18px;
    }

        .internet-redesign .tv-streaming-card img {
            max-width: 130px;
            max-height: 46px;
        }
}

/* =========================================================
   Armstrong Neighborhood Channel
   Scoped to .internet-redesign.neighborhood-page
   ========================================================= */


/* =========================================================
   Hero
   ========================================================= */

.internet-redesign .anc-hero {
    padding: 90px 0 85px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #eceff3;
}

.internet-redesign .anc-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.internet-redesign .anc-hero-logo {
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 0 auto 30px;
}

.internet-redesign .anc-hero h1 {
    max-width: 840px;
    margin: 0 auto 24px;
    color: #1f191a;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 800;
}

    .internet-redesign .anc-hero h1 span {
        color: #c20430;
    }

.internet-redesign .anc-hero p {
    max-width: 690px;
    margin: 0 auto 32px;
    color: #565d6d;
    font-size: 18px;
    line-height: 1.65;
}

.internet-redesign .anc-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

    .internet-redesign .anc-hero-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 210px;
        min-height: 52px;
    }

.internet-redesign .anc-btn-outline {
    color: #1f191a;
    background: #fff;
    border: 1px solid #aeb2ba;
    border-radius: 10px;
    padding: 13px 26px;
    font-weight: 800;
    text-decoration: none;
    transition: color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

    .internet-redesign .anc-btn-outline:hover,
    .internet-redesign .anc-btn-outline:focus {
        color: #c20430;
        border-color: #c20430;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }


/* =========================================================
   Featured Program
   ========================================================= */

.internet-redesign .anc-featured {
    padding: 95px 0 110px;
    background: #fafafb;
}

.internet-redesign .anc-section-heading {
    margin-bottom: 42px;
}

.internet-redesign .anc-featured-video {
    position: relative;
    display: block;
    max-width: 940px;
    margin: 0 auto;
    overflow: hidden;
    background: #08101e;
    border: 10px solid #1c2737;
    border-radius: 22px;
    box-shadow: 0 28px 65px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .internet-redesign .anc-featured-video img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        transition: transform .4s ease, opacity .3s ease;
    }

.internet-redesign .anc-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,.25), rgba(0,0,0,.03) );
}

.internet-redesign .anc-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    color: #fff;
    background: #c20430;
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(0,0,0,.32), 0 0 0 10px rgba(194,4,48,.18);
    font-size: 28px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.internet-redesign .anc-featured-video:hover,
.internet-redesign .anc-featured-video:focus {
    transform: translateY(-5px);
    box-shadow: 0 36px 78px rgba(0,0,0,.24), 0 12px 28px rgba(0,0,0,.14);
}

    .internet-redesign .anc-featured-video:hover img,
    .internet-redesign .anc-featured-video:focus img {
        transform: scale(1.03);
        opacity: .94;
    }

    .internet-redesign .anc-featured-video:hover .anc-play-button,
    .internet-redesign .anc-featured-video:focus .anc-play-button {
        background: #a50328;
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 22px 48px rgba(0,0,0,.38), 0 0 0 14px rgba(194,4,48,.16);
    }


/* =========================================================
   Local Shows
   ========================================================= */

.internet-redesign .anc-shows {
    padding: 105px 0 120px;
    background: #fff;
}

.internet-redesign .anc-show-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.internet-redesign .anc-show-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #1f191a;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.045);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .internet-redesign .anc-show-card:hover,
    .internet-redesign .anc-show-card:focus {
        color: #1f191a;
        text-decoration: none;
        transform: translateY(-6px);
        border-color: rgba(194,4,48,.22);
        box-shadow: 0 22px 48px rgba(0,0,0,.11);
    }

.internet-redesign .anc-show-image {
    overflow: hidden;
}

    .internet-redesign .anc-show-image img {
        display: block;
        width: 100%;
        height: 210px;
        object-fit: cover;
        transition: transform .4s ease;
    }

.internet-redesign .anc-show-card:hover .anc-show-image img,
.internet-redesign .anc-show-card:focus .anc-show-image img {
    transform: scale(1.045);
}

.internet-redesign .anc-show-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

    .internet-redesign .anc-show-content h3 {
        margin: 0 0 12px;
        color: #1f191a;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 800;
    }

    .internet-redesign .anc-show-content p {
        margin: 0 0 24px;
        color: #565d6d;
        font-size: 15px;
        line-height: 1.6;
    }

.internet-redesign .anc-show-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #c20430;
    font-size: 14px;
    font-weight: 800;
}

    .internet-redesign .anc-show-link i {
        transition: transform .22s ease;
    }

.internet-redesign .anc-show-card:hover .anc-show-link i,
.internet-redesign .anc-show-card:focus .anc-show-link i {
    transform: translateX(4px);
}

.internet-redesign .anc-archive-cta {
    margin-top: 50px;
    text-align: center;
}

.internet-redesign .anc-btn-outline-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 13px 26px;
    color: #c20430;
    background: #fff;
    border: 1px solid #c20430;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

    .internet-redesign .anc-btn-outline-red:hover,
    .internet-redesign .anc-btn-outline-red:focus {
        color: #fff;
        background: #c20430;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(194,4,48,.2);
    }


/* =========================================================
   Community CTA
   ========================================================= */

.internet-redesign .anc-community-cta {
    padding: 110px 0;
    text-align: center;
    color: #fff;
    background: #c20430;
}

    .internet-redesign .anc-community-cta h2 {
        max-width: 950px;
        margin: 0 auto 22px;
        color: #fff;
        font-size: 48px;
        line-height: 1.1;
        font-weight: 800;
    }

    .internet-redesign .anc-community-cta p {
        max-width: 680px;
        margin: 0 auto 34px;
        color: rgba(255,255,255,.9);
        font-size: 18px;
        line-height: 1.65;
    }

    .internet-redesign .anc-community-cta .int-btn-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
    }


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .internet-redesign .anc-show-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internet-redesign .anc-show-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 14px);
        width: 100%;
        margin: 0 auto;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .internet-redesign .anc-hero {
        padding: 58px 0;
    }

    .internet-redesign .anc-hero-logo {
        max-width: 280px;
        margin-bottom: 24px;
    }

    .internet-redesign .anc-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .internet-redesign .anc-hero p {
        font-size: 16px;
    }

    .internet-redesign .anc-hero-actions {
        display: block;
    }

        .internet-redesign .anc-hero-actions .btn {
            width: 100%;
            margin-bottom: 12px;
        }

    .internet-redesign .anc-featured,
    .internet-redesign .anc-shows,
    .internet-redesign .anc-community-cta {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .internet-redesign .anc-featured-video {
        border-width: 5px;
        border-radius: 16px;
    }

    .internet-redesign .anc-play-button {
        width: 62px;
        height: 62px;
        font-size: 21px;
        box-shadow: 0 12px 28px rgba(0,0,0,.3), 0 0 0 7px rgba(194,4,48,.16);
    }

    .internet-redesign .anc-show-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .internet-redesign .anc-show-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .internet-redesign .anc-show-image img {
        height: 190px;
    }

    .internet-redesign .anc-show-content {
        padding: 24px;
    }

        .internet-redesign .anc-show-content h3 {
            font-size: 22px;
        }

    .internet-redesign .anc-community-cta h2 {
        font-size: 34px;
    }

    .internet-redesign .anc-community-cta p {
        font-size: 16px;
    }

    .internet-redesign .anc-community-cta .int-btn-white {
        width: 100%;
        max-width: 300px;
    }
}
/* Featured YouTube playlist */

.internet-redesign .anc-featured-video-wrap {
    max-width: 940px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
    background: #1c2737;
    border-radius: 22px;
    box-shadow: 0 28px 65px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .internet-redesign .anc-featured-video-wrap:hover {
        transform: translateY(-4px);
        box-shadow: 0 36px 78px rgba(0,0,0,.23), 0 12px 28px rgba(0,0,0,.14);
    }

.internet-redesign .anc-featured-embed {
    margin: 0;
    overflow: hidden;
    background: #08101e;
    border-radius: 14px;
}

    .internet-redesign .anc-featured-embed iframe {
        border: 0;
    }

    /* Bootstrap 3 fallback, in case the embed classes are overridden */

    .internet-redesign .anc-featured-embed.embed-responsive {
        position: relative;
        display: block;
        width: 100%;
        height: 0;
        padding: 0 0 56.25%;
        overflow: hidden;
    }

        .internet-redesign .anc-featured-embed.embed-responsive iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

/* Mobile */

@media (max-width: 767px) {
    .internet-redesign .anc-featured-video-wrap {
        padding: 5px;
        border-radius: 16px;
    }

    .internet-redesign .anc-featured-embed {
        border-radius: 11px;
    }
}

/* =========================================================
   Channel Guide Redesign
   Preserves existing HTML and JavaScript functionality
   ========================================================= */

.channel-guide-page {
    width: 1240px;
    max-width: 100%;
    padding: 70px 70px 110px;
    color: #1f191a;
}

    /* Intro copy and print link */

    .channel-guide-page > .row:first-child {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }

    .channel-guide-page .div-print-btn {
        text-align: right;
    }

        .channel-guide-page #btnPrintView,
        .channel-guide-page .div-print-btn > a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 18px;
            color: #c20430;
            background: #fff;
            border: 1px solid #dfe2e7;
            border-radius: 9px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

            .channel-guide-page #btnPrintView:hover,
            .channel-guide-page .div-print-btn > a:hover {
                color: #a50328;
                border-color: rgba(194,4,48,.45);
                box-shadow: 0 10px 24px rgba(0,0,0,.07);
                transform: translateY(-2px);
                text-decoration: none;
            }

    .channel-guide-page .lead {
        max-width: 850px;
        margin: 0 0 34px;
        color: #565d6d;
        font-size: 17px;
        line-height: 1.7;
    }

    /* Package filter area */

    .channel-guide-page .channel-key {
        margin-bottom: 34px;
    }

        .channel-guide-page .channel-key > .row {
            display: flex;
            align-items: stretch;
            margin-left: -10px;
            margin-right: -10px;
        }

            .channel-guide-page .channel-key > .row > [class*="col-"] {
                display: flex;
                padding-left: 10px;
                padding-right: 10px;
            }

    .channel-guide-page .well.well-light {
        width: 100%;
        margin: 0;
        padding: 28px;
        background: #fff;
        border: 1px solid #e3e6eb;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,.045);
    }

        .channel-guide-page .well.well-light h2,
        .channel-guide-page .well.well-light .h4 {
            margin: 0 0 20px;
            color: #1f191a;
            font-size: 18px;
            line-height: 1.25;
            font-weight: 800;
        }

    /* Package selectors */

    .channel-guide-page .base-channel,
    .channel-guide-page .addl-channel,
    .channel-guide-page .choice-package,
    .channel-guide-page .Blank-Tier {
        margin-bottom: 10px;
    }

        .channel-guide-page .package-color label,
        .channel-guide-page .Blank-Tier label {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 44px;
            margin: 0;
            padding: 11px 13px;
            color: #1f191a;
            background: #fafafb;
            border: 1px solid #e7e9ed;
            border-radius: 9px;
            font-size: 14px;
            line-height: 1.35;
            font-weight: 700;
            cursor: pointer;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
        }

            .channel-guide-page .package-color label:hover,
            .channel-guide-page .Blank-Tier label:hover {
                color: #c20430;
                background: #fff4f6;
                border-color: rgba(194,4,48,.3);
                transform: translateY(-1px);
            }

            .channel-guide-page .package-color label .fa,
            .channel-guide-page .Blank-Tier label .fa {
                margin-right: 7px;
                color: #c20430;
                font-size: 17px;
            }

            /* Selected packages */

            .channel-guide-page .package-color label:has(.fa-check-square-o),
            .channel-guide-page .Blank-Tier label:has(.fa-check-square-o) {
                color: #c20430;
                background: #fff4f6;
                border-color: rgba(194,4,48,.4);
            }

    /* Search */

    .channel-guide-page input#findChannel {
        height: 44px;
        margin-bottom: 15px;
        padding: 10px 13px;
        color: #1f191a;
        background: #fff;
        border: 1px solid #d8dce3;
        border-radius: 9px;
        box-shadow: none;
        font-size: 14px;
    }

        .channel-guide-page input#findChannel:focus {
            border-color: #c20430;
            box-shadow: 0 0 0 3px rgba(194,4,48,.1);
            outline: 0;
        }

    .channel-guide-page .well a {
        color: #c20430;
        font-weight: 800;
    }

    /* Sort control */

    .channel-guide-page #divSort {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        margin: 0 0 22px;
        padding: 18px 20px;
        background: #fafafb;
        border: 1px solid #e5e8ed;
        border-radius: 12px;
    }

        .channel-guide-page #divSort label {
            margin: 0;
            color: #1f191a;
            font-size: 14px;
            font-weight: 800;
        }

    .channel-guide-page #ddlSortBy {
        min-width: 190px;
        height: 42px;
        padding: 8px 36px 8px 12px;
        color: #1f191a;
        background-color: #fff;
        border: 1px solid #d8dce3;
        border-radius: 8px;
    }

    /* Generated guide area */

    .channel-guide-page #divGuideDisplay {
        overflow: hidden;
        background: #fff;
        border: 1px solid #e2e5ea;
        border-radius: 16px;
        box-shadow: 0 16px 38px rgba(0,0,0,.055);
    }

    /*
   These selectors should modernize the generated channel rows
   without changing their structure.
*/

    .channel-guide-page #channelGuide {
        margin: 0;
    }

        .channel-guide-page #channelGuide .channel {
            padding-top: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eceef2;
            transition: background-color .18s ease;
        }

            .channel-guide-page #channelGuide .channel:last-child {
                border-bottom: 0;
            }

            .channel-guide-page #channelGuide .channel:hover {
                background: #fafafb;
            }

        .channel-guide-page #channelGuide .channel-num {
            color: #c20430;
            font-weight: 900;
        }

        .channel-guide-page #channelGuide .channel-name {
            color: #1f191a;
            font-weight: 800;
        }

    /* No-result alert */

    .channel-guide-page #noMatch .alert {
        margin: 24px 0 0;
        padding: 18px 20px;
        color: #8a1731;
        background: #fff4f6;
        border: 1px solid #ffd5df;
        border-radius: 10px;
    }

    /* Back to top */

    .channel-guide-page .top-button {
        margin-top: 28px !important;
        padding: 11px 18px;
        color: #c20430;
        background: #fff;
        border: 1px solid #c20430;
        border-radius: 9px;
        font-weight: 800;
        cursor: pointer;
    }

        .channel-guide-page .top-button:hover {
            color: #fff;
            background: #c20430;
        }

    /* Footnotes beneath guide */

    .channel-guide-page + script + .h6,
    .channel-guide-page ~ .h6 {
        max-width: 1100px;
        margin: 28px auto 70px !important;
        padding: 0 30px;
        color: #70757f;
        font-size: 12px;
        line-height: 1.65;
        font-weight: 400;
    }

    /* No TV availability */

    .channel-guide-page > .well.well-light.m-t-3 h2 {
        margin: 0;
        padding: 30px;
        font-size: 28px;
        font-weight: 800;
    }


/* =========================================================
   Product logo eyebrow
   ========================================================= */

.internet-redesign .int-product-logo-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
}

.internet-redesign .int-product-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 14px;
    object-fit: contain;
}

/* Product-specific sizing */

.internet-redesign .int-product-logo-tv {
    width: 205px;
}

.internet-redesign .int-product-logo-internet {
    width: 260px;
}

.internet-redesign .int-product-logo-phone {
    width: 300px;
}

/* Reuse the existing red accent line */

.internet-redesign .int-product-logo-eyebrow .int-section-accent {
    display: block;
    width: 42px;
    height: 4px;
    margin: 0;
    background: #c20430;
    border-radius: 999px;
}

@media (max-width: 767px) {

    .internet-redesign .int-product-logo-eyebrow {
        margin-bottom: 20px;
    }

    .internet-redesign .int-product-logo {
        margin-bottom: 12px;
    }

    .internet-redesign .int-product-logo-tv {
        width: 165px;
    }

    .internet-redesign .int-product-logo-internet {
        width: 215px;
    }

    .internet-redesign .int-product-logo-phone {
        width: 250px;
    }
}

/* =========================================================
   Armstrong Home Phone Page
   Scoped to .internet-redesign.phone-page
   ========================================================= */


/* Hero */

.internet-redesign.phone-page .phone-hero .int-hero-copy h1 {
    max-width: 570px;
}

.internet-redesign.phone-page .phone-hero .int-hero-media img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
}


/* =========================================================
   Benefits
   ========================================================= */

.internet-redesign .phone-benefits {
    padding: 100px 0 110px;
    background: #fafafb;
}

.internet-redesign .phone-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.internet-redesign .phone-benefit-card {
    padding: 30px 24px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.045);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .internet-redesign .phone-benefit-card:hover {
        transform: translateY(-4px);
        border-color: rgba(194,4,48,.24);
        box-shadow: 0 18px 38px rgba(0,0,0,.085);
    }

.internet-redesign .phone-icon,
.internet-redesign .phone-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: #c20430;
    background: #fff4f6;
    border-radius: 13px;
    font-size: 18px;
}

.internet-redesign .phone-benefit-card h3 {
    margin: 0 0 12px;
    color: #1f191a;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.internet-redesign .phone-benefit-card p {
    margin: 0;
    color: #565d6d;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   Calling Features
   ========================================================= */

.internet-redesign .phone-features {
    padding: 105px 0 115px;
    background: #fff;
}

.internet-redesign .phone-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.internet-redesign .phone-feature-card {
    min-height: 190px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .internet-redesign .phone-feature-card:hover {
        transform: translateY(-3px);
        border-color: rgba(194,4,48,.23);
        box-shadow: 0 14px 30px rgba(0,0,0,.07);
    }

.internet-redesign .phone-feature-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 14px;
    border-radius: 10px;
}

.internet-redesign .phone-feature-card h3 {
    margin: 0 0 9px;
    color: #1f191a;
    font-size: 16px;
    font-weight: 800;
}

.internet-redesign .phone-feature-card p {
    margin: 0;
    color: #565d6d;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   Split Sections
   ========================================================= */

.internet-redesign .phone-split {
    padding: 110px 0;
}

.internet-redesign .phone-privacy {
    background: #fff;
}

.internet-redesign .phone-management {
    background: #fafafb;
}

.internet-redesign .phone-split-layout {
    display: flex;
    align-items: center;
    gap: 90px;
    max-width: 1100px;
    margin: 0 auto;
}

    .internet-redesign .phone-split-layout.reverse {
        flex-direction: row-reverse;
    }

.internet-redesign .phone-split-media,
.internet-redesign .phone-split-copy {
    flex: 1;
    min-width: 0;
}

.internet-redesign .phone-split-media {
    text-align: center;
}

    .internet-redesign .phone-split-media img {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 22px 50px rgba(0,0,0,.12);
    }

.internet-redesign .phone-management .phone-split-media img {
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.internet-redesign .phone-split-copy h2 {
    max-width: 500px;
    margin: 0 0 22px;
    color: #1f191a;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
}

.internet-redesign .phone-split-copy p {
    max-width: 560px;
    margin: 0 0 28px;
    color: #565d6d;
    font-size: 17px;
    line-height: 1.7;
}

.internet-redesign .phone-split-copy .int-btn-red {
    display: inline-flex;
    justify-content: center;
    min-width: 150px;
}


/* =========================================================
   FAQ
   ========================================================= */

.internet-redesign .phone-faq {
    background: #fff;
}


/* =========================================================
   Assistance
   ========================================================= */

.internet-redesign .phone-assistance {
    padding: 20px 0 105px;
    background: #fff;
}

    .internet-redesign .phone-assistance .int-section-heading {
        margin-bottom: 42px;
    }

.internet-redesign .phone-assistance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
}

.internet-redesign .phone-assistance-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e3e6eb;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.045);
}

    .internet-redesign .phone-assistance-card .phone-icon {
        flex: 0 0 42px;
        margin: 0;
    }

    .internet-redesign .phone-assistance-card h3 {
        margin: 0 0 9px;
        color: #1f191a;
        font-size: 18px;
        font-weight: 800;
    }

    .internet-redesign .phone-assistance-card p {
        margin: 0 0 14px;
        color: #565d6d;
        font-size: 14px;
        line-height: 1.55;
    }

    .internet-redesign .phone-assistance-card a {
        color: #c20430;
        font-size: 17px;
        font-weight: 900;
        text-decoration: none;
    }

        .internet-redesign .phone-assistance-card a:hover,
        .internet-redesign .phone-assistance-card a:focus {
            color: #9f0327;
            text-decoration: underline;
        }


/* =========================================================
   Final CTA
   ========================================================= */

.internet-redesign .phone-final-cta h2 {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .internet-redesign .phone-benefit-grid,
    .internet-redesign .phone-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internet-redesign .phone-split-layout,
    .internet-redesign .phone-split-layout.reverse {
        display: block;
    }

    .internet-redesign .phone-split-media {
        margin-bottom: 42px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .internet-redesign .phone-benefits,
    .internet-redesign .phone-features,
    .internet-redesign .phone-split,
    .internet-redesign .phone-assistance {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .internet-redesign .phone-benefit-grid,
    .internet-redesign .phone-feature-grid,
    .internet-redesign .phone-assistance-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .internet-redesign .phone-benefit-card {
        padding: 24px 22px;
    }

    .internet-redesign .phone-feature-card {
        min-height: 0;
        padding: 22px;
    }

    .internet-redesign .phone-split-media {
        margin-bottom: 32px;
    }

    .internet-redesign .phone-split-copy h2 {
        font-size: 31px;
    }

    .internet-redesign .phone-split-copy p {
        font-size: 16px;
    }

    .internet-redesign .phone-split-copy .int-btn-red {
        width: 100%;
    }

    .internet-redesign .phone-assistance {
        padding-top: 10px;
    }

    .internet-redesign .phone-assistance-card {
        padding: 22px;
    }

        .internet-redesign .phone-assistance-card a {
            font-size: 16px;
        }
}

/* =========================================================
   Privacy Defender Add-On
   ========================================================= */

.internet-redesign .phone-privacy-addon {
    padding: 110px 0;
    background: #fff;
}

.internet-redesign .phone-privacy-card {
    display: flex;
    align-items: center;
    gap: 90px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 64px 70px;
    background: #fafafb;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0,0,0,.08);
}

.internet-redesign .phone-privacy-visual {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.internet-redesign .phone-privacy-shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    color: #c20430;
    background: #fff4f6;
    border: 1px solid #ffd6de;
    border-radius: 50%;
    font-size: 108px;
    box-shadow: 0 18px 40px rgba(194,4,48,.10);
}

.internet-redesign .phone-privacy-phone-icon {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    color: #fff;
    background: #c20430;
    border: 6px solid #fafafb;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.internet-redesign .phone-privacy-content {
    flex: 1;
    min-width: 0;
}

.internet-redesign .phone-privacy-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #c20430;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.internet-redesign .phone-privacy-content h2 {
    max-width: 580px;
    margin: 0 0 24px;
    color: #1f191a;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
}

.internet-redesign .phone-privacy-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 26px;
}

    .internet-redesign .phone-privacy-price strong {
        color: #c20430;
        font-size: 46px;
        line-height: 1;
        font-weight: 900;
    }

    .internet-redesign .phone-privacy-price span {
        color: #565d6d;
        font-size: 18px;
        font-weight: 700;
    }

.internet-redesign .phone-privacy-benefits {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

    .internet-redesign .phone-privacy-benefits li {
        position: relative;
        margin-bottom: 14px;
        padding-left: 28px;
        color: #1f191a;
        font-size: 16px;
        line-height: 1.45;
        font-weight: 700;
    }

        .internet-redesign .phone-privacy-benefits li:before {
            content: "\f00c";
            position: absolute;
            left: 0;
            top: 1px;
            color: #c20430;
            font-family: FontAwesome;
            font-size: 14px;
        }

.internet-redesign .phone-privacy-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .internet-redesign .phone-privacy-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 210px;
        min-height: 50px;
    }


@media (max-width: 767px) {

    .internet-redesign .phone-privacy-addon {
        padding: 58px 0;
    }

    .internet-redesign .phone-privacy-card {
        display: block;
        padding: 34px 24px;
        border-radius: 18px;
    }

    .internet-redesign .phone-privacy-visual {
        margin-bottom: 34px;
    }

    .internet-redesign .phone-privacy-shield {
        width: 180px;
        height: 180px;
        font-size: 84px;
    }

    .internet-redesign .phone-privacy-phone-icon {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        border-width: 5px;
        font-size: 20px;
    }

    .internet-redesign .phone-privacy-content {
        text-align: left;
    }

        .internet-redesign .phone-privacy-content h2 {
            font-size: 31px;
        }

    .internet-redesign .phone-privacy-price strong {
        font-size: 40px;
    }

    .internet-redesign .phone-privacy-price span {
        font-size: 16px;
    }

    .internet-redesign .phone-privacy-actions {
        display: block;
    }

        .internet-redesign .phone-privacy-actions .btn {
            width: 100%;
            margin-bottom: 12px;
        }
}

/* =========================================================
   International Calling Page
   ========================================================= */

.internet-redesign .international-hero {
    padding: 80px 0 70px;
}

.internet-redesign .international-logo-eyebrow {
    align-items: center;
    margin-bottom: 22px;
}

    .internet-redesign .international-logo-eyebrow .int-product-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .internet-redesign .international-logo-eyebrow .int-section-accent {
        margin-left: auto;
        margin-right: auto;
    }


/* Rates section */

.internet-redesign .international-rates {
    padding: 105px 0 115px;
    background: #fafafb;
}

.internet-redesign .international-rates-layout {
    display: flex;
    align-items: flex-start;
    gap: 85px;
    max-width: 1120px;
    margin: 0 auto;
}

.internet-redesign .international-rates-content,
.internet-redesign .international-rates-media {
    flex: 1;
    min-width: 0;
}

    .internet-redesign .international-rates-content h2 {
        margin: 0 0 12px;
        color: #1f191a;
        font-size: 40px;
        line-height: 1.1;
        font-weight: 800;
    }

    .internet-redesign .international-rates-content > h3 {
        margin: 0 0 32px;
        color: #565d6d;
        font-size: 18px;
        line-height: 1.55;
        font-weight: 500;
    }

.internet-redesign .international-rates-media {
    padding-top: 20px;
}

    .internet-redesign .international-rates-media img {
        display: block;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }


/* Address prompt */

.internet-redesign #zipPromptMessage {
    margin-bottom: 26px;
}

    .internet-redesign #zipPromptMessage .alert {
        margin: 0;
        padding: 26px;
        color: #5c4611;
        background: #fff9e8;
        border: 1px solid #f0daa0;
        border-radius: 14px;
    }

    .internet-redesign #zipPromptMessage h4 {
        margin: 0 0 10px;
        color: #1f191a;
        font-size: 20px;
        line-height: 1.3;
        font-weight: 800;
    }

    .internet-redesign #zipPromptMessage p {
        margin: 0 0 20px;
        color: #66572e;
        font-size: 15px;
        line-height: 1.6;
    }

.internet-redesign #btnZipModal1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 13px 24px;
    color: #fff;
    background: #c20430;
    border: 1px solid #c20430;
    border-radius: 9px;
    font-weight: 800;
}

    .internet-redesign #btnZipModal1:hover,
    .internet-redesign #btnZipModal1:focus {
        color: #fff;
        background: #a50328;
        border-color: #a50328;
    }


/* Country dropdown */

.internet-redesign #countryDropdownWrapper {
    margin-bottom: 28px;
}

.internet-redesign #ddCountries {
    width: 100%;
    height: 52px;
    padding: 10px 42px 10px 16px;
    color: #1f191a;
    background-color: #fff;
    border: 1px solid #d8dce3;
    border-radius: 10px;
    box-shadow: none;
    font-size: 16px;
}

    .internet-redesign #ddCountries:focus {
        border-color: #c20430;
        box-shadow: 0 0 0 3px rgba(194,4,48,.1);
        outline: 0;
    }


/* Ajax rates table */

.internet-redesign #divRatesTable {
    overflow: hidden;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #e1e4e9;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.045);
}

    .internet-redesign #divRatesTable:empty {
        display: none;
    }

    .internet-redesign #divRatesTable table {
        width: 100%;
        margin: 0;
        background: #fff;
    }

    .internet-redesign #divRatesTable th {
        padding: 15px 18px;
        color: #1f191a;
        background: #f5f6f8;
        border-bottom: 1px solid #e1e4e9;
        font-size: 14px;
        font-weight: 800;
    }

    .internet-redesign #divRatesTable td {
        padding: 14px 18px;
        color: #565d6d;
        border-top: 1px solid #eceef2;
        font-size: 14px;
    }

    .internet-redesign #divRatesTable tr:hover td {
        background: #fafafb;
    }


/* Calling instructions */

.internet-redesign .international-instructions {
    padding: 100px 0;
    background: #fff;
}

.internet-redesign .international-instructions-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 58px 50px;
    text-align: center;
    background: #fafafb;
    border: 1px solid #e3e6eb;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0,0,0,.065);
}

.internet-redesign .international-instructions-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #c20430;
    background: #fff4f6;
    border-radius: 18px;
    font-size: 27px;
}

.internet-redesign .international-instructions-card h2 {
    margin: 0 0 16px;
    color: #1f191a;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.internet-redesign .international-instructions-card p {
    margin: 0 auto 28px;
    color: #565d6d;
    font-size: 18px;
    line-height: 1.65;
}

.internet-redesign .international-instructions-card .int-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}
@media (max-width: 767px) {

    .internet-redesign .international-hero,
    .internet-redesign .international-rates,
    .internet-redesign .international-instructions {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .internet-redesign .international-rates-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .internet-redesign .international-rates-content {
        order: 1;
        width: 100%;
    }

    .internet-redesign .international-rates-media {
        order: 2;
        width: 100%;
        padding-top: 0;
    }

    .internet-redesign .international-rates-content h2 {
        font-size: 31px;
    }

    .internet-redesign .international-rates-content > h3 {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .internet-redesign #zipPromptMessage .alert {
        padding: 22px;
    }

    .internet-redesign #btnZipModal1 {
        width: 100%;
    }

    .internet-redesign #divRatesTable {
        overflow-x: auto;
    }

        .internet-redesign #divRatesTable table {
            min-width: 520px;
        }

    .internet-redesign .international-instructions-card {
        padding: 38px 24px;
        border-radius: 18px;
    }

        .internet-redesign .international-instructions-card h2 {
            font-size: 28px;
        }

        .internet-redesign .international-instructions-card p {
            font-size: 16px;
        }

        .internet-redesign .international-instructions-card .int-btn-red {
            width: 100%;
        }
}














/* =========================================================
   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;
        }
}
