/* =========================================================
   SMARTLINK BROADBAND SERVICES
   Lightweight / Responsive / SEO-Friendly / Call-Focused
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #071526;
    --navy-2: #0b2038;
    --navy-3: #102c49;

    --blue: #1677ff;
    --blue-dark: #075ed5;

    --cyan: #36c8ff;

    --white: #ffffff;
    --off-white: #f6f9fc;
    --light-blue: #edf5ff;

    --text: #122033;
    --muted: #68778b;

    --border: #e2eaf2;

    --green: #49d79a;

    --radius: 18px;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


img,
svg {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.15;
    letter-spacing: -0.025em;
}


.container {

    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin-left: auto;
    margin-right: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: relative;

    z-index: 1000;

    background: var(--navy);

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.header-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

}


/* =========================================================
   LOGO
========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: white;

    flex-shrink: 0;

}


.brand-mark {

    color: var(--blue);

    display: block;

}


.brand-text strong {

    display: block;

    font-size: 18px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.02em;

}


.brand-text small {

    display: block;

    margin-top: 3px;

    color: #92a4ba;

    font-size: 8px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.desktop-nav a {

    position: relative;

    color: #b8c6d6;

    font-size: 13px;

    font-weight: 600;

    padding: 29px 0;

    transition:
        color 0.2s ease;

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 20px;

    height: 2px;

    background: var(--cyan);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.2s ease;

}


.desktop-nav a:hover,
.desktop-nav a.active {

    color: white;

}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {

    transform:
        scaleX(1);

}


/* =========================================================
   HEADER CALL
========================================================= */

.header-call {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding:
        0 18px;

    border-radius: 9px;

    background: var(--blue);

    color: white;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.header-call:hover {

    background: var(--blue-dark);

    transform:
        translateY(-1px);

}


.phone-icon {
    font-size: 14px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 43px;

    height: 43px;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius: 9px;

    background:
        rgba(255,255,255,0.04);

    cursor: pointer;

    padding: 10px;

}


.menu-toggle span {

    display: block;

    height: 2px;

    width: 100%;

    margin: 5px 0;

    border-radius: 3px;

    background: white;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


.menu-toggle.open span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.open span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.open span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    background: var(--navy);

    border-top:
        1px solid
        rgba(255,255,255,0.07);

}


.mobile-menu nav {

    display: flex;

    flex-direction: column;

    padding:
        10px 20px 20px;

}


.mobile-menu a {

    padding: 14px 0;

    color: #c0cedd;

    font-size: 14px;

    font-weight: 600;

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

}


.mobile-menu a.active {
    color: white;
}


.mobile-menu .mobile-call {

    margin-top: 12px;

    padding:
        14px 18px;

    text-align: center;

    border: 0;

    border-radius: 9px;

    background:
        var(--blue);

    color: white;

}


.mobile-menu.open {
    display: block;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    min-height: 52px;

    padding:
        0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

}


.btn span {
    font-size: 17px;
}


.btn-primary {

    background:
        var(--blue);

    color: white;

    box-shadow:
        0 10px 28px
        rgba(22,119,255,0.22);

}


.btn-primary:hover {

    background:
        var(--blue-dark);

    transform:
        translateY(-2px);

}


.btn-outline {

    color: white;

    border:
        1px solid
        rgba(255,255,255,0.20);

    background:
        rgba(255,255,255,0.04);

}


.btn-outline:hover {

    background:
        rgba(255,255,255,0.09);

}


.btn-white {

    background:
        white;

    color:
        var(--navy);

}


.btn-white:hover {

    transform:
        translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 675px;

    display: flex;

    align-items: center;

    background:
        var(--navy);

    color: white;

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    right: -300px;

    top: -230px;

    border:
        1px solid
        rgba(54,200,255,0.09);

}


.hero::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    left: -260px;

    bottom: -300px;

    border:
        1px solid
        rgba(22,119,255,0.08);

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.hero-glow-one {

    width: 380px;

    height: 380px;

    right: 5%;

    top: 10%;

    background:
        radial-gradient(
            circle,
            rgba(22,119,255,0.18),
            transparent 68%
        );

}


.hero-glow-two {

    width: 300px;

    height: 300px;

    left: 30%;

    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(54,200,255,0.08),
            transparent 70%
        );

}


.hero-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(360px,0.95fr);

    gap: 80px;

    align-items: center;

    padding:
        80px 0;

}


.hero-label,
.section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 19px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;

}


