/*-- -------------------------- -->
<---      Global Variables       -->
<--- -------------------------- -*/

:root {
    --primary: #007BFF;
    --primaryLight: #278ffd;
    --secondary: #FFF;
    --secondaryLight: #FFF;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1.15rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/*-- -------------------------- -->
<---           Fonts            -->
<--- -------------------------- -*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

body, p, a, span, li, textarea, input, button {
    font-family: 'Jura', sans-serif;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jura';
    src: url('../fonts/Jura-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jura';
    src: url('../fonts/Jura-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*-- -------------------------- -->
<---      Shared Type           -->
<--- -------------------------- -*/

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---          Buttons           -->
<--- -------------------------- -*/

.cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
}
.cs-button-solid:hover:before {
    width: 100%;
}

/*-- -------------------------- -->
<---        Navigation          -->
<--- -------------------------- -*/

body, html {
    margin: 0;
    padding: 0;
}

/* Text wordmark logo */
.cs-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--headerColor);
    text-decoration: none;
    letter-spacing: -0.02em;
    z-index: 100;
}
.cs-logo-text span {
    color: var(--primary);
}

/* Mobile - up to 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }
    body.scroll #cs-navigation:before {
        height: 100%;
    }
    #cs-navigation {
        width: 100%;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.92);
        -webkit-backdrop-filter: blur(27px);
        backdrop-filter: blur(27px);
        position: fixed;
        z-index: 10000;
        transition: background-color 0.3s;
    }
    #cs-navigation .cs-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #cs-navigation.cs-active {
        background-color: #1a1a1a;
    }
    #cs-navigation.cs-active .cs-logo-text {
        color: #fff;
    }
    #cs-navigation:after {
        content: "";
        width: 100%;
        height: 0vh;
        background: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        z-index: -1100;
        opacity: 0;
        transition: height 0.5s, opacity 0.5s;
    }
    #cs-navigation.cs-active:after {
        height: 150vh;
        opacity: 1;
    }
    #cs-navigation .cs-toggle {
        width: 2.5rem;
        height: 2.5rem;
        margin: 0;
        padding: 0;
        background-color: transparent;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        order: 2;
    }
    #cs-navigation .cs-box {
        width: 1.5rem;
        height: 1rem;
        position: relative;
    }
    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        background-color: var(--headerColor);
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: transform 0.5s, top 0.3s, background-color 0.3s, opacity 0.3s;
    }
    #cs-navigation.cs-active .cs-line {
        background-color: #fff;
    }
    #cs-navigation .cs-line1 { top: 0; }
    #cs-navigation .cs-line2 { top: 50%; transform: translateY(-50%); }
    #cs-navigation .cs-line3 { top: 100%; transform: translateY(-100%); }
    #cs-navigation.cs-active .cs-line1 { top: 50%; transform: translateY(-50%) rotate(225deg); }
    #cs-navigation.cs-active .cs-line2 { opacity: 0; }
    #cs-navigation.cs-active .cs-line3 { top: 50%; transform: translateY(-50%) rotate(-225deg); }
    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: 100vh;
        background-color: #1a1a1a;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        overflow: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s, opacity 0.3s;
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-ul {
        width: 100%;
        height: auto;
        max-height: 65vh;
        margin: 0;
        padding: 6rem 0 0 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        gap: 1.25rem;
        list-style: none;
    }
    #cs-navigation .cs-li {
        text-align: center;
        list-style: none;
        width: 100%;
        margin-right: 0;
        transform: translateY(-2rem);
        opacity: 0;
        transition: transform 0.6s, opacity 0.9s;
    }
    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }
    #cs-navigation .cs-li-link {
        font-size: 1.5rem;
        line-height: 1.2em;
        text-decoration: none;
        color: #fff;
        display: inline-block;
    }
    #cs-navigation .cs-li-link:hover { color: var(--primary); }
    #cs-navigation .cs-button-solid {
        display: none;
    }
}

/* Desktop - 1024px and up */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        padding: 1.25rem 1rem;
        background-color: #fff;
        box-shadow: 0 5px 24px rgba(26, 26, 26, 0.06);
        position: fixed;
        z-index: 10000;
        box-sizing: border-box;
    }
    #cs-navigation .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #cs-navigation .cs-toggle { display: none; }
    #cs-navigation .cs-nav {
        display: flex;
        align-items: center;
    }
    #cs-navigation .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        list-style: none;
    }
    #cs-navigation .cs-li-link {
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--headerColor);
        position: relative;
        display: inline-block;
        padding: 0.5rem 0;
    }
    #cs-navigation .cs-li-link:before {
        content: "";
        width: 0%;
        height: 2px;
        background: var(--primary);
        position: absolute;
        bottom: 0;
        left: 0;
        transition: width 0.3s;
    }
    #cs-navigation .cs-li-link:hover:before { width: 100%; }
    #cs-navigation .cs-nav-button {
        margin-left: 2rem;
    }
}

