:root {
    --blue: #1d4e97;
    --blue-deep: #123e80;
    --blue-soft: #2b5ba0;
    --gold: #d69a2e;
    --ink: #151515;
    --muted: #595959;
    --line: #d9d9d9;
    --shell: 1110px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: #fff;
    font-family: Corbel, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

body.admin-bar .site-header {
    margin-top: 32px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 56px), var(--shell));
    margin-inline: auto;
    position: relative;
}

.site-header {
    min-height: 73px;
    color: #fff;
    background: var(--blue);
    position: relative;
    z-index: 10;
}

.site-header__inner {
    min-height: 73px;
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr) 105px;
    align-items: center;
    gap: 26px;
}

.brand img {
    width: 132px;
    height: 43px;
    object-fit: contain;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    display: block;
    padding: 25px 0 23px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus {
    color: var(--gold);
}

.emergency {
    min-height: 38px;
    display: grid;
    grid-template-columns: 24px 1fr 29px;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #0b2c61;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.05;
}

.emergency__mark {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-right: 11px solid transparent;
    border-bottom: 20px solid #ef3845;
    border-left: 11px solid transparent;
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
}

.emergency b {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #fff;
    font-size: 10px;
}

.nav-toggle {
    display: none;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 7px 10px;
    color: #fff;
    background: transparent;
}

.hero {
    min-height: 470px;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.hero__inner {
    padding-top: 123px;
}

.hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.6px;
}

.gold-rule {
    width: 165px;
    height: 3px;
    display: block;
    margin-top: 12px;
    background: var(--gold);
}

.hero p {
    margin: 57px 0 0;
    font-size: 18px;
    line-height: 1.35;
}

.services {
    min-height: 350px;
    padding-bottom: 0;
    background: #fff;
    position: relative;
}

.services__grid {
    width: min(100%, 1280px);
    min-height: 297px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
    min-height: 297px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 31px 20px 25px;
    border-right: 1px solid #e2e2e2;
    color: var(--blue);
    text-align: center;
    position: relative;
}

.service-card:last-child {
    border-right: 0;
}

.service-card h2 {
    min-height: 62px;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.02;
}

.service-card h2::after {
    width: 160px;
    height: 0;
    margin: 0 auto;
    display: block;
    content: "";
    opacity: 0;
    background: var(--gold);
}

.service-card p {
    margin: 27px 0 0;
    color: #222;
    font-size: 12px;
    line-height: 1.5;
}

.service-card a {
    margin-top: auto;
    font-size: 12px;
}

.service-card a b {
    margin-left: 3px;
    font-size: 23px;
    line-height: 0;
    vertical-align: -2px;
}

.service-card:hover,
.service-card:focus-within {
    min-height: 327px;
    margin: -1px 0 -29px;
    padding-top: 41px;
    border: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
    font-weight: 700;
    z-index: 2;
}

.service-card:hover h2,
.service-card:focus-within h2 {
    min-height: auto;
    font-weight: 700;
}

.service-card:hover h2::after,
.service-card:focus-within h2::after {
    width: 160px;
    height: 2px;
    margin-top: 11px;
    opacity: 1;
}

.service-card:hover p,
.service-card:focus-within p {
    margin-top: 23px;
    color: var(--blue);
    font-size: 14px;
    line-height: 1.23;
}

.extra-services {
    width: min(calc(100% - 38px), 1242px);
    min-height: 43px;
    margin: 17px auto 0;
    padding: 10px 4px 7px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    font-size: 13px;
    white-space: nowrap;
}

.extra-services strong {
    color: var(--gold);
}

.intro-copy {
    min-height: 178px;
    padding-top: 46px;
    text-align: center;
}

.intro-copy p {
    margin: 0 0 16px;
}

.compare {
    height: 323px;
    position: relative;
}

.compare__grid {
    width: min(100%, 1280px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 248px minmax(0, 1fr);
    align-items: center;
}

.compare-card {
    height: 323px;
    padding: 24px max(28px, calc((100vw - 1110px) / 2)) 18px;
    color: #fff;
    background: var(--blue);
    box-shadow: 8px 0 0 var(--gold);
}

.compare-card--right {
    box-shadow: -8px 0 0 var(--gold);
}

.compare-card h2 {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 11px;
    font-size: 16px;
}

.compare-card__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 5px;
    font-size: 39px;
    font-weight: 400;
    line-height: 1;
}

.compare-card p {
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.15;
}

.compare__brand {
    padding-inline: 26px;
}

.compare__brand img {
    width: 180px;
    margin-inline: auto;
}

.statement {
    min-height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 25px;
    line-height: 1.16;
    text-align: center;
}

.statement p {
    margin: 0;
}

.downtime {
    min-height: 399px;
    color: #fff;
    background-position: left center;
    background-size: cover;
}

.downtime__inner {
    width: min(100%, 1280px);
    margin-inline: auto;
}

.downtime h2 {
    min-height: 67px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
}

.downtime h2 span {
    padding: 4px 20px 7px;
    background: rgba(5, 35, 83, .75);
}

.downtime__columns {
    display: grid;
    grid-template-columns: 51% 49%;
    align-items: start;
}

.implementations {
    width: 445px;
    min-height: 197px;
    margin: 66px auto 0;
    padding: 38px 31px 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
    background: rgba(255, 255, 255, .18);
    font-size: 29px;
    font-weight: 700;
    line-height: 1.02;
    text-align: center;
}

.implementations b {
    align-self: flex-end;
    color: #fff;
    font-size: 30px;
    letter-spacing: -9px;
}

.downtime__copy {
    max-width: 510px;
    padding: 10px 24px 0 15px;
}

.downtime__copy h3 {
    margin: 0 0 19px;
    font-size: 24px;
}

.downtime__copy p {
    margin: 0 0 15px;
    font-size: 12px;
    line-height: 1.35;
}

.downtime__cta {
    margin: 7px 0 0;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.capabilities {
    min-height: 653px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 115px;
    padding-top: 58px;
}

.capabilities h2 {
    margin: 0 0 26px;
    color: var(--gold);
    font-size: 14px;
}

.capabilities ul {
    margin: 0;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.capabilities__note {
    margin-top: 79px;
}

.capabilities__note + .capabilities__note {
    margin-top: 36px;
}

.capabilities__note h3 {
    margin: 0 0 25px;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 18px;
    color: var(--blue);
    font-size: 12px;
}

.capabilities__note h3::after {
    height: 1px;
    content: "";
    background: #bebebe;
}

.capabilities__note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.58;
}

.advantages {
    margin: 0;
    padding: 0;
    list-style: none;
}

.advantages li {
    display: grid;
    grid-template-columns: 29px 1fr;
    gap: 13px;
    margin-bottom: 18px;
}

.advantages li > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.advantages h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.05;
}

.advantages p {
    margin: 0;
    font-size: 10px;
    line-height: 1.25;
}

.technology {
    min-height: 501px;
    padding-top: 0;
}

.technology > h2 {
    min-height: 113px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.18;
    text-align: center;
}

.technology__grid {
    display: grid;
    grid-template-columns: 1fr 1.16fr;
    gap: 48px;
    align-items: start;
}

.video-frame {
    aspect-ratio: 985 / 554;
    display: grid;
    overflow: hidden;
    background: #111;
}

.video-frame__trigger,
.video-frame__trigger img,
.video-frame__trigger span,
.video-frame__player {
    grid-area: 1 / 1;
}

.video-frame__trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    display: grid;
    border: 0;
    background: #111;
    cursor: pointer;
}

