﻿/* =========================================================
   HERO
========================================================= */

.it-hero {
    position: relative;
    min-height: 780px;
    padding-top: 78px;
    overflow: hidden;
    background: radial-gradient( circle at 78% 42%, rgba(0, 145, 255, .18), transparent 35% ), linear-gradient( 110deg, #020a14, #06192b 58%, #02101c );
}

.it-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient( rgba(56,188,255,.22) 1px, transparent 1px ), linear-gradient( 90deg, rgba(56,188,255,.22) 1px, transparent 1px );
    background-size: 75px 75px;
}

.it-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.it-glow-one {
    width: 540px;
    height: 540px;
    right: 0;
    top: 80px;
    background: rgba(0,135,255,.17);
}

.it-glow-two {
    width: 300px;
    height: 300px;
    left: -110px;
    bottom: -100px;
    background: rgba(48,218,255,.08);
}

.it-hero-layout {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 80px;
}

.it-breadcrumb {
    margin-bottom: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #62798d;
    font-size: 9px;
}

    .it-breadcrumb strong {
        color: #9cb1c2;
        font-weight: 500;
    }

    .it-breadcrumb a:hover {
        color: white;
    }

.it-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #42d6ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
}

.it-hero h1 {
    margin-bottom: 26px;
    color: white;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -.06em;
}

    .it-hero h1 span {
        display: block;
        color: #4bd5ff;
    }

.it-hero-description {
    max-width: 720px;
    color: #a4b6c6;
    font-size: 16px;
    line-height: 1.9;
}

.it-hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 14px;
}

.it-hero-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .it-hero-tags span {
        padding: 8px 11px;
        border: 1px solid rgba(67,207,255,.17);
        color: #8ca6b8;
        background: rgba(255,255,255,.025);
        font-size: 8px;
    }


/* =========================================================
   HERO VISUAL
========================================================= */

.it-hero-visual {
    position: relative;
    min-height: 520px;
}

.it-helpdesk {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(420px, 90%);
    padding: 25px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(61,205,255,.2);
    background: linear-gradient( 145deg, rgba(7,38,62,.96), rgba(3,18,31,.96) );
    box-shadow: 0 35px 80px rgba(0,0,0,.25);
}

.it-helpdesk-header {
    padding-bottom: 17px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #43d6ff;
    font-size: 8px;
    font-weight: 800;
}

    .it-helpdesk-header small {
        color: #718da0;
    }

