:root {
    --red: #d71920;
    --red-dark: #ac1016;
    --black: #06080a;
    --charcoal: #12171c;
    --grey: #66717b;
    --soft: #f3f5f6;
    --border: #dde2e6;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--charcoal);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto
}

img {
    max-width: 100%
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: .7rem 1rem;
    color: #fff;
    background: var(--red)
}

.skip-link:focus {
    top: 1rem
}

.topbar {
    color: rgba(255, 255, 255, .78);
    background: var(--black);
    font-size: .84rem
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topbar a {
    color: #fff;
    text-decoration: none
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 20, 30, .08);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px)
}

.site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 1.8rem
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto
}

.site-logo img {
    width: auto;
    max-width: 220px;
    height: 58px;
    object-fit: contain
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.05rem
}

.site-nav a {
    position: relative;
    padding: 2rem 0;
    color: var(--charcoal);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1.15rem;
    left: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .2s ease
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1)
}

.nav-toggle {
    display: none
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .8rem 1.25rem;
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease
}

.button-primary {
    color: #fff;
    background: var(--red)
}

.button-primary:hover {
    background: var(--red-dark)
}

.button-dark {
    color: #fff;
    background: var(--charcoal)
}

.button-dark:hover {
    background: #000
}

.button-light {
    color: var(--charcoal);
    background: #fff
}

.button-ghost {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    background: transparent
}

.button-ghost:hover {
    color: #111;
    background: #fff
}

.eyebrow,
.card-label {
    margin: 0 0 .75rem;
    color: var(--red);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase
}

.dsh-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--black)
}

.dsh-hero__media,
.dsh-hero__overlay {
    position: absolute;
    inset: 0;
}

.dsh-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dsh-hero__overlay {
    background: linear-gradient(270deg, rgba(3, 6, 8, .98), rgba(3, 6, 8, .84) 48%, rgba(3, 6, 8, .15) 78%)
}

.dsh-hero__content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 8rem 0
}

.dsh-hero h1 {
    max-width: 920px;
    margin: 0 0 1.4rem;
    font-size: clamp(3.1rem, 6.7vw, 6.5rem);
    line-height: .94;
    letter-spacing: -.055em
}

.dsh-hero__lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.65
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem
}

.trust-strip {
    border-bottom: 1px solid var(--border)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.trust-grid>div {
    min-height: 130px;
    padding: 1.5rem;
    border-right: 1px solid var(--border)
}

.trust-grid>div:first-child {
    border-left: 1px solid var(--border)
}

.trust-grid strong,
.trust-grid span {
    display: block
}

.trust-grid strong {
    margin-bottom: .35rem
}

.trust-grid span {
    color: var(--grey);
    font-size: .9rem;
    line-height: 1.5
}

.section {
    padding: clamp(4.5rem, 8vw, 8rem) 0
}

.section-soft {
    background: var(--soft)
}

.section-dark {
    color: #fff;
    background: var(--black)
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center
}

.section h2,
.home-cta h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 4.6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.045em
}

.lead {
    color: var(--charcoal);
    font-size: 1.18rem;
    line-height: 1.7
}

.light-copy {
    color: rgba(255, 255, 255, .84)
}

.section p {
    color: var(--grey);
    line-height: 1.75
}

.section-dark p {
    color: rgba(255, 255, 255, .68)
}

.text-link {
    color: var(--charcoal);
    font-weight: 900;
    text-decoration: none
}

.text-link:hover {
    color: var(--red)
}

.media-card img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 28px 70px rgba(8, 20, 30, .14)
}

.section-heading {
    max-width: 820px;
    margin-bottom: 3rem
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem
}

.solution-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff
}

.solution-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #e9ecef
}

.solution-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.solution-card__body {
    padding: 1.6rem
}

.solution-card h3 {
    margin-top: 0;
    font-size: 1.35rem
}

.benefit-list {
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.benefit-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.benefit-list article>span {
    color: var(--red);
    font-weight: 900
}

.benefit-list h3 {
    margin: 0 0 .35rem
}

.benefit-list p {
    margin: 0
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border)
}

.application-grid article {
    padding: 2rem;
    background: #fff
}

.application-grid h3 {
    margin-top: 0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border)
}

.process-grid article {
    min-height: 240px;
    padding: 2rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.process-grid article>span {
    display: block;
    margin-bottom: 3rem;
    color: var(--red);
    font-weight: 900
}

.home-cta {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    color: #fff;
    background: var(--red)
}

.home-cta .eyebrow {
    color: #fff;
    opacity: .78
}

.home-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, .84)
}

.home-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem
}