.video-frame__trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-frame__trigger span {
    width: 48px;
    height: 48px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #555;
    background: #fff;
    font-size: 17px;
    line-height: 1;
    text-indent: 2px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.video-frame__trigger:hover span,
.video-frame__trigger:focus-visible span {
    transform: scale(1.08);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .25);
}

.video-frame__trigger:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.video-frame__player {
    width: 100%;
    height: 100%;
    border: 0;
}

.technology__copy p {
    margin: 0 0 15px;
    font-size: 12px;
    line-height: 1.35;
}

.technology__copy h3 {
    margin: 18px 0 3px;
    color: var(--blue);
    font-size: 12px;
}

.technology__copy ul {
    margin: 0;
    padding-left: 19px;
    font-size: 11px;
    line-height: 1.35;
}

.laboratory {
    min-height: 464px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    align-items: start;
    padding-top: 0;
    padding-bottom: 111px;
}

.laboratory__copy {
    padding-top: 17px;
}

.laboratory__copy h2 {
    margin: 0 0 37px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -.2px;
    white-space: nowrap;
}

.laboratory__copy p {
    margin: 0 0 19px;
    color: #777;
    font-size: 14px;
    line-height: 1.28;
}

.laboratory__copy strong {
    color: #222;
}

.laboratory__mosaic {
    width: 100%;
    align-self: start;
}

.laboratory__mosaic img {
    width: 100%;
    height: auto;
}