/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

#hero-330 i.fas.fa-phone-alt,
#hero-330 .fa-phone-alt {
    font-size: 1em !important;
    color: var(--primaryLight);
}

#hero-330 {
    text-align: center;
    padding: clamp(9rem, 25.95vw, 17.5rem) 1rem;
    padding-bottom: clamp(9.375rem, 12.5vw, 10rem);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#hero-330 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
#hero-330 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.75;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
#hero-330 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#hero-330 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
}
#hero-330 .cs-flex-group {
    max-width: clamp(28.5rem, 62vw, 40.125rem);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}
#hero-330 .cs-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem;
    color: #FFF;
    position: relative;
}
#hero-330 .cs-accent {
    color: var(--primaryLight);
}
#hero-330 .cs-text {
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33rem;
    margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
    color: #FFF;
}
#hero-330 .cs-button-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
#hero-330 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    width: 11.25rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
}
#hero-330 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #FFF;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}
#hero-330 .cs-button-solid:hover { color: var(--primary); }
#hero-330 .cs-button-solid:hover:before { width: 100%; }

#hero-330 .cs-button-transparent {
    font-size: 1.1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 15rem;
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s;
}
#hero-330 .cs-button-transparent:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}
#hero-330 .cs-button-transparent:hover { color: var(--primary); }
#hero-330 .cs-button-transparent:hover:before { width: 100%; }
#hero-330 .cs-button-transparent:hover i { color: var(--primary); }

/* Hero trust strip */
#hero-330 .cs-hero-trust {
    width: 100%;
    margin: clamp(1.5rem, 3vw, 2rem) 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    list-style: none;
}
#hero-330 .cs-hero-trust li {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
#hero-330 .cs-hero-trust i {
    color: var(--primaryLight);
}

@media (max-width: 600px) {
    #hero-330 { padding: 7rem 1rem 5rem; }
}

/*-- -------------------------- -->
<---    Sticky Mobile CTA       -->
<--- -------------------------- -*/

#mobile-cta-bar {
    display: none;
}

@media only screen and (max-width: 47.9375rem) {
    #mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
    }
    #mobile-cta-bar a {
        flex: 1;
        text-align: center;
        padding: 0.95rem 0.5rem;
        font-size: 1.05rem;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    #mobile-cta-bar .mcta-call {
        background-color: #1a1a1a;
    }
    #mobile-cta-bar .mcta-quote {
        background-color: var(--primary);
    }
    /* keep page content clear of the fixed bar */
    body { padding-bottom: 3.5rem; }
}

/*-- -------------------------- -->
<---       Footer (stub)        -->
<--- -------------------------- -*/