.it-ticket {
    min-height: 70px;
    display: grid;
    grid-template-columns: 65px 1fr 65px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

    .it-ticket:last-child {
        border-bottom: 0;
    }

    .it-ticket span {
        color: #43d5ff;
        font-size: 7px;
    }

    .it-ticket strong {
        color: #bdcfdb;
        font-size: 9px;
        font-weight: 600;
    }

    .it-ticket small {
        color: #45dcb9;
        font-size: 6px;
    }

.it-node {
    position: absolute;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(60,205,255,.19);
    border-radius: 50%;
    color: #43d5ff;
    background: #062139;
    font-size: 7px;
    font-weight: 800;
}

.it-node-user {
    left: 1%;
    top: 12%;
}

.it-node-pc {
    right: 1%;
    top: 12%;
}

.it-node-net {
    left: 2%;
    bottom: 15%;
}

.it-node-cloud {
    right: 2%;
    bottom: 15%;
}

.it-status {
    position: absolute;
    right: 3%;
    bottom: 0;
    width: 195px;
    padding: 19px;
    border: 1px solid rgba(60,207,255,.18);
    background: rgba(3,24,42,.91);
}

    .it-status span {
        display: block;
        margin-bottom: 8px;
        color: #43d6ff;
        font-size: 7px;
        font-weight: 800;
    }

    .it-status strong {
        display: block;
        margin-bottom: 7px;
        color: white;
        font-size: 12px;
    }

    .it-status small {
        color: #718b9e;
        font-size: 7px;
    }


/* =========================================================
   COMMON
========================================================= */

.it-heading h2,
.it-centered-heading h2,
.it-faq-heading h2,
.it-related-heading h2 {
    color: #08182b;
    font-size: clamp(39px, 4vw, 57px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

    .it-heading h2 span,
    .it-centered-heading h2 span,
    .it-faq-heading h2 span,
    .it-related-heading h2 span {
        display: block;
        color: #1174cf;
    }

.it-centered-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

    .it-centered-heading > p {
        max-width: 730px;
        margin: 23px auto 0;
        color: #68798b;
        font-size: 14px;
        line-height: 1.9;
    }

.it-heading-light h2 {
    color: white;
}

    .it-heading-light h2 span {
        color: #49d4ff;
    }

.it-heading-light > p {
    color: #91a6b8;
}


/* =========================================================
   DETAIL LIST
========================================================= */

.it-detail-list {
    margin: 22px 0 0;
    padding: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    list-style: none;
}

    .it-detail-list li {
        position: relative;
        padding-left: 15px;
        color: #92a7b7;
        font-size: 9px;
        line-height: 1.6;
    }

        .it-detail-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #37d4ff;
        }

.it-light-list {
    border-top-color: #dbe5ed;
}

    .it-light-list li {
        color: #687c8e;
    }


/* =========================================================
   INTRO
========================================================= */

.it-intro-section {
    padding: 120px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-intro-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 110px;
}

.it-intro-copy p {
    margin-bottom: 21px;
    color: #68798a;
    font-size: 14px;
    line-height: 1.95;
}

.it-intro-copy .it-lead {
    color: #293c4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}


/* =========================================================
   PROBLEM
========================================================= */

.it-problem-section {
    padding: 115px 0;
    background: linear-gradient( 115deg, #03101d, #071f35 );
}

.it-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

.it-problem-card {
    min-height: 365px;
    padding: 27px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.018);
}

    .it-problem-card > span {
        display: block;
        margin-bottom: 45px;
        color: #547187;
        font-size: 9px;
        font-weight: 800;
    }

    .it-problem-card h3 {
        margin-bottom: 13px;
        color: white;
        font-size: 17px;
    }

    .it-problem-card > p {
        color: #899eaf;
        font-size: 11px;
        line-height: 1.8;
    }


/* =========================================================
   SERVICES
========================================================= */

.it-services-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d7e3ed;
    border-left: 1px solid #d7e3ed;
}

.it-service-card {
    min-height: 410px;
    padding: 27px;
    border-right: 1px solid #d7e3ed;
    border-bottom: 1px solid #d7e3ed;
    background: rgba(255,255,255,.5);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

    .it-service-card:hover {
        position: relative;
        z-index: 2;
        transform: translateY(-6px);
        background: white;
        box-shadow: 0 25px 55px rgba(8,40,68,.09);
    }

    .it-service-card > span {
        display: block;
        margin-bottom: 19px;
        color: #91a3b4;
        font-size: 9px;
        font-weight: 800;
    }

    .it-service-card > div {
        width: 52px;
        height: 52px;
        margin-bottom: 25px;
        display: grid;
        place-items: center;
        border: 1px solid #bdddf3;
        border-radius: 8px;
        color: #0876d0;
        background: #f5fbff;
        font-size: 8px;
        font-weight: 800;
    }

    .it-service-card h3 {
        margin-bottom: 13px;
        color: #12263a;
        font-size: 17px;
    }

    .it-service-card > p {
        color: #6d7d8e;
        font-size: 11px;
        line-height: 1.8;
    }


/* =========================================================
   TICKET TYPES
========================================================= */

.it-ticket-type-section {
    padding: 115px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-ticket-type-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.it-ticket-type-card {
    min-height: 485px;
    padding: 36px;
    border: 1px solid #d7e3ed;
    background: white;
}

    .it-ticket-type-card > span {
        display: inline-flex;
        min-width: 100px;
        height: 36px;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
        border: 1px solid #bdddf3;
        color: #0877d1;
        font-size: 8px;
        font-weight: 800;
    }

    .it-ticket-type-card h3 {
        margin-bottom: 14px;
        color: #14283b;
        font-size: 22px;
    }

    .it-ticket-type-card > p {
        color: #68798a;
        font-size: 12px;
        line-height: 1.9;
    }

.it-ticket-type-active {
    border-color: #acd8f4;
    box-shadow: 0 25px 60px rgba(8,56,91,.08);
}

.it-example-box {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #e0e8ef;
}

    .it-example-box strong {
        display: block;
        margin-bottom: 13px;
        color: #263b4d;
        font-size: 11px;
    }

    .it-example-box ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .it-example-box li {
        padding: 7px 0;
        color: #687b8c;
        font-size: 10px;
    }


/* =========================================================
   DARK TWO COLUMN
========================================================= */

.it-channel-section,
.it-ad-section,
.it-endpoint-section,
.it-asset-section,
.it-proactive-section,
.it-report-section {
    padding: 115px 0;
    background: linear-gradient( 115deg, #03101d, #072139 );
}

.it-channel-layout,
.it-ad-layout,
.it-endpoint-layout,
.it-asset-layout,
.it-proactive-layout,
.it-report-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.it-channel-copy h2,
.it-ad-copy h2,
.it-endpoint-copy h2,
.it-asset-copy h2,
.it-proactive-copy h2,
.it-report-copy h2 {
    margin-bottom: 24px;
    color: white;
    font-size: clamp(39px, 4vw, 57px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

    .it-channel-copy h2 span,
    .it-ad-copy h2 span,
    .it-endpoint-copy h2 span,
    .it-asset-copy h2 span,
    .it-proactive-copy h2 span,
    .it-report-copy h2 span {
        display: block;
        color: #49d4ff;
    }

.it-channel-copy > p,
.it-ad-copy > p,
.it-endpoint-copy > p,
.it-asset-copy > p,
.it-proactive-copy > p,
.it-report-copy > p {
    margin-bottom: 19px;
    color: #94a8b9;
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   CHANNEL
========================================================= */

.it-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

.it-channel-card {
    min-height: 390px;
    padding: 27px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .it-channel-card > span {
        display: inline-flex;
        min-width: 75px;
        height: 34px;
        align-items: center;
        justify-content: center;
        margin-bottom: 48px;
        border: 1px solid rgba(62,207,255,.2);
        color: #43d5ff;
        font-size: 8px;
        font-weight: 800;
    }

    .it-channel-card strong {
        display: block;
        margin-bottom: 13px;
        color: white;
        font-size: 17px;
    }

    .it-channel-card p {
        color: #899eaf;
        font-size: 10px;
        line-height: 1.8;
    }

    .it-channel-card ul {
        margin: 22px 0 0;
        padding: 18px 0 0;
        border-top: 1px solid rgba(255,255,255,.08);
        list-style: none;
    }

    .it-channel-card li {
        padding: 6px 0;
        color: #8fa5b5;
        font-size: 9px;
    }


/* =========================================================
   USER FLOW
========================================================= */

.it-user-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-user-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #d7e3ed;
    border-left: 1px solid #d7e3ed;
}

.it-user-card {
    min-height: 285px;
    padding: 23px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d7e3ed;
    border-bottom: 1px solid #d7e3ed;
    background: rgba(255,255,255,.45);
}

    .it-user-card > span {
        display: block;
        margin-bottom: 43px;
        color: #8ba0b1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-user-card h3 {
        margin-bottom: 11px;
        color: #14283a;
        font-size: 15px;
    }

    .it-user-card p {
        color: #6d7e8e;
        font-size: 9px;
        line-height: 1.8;
    }

    .it-user-card small {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #dce5ec;
        color: #0877d1;
        font-size: 7px;
        font-weight: 800;
    }


/* =========================================================
   ACTIVE DIRECTORY
========================================================= */

.it-ad-visual {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.it-ad-domain {
    width: 190px;
    min-height: 70px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient( 110deg, #087cc8, #07517c );
    font-size: 9px;
    font-weight: 800;
}

.it-ad-branch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

    .it-ad-branch div {
        width: 105px;
        min-height: 60px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(61,205,255,.18);
        color: #91adbf;
        background: rgba(255,255,255,.025);
        font-size: 7px;
        font-weight: 800;
    }

.it-ad-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .it-ad-tags span {
        padding: 9px 12px;
        border: 1px solid rgba(61,204,255,.15);
        color: #b4c6d3;
        background: rgba(255,255,255,.025);
        font-size: 9px;
    }


/* =========================================================
   MICROSOFT 365
========================================================= */

.it-m365-section {
    padding: 115px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-m365-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.it-m365-card {
    min-height: 350px;
    padding: 28px;
    border: 1px solid #d7e3ed;
    background: white;
}

    .it-m365-card > span {
        width: 54px;
        height: 54px;
        margin-bottom: 48px;
        display: grid;
        place-items: center;
        border: 1px solid #bdddf3;
        color: #0877d1;
        font-size: 8px;
        font-weight: 800;
    }

    .it-m365-card h3 {
        margin-bottom: 13px;
        color: #14283b;
        font-size: 17px;
    }

    .it-m365-card > p {
        color: #6d7e8e;
        font-size: 11px;
        line-height: 1.8;
    }


/* =========================================================
   ENDPOINT
========================================================= */

.it-endpoint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

    .it-endpoint-grid > div {
        min-height: 145px;
        padding: 20px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .it-endpoint-grid span {
        display: block;
        margin-bottom: 25px;
        color: #43d5ff;
        font-size: 8px;
        font-weight: 800;
    }

    .it-endpoint-grid strong {
        display: block;
        margin-bottom: 8px;
        color: #c6d6e1;
        font-size: 12px;
    }

    .it-endpoint-grid p {
        color: #8297a8;
        font-size: 9px;
        line-height: 1.7;
    }


/* =========================================================
   NETWORK
========================================================= */

.it-network-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-network-flow {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .it-network-flow > div {
        width: 155px;
        min-height: 68px;
        display: grid;
        place-items: center;
        border: 1px solid #d0e0eb;
        color: #527086;
        background: white;
        font-size: 8px;
        font-weight: 800;
    }

        .it-network-flow > div:nth-of-type(4) {
            color: white;
            background: linear-gradient( 110deg, #087cc8, #07517c );
        }

    .it-network-flow > span {
        padding: 0 12px;
        color: #0877d1;
    }

.it-network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d7e3ed;
    border-left: 1px solid #d7e3ed;
}

.it-network-card {
    min-height: 245px;
    padding: 25px;
    border-right: 1px solid #d7e3ed;
    border-bottom: 1px solid #d7e3ed;
    background: rgba(255,255,255,.45);
}

    .it-network-card > span {
        display: block;
        margin-bottom: 40px;
        color: #0877d1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-network-card h3 {
        margin-bottom: 11px;
        color: #173045;
        font-size: 16px;
    }

    .it-network-card p {
        color: #6d7f8f;
        font-size: 10px;
        line-height: 1.8;
    }


/* =========================================================
   ASSET
========================================================= */

.it-asset-table {
    padding: 26px;
    border: 1px solid rgba(60,203,255,.18);
    background: rgba(255,255,255,.025);
}

    .it-asset-header,
    .it-asset-table > div:not(.it-asset-header) {
        min-height: 66px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .it-asset-table > div:last-child {
        border-bottom: 0;
    }

.it-asset-header {
    min-height: 45px;
    color: #43d5ff;
    font-size: 7px;
    font-weight: 800;
}

.it-asset-table > div:not(.it-asset-header) span {
    color: #8199aa;
    font-size: 9px;
}

.it-asset-table strong {
    color: #45dcb9;
    font-size: 7px;
}


/* =========================================================
   PATCH
========================================================= */

.it-patch-section {
    padding: 115px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-patch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #d7e3ed;
    border-left: 1px solid #d7e3ed;
}

.it-patch-card {
    min-height: 280px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d7e3ed;
    border-bottom: 1px solid #d7e3ed;
}

    .it-patch-card > span {
        margin-bottom: 42px;
        color: #8ba0b1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-patch-card h3 {
        margin-bottom: 11px;
        color: #14283a;
        font-size: 15px;
    }

    .it-patch-card p {
        color: #6d7e8e;
        font-size: 10px;
        line-height: 1.8;
    }

    .it-patch-card small {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #dce5ec;
        color: #0877d1;
        font-size: 7px;
        font-weight: 800;
    }


/* =========================================================
   TICKET FLOW
========================================================= */

.it-ticket-flow-section {
    padding: 115px 0;
    background: #03101d;
}

.it-ticket-flow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

.it-ticket-flow-card {
    min-height: 280px;
    padding: 23px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .it-ticket-flow-card > span {
        margin-bottom: 43px;
        color: #557187;
        font-size: 9px;
        font-weight: 800;
    }

    .it-ticket-flow-card h3 {
        margin-bottom: 11px;
        color: white;
        font-size: 15px;
    }

    .it-ticket-flow-card p {
        color: #899eaf;
        font-size: 9px;
        line-height: 1.8;
    }

    .it-ticket-flow-card small {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,.08);
        color: #43d5ff;
        font-size: 7px;
        font-weight: 800;
    }


/* =========================================================
   PRIORITY
========================================================= */

.it-priority-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-priority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.it-priority-card {
    min-height: 385px;
    padding: 29px;
    border: 1px solid #d7e3ed;
    background: white;
}

    .it-priority-card > span {
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        margin-bottom: 50px;
        border: 1px solid #bdddf3;
        color: #0877d1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-priority-card h3 {
        margin-bottom: 13px;
        color: #14283b;
        font-size: 18px;
    }

    .it-priority-card > p {
        color: #68798a;
        font-size: 11px;
        line-height: 1.85;
    }

.it-priority-note {
    max-width: 800px;
    margin: 35px auto 0;
    text-align: center;
    color: #748697;
    font-size: 10px;
    line-height: 1.8;
}


/* =========================================================
   PROACTIVE
========================================================= */

.it-proactive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

    .it-proactive-grid > div {
        min-height: 150px;
        padding: 21px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .it-proactive-grid span {
        display: block;
        margin-bottom: 25px;
        color: #43d5ff;
        font-size: 8px;
        font-weight: 800;
    }

    .it-proactive-grid strong {
        display: block;
        margin-bottom: 8px;
        color: #c6d6e1;
        font-size: 12px;
    }

    .it-proactive-grid p {
        color: #8297a8;
        font-size: 9px;
        line-height: 1.7;
    }


/* =========================================================
   DOCUMENT
========================================================= */

.it-document-section {
    padding: 115px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-document-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.it-document-card {
    min-height: 350px;
    padding: 28px;
    border: 1px solid #d7e3ed;
    background: white;
}

    .it-document-card > span {
        width: 52px;
        height: 52px;
        margin-bottom: 48px;
        display: grid;
        place-items: center;
        border: 1px solid #bdddf3;
        color: #0877d1;
        font-size: 8px;
        font-weight: 800;
    }

    .it-document-card h3 {
        margin-bottom: 13px;
        color: #14283b;
        font-size: 17px;
    }

    .it-document-card > p {
        color: #6d7e8e;
        font-size: 11px;
        line-height: 1.8;
    }


/* =========================================================
   REPORT
========================================================= */

.it-report-panel {
    padding: 26px;
    border: 1px solid rgba(60,203,255,.18);
    background: rgba(255,255,255,.025);
}

.it-report-header {
    padding-bottom: 17px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #43d6ff;
    font-size: 8px;
    font-weight: 800;
}

    .it-report-header small {
        color: #45dcb9;
    }

.it-report-row {
    min-height: 70px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

    .it-report-row:last-child {
        border-bottom: 0;
    }

    .it-report-row span {
        color: #8299aa;
        font-size: 8px;
    }

    .it-report-row > div {
        height: 5px;
        background: rgba(255,255,255,.07);
    }

    .it-report-row i {
        display: block;
        height: 100%;
        background: linear-gradient( 90deg, #087dd5, #43d7ff );
    }


/* =========================================================
   SECURITY
========================================================= */

.it-security-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.it-security-card {
    min-height: 285px;
    padding: 28px;
    border: 1px solid #d7e3ed;
    background: rgba(255,255,255,.52);
}

    .it-security-card > span {
        width: 52px;
        height: 52px;
        margin-bottom: 48px;
        display: grid;
        place-items: center;
        border: 1px solid #bdddf3;
        color: #0877d1;
        font-size: 8px;
        font-weight: 800;
    }

    .it-security-card h3 {
        margin-bottom: 13px;
        color: #14283b;
        font-size: 17px;
    }

    .it-security-card p {
        color: #6d7e8e;
        font-size: 11px;
        line-height: 1.8;
    }


/* =========================================================
   PROCESS
========================================================= */

.it-process-section {
    padding: 115px 0;
    background: #03101d;
}

.it-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.08);
}

.it-process-card {
    min-height: 290px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .it-process-card > span {
        margin-bottom: 42px;
        color: #557187;
        font-size: 9px;
        font-weight: 800;
    }

    .it-process-card h3 {
        margin-bottom: 11px;
        color: white;
        font-size: 15px;
    }

    .it-process-card p {
        color: #899eaf;
        font-size: 10px;
        line-height: 1.8;
    }

    .it-process-card small {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,.08);
        color: #43d5ff;
        font-size: 7px;
        font-weight: 800;
    }


/* =========================================================
   USE
========================================================= */

.it-use-section {
    padding: 115px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d7e3ed;
    border-left: 1px solid #d7e3ed;
}

.it-use-card {
    min-height: 230px;
    padding: 26px;
    border-right: 1px solid #d7e3ed;
    border-bottom: 1px solid #d7e3ed;
    background: rgba(255,255,255,.45);
}

    .it-use-card > span {
        display: block;
        margin-bottom: 40px;
        color: #0877d1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-use-card h3 {
        margin-bottom: 11px;
        color: #173045;
        font-size: 16px;
    }

    .it-use-card p {
        color: #6d7f8f;
        font-size: 10px;
        line-height: 1.8;
    }


/* =========================================================
   FAQ
========================================================= */

.it-faq-section {
    padding: 115px 0;
    color: #08182b;
    background: #f7f9fc;
}

.it-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.it-faq-list {
    border-top: 1px solid #d9e4ed;
}

.it-faq-item {
    border-bottom: 1px solid #d9e4ed;
}

    .it-faq-item summary {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        cursor: pointer;
        color: #14293c;
        font-size: 13px;
        font-weight: 700;
        list-style: none;
    }

        .it-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .it-faq-item summary span {
            color: #0876d0;
            font-size: 19px;
        }

    .it-faq-item p {
        padding: 0 40px 28px 0;
        color: #6c7d8d;
        font-size: 12px;
        line-height: 1.9;
    }


/* =========================================================
   RELATED
========================================================= */

.it-related-section {
    padding: 110px 0;
    color: #08182b;
    background: #edf3f8;
}

.it-related-heading {
    margin-bottom: 50px;
}

.it-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.it-related-card {
    min-height: 300px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid #d4e1eb;
    background: rgba(255,255,255,.52);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

    .it-related-card:hover {
        transform: translateY(-6px);
        background: white;
        box-shadow: 0 25px 55px rgba(8,40,68,.09);
    }

    .it-related-card > span {
        margin-bottom: 45px;
        color: #8ca0b1;
        font-size: 9px;
        font-weight: 800;
    }

    .it-related-card h3 {
        margin-bottom: 13px;
        color: #13273a;
        font-size: 18px;
    }

    .it-related-card p {
        margin-bottom: 25px;
        color: #6d7f8f;
        font-size: 11px;
        line-height: 1.8;
    }

    .it-related-card strong {
        margin-top: auto;
        color: #0877d1;
        font-size: 10px;
    }


/* =========================================================
   FINAL
========================================================= */

.it-final-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background: linear-gradient( 115deg, #065b9e, #087fce, #07508b );
}

.it-final-grid {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image: linear-gradient( rgba(255,255,255,.3) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.3) 1px, transparent 1px );
    background-size: 70px 70px;
}

.it-final-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

    .it-final-layout > div {
        max-width: 880px;
    }

        .it-final-layout > div > span {
            display: block;
            margin-bottom: 13px;
            color: #c4edff;
            font-size: 8px;
            font-weight: 800;
            letter-spacing: .17em;
        }

    .it-final-layout h2 {
        margin-bottom: 15px;
        color: white;
        font-size: clamp(30px, 4vw, 46px);
        line-height: 1.2;
        letter-spacing: -.04em;
    }

    .it-final-layout p {
        max-width: 720px;
        color: rgba(255,255,255,.76);
        font-size: 12px;
        line-height: 1.8;
    }

    .it-final-layout .button {
        flex-shrink: 0;
        background: #031827;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .it-user-flow,
    .it-ticket-flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .it-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1150px) {

    .it-hero-layout,
    .it-intro-layout,
    .it-channel-layout,
    .it-ad-layout,
    .it-endpoint-layout,
    .it-asset-layout,
    .it-proactive-layout,
    .it-report-layout,
    .it-faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .it-hero-layout {
        padding: 70px 0;
    }


    .it-service-grid,
    .it-m365-grid,
    .it-network-grid,
    .it-priority-grid,
    .it-document-grid,
    .it-security-grid,
    .it-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .it-problem-grid,
    .it-use-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .it-patch-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 700px) {

    .it-hero {
        padding-top: 68px;
    }


        .it-hero h1 {
            font-size: 42px;
        }


    .it-hero-description {
        font-size: 14px;
    }


    .it-hero-actions {
        flex-direction: column;
    }


    .it-hero-visual {
        min-height: 430px;
    }


    .it-helpdesk {
        width: 100%;
    }


    .it-ticket {
        grid-template-columns: 55px 1fr;
    }


        .it-ticket small {
            display: none;
        }


    .it-node {
        display: none;
    }


    .it-intro-section,
    .it-problem-section,
    .it-services-section,
    .it-ticket-type-section,
    .it-channel-section,
    .it-user-section,
    .it-ad-section,
    .it-m365-section,
    .it-endpoint-section,
    .it-network-section,
    .it-asset-section,
    .it-patch-section,
    .it-ticket-flow-section,
    .it-priority-section,
    .it-proactive-section,
    .it-document-section,
    .it-report-section,
    .it-security-section,
    .it-process-section,
    .it-use-section,
    .it-faq-section,
    .it-related-section {
        padding: 80px 0;
    }


    .it-problem-grid,
    .it-service-grid,
    .it-ticket-type-grid,
    .it-channel-grid,
    .it-user-flow,
    .it-m365-grid,
    .it-network-grid,
    .it-patch-grid,
    .it-ticket-flow-grid,
    .it-priority-grid,
    .it-document-grid,
    .it-security-grid,
    .it-process-grid,
    .it-use-grid,
    .it-related-grid {
        grid-template-columns: 1fr;
    }


    .it-endpoint-grid,
    .it-proactive-grid {
        grid-template-columns: 1fr;
    }


    .it-network-flow {
        flex-direction: column;
    }


        .it-network-flow > span {
            padding: 10px 0;
            transform: rotate(90deg);
        }


    .it-ad-branch {
        grid-template-columns: 1fr;
    }


        .it-ad-branch div {
            width: 190px;
        }


    .it-final-layout {
        align-items: flex-start;
        flex-direction: column;
    }
}