.hero-label {
    color: #9db0c6;
}


.hero-label::before,
.section-label::before {

    content: "";

    width: 23px;

    height: 2px;

    background: var(--cyan);

}


.hero h1 {

    max-width: 700px;

    margin-bottom: 23px;

    font-size:
        clamp(43px,5vw,66px);

    font-weight: 800;

}


.hero h1 span {

    display: block;

    color: var(--cyan);

}


.hero-description {

    max-width: 650px;

    margin-bottom: 29px;

    color: #aab9ca;

    font-size: 15px;

    line-height: 1.85;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.hero-call-note {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 20px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.035);

}


.hero-call-icon {

    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background:
        rgba(54,200,255,0.11);

    color:
        var(--cyan);

    font-size: 13px;

}


.hero-call-note strong {

    display: block;

    color:
        #d2dce7;

    font-size: 10px;

    letter-spacing: .04em;

}


.hero-call-note a {

    display: block;

    margin-top: 2px;

    color:
        var(--cyan);

    font-size: 12px;

    font-weight: 800;

}


.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 34px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(255,255,255,0.09);

}


.hero-point {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.point-number {

    color:
        var(--cyan);

    font-size: 10px;

    font-weight: 800;

}


.hero-point > span:last-child {

    color:
        #8598ad;

    font-size: 10px;

}


/* =========================================================
   HERO CARD
========================================================= */

.hero-visual {

    display: flex;

    justify-content: center;

}


.connectivity-card {

    width:
        min(100%,430px);

    padding:
        28px;

    border:
        1px solid
        rgba(255,255,255,0.13);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.25);

}


.card-header {

    display: flex;

    justify-content:
        space-between;

    align-items: center;

}


.status {

    color:
        #aab9ca;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform:
        uppercase;

}


.status span {

    display: inline-block;

    width: 7px;

    height: 7px;

    margin-right: 6px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 10px
        rgba(73,215,154,.6);

}


.card-brand {

    color:
        #687c94;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .13em;

}


.network-visual {

    position: relative;

    height: 250px;

    display: grid;

    place-items: center;

}


.network-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(54,200,255,.20);

}


.ring-one {

    width: 150px;
    height: 150px;

}


.ring-two {

    width: 220px;
    height: 220px;

    border-color:
        rgba(54,200,255,.11);

}


.ring-three {

    width: 285px;
    height: 285px;

    border-color:
        rgba(54,200,255,.06);

}


.network-center {

    position: relative;

    z-index: 3;

    width: 105px;

    height: 105px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--cyan);

    background:
        linear-gradient(
            145deg,
            #12375e,
            #08192c
        );

    border:
        1px solid
        rgba(54,200,255,.30);

    box-shadow:
        0 0 0 15px
        rgba(54,200,255,.025);

}


.card-content {
    margin-bottom: 22px;
}


.card-small {

    color:
        #70859d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .14em;

}


.card-content h2 {

    margin:
        7px 0 9px;

    font-size: 25px;

}


.card-content p {

    color:
        #92a5ba;

    font-size: 12px;

    line-height: 1.7;

}


.card-call {

    min-height: 48px;

    padding:
        0 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 9px;

    background:
        rgba(22,119,255,.14);

    border:
        1px solid
        rgba(22,119,255,.25);

    color: white;

    font-size: 11px;

    font-weight: 800;

}


.card-call b {

    color:
        var(--cyan);

    font-size: 18px;

}


/* =========================================================
   SERVICE STRIP
========================================================= */

.service-strip {

    background:
        white;

    border-bottom:
        1px solid
        var(--border);

}


.service-strip-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.strip-item {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        15px 20px;

    border-right:
        1px solid
        var(--border);

    transition:
        background .2s ease;

}


.strip-item:last-child {
    border-right: 0;
}


.strip-item:hover {
    background: var(--off-white);
}


.strip-icon {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    background:
        var(--light-blue);

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 800;

}


.strip-item strong {

    display: block;

    font-size: 12px;

}


.strip-item span {

    display: block;

    margin-top: 2px;

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   COMMON SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 740px;

    margin-bottom: 50px;

}


.section-heading h2,
.why-content h2,
.call-content h2,
.final-cta-content h2 {

    margin-bottom: 17px;

    font-size:
        clamp(34px,4vw,47px);

    font-weight: 800;

}


.section-heading h2 span,
.why-content h2 span,
.call-content h2 span,
.final-cta-content h2 span {

    color:
        var(--blue);

}