#cs-footer {
    padding: 2.5rem 1rem;
    background-color: #1a1a1a;
    text-align: center;
}
#cs-footer .cs-container {
    max-width: 80rem;
    margin: auto;
}
#cs-footer .cs-footer-text {
    font-size: 1rem;
    line-height: 1.5em;
    color: #fafbfc;
    margin: 0 0 0.5rem 0;
}
#cs-footer .cs-credit {
    font-size: 0.85rem;
    color: #9a9aa5;
    margin: 0;
}

/*-- -------------------------- -->
<---   How It Works / What Is   -->
<--- -------------------------- -*/

#how-it-works {
    padding: var(--sectionPadding);
    background-color: #fff;
}
#how-it-works .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}
#how-it-works .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#how-it-works .cs-topper {
    text-align: center;
}
#how-it-works .cs-title {
    text-align: center;
    max-width: 40rem;
}
#how-it-works .cs-text {
    text-align: center;
    max-width: 46rem;
    margin: 0;
}
#how-it-works .cs-steps-lead {
    text-align: center;
    width: 100%;
    margin: clamp(2.25rem, 5vw, 3.25rem) auto 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--headerColor);
}

#how-it-works .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
}
#how-it-works .cs-item {
    position: relative;
    padding: 2rem 1.5rem 1.75rem;
    background-color: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 0.75rem;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
#how-it-works .cs-item:hover {
    box-shadow: 0 18px 40px rgba(0, 123, 255, 0.10);
    transform: translateY(-4px);
    border-color: transparent;
}
#how-it-works .cs-step-number {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    color: #e3eefb;
}
#how-it-works .cs-picture {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 1.1rem 0;
    background-color: var(--primary);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#how-it-works .cs-picture i {
    font-size: 1.4rem;
    color: #fff;
}
#how-it-works .cs-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--headerColor);
    margin: 0 0 0.5rem 0;
}
#how-it-works .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
}
#how-it-works .cs-cta-line {
    text-align: center;
    width: 100%;
    margin: clamp(2.25rem, 5vw, 3.25rem) auto 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--headerColor);
}
#how-it-works .cs-button-solid {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/* Tablet - 2 across */
@media only screen and (min-width: 48rem) {
    #how-it-works .cs-card-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
/* Desktop - 4 across */
@media only screen and (min-width: 64rem) {
    #how-it-works .cs-card-group {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*-- -------------------------- -->
<---        Why a GenerLink     -->
<--- -------------------------- -*/

#why-generlink {
    padding: var(--sectionPadding);
    background-color: #f7f9fc;
}
#why-generlink .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}
#why-generlink .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#why-generlink .cs-topper {
    text-align: center;
}
#why-generlink .cs-title {
    text-align: center;
    max-width: 42rem;
}
#why-generlink .cs-text {
    text-align: center;
    max-width: 46rem;
    margin: 0;
}
#why-generlink .cs-card-group {
    width: 100%;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
}
#why-generlink .cs-item {
    padding: 2rem 1.75rem;
    background-color: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 0.75rem;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
}
#why-generlink .cs-item:hover {
    box-shadow: 0 18px 40px rgba(0, 123, 255, 0.10);
    transform: translateY(-4px);
}
#why-generlink .cs-picture {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 0 1.1rem 0;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#why-generlink .cs-picture i {
    font-size: 1.3rem;
    color: var(--primary);
}
#why-generlink .cs-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--headerColor);
    margin: 0 0 0.5rem 0;
}
#why-generlink .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
}
#why-generlink .cs-button-solid {
    display: block;
    width: max-content;
    margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}

/* Tablet - 2 across */
@media only screen and (min-width: 48rem) {
    #why-generlink .cs-card-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
/* Desktop - 3 across */
@media only screen and (min-width: 64rem) {
    #why-generlink .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---   Local Relevance / Outages -->
<--- -------------------------- -*/

#local-outages {
    padding: var(--sectionPadding);
    background-color: #1a1a1a;
}
#local-outages .cs-container {
    width: 100%;
    max-width: 70rem;
    margin: auto;
}
#local-outages .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#local-outages .cs-topper {
    text-align: center;
    color: var(--primaryLight);
}
#local-outages .cs-title {
    text-align: center;
    max-width: 46rem;
    color: #fff;
}
#local-outages .cs-text {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 1.25rem;
    color: #d6d6de;
}
#local-outages .cs-text:last-of-type {
    margin-bottom: 0;
}