.proof {
    min-height: 510px;
    padding-top: 0;
}

.proof > h2 {
    margin: 0 0 46px;
    color: var(--blue);
    font-size: 23px;
    text-align: center;
}

.proof__grid {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    gap: 36px;
    align-items: center;
}

.testimonials article {
    min-height: 111px;
    padding: 0 0 10px;
    border-bottom: 1px solid #e5e5e5;
}

.certificates article {
    min-height: 83px;
    padding: 0 0 7px;
    border-bottom: 1px solid #e5e5e5;
}

.testimonials h3,
.certificates h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 13px;
}

.certificates h3 {
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 12px;
}

.testimonials p,
.certificates p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.certificates p {
    font-size: 11px;
    line-height: 1.3;
}

.testimonials strong {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    text-align: right;
}

.proof__brand {
    min-height: 330px;
    display: block;
    color: var(--blue);
    background: none;
    font-size: 14px;
    font-weight: 700;
}

.proof__brand span {
    padding: 12px 19px;
    background-image: radial-gradient(circle, #d8d8d8 2px, transparent 2.5px);
    background-size: 8px 8px;
    background-color: #fff;
}

.proof__brand img {
    width: 280px;
    height: auto;
    transform: none;
}

.legacy {
    min-height: 786px;
    padding-top: 26px;
}

.legacy > h2 {
    margin: 0 0 4px;
    color: var(--blue);
    font-size: 19px;
    text-align: center;
}

.legacy > p {
    margin: 0;
    font-size: 17px;
    text-align: center;
}

.legacy__stats {
    min-height: 238px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    padding-top: 55px;
}

.stats p {
    width: 390px;
    margin: 0 auto 31px;
    display: grid;
    grid-template-columns: 1fr 88px;
    align-items: end;
    border-bottom: 1px solid var(--gold);
    font-size: 14px;
}

.stats strong {
    padding: 8px 10px;
    color: #fff;
    background: var(--blue);
    font-size: 21px;
    text-align: center;
}

.legacy__promise {
    margin: 0;
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.legacy__promise strong {
    padding: 0 4px;
    color: #fff;
    background: var(--blue);
}

.legacy__content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 98px;
    align-items: start;
}

.factory-visual {
    display: grid;
}

.factory-visual > img,
.factory-visual > div {
    grid-area: 1 / 1;
}

.factory-visual > img {
    width: 100%;
    height: 383px;
    object-fit: cover;
}

.factory-visual > div {
    width: 110%;
    height: 244px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 85, 156, .62);
}

.factory-visual > div img {
    width: 78%;
    opacity: .6;
}

.legacy__copy p {
    margin: 0 0 27px;
    font-size: 12px;
    line-height: 1.5;
}

.legacy__copy h3 {
    margin: 19px 0 0;
    color: var(--blue);
    font-size: 18px;
}

.site-footer {
    width: 100%;
    min-height: 62px;
    color: #fff;
    background: var(--blue);
}

.site-footer__inner {
    min-height: 62px;
    padding: 23px 124px 16px;
    background: transparent;
}

.site-footer strong {
    font-size: 17px;
}

.fallback-page {
    min-height: 70vh;
    padding-block: 80px;
}

/* Desktop artwork: dimensions and typography taken directly from Glowna-v2.psd
   after scaling the 2560 px composition to the 1280 px reference viewport. */