.section-heading p {

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   INTENT SECTION
========================================================= */

.intent-section {

    padding:
        95px 0;

    background:
        white;

}


.intent-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;

}


.intent-card {

    position: relative;

    min-height: 270px;

    padding: 27px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        white;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.intent-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(7,20,38,.08);

    border-color:
        #d4e0eb;

}


.intent-featured {

    color: white;

    background:
        var(--navy);

    border-color:
        var(--navy);

}


.call-intent-card {

    background:
        linear-gradient(
            145deg,
            #0c2845,
            #071526
        );

    color: white;

    border-color:
        var(--navy);

}


.intent-number {

    display: block;

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 35px;

}


.intent-featured .intent-number,
.call-intent-card .intent-number {

    color:
        var(--cyan);

}


.intent-card h3 {

    margin-bottom: 11px;

    font-size: 17px;

}


.intent-card p {

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.8;

}


.intent-featured p,
.call-intent-card p {

    color:
        #94a9bf;

}


.intent-link {

    position: absolute;

    left: 27px;

    bottom: 24px;

    color:
        var(--blue);

    font-size: 11px;

    font-weight: 800;

}


.intent-featured .intent-link,
.call-intent-card .intent-link {

    color:
        var(--cyan);

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding:
        105px 0;

    background:
        var(--off-white);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 315px;

    padding: 29px;

    background:
        white;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 50px
        rgba(7,20,38,.09);

    border-color:
        #d3dfeb;

}


.service-card.featured {

    color: white;

    background:
        var(--navy);

    border-color:
        var(--navy);

}


.service-top {

    display: flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    margin-bottom: 26px;

}


.service-number {

    color:
        #aab8c7;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

}


.featured .service-number {
    color:
        #637b96;
}


.service-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--light-blue);

    color:
        var(--blue);

}


.featured .service-icon {

    background:
        rgba(54,200,255,.10);

    color:
        var(--cyan);

}


.service-icon svg {

    width: 25px;
    height: 25px;

}


.service-card h3 {

    margin-bottom: 11px;

    font-size: 18px;

}


.service-card p {

    margin-bottom: 23px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.8;

}


.service-card.featured p {

    color:
        #95a9be;

}


.service-card > a {

    position: absolute;

    left: 29px;

    bottom: 27px;

    color:
        var(--blue);

    font-size: 11px;

    font-weight: 800;

}


.service-card.featured > a {

    color:
        var(--cyan);

}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {

    padding:
        110px 0;

    background:
        white;

}


.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.why-content > p {

    max-width: 590px;

    margin-bottom: 36px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.9;

}


.benefit-list {

    display: grid;

    gap: 22px;

}


.benefit-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

}


.check {

    width: 31px;

    height: 31px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--light-blue);

    color:
        var(--blue);

    font-size: 12px;

    font-weight: 800;

}


.benefit-item h3 {

    margin-bottom: 4px;

    font-size: 14px;

}


.benefit-item p {

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   WHY VISUAL
========================================================= */

.why-card {

    position: relative;

    width: 100%;

    min-height: 440px;

    padding: 29px;

    overflow: hidden;

    border-radius: 23px;

    background:
        var(--navy);

    color: white;

}


.why-card::before {

    content: "";

    position: absolute;

    width: 330px;

    height: 330px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    border:
        1px solid
        rgba(54,200,255,.09);

    border-radius: 50%;

}


.why-card::after {

    content: "";

    position: absolute;

    width: 230px;

    height: 230px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    border:
        1px solid
        rgba(54,200,255,.11);

    border-radius: 50%;

}


.why-card-top {

    position: relative;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    color:
        #72869d;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .14em;

}


.why-card-center {

    position: absolute;

    width: 280px;

    height: 280px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

}


.connection-node {

    position: absolute;

    z-index: 4;

    display: grid;

    place-items: center;

    border-radius: 50%;

}


.main-node {

    width: 85px;

    height: 85px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    background:
        linear-gradient(
            145deg,
            #16416b,
            #071526
        );

    border:
        1px solid
        rgba(54,200,255,.30);

    box-shadow:
        0 0 0 15px
        rgba(54,200,255,.025);

}


.main-node span {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 20px
        rgba(54,200,255,.65);

}


.node-one,
.node-two,
.node-three {

    width: 57px;

    height: 57px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid
        rgba(255,255,255,.11);

}


.node-one {

    top: 8px;

    left: 50%;

    transform:
        translateX(-50%);

}


.node-two {

    bottom: 13px;

    left: 10px;

}


.node-three {

    bottom: 13px;

    right: 10px;

}


.connection-node span {

    color:
        #a9b8ca;

    font-size: 8px;

    font-weight: 800;

}


.connection-line {

    position: absolute;

    z-index: 1;

    height: 1px;

    background:
        rgba(54,200,255,.20);

    transform-origin:
        left center;

}


.line-one {

    width: 105px;

    left: 87px;

    top: 94px;

    transform:
        rotate(-90deg);

}


.line-two {

    width: 110px;

    left: 85px;

    top: 148px;

    transform:
        rotate(143deg);

}


.line-three {

    width: 110px;

    left: 145px;

    top: 148px;

    transform:
        rotate(37deg);

}


.why-card-bottom {

    position: absolute;

    z-index: 3;

    left: 29px;

    right: 29px;

    bottom: 28px;

    display: flex;

    justify-content: space-between;

    color:
        #71869d;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .13em;

}


/* =========================================================
   CALL SECTION
========================================================= */

.call-section {

    padding:
        0 0 110px;

}


.call-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    padding:
        55px 60px;

    overflow: hidden;

    border-radius: 23px;

    background:
        linear-gradient(
            120deg,
            #091a2f,
            #0c2c4b
        );

    color: white;

}