/* Stat band */
#local-outages .cs-stats {
    width: 100%;
    margin: clamp(2.75rem, 5vw, 3.75rem) 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    list-style: none;
}
#local-outages .cs-stat {
    text-align: center;
}
#local-outages .cs-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.25rem, 5vw, 3rem);
    line-height: 1;
    color: var(--primaryLight);
    margin: 0 0 0.6rem 0;
}
#local-outages .cs-stat-label {
    font-size: 1rem;
    line-height: 1.5em;
    color: #c9c9d2;
    margin: 0 auto;
    max-width: 18rem;
}

/* Risk strip */
#local-outages .cs-risks-lead {
    text-align: center;
    width: 100%;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
#local-outages .cs-risk-list {
    width: 100%;
    margin: 0 0 clamp(2.75rem, 5vw, 3.75rem) 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem 2.75rem;
    list-style: none;
}
#local-outages .cs-risk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    min-width: 4.5rem;
}
#local-outages .cs-risk i {
    font-size: 1.7rem;
    color: var(--primaryLight);
}
#local-outages .cs-risk span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

/* CTA */
#local-outages .cs-cta-line {
    text-align: center;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    line-height: 1.5em;
    color: #d6d6de;
}
#local-outages .cs-button-solid {
    display: block;
    width: max-content;
    margin: 0 auto;
    overflow: hidden;
    color: #fff;
}
#local-outages .cs-button-solid:before {
    background: #fff;
}
#local-outages .cs-button-solid:hover {
    color: var(--primary);
}

/* Tablet+ - stats 3 across */
@media only screen and (min-width: 48rem) {
    #local-outages .cs-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/*-- -------------------------- -->
<---       Pricing Snapshot     -->
<--- -------------------------- -*/

#pricing-snapshot {
    padding: var(--sectionPadding);
    background-color: #fff;
}
#pricing-snapshot .cs-container {
    width: 100%;
    max-width: 64rem;
    margin: auto;
}
#pricing-snapshot .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#pricing-snapshot .cs-topper {
    text-align: center;
}
#pricing-snapshot .cs-title {
    text-align: center;
    max-width: 40rem;
}
#pricing-snapshot .cs-text {
    text-align: center;
    max-width: 46rem;
    margin: 0;
}
#pricing-snapshot .cs-included {
    width: 100%;
    max-width: 40rem;
    margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background-color: #f7f9fc;
    border: 1px solid #e8e8ee;
    border-radius: 1rem;
    text-align: left;
}
#pricing-snapshot .cs-included-h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--headerColor);
    text-align: center;
    margin: 0 0 1.25rem 0;
}
#pricing-snapshot .cs-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
#pricing-snapshot .cs-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.45em;
    color: var(--bodyTextColor);
}
#pricing-snapshot .cs-check-list i {
    color: var(--primary);
    font-size: 1.05rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
#pricing-snapshot .cs-affects {
    text-align: center;
    width: 100%;
    max-width: 44rem;
    margin: clamp(1.75rem, 4vw, 2.25rem) auto clamp(2rem, 4vw, 2.5rem);
    font-size: 1.05rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
}
#pricing-snapshot .cs-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
#pricing-snapshot .cs-text-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
#pricing-snapshot .cs-text-link:hover {
    color: var(--headerColor);
}

/*-- -------------------------- -->
<---          Why Us / Trust    -->
<--- -------------------------- -*/