@media (min-width: 1121px) {
    :root {
        --blue: #174795;
        --blue-deep: #0b2c61;
        --gold: #d18521;
        --ink: #000;
        --muted: #000;
        --shell: 1110px;
    }

    body {
        color: #000;
        font-size: 15px;
        line-height: 18px;
    }

    .site-header,
    .site-header__inner {
        min-height: 73px;
    }

    .site-header {
        background: #174795;
    }

    .brand {
        position: relative;
        top: 1px;
    }

    .primary-nav {
        margin-right: -14px;
        margin-left: 59px;
    }

    .primary-nav ul {
        gap: 17px;
    }

    .primary-nav a {
        padding: 25px 0 22px;
        color: #fff;
        font-size: 13px;
        font-weight: 300;
        line-height: 18px;
    }

    .hero {
        height: 470px;
        min-height: 470px;
        background-position: center top;
        background-size: 1280px 470px;
    }

    .hero__inner {
        padding-top: 123px;
    }

    .hero h1 {
        max-width: none;
        font-size: 36px;
        line-height: 36px;
        position: relative;
        left: 1px;
        letter-spacing: -.07px;
    }

    .hero .gold-rule {
        width: 669px;
        height: 2px;
        margin-top: 12px;
        position: relative;
        left: 1px;
    }

    .hero p {
        margin-top: 57px;
        font-size: 18px;
        line-height: 24px;
    }

    .services {
        height: 357px;
        min-height: 357px;
    }

    .services__grid {
        height: 297px;
        min-height: 297px;
        grid-template-columns: 226.5px 276px 276px 277px 224.5px;
    }

    .service-card {
        height: 297px;
        min-height: 297px;
        padding: 31px 20px 58px;
        border-color: #e7e7e7;
        color: #184796;
    }

    .service-card h2 {
        min-height: 62px;
        font-size: 18px;
        line-height: 18px;
    }

    .service-card p {
        margin-top: 27px;
        color: #000;
        font-size: 12px;
        line-height: 18px;
    }

    .service-card a {
        font-size: 12px;
        line-height: 18px;
    }

    .service-card:hover,
    .service-card:focus-within {
        height: 286px;
        min-height: 286px;
        margin: -2.5px 0 0;
        padding: 43px 20px 44px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
    }

    .service-card:hover h2,
    .service-card:focus-within h2 {
        min-height: auto;
        line-height: 18px;
    }

    .service-card:hover h2::after,
    .service-card:focus-within h2::after {
        width: 159px;
        height: 4px;
        margin-top: 2px;
    }

    .service-card:hover p,
    .service-card:focus-within p {
        margin-top: 35px;
        color: #184796;
        font-size: 15px;
        line-height: 18px;
    }

    .extra-services {
        width: 1242px;
        height: 43px;
        min-height: 43px;
        margin-top: 9px;
        padding: 5px 4px 6px 453.5px;
        justify-content: flex-start;
        gap: 20px;
        border-bottom-width: 2px;
        color: #184796;
        font-size: 15px;
        line-height: 18px;
    }

    .extra-services strong {
        color: #d18522;
    }

    .intro-copy {
        height: 178px;
        min-height: 178px;
        padding-top: 46px;
        font-size: 15px;
        line-height: 18px;
    }

    .intro-copy p {
        margin-bottom: 16px;
        position: relative;
        left: 2.75px;
        letter-spacing: -.014px;
    }

    .compare {
        height: 323px;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 1280px 323px;
    }

    .compare__grid {
        width: 1280px;
        height: 323px;
        grid-template-columns: 524.5px 247px 508.5px;
        align-items: start;
    }

    .compare-card {
        height: 323px;
        padding-top: 22.5px;
        padding-bottom: 0;
        color: #fff;
        background: transparent;
        box-shadow: none;
    }

    .compare-card--left {
        padding-right: 22px;
        padding-left: 85.5px;
    }

    .compare-card--right {
        padding-right: 73.5px;
        padding-left: 14px;
        box-shadow: none;
    }

    .compare-card h2 {
        min-height: 39px;
        gap: 13px;
        margin: 0 0 23.5px;
        font-size: 18px;
        line-height: 15px;
    }

    .compare-card__icon {
        width: 39px;
        height: 39px;
        flex: 0 0 39px;
        border: 0;
        border-radius: 0;
    }

    .compare-card p {
        margin: 0 0 8px;
        font-size: 13px;
        line-height: 15px;
    }

    .compare__brand {
        height: 323px;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .compare__brand img {
        width: 176.5px;
        margin-left: 41.5px;
    }

    .statement {
        height: 185px;
        min-height: 185px;
        color: #184796;
        font-size: 24px;
        line-height: 30px;
    }

    .statement p {
        position: relative;
        top: 11px;
        left: 11.7px;
        letter-spacing: -.08px;
    }

    .downtime {
        height: 398px;
        min-height: 398px;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 1280px 398px;
    }

    .downtime h2 {
        height: 111px;
        min-height: 111px;
        padding-top: 34px;
        display: block;
        font-size: 36px;
        line-height: 36px;
    }

    .downtime h2 span {
        width: 629.5px;
        margin-left: 459px;
        padding: 0;
        display: block;
        background: none;
        white-space: nowrap;
        letter-spacing: -.14px;
    }

    .downtime__columns {
        height: 241px;
        grid-template-columns: 640px 640px;
    }

    .implementations {
        width: 444px;
        height: 197px;
        min-height: 197px;
        margin: 44px 0 0 133.5px;
        padding: 40px 60px 20px;
        justify-content: center;
        align-items: flex-start;
        border: 0;
        background: none;
        font-size: 30px;
        line-height: 30px;
        letter-spacing: -.1px;
    }

    .implementations b {
        display: none;
    }

    .downtime__copy {
        width: 511px;
        max-width: none;
        padding: 0 0 0 32px;
    }

    .downtime__copy h3 {
        margin: 0 0 18.5px;
        font-size: 24px;
        line-height: 24px;
    }

    .downtime__copy p {
        margin: 0 0 14px;
        font-size: 12px;
        line-height: 18px;
    }

    .downtime__copy p:first-of-type {
        margin-bottom: 8.5px;
    }

    .downtime__cta {
        margin: 0 0 0 708px;
        padding: 16px 0 0;
        font-size: 15px;
        line-height: 18px;
        text-align: left;
    }

    .capabilities {
        height: 652px;
        min-height: 652px;
        grid-template-columns: 504.5px 484.5px;
        gap: 121px;
        padding-top: 47.5px;
    }

    .capabilities__copy {
        margin-top: -4px;
    }

    .capabilities h2 {
        margin-bottom: 20px;
        color: #d18522;
        font-size: 15px;
        line-height: 18px;
    }

    .capabilities ul {
        margin-left: 0;
        padding-left: 0;
        list-style: none;
        font-size: 12px;
        line-height: 18px;
    }

    .capabilities ul li {
        display: grid;
        grid-template-columns: 7px 1fr;
        column-gap: 11px;
    }

    .capabilities ul li::before {
        content: "•";
    }

    .capabilities__note {
        margin-top: 100px;
        margin-left: 3px;
    }

    .capabilities__note + .capabilities__note {
        margin-top: 37px;
        margin-left: 2px;
    }

    .capabilities__note h3 {
        margin-bottom: 17px;
        gap: 17px;
        color: #184796;
        font-size: 12px;
        line-height: 18px;
    }

    .capabilities__note:first-of-type h3::after {
        margin-right: -2.5px;
    }

    .capabilities__note + .capabilities__note h3 {
        margin-bottom: 18px;
        gap: 9px;
    }

    .capabilities__note p {
        font-size: 12px;
        line-height: 18px;
    }

    .advantages {
        margin-top: 2.5px;
        display: grid;
        grid-auto-rows: 51px;
        row-gap: 19.75px;
    }

    .advantages li {
        grid-template-columns: 28px 1fr;
        gap: 13.5px;
        margin: 0;
    }

    .advantages li > span {
        width: 27.5px;
        height: 27.5px;
        font-size: 20.6137px;
        line-height: 1;
    }

    .advantages li > div {
        padding-top: 4px;
    }

    .advantages h3 {
        margin-bottom: 7px;
        font-size: 15.4603px;
        line-height: 15.4603px;
    }

    .advantages p {
        font-size: 10.3068px;
        line-height: 12.8836px;
    }

    .technology {
        height: 503px;
        min-height: 503px;
    }

    .technology > h2 {
        height: 112px;
        min-height: 112px;
        align-items: flex-start;
        padding-top: 0;
        color: #184796;
        font-size: 24px;
        line-height: 30px;
    }

    .technology > h2 span {
        position: relative;
        top: -1px;
        left: 12.7px;
        letter-spacing: -.04px;
    }

    .technology__grid {
        width: 1098px;
        margin-left: calc((100% - 1110px) / 2 + 1.5px);
        margin-right: 0;
        grid-template-columns: 492.5px 572px;
        gap: 33.5px;
    }

    .video-frame,
    .video-frame__trigger img {
        width: 492.5px;
        height: 277px;
    }

    .technology__copy p {
        margin: 0 0 15px;
        font-size: 15px;
        font-weight: 300;
        line-height: 18px;
    }

    .technology__copy h3 {
        margin: 18px 0 3px;
        font-size: 12px;
        line-height: 18px;
    }

    .technology__copy ul {
        font-size: 12px;
        line-height: 18px;
    }

    .laboratory {
        height: 464px;
        min-height: 464px;
        grid-template-columns: 448px 670.5px;
        padding-bottom: 0;
    }

    .laboratory__copy {
        width: 404px;
        padding-top: 17px;
    }

    .laboratory__copy h2 {
        margin-bottom: 35.5px;
        color: #184796;
        font-size: 24px;
        line-height: 24px;
        letter-spacing: -.045px;
    }

    .laboratory__copy p {
        margin-bottom: 18px;
        color: #000;
        font-size: 15px;
        font-weight: 300;
        line-height: 18px;
    }

    .laboratory__copy strong {
        color: #000;
    }

    .laboratory__mosaic {
        width: 670.5px;
    }

    .proof {
        height: 598px;
        min-height: 598px;
        padding-top: 87px;
    }

    .proof > h2 {
        width: max-content;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 53px;
        position: relative;
        left: 16px;
        color: #184796;
        font-size: 24px;
        line-height: 24px;
    }

    .proof__grid {
        width: 1119px;
        margin-right: 0;
        margin-left: 85px;
        grid-template-columns: 397px 30px 280px 14px 398px;
        gap: 0;
        align-items: start;
    }

    .testimonials {
        grid-column: 1;
    }

    .proof__brand {
        width: 280px;
        height: 332px;
        min-height: 332px;
        grid-column: 3;
        display: block;
        background: none;
    }

    .proof__brand img {
        width: 280px;
        height: 332px;
        max-width: none;
        transform: none;
    }

    .certificates {
        grid-column: 5;
    }

    .testimonials article {
        height: 101px;
        min-height: 101px;
        margin-bottom: 13px;
        padding: 0;
        border-color: #f1f1f1;
    }

    .testimonials h3 {
        margin-bottom: 9px;
        color: #184796;
        font-size: 13px;
        line-height: 18px;
    }

    .testimonials p,
    .testimonials strong {
        font-size: 12px;
        line-height: 18px;
    }

    .testimonials strong {
        margin-top: 5px;
        margin-right: 20.5px;
    }

    .certificates article {
        height: 71px;
        min-height: 71px;
        margin-bottom: 16px;
        padding: 0;
        border-color: #f1f1f1;
    }

    .certificates h3 {
        margin-bottom: 2px;
        color: #d99b4c;
        font-size: 12px;
        line-height: 18px;
    }

    .certificates p {
        font-size: 12px;
        line-height: 18px;
    }

    .legacy {
        height: 786px;
        min-height: 786px;
        padding-top: 26px;
    }

    .legacy > h2 {
        width: max-content;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 0;
        color: #184796;
        font-size: 18px;
        line-height: 27.5px;
        position: relative;
        left: 1.5px;
    }

    .legacy > p {
        width: max-content;
        margin-right: auto;
        margin-left: auto;
        font-size: 18px;
        line-height: 27.5px;
        position: relative;
        left: 2.5px;
        letter-spacing: -.025px;
    }

    .legacy__stats {
        height: 237px;
        min-height: 237px;
        grid-template-columns: 500px 551px;
        gap: 59px;
        padding-top: 55px;
    }

    .stats p {
        width: 381px;
        height: 38.5px;
        margin: 0 0 34px 111.5px;
        grid-template-columns: 278px 86.5px;
        font-size: 15px;
        line-height: 18px;
    }

    .stats strong {
        height: 38.5px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 24px;
    }

    .stats {
        position: relative;
        top: -20px;
    }

    .legacy__promise {
        color: #184796;
        font-size: 24px;
        line-height: 27.5px;
        position: relative;
        top: -39.25px;
    }

    .legacy__content {
        width: 1093px;
        margin-left: calc((100% - 1110px) / 2 + .5px);
        margin-right: 0;
        grid-template-columns: 645px 420.5px;
        gap: 27px;
        position: relative;
        top: -1px;
    }

    .factory-visual > img {
        width: 645px;
        height: 383.5px;
        max-width: none;
        object-fit: contain;
    }

    .legacy__copy {
        position: relative;
        top: -6.5px;
    }

    .legacy__copy p {
        margin: 0 0 13.5px;
        font-size: 12px;
        line-height: 15px;
    }

    .legacy__copy p:nth-of-type(3) {
        margin-bottom: 63px;
    }

    .legacy__copy h3 {
        margin-top: 25px;
        color: #184796;
        font-size: 18px;
        line-height: 15px;
    }

    .site-footer,
    .site-footer__inner {
        min-height: 62px;
    }

    .site-footer {
        width: 100%;
        background: #174795;
    }

    .site-footer__inner {
        width: 1110px;
        margin-inline: auto;
        padding: 23px 125px 16px;
        background: transparent;
    }

    .site-footer strong {
        font-size: 18px;
        line-height: 15px;
    }
}

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: 130px 1fr auto;
        gap: 18px;
    }

    .primary-nav ul {
        gap: 10px;
    }

    .primary-nav a {
        font-size: 11px;
    }

    .emergency {
        display: none;
    }

    .capabilities,
    .legacy__content {
        gap: 55px;
    }

    .laboratory__copy h2 {
        font-size: 20px;
    }
}