.call-box::after {

    content: "";

    position: absolute;

    width: 430px;

    height: 430px;

    right: -210px;

    top: -210px;

    border:
        1px solid
        rgba(54,200,255,.10);

    border-radius: 50%;

}


.call-content,
.call-action {

    position: relative;

    z-index: 2;

}


.section-label.light {
    color: #9cb1c8;
}


.call-content h2 {
    max-width: 650px;
}


.call-content h2 span {
    color:
        var(--cyan);
}


.call-content p {

    max-width: 610px;

    color:
        #9db0c5;

    font-size: 13px;

    line-height: 1.8;

}


.call-action {

    min-width: 235px;

    text-align: center;

}


.call-caption {

    display: block;

    margin-bottom: 4px;

    color:
        #71879f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.large-phone {

    display: block;

    margin-bottom: 15px;

    color:
        white;

    font-size: 24px;

    font-weight: 800;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    padding:
        105px 0;

    background:
        var(--off-white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

}


.faq-grid details {

    background:
        white;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    overflow: hidden;

}


.faq-grid summary {

    min-height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        0 20px;

    cursor: pointer;

    list-style: none;

    color:
        var(--text);

    font-size: 12px;

    font-weight: 800;

}


.faq-grid summary::-webkit-details-marker {
    display: none;
}


.faq-grid summary span {

    color:
        var(--blue);

    font-size: 19px;

    transition:
        transform .2s ease;

}


.faq-grid details[open] summary span {

    transform:
        rotate(45deg);

}


.faq-grid details p {

    margin: 0;

    padding:
        0 20px 20px;

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding:
        105px 0;

    background:
        white;

    text-align: center;

}


.final-cta-content {

    max-width: 730px;

    margin:
        0 auto;

}


.final-cta-content .section-label {

    justify-content:
        center;

}


.final-cta-content h2 span {

    display: block;

}


.final-cta-content p {

    max-width: 620px;

    margin:
        0 auto 28px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


.final-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

}


.text-link {

    color:
        var(--blue);

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background:
        var(--navy);

    color:
        white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.1fr;

    gap: 55px;

    padding:
        70px 0 55px;

}


.footer-brand {
    max-width: 330px;
}


.footer-brand > p {

    margin:
        21px 0;

    color:
        #8498ae;

    font-size: 11px;

    line-height: 1.8;

}


.footer-phone {

    color:
        var(--cyan);

    font-size: 17px;

    font-weight: 800;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h3 {

    margin-bottom: 19px;

    font-size: 12px;

}


.footer-column a {

    margin-bottom: 10px;

    color:
        #879bb1;

    font-size: 11px;

    transition:
        color .2s ease;

}


.footer-column a:hover {
    color: white;
}


.footer-column p {

    margin:
        0 0 16px;

    color:
        #879bb1;

    font-size: 11px;

    line-height: 1.75;

}


.footer-call {

    color:
        var(--cyan) !important;

    font-weight:
        800;

}


.footer-phone-small {

    color:
        #70849a !important;

    font-size:
        10px !important;

    font-weight:
        700;

}


/* =========================================================
   DISCLAIMER
========================================================= */

.footer-disclaimer {

    border-top:
        1px solid
        rgba(255,255,255,.07);

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

}


.footer-disclaimer .container {

    padding:
        23px 0;

}


.footer-disclaimer strong {

    display: block;

    margin-bottom: 7px;

    color:
        #a9b8ca;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.footer-disclaimer p {

    max-width: 1000px;

    margin: 0;

    color:
        #647990;

    font-size: 9px;

    line-height: 1.8;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    background:
        rgba(0,0,0,.13);

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p,
.footer-bottom a {

    margin: 0;

    color:
        #60748b;

    font-size: 9px;

}


.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 20px;
    }


    .hero-layout {
        gap: 50px;
    }


    .intent-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .why-grid {
        gap: 55px;
    }


    .footer-grid {

        grid-template-columns:
            1.4fr
            1fr
            1fr;

    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 800px) {

    .container {

        width:
            calc(100% - 30px);

    }


    .desktop-nav,
    .header-call {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .header-inner {

        min-height:
            70px;

    }


    .hero {

        min-height:
            auto;

    }


    .hero-layout {

        grid-template-columns:
            1fr;

        gap: 45px;

        padding:
            65px 0;

    }


    .hero h1 {

        font-size:
            44px;

    }


    .hero-description {

        font-size:
            14px;

    }


    .hero-visual {

        justify-content:
            flex-start;

    }


    .hero-call-note {
        max-width: 100%;
    }


    .service-strip-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .strip-item:nth-child(2) {
        border-right: 0;
    }


    .strip-item:nth-child(3),
    .strip-item:nth-child(4) {

        border-top:
            1px solid
            var(--border);

    }


    .intent-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .why-grid {

        grid-template-columns:
            1fr;

        gap: 55px;

    }


    .call-box {

        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            45px 30px;

    }


    .call-action {

        width:
            100%;

        max-width:
            350px;

    }


    .faq-grid {

        grid-template-columns:
            1fr;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .container {

        width:
            calc(100% - 24px);

    }


    .brand-text strong {
        font-size: 16px;
    }


    .brand-text small {
        font-size: 7px;
    }


    .brand-mark {

        width:
            40px;

        height:
            40px;

    }


    .hero-layout {

        padding:
            55px 0;

    }


    .hero h1 {

        font-size:
            37px;

    }


    .hero-description {

        font-size:
            13px;

        line-height:
            1.8;

    }


    .hero-actions {

        flex-direction:
            column;

    }


    .hero-actions .btn {

        width:
            100%;

    }


    .hero-call-note {

        width:
            100%;

    }


    .hero-points {

        gap:
            16px;

        margin-top:
            30px;

    }


    .connectivity-card {

        padding:
            22px;

    }


    .network-visual {

        height:
            210px;

    }


    .ring-one {

        width:
            125px;

        height:
            125px;

    }


    .ring-two {

        width:
            185px;

        height:
            185px;

    }


    .ring-three {

        width:
            235px;

        height:
            235px;

    }


    .network-center {

        width:
            88px;

        height:
            88px;

    }


    .service-strip-grid {

        grid-template-columns:
            1fr;

    }


    .strip-item,
    .strip-item:nth-child(2),
    .strip-item:nth-child(3),
    .strip-item:nth-child(4) {

        min-height:
            78px;

        border-right:
            0;

        border-top:
            1px solid
            var(--border);

    }


    .strip-item:first-child {

        border-top:
            0;

    }


    .intent-section,
    .services-section,
    .why-section,
    .faq-section,
    .final-cta {

        padding:
            75px 0;

    }


    .call-section {

        padding-bottom:
            75px;

    }


    .intent-grid {

        grid-template-columns:
            1fr;

    }


    .intent-card {

        min-height:
            245px;

    }


    .section-heading {

        margin-bottom:
            35px;

    }


    .section-heading h2,
    .why-content h2,
    .call-content h2,
    .final-cta-content h2 {

        font-size:
            33px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            295px;

    }


    .why-card {

        min-height:
            380px;

    }


    .why-card-center {

        transform:
            translate(-50%,-50%)
            scale(.85);

    }


    .large-phone {

        font-size:
            21px;

    }


    .final-actions {

        flex-direction:
            column;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

        padding:
            55px 0 45px;

    }


    .footer-bottom-inner {

        min-height:
            auto;

        padding:
            18px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        transition-duration:
            0.01ms !important;

    }

}