#why-us {
    padding: var(--sectionPadding);
    background-color: #f7f9fc;
}
#why-us .cs-container {
    width: 100%;
    max-width: 64rem;
    margin: auto;
}
#why-us .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#why-us .cs-topper { text-align: center; }
#why-us .cs-title { text-align: center; max-width: 40rem; }
#why-us .cs-text { text-align: center; max-width: 46rem; margin: 0; }

/* Credentials strip */
#why-us .cs-creds {
    width: 100%;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    list-style: none;
}
#why-us .cs-cred {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    max-width: 17rem;
}
#why-us .cs-cred i {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}
#why-us .cs-cred-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--headerColor);
    text-align: left;
}
#why-us .cs-cred-label small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin-top: 0.15rem;
}

/* Legal advantage callout */
#why-us .cs-legal-callout {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto clamp(2.25rem, 5vw, 3rem);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background-color: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0 0.75rem 0.75rem 0;
    box-shadow: 0 14px 36px rgba(26, 26, 26, 0.06);
    text-align: left;
}
#why-us .cs-callout-h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35em;
    color: var(--headerColor);
    margin: 0 0 0.9rem 0;
}
#why-us .cs-callout-text {
    font-size: 1.05rem;
    line-height: 1.55em;
    color: var(--bodyTextColor);
    margin: 0;
}
#why-us .cs-button-solid {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/*-- -------------------------- -->
<---            Reviews         -->
<--- -------------------------- -*/

#reviews {
    padding: var(--sectionPadding);
    background-color: #fff;
}
#reviews .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}
#reviews .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#reviews .cs-topper { text-align: center; }
#reviews .cs-title { text-align: center; max-width: 40rem; }
#reviews .cs-text { text-align: center; max-width: 44rem; margin: 0; }

#reviews .cs-review-group {
    width: 100%;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.5rem);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
}
#reviews .cs-review {
    padding: 2rem 1.75rem;
    background-color: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 0.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
#reviews .cs-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}
#reviews .cs-stars i {
    font-size: 1rem;
    color: #f5a623;
}
#reviews .cs-quote {
    font-size: 1.05rem;
    line-height: 1.55em;
    color: var(--bodyTextColor);
    margin: 0 0 1.1rem 0;
    flex-grow: 1;
}
#reviews .cs-reviewer {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--headerColor);
}
#reviews .cs-text-link {
    display: block;
    width: max-content;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
#reviews .cs-text-link:hover { color: var(--headerColor); }

/* Tablet+ - reviews 3 across */
@media only screen and (min-width: 48rem) {
    #reviews .cs-review-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---              FAQ           -->
<--- -------------------------- -*/

#faq {
    padding: var(--sectionPadding);
    background-color: #f7f9fc;
}
#faq .cs-container {
    width: 100%;
    max-width: 52rem;
    margin: auto;
}
#faq .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#faq .cs-topper { text-align: center; }
#faq .cs-title { text-align: center; max-width: 40rem; }
#faq .cs-text { text-align: center; max-width: 44rem; margin: 0; }

#faq .cs-faq-group {
    width: 100%;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#faq .cs-faq-item {
    background-color: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 0.75rem;
    overflow: hidden;
}
#faq .cs-faq-q {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4em;
    color: var(--headerColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
#faq .cs-faq-q::-webkit-details-marker { display: none; }
#faq .cs-faq-q i {
    color: var(--primary);
    font-size: 0.95rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}
#faq .cs-faq-item[open] .cs-faq-q i { transform: rotate(180deg); }
#faq .cs-faq-a { padding: 0 1.5rem 1.35rem 1.5rem; }
#faq .cs-faq-a p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55em;
    color: var(--bodyTextColor);
}
#faq .cs-faq-a a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
#faq .cs-faq-more {
    text-align: center;
    width: 100%;
    margin: clamp(2rem, 4vw, 2.5rem) auto 0;
    font-size: 1.1rem;
    color: var(--bodyTextColor);
}
#faq .cs-faq-more a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/*-- -------------------------- -->
<---            Contact         -->
<--- -------------------------- -*/