.home-cta__inner>div:first-child {
    max-width: 850px
}

.home-cta__phone {
    align-self: center;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none
}

.site-footer {
    color: rgba(255, 255, 255, .7);
    background: var(--black)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    padding: 5rem 0 4rem
}

.footer-grid>div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-brand img {
    width: auto;
    max-width: 210px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.3rem
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.7
}

.footer-brand strong {
    color: #fff
}

.site-footer h2 {
    color: #fff;
    font-size: .8rem;
    letter-spacing: .13em;
    text-transform: uppercase
}

.site-footer a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none
}

.site-footer a:hover {
    color: #fff
}

.footer-bottom {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .86rem
}

.footer-bottom nav {
    display: flex;
    gap: 1rem
}

.mobile-bar {
    display: none
}

@media(max-width:1100px) {
    .header-cta {
        display: none
    }

    .site-nav {
        gap: .65rem
    }

    .site-nav a {
        font-size: .82rem
    }
}

@media(max-width:900px) {
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        padding: .65rem .85rem;
        border: 1px solid var(--border);
        background: #fff;
        font-weight: 800
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 1rem;
        background: #fff;
        box-shadow: 0 20px 45px rgba(8, 20, 30, .14)
    }

    .site-nav.is-open {
        display: grid
    }

    .site-nav a {
        padding: .8rem .25rem
    }

    .site-nav a::after {
        display: none
    }

    .trust-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .solution-grid,
    .application-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

@media(max-width:700px) {
    body {
        padding-bottom: 58px
    }

    .topbar__inner>span {
        display: none
    }

    .topbar__inner {
        justify-content: center
    }

    .dsh-hero {
        min-height: 650px
    }

    .dsh-hero__overlay {
        background: linear-gradient(rgba(3, 6, 8, .7), rgba(3, 6, 8, .96))
    }

    .split,
    .trust-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: auto
    }

    .button-row {
        flex-direction: column
    }

    .button-row .button {
        width: 100%
    }

    .home-cta__inner {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 1.3rem 0
    }

    .mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--black)
    }

    .mobile-bar a {
        padding: 1rem;
        color: #fff;
        font-weight: 900;
        text-align: center;
        text-decoration: none
    }

    .mobile-bar a:last-child {
        background: var(--red)
    }
}

/* =========================================================
   NAVIGATION DROPDOWNS
   ========================================================= */

.site-nav {
    display: flex;
    align-items: center;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 290px;
    min-width: 290px;

    padding: 10px 0;

    background: #ffffff;
    border: 1px solid #e2e5e8;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 9999;
}


/* Show dropdown */

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* Dropdown links */

.nav-dropdown-menu a {
    display: block;

    padding: 11px 18px;

    color: #15191d;
    font-size: 0.91rem;
    font-weight: 600;
    line-height: 1.35;

    text-decoration: none;

    transition:
        background 0.15s ease,
        color 0.15s ease,
        padding-left 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    color: #d71920;
    background: #f5f6f7;
    padding-left: 22px;
}


/* Divider */

.nav-dropdown-divider {
    height: 1px;
    margin: 7px 0;

    background: #e5e7e9;
}

@media (max-width: 900px) {

    .site-nav {
        align-items: stretch;
    }

    .site-nav > a,
    .nav-dropdown-toggle {
        position: relative;
        display: flex !important;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px !important;
        line-height: 1.4;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        padding: 5px 0 10px 18px;

        border: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        background: transparent;
    }

    .nav-dropdown-menu a {
        position: relative;
        display: block;
        padding: 10px 16px !important;
        line-height: 1.4;
        text-decoration: none;
    }

    .nav-dropdown-divider {
        height: 1px;
        margin: 4px 16px;
    }

    .dropdown-arrow {
        display: none;
    }


    /* Active / hover underline */
    .site-nav a::after {
        bottom: 5px !important;
    }

}

@media (max-width: 900px) {

    .site-nav a {
        position: relative;
    }

    .site-nav a::after {
        top: auto !important;
        bottom: 3px !important;
        height: 2px !important;
    }

}

@media (max-width: 900px) {

    .nav-dropdown-menu a {
        position: relative;
        display: block;
        padding: 10px 18px !important;
        line-height: 1.4;
        text-decoration: none;
        border-bottom: 0 !important;
    }

    .nav-dropdown-menu a::before,
    .nav-dropdown-menu a::after {
        display: none !important;
        content: none !important;
    }
}



.site-nav > a::after,
.nav-dropdown > .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
}


/* Stop active/hover underline from crossing dropdown text */
.nav-dropdown-menu a::after {
    display: none !important;
    content: none !important;
}