/* Proportional PSD composition between the desktop and mobile layouts.
   Container units keep every measurement tied to the visible section width,
   so the 1280 × 398 artwork scales without relying on absolute positioning. */
@media (min-width: 901px) and (max-width: 1120px) {
    .downtime {
        height: auto;
        min-height: 0;
        aspect-ratio: 1280 / 398;
        container-type: inline-size;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .downtime__inner {
        width: 100%;
        height: 100%;
    }

    .downtime h2 {
        height: 8.671875cqw;
        min-height: 8.671875cqw;
        margin: 0;
        padding-top: 2.65625cqw;
        display: block;
        font-size: 2.8125cqw;
        line-height: 2.8125cqw;
    }

    .downtime h2 span {
        width: 49.1796875cqw;
        margin-left: 35.859375cqw;
        padding: 0;
        display: block;
        background: none;
        white-space: nowrap;
        letter-spacing: -.0109375cqw;
    }

    .downtime__columns {
        height: 18.828125cqw;
        grid-template-columns: 50cqw 50cqw;
        align-items: start;
    }

    .implementations {
        width: 34.6875cqw;
        height: 15.390625cqw;
        min-height: 15.390625cqw;
        margin: 3.4375cqw 0 0 10.4296875cqw;
        padding: 3.125cqw 4.6875cqw 1.5625cqw;
        justify-content: center;
        align-items: flex-start;
        border: 0;
        background: none;
        font-size: 2.34375cqw;
        line-height: 2.34375cqw;
        letter-spacing: -.0078125cqw;
    }

    .implementations b {
        display: none;
    }

    .downtime__copy {
        width: 39.921875cqw;
        max-width: none;
        padding: 0 0 0 2.5cqw;
    }

    .downtime__copy h3 {
        margin: 0 0 1.4453125cqw;
        font-size: 1.875cqw;
        line-height: 1.875cqw;
    }

    .downtime__copy p {
        margin: 0 0 1.09375cqw;
        font-size: .9375cqw;
        line-height: 1.40625cqw;
    }

    .downtime__copy p:first-of-type {
        margin-bottom: .6640625cqw;
    }

    .downtime__cta {
        margin: 0 0 0 55.3125cqw;
        padding: 1.25cqw 0 0;
        font-size: 1.171875cqw;
        line-height: 1.40625cqw;
        text-align: left;
    }

    .proof {
        height: auto;
        min-height: 0;
        padding-top: 6.796875%;
        container-type: inline-size;
        aspect-ratio: 1280 / 598;
    }

    .proof > h2 {
        width: max-content;
        margin: 0 auto 4.140625cqw;
        position: relative;
        left: 1.25cqw;
        color: #184796;
        font-size: 1.875cqw;
        line-height: 1.875cqw;
    }

    .proof__grid {
        width: 87.421875cqw;
        margin-right: 0;
        margin-left: 6.640625cqw;
        grid-template-columns: 31.015625cqw 2.34375cqw 21.875cqw 1.09375cqw 31.09375cqw;
        gap: 0;
        align-items: start;
    }

    .testimonials {
        grid-column: 1;
    }

    .proof__brand {
        width: 21.875cqw;
        height: 25.9375cqw;
        min-height: 25.9375cqw;
        grid-column: 3;
    }

    .proof__brand img {
        width: 21.875cqw;
        height: 25.9375cqw;
        max-width: none;
    }

    .certificates {
        grid-column: 5;
    }

    .testimonials article {
        height: 7.890625cqw;
        min-height: 7.890625cqw;
        margin-bottom: 1.015625cqw;
        padding: 0;
        border-color: #f1f1f1;
    }

    .testimonials h3 {
        margin-bottom: .703125cqw;
        color: #184796;
        font-size: 1.015625cqw;
        line-height: 1.40625cqw;
    }

    .testimonials p,
    .testimonials strong {
        font-size: .9375cqw;
        line-height: 1.40625cqw;
    }

    .testimonials strong {
        margin-top: .390625cqw;
        margin-right: 1.6015625cqw;
    }

    .certificates article {
        height: 5.546875cqw;
        min-height: 5.546875cqw;
        margin-bottom: 1.25cqw;
        padding: 0;
        border-color: #f1f1f1;
    }

    .certificates h3 {
        margin-bottom: .15625cqw;
        color: #d99b4c;
        font-size: .9375cqw;
        line-height: 1.40625cqw;
    }

    .certificates p {
        font-size: .9375cqw;
        line-height: 1.40625cqw;
    }

    .legacy {
        padding-top: 2.03125%;
    }
}

@media (max-width: 900px) {
    body.admin-bar .site-header {
        margin-top: 46px;
    }

    .site-shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
        padding-block: 13px;
    }

    .brand img {
        width: 120px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        grid-column: 1 / -1;
        display: none;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
        padding-bottom: 12px;
    }

    .primary-nav a {
        padding: 8px 0;
        font-size: 14px;
    }

    .hero {
        min-height: 440px;
        background-position: 63% center;
    }

    .hero__inner {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: clamp(30px, 6vw, 42px);
        line-height: 1.03;
    }

    .hero h1 br,
    .hero p br,
    .intro-copy br,
    .legacy__promise br {
        display: none;
    }

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

    .service-card,
    .service-card:hover,
    .service-card:focus-within {
        height: auto;
        min-height: 280px;
        margin: 0;
        padding: 31px 20px 25px;
        border-bottom: 1px solid #e2e2e2;
        box-shadow: none;
        font-weight: 400;
    }

    .service-card:hover h2,
    .service-card:focus-within h2 {
        min-height: 62px;
        font-weight: 400;
    }

    .service-card:hover h2::after,
    .service-card:focus-within h2::after {
        height: 0;
        margin-top: 0;
        opacity: 0;
    }

    .service-card:hover p,
    .service-card:focus-within p {
        margin-top: 27px;
        color: #222;
        font-size: 12px;
        line-height: 1.5;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
    }

    .extra-services {
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
    }

    .compare__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .compare {
        height: auto;
        background: none !important;
    }

    .compare-card {
        height: auto;
        min-height: 323px;
        padding-inline: max(28px, calc((100vw - 720px) / 2));
        color: #fff;
        background: #174795;
        box-shadow: none;
    }

    .compare-card h2 {
        font-size: 18px;
        line-height: 18px;
    }

    .compare-card p {
        font-size: 13px;
        line-height: 15px;
    }

    .compare__brand {
        height: auto;
        padding-block: 38px;
    }

    .downtime {
        padding-bottom: 28px;
    }

    .downtime h2 {
        padding: 28px 20px;
        font-size: 28px;
        text-align: center;
    }

    .downtime__columns,
    .capabilities,
    .technology__grid,
    .laboratory,
    .proof__grid,
    .legacy__stats,
    .legacy__content {
        grid-template-columns: 1fr;
    }

    .downtime__copy {
        max-width: 720px;
        margin: 35px auto 0;
    }

    .downtime__cta {
        text-align: center;
    }

    .capabilities {
        gap: 55px;
        padding-bottom: 70px;
    }

    .technology,
    .laboratory,
    .proof,
    .legacy {
        min-height: auto;
        padding-bottom: 90px;
    }

    .laboratory {
        gap: 35px;
    }

    .laboratory__copy {
        padding-top: 0;
    }

    .laboratory__copy h2 {
        white-space: normal;
    }

    .proof__grid {
        gap: 50px;
    }

    .proof__brand {
        width: 260px;
        min-height: auto;
        margin-inline: auto;
    }

    .proof__brand img {
        width: 100%;
        height: auto;
    }

    .certificates {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .legacy__stats {
        gap: 35px;
        padding-bottom: 70px;
    }

    .legacy__promise {
        text-align: center;
    }

    .legacy__content {
        gap: 60px;
    }

    .factory-visual > div {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        margin-top: 45px;
        font-size: 17px;
    }

    .services__grid,
    .certificates {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .intro-copy {
        padding-block: 42px;
    }

    .statement {
        padding: 45px 18px;
        font-size: 21px;
    }

    .implementations {
        width: calc(100% - 28px);
        font-size: 23px;
    }

    .capabilities {
        gap: 45px;
    }

    .capabilities > * {
        min-width: 0;
    }

    .capabilities__note {
        margin-top: 48px;
    }

    .capabilities__note h3 {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .technology > h2 {
        padding: 55px 14px;
        font-size: 22px;
    }

    .proof > h2 {
        margin-bottom: 50px;
        padding-inline: 16px;
    }

    .stats p {
        width: 100%;
        grid-template-columns: 1fr 82px;
        font-size: 12px;
    }

    .legacy > p {
        padding-inline: 18px;
    }

    .factory-visual > img {
        height: 300px;
    }

    .factory-visual > div {
        height: 180px;
    }

    .site-footer__inner {
        padding-inline: 35px;
    }
}