#contact {
    padding: var(--sectionPadding);
    background-color: #fff;
}
#contact .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}
#contact .cs-contact-flex {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
#contact .cs-title { max-width: 30rem; }
#contact .cs-text { max-width: 34rem; margin: 0 0 1.75rem 0; }
#contact .cs-contact-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#contact .cs-contact-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--bodyTextColor);
}
#contact .cs-contact-points i {
    color: var(--primary);
    font-size: 1.15rem;
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}
#contact .cs-contact-points a { color: var(--bodyTextColor); text-decoration: none; }
#contact .cs-contact-points a:hover { color: var(--primary); }

#contact .cs-form {
    width: 100%;
    background-color: #f7f9fc;
    border: 1px solid #e8e8ee;
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-sizing: border-box;
}
#contact .cs-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}
#contact .cs-form label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--headerColor);
}
#contact .cs-req { color: var(--primary); margin-left: 0.15rem; }
#contact .cs-form input,
#contact .cs-form select,
#contact .cs-form textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    font-family: 'Jura', sans-serif;
    font-size: 1rem;
    color: var(--headerColor);
    background-color: #fff;
    border: 1px solid #d4d4dd;
    border-radius: 0.5rem;
    box-sizing: border-box;
}
#contact .cs-form input:focus,
#contact .cs-form select:focus,
#contact .cs-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}
#contact .cs-form textarea { resize: vertical; min-height: 4.5rem; }
#contact .cs-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}
#contact .cs-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    font-family: 'Jura', sans-serif;
}
#contact .cs-submit:disabled { opacity: 0.65; cursor: default; }
#contact .cs-form-msg {
    margin: 1rem 0 0 0;
    font-size: 1rem;
    line-height: 1.5em;
}
#contact .cs-form-msg.cs-success { color: #1a7f3c; font-weight: 700; }
#contact .cs-form-msg.cs-error { color: #c0392b; font-weight: 700; }

/* Desktop - two columns */
@media only screen and (min-width: 64rem) {
    #contact .cs-contact-flex {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    #contact .cs-contact-info { flex: 1; position: sticky; top: 7rem; }
    #contact .cs-form { flex: 1.15; }
}

/*-- -------------------------- -->
<---            Footer          -->
<--- -------------------------- -*/

#cs-footer {
    padding: clamp(3rem, 6vw, 4.5rem) 1rem 2rem;
    background-color: #1a1a1a;
    text-align: left;
}
#cs-footer .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}
#cs-footer .cs-footer-top {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
#cs-footer .cs-footer-brand { max-width: 24rem; }
#cs-footer .cs-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}
#cs-footer .cs-logo-text span { color: var(--primaryLight); }
#cs-footer .cs-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5em;
    color: #c9c9d2;
    margin: 0.9rem 0 0 0;
}
#cs-footer .cs-footer-lic {
    font-size: 0.85rem !important;
    color: #9a9aa5 !important;
    margin-top: 0.6rem !important;
}
#cs-footer h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
#cs-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
#cs-footer a { color: #c9c9d2; text-decoration: none; font-size: 0.95rem; }
#cs-footer a:hover { color: #fff; }
#cs-footer .cs-footer-areas p {
    font-size: 0.95rem;
    line-height: 1.5em;
    color: #c9c9d2;
    margin: 0;
    max-width: 18rem;
}
#cs-footer .cs-footer-contact i { color: var(--primaryLight); margin-right: 0.5rem; }
#cs-footer .cs-footer-bottom {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}
#cs-footer .cs-credit {
    font-size: 0.85rem;
    color: #9a9aa5;
    margin: 0;
    text-align: center;
}

/* Desktop footer columns */
@media only screen and (min-width: 48rem) {
    #cs-footer .cs-footer-top {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
    }
}


/* ============================================
   Dropdown Navigation
   Appended: uses same class conventions as
   the existing nav (cs-dropdown, cs-drop-ul,
   cs-drop-li, cs-drop-link)
   ============================================ */

@media only screen and (max-width: 63.9375rem) {
    #cs-navigation .cs-dropdown { position: relative; color: var(--headerColor); }
    #cs-navigation .cs-dropdown > .cs-li-link { position: relative; padding-right: 1.25rem; display: block; width: 100%; }
    #cs-navigation .cs-dropdown > .cs-li-link::after { content: ""; width: 0.5rem; height: 0.5rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; position: relative; display: inline-block; right: auto; top: -0.25rem; margin-left: 0.25rem; transform: translateY(-0.1rem) rotate(45deg); transition: transform 0.3s; }
    #cs-navigation .cs-dropdown.cs-active > .cs-li-link::after { transform: translateY(0.1rem) rotate(-135deg); }
    #cs-navigation .cs-drop-ul { width: 100%; height: 0; margin: 0; padding: 0; background-color: var(--primary); opacity: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: flex-start; align-items: center; gap: 0.75rem; overflow: hidden; list-style: none; transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s; }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul { height: auto; margin: 0.75rem 0 0 0; padding: 0.75rem 0; opacity: 1; visibility: visible; }
    #cs-navigation .cs-drop-li { list-style: none; width: 100%; text-align: center; }
    #cs-navigation .cs-drop-link { font-size: clamp(0.875rem, 2vw, 1.25rem); line-height: 1.2em; text-transform: uppercase; font-weight: 600; text-decoration: none; color: #fff; display: inline-block; padding: 0.25rem 0; transition: opacity 0.3s; }
    #cs-navigation .cs-drop-link:hover { opacity: 0.75; }
}

@media only screen and (min-width: 64rem) {
    #cs-navigation .cs-dropdown { position: relative; }
    #cs-navigation .cs-dropdown > .cs-li-link { position: relative; padding-right: 1.5rem; }
    #cs-navigation .cs-dropdown > .cs-li-link::after { content: ""; width: 0.4rem; height: 0.4rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%) rotate(45deg); transition: transform 0.3s; }
    #cs-navigation .cs-dropdown:hover > .cs-li-link::after { transform: translateY(-25%) rotate(-135deg); }
    #cs-navigation .cs-drop-ul { min-width: 14rem; margin: 0; padding: 0; background-color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1); opacity: 0; border-bottom: 4px solid var(--primary); visibility: hidden; position: absolute; top: 100%; left: 0; z-index: 100; overflow: hidden; transform: scaleY(0); transform-origin: top; list-style: none; transition: transform 0.3s, visibility 0.3s, opacity 0.3s; }
    #cs-navigation .cs-dropdown:hover > .cs-drop-ul { opacity: 1; visibility: visible; transform: scaleY(1); }
    #cs-navigation .cs-drop-li { list-style: none; width: 100%; height: auto; opacity: 0; display: block; transform: translateY(-0.5rem); transition: opacity 0.4s, transform 0.4s; }
    #cs-navigation .cs-drop-li:nth-of-type(1) { transition-delay: 0.05s; }
    #cs-navigation .cs-drop-li:nth-of-type(2) { transition-delay: 0.10s; }
    #cs-navigation .cs-drop-li:nth-of-type(3) { transition-delay: 0.15s; }
    #cs-navigation .cs-dropdown:hover .cs-drop-li { opacity: 1; transform: translateY(0); }
    #cs-navigation .cs-drop-link { font-size: 0.95rem; line-height: 1.5em; text-transform: capitalize; text-decoration: none; white-space: nowrap; width: 100%; box-sizing: border-box; padding: 0.75rem 1rem; color: var(--headerColor); display: block; transition: color 0.3s, background-color 0.3s; }
    #cs-navigation .cs-drop-link:hover { color: #fff; background-color: var(--primary); }
}
