/* Mobile breadcrumb visibility, product gallery carousel, solution archive and entry motion. */

/* Product gallery carousel. */
.product-gallery,
.product-gallery__main {
    min-width: 0;
}

.product-gallery__main {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.product-gallery__main > img {
    opacity: 1;
    transform: scale(1);
    transition: opacity .2s ease, transform .3s ease;
}

.product-gallery__main.is-changing > img {
    opacity: .12;
    transform: scale(.985);
}

.product-gallery__carousel-controls {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    border-radius: 25px;
    background: rgba(4, 43, 79, .86);
    box-shadow: 0 5px 16px rgba(0, 28, 54, .2);
}

.product-gallery__carousel-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.product-gallery__carousel-button:last-child {
    border-right: 0;
}

.product-gallery__carousel-button:hover,
.product-gallery__carousel-button:focus {
    color: #073968;
    background: #fff;
}

.product-gallery__carousel-button--toggle {
    font-size: 13px;
    font-weight: 900;
}

.product-gallery__thumbs button {
    position: relative;
}

.product-gallery__thumbs button.is-active:after {
    position: absolute;
    right: 5px;
    bottom: 3px;
    left: 5px;
    height: 3px;
    background: var(--blue-700);
    content: "";
    animation: hzm-gallery-progress 5s linear;
}

@keyframes hzm-gallery-progress {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

/* Dynamic solution category archive. */
.solution-archive__hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #062f58;
}

.solution-archive__hero > img,
.solution-archive__shade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solution-archive__hero > img {
    object-fit: cover;
}

.solution-archive__shade {
    background: linear-gradient(90deg, rgba(3, 28, 53, .94), rgba(3, 45, 82, .62) 55%, rgba(3, 45, 82, .1));
}

.solution-archive__hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.solution-archive__hero .breadcrumbs,
.solution-archive__hero .breadcrumbs a {
    color: rgba(255, 255, 255, .82);
}

.solution-archive__hero h1 {
    max-width: 900px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 52px;
}

.solution-archive__hero-content > p:not(.eyebrow) {
    max-width: 780px;
    color: #dcebf5;
    font-size: 18px;
    line-height: 1.65;
}

.solution-archive__main {
    padding: 90px 0 100px;
    background: #f4f6f8;
}

.solution-archive__heading > span {
    margin-bottom: 7px;
    color: #758697;
    font-size: 14px;
    font-weight: 800;
}

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

.solution-archive-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(12, 43, 71, .08);
}

.solution-archive-card__media {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    background: #e9eef2;
}

.solution-archive-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.solution-archive-card__media > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 11px 15px;
    color: #fff;
    background: rgba(5, 74, 126, .92);
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.solution-archive-card__media:hover img,
.solution-archive-card__media:focus img {
    transform: scale(1.045);
}

.solution-archive-card__media:hover > span,
.solution-archive-card__media:focus > span {
    opacity: 1;
    transform: none;
}

.solution-archive-card__body {
    padding: 28px 26px 30px;
}

.solution-archive-card__body h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.solution-archive-card__body h2 a {
    color: var(--ink);
}

.solution-archive-card__body h2 a:hover {
    color: var(--blue-700);
}

.solution-archive-card__body > p:not(.eyebrow) {
    min-height: 68px;
    color: #667789;
    font-size: 14px;
    line-height: 1.6;
}

.solution-archive__seo {
    max-width: 1280px;
    margin: 90px auto 0;
    padding: 50px 56px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(12, 43, 71, .06);
}

/* Global entry animations; content stays visible when JavaScript is disabled. */
.has-entry-motion .reveal-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
    will-change: opacity, transform;
}

.has-entry-motion .reveal-ready.reveal-from-left {
    transform: translateX(-34px);
}

.has-entry-motion .reveal-ready.reveal-from-right {
    transform: translateX(34px);
}

.has-entry-motion .reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

@media (max-width: 1020px) {
    .solution-archive__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .solution-archive-card__media { height: 260px; }
    .product-overview__grid,
    .product-gallery,
    .product-summary { min-width: 0; }
}

@media (max-width: 767px) {
    .breadcrumbs { display: none !important; }
    .product-detail-breadcrumbs { display: none; padding: 0; }
    .product-detail-page { padding-top: 14px; }
    .product-overview { padding: 12px; }
    .product-overview .product-gallery__main {
        min-height: 300px;
        padding: 6px;
    }
    .product-overview .product-gallery__main > img {
        width: 100%;
        max-width: 100%;
        max-height: 310px;
    }
    .product-gallery__carousel-controls { right: 10px; bottom: 10px; }
    .product-gallery__carousel-button { width: 39px; height: 39px; }
    .product-gallery__thumbs {
        display: flex;
        padding-bottom: 5px;
        overflow-x: auto;
        gap: 8px;
        grid-gap: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .product-gallery__thumbs button {
        box-sizing: border-box;
        flex: 0 0 calc((100% - 32px) / 5);
        width: calc((100% - 32px) / 5);
        min-width: 0;
        height: 72px;
        margin-right: 0;
        scroll-snap-align: start;
    }
    .product-overview .product-summary { padding: 24px 2px 4px; }
    .product-overview .product-summary h1 {
        font-size: 29px;
        word-wrap: break-word;
    }
    .product-actions { display: grid; grid-template-columns: 1fr; }
    .product-actions .button { width: 100%; margin: 6px 0; }
    .product-detail-section,
    .product-detail-section .prose { min-width: 0; word-wrap: break-word; }
    .product-detail-section .prose table { display: block; max-width: 100%; overflow-x: auto; }
    .product-detail-section iframe,
    .product-detail-section video,
    .product-detail-section img { max-width: 100%; }
    .solution-archive__hero,
    .solution-archive__hero-content { min-height: 400px; }
    .solution-archive__hero h1 { font-size: 40px; }
    .solution-archive__main { padding: 58px 0 70px; }
    .solution-archive__heading { display: block; }
    .solution-archive__heading > span { display: block; margin-top: 10px; }
    .solution-archive__grid { grid-template-columns: 1fr; grid-gap: 18px; }
    .solution-archive-card__media { height: 245px; }
    .solution-archive-card__body { padding: 24px 20px; }
    .solution-archive-card__body > p:not(.eyebrow) { min-height: 0; }
    .solution-archive__seo { margin-top: 55px; padding: 30px 22px; }
    .has-entry-motion .reveal-ready,
    .has-entry-motion .reveal-ready.reveal-from-left,
    .has-entry-motion .reveal-ready.reveal-from-right { transform: translateY(22px); }
}

/* Inline SVG icons for inquiry and contact actions. */
.hzm-icon {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    color: currentColor;
    overflow: visible;
    vertical-align: -.2em;
}

.hzm-button-icon {
    margin-right: .48em;
    transition: color .2s ease, transform .2s ease;
}

[data-inquiry-open]:not(.technical-support-card):hover .hzm-button-icon,
[data-inquiry-open]:not(.technical-support-card):focus-visible .hzm-button-icon {
    color: #f2c14f;
    transform: translateY(-1px) scale(1.06);
}

.whatsapp-button:hover .hzm-button-icon,
a.button[href*="wa.me"]:hover .hzm-button-icon,
a.button[href*="whatsapp.com"]:hover .hzm-button-icon {
    color: #d9ffe2;
    transform: translateY(-1px) scale(1.06);
}

.floating-contact__item > .hzm-contact-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    color: #fff;
    transition: color .2s ease, transform .2s ease;
}

.floating-contact__item:hover > .hzm-contact-icon,
.floating-contact__item:focus-visible > .hzm-contact-icon {
    color: #ffe083;
    transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
    .hzm-button-icon,
    .floating-contact__item > .hzm-contact-icon {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
    .product-gallery__main > img,
    .solution-archive-card__media img,
    .solution-archive-card__media > span,
    .has-entry-motion .reveal-ready {
        animation: none !important;
        transition: none !important;
    }
    .has-entry-motion .reveal-ready { opacity: 1; transform: none; }
    .product-gallery__thumbs button.is-active:after { animation: none; transform: scaleX(1); }
}

/* Transparent navigation for templates that begin with a full-width hero. */
body.hzm-header-over-hero .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 600;
    border-bottom-color: rgba(255, 255, 255, .2);
    background: transparent;
    box-shadow: none;
}

body.hzm-header-over-hero .site-header:hover,
body.hzm-header-over-hero .site-header:focus-within,
body.hzm-header-over-hero .site-header.is-scrolled,
body.hzm-header-over-hero.menu-open .site-header {
    border-bottom-color: rgba(12, 54, 93, .1);
    background: #fff;
    box-shadow: 0 3px 20px rgba(15, 39, 68, .11);
}

body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .site-logo img {
    filter: brightness(0) invert(1);
}

body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .site-navigation .menu > .menu-item > a {
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 24, 46, .35);
}

body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .site-navigation .menu > .menu-item > a:after {
    background: #fff;
}

body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .header-quote {
    border-color: rgba(255, 255, 255, .85);
    color: #fff;
    background: rgba(5, 52, 96, .28);
}

body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .menu-toggle > span:not(.screen-reader-text) {
    background: #fff;
}

/* Product gallery video control and modal. */
.product-gallery__video-button {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 43, 79, .9);
    box-shadow: 0 6px 20px rgba(0, 28, 54, .24);
    cursor: pointer;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.product-gallery__video-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.product-gallery__video-button:hover,
.product-gallery__video-button:focus {
    color: var(--blue-900);
    background: #fff;
    transform: scale(1.06);
}

.product-gallery__carousel-controls > .product-gallery__video-button {
    position: static;
    right: auto;
    bottom: auto;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.product-gallery__thumbs button.is-active:after {
    animation: none;
    transform: scaleX(1);
}

body.video-modal-open {
    overflow: hidden;
}

.product-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    padding: 36px;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.product-video-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-video-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 18, 35, .86);
    cursor: pointer;
}

.product-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
    transform: translateY(18px) scale(.975);
    transition: transform .35s cubic-bezier(.2, .75, .25, 1);
}

.product-video-modal.is-open .product-video-modal__dialog {
    transform: none;
}

.product-video-modal__close {
    position: absolute;
    top: -52px;
    right: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    color: #fff;
    background: rgba(3, 31, 59, .5);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.product-video-modal__close:hover,
.product-video-modal__close:focus {
    color: var(--blue-950);
    background: #fff;
}

.product-video-modal__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.product-video-modal__player iframe,
.product-video-modal__player video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

/* Three lightweight reveal variants instead of a full animation library. */
.has-entry-motion .reveal-ready {
    filter: blur(3px);
    transform: translate3d(0, 28px, 0);
    transition: opacity .7s ease, filter .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.has-entry-motion .reveal-ready.reveal-from-left {
    transform: translate3d(-38px, 0, 0);
}

.has-entry-motion .reveal-ready.reveal-from-right {
    transform: translate3d(38px, 0, 0);
}

.has-entry-motion .reveal-ready.reveal-zoom {
    transform: translate3d(0, 14px, 0) scale(.965);
}

.has-entry-motion .reveal-ready.is-revealed {
    filter: blur(0);
    transform: none;
}

/* Softer card lift and image zoom on precise pointing devices. */
@media (hover: hover) and (pointer: fine) {
    .solution-card,
    .content-card,
    .solution-archive-card,
    .hzm-related-product,
    .recommended-products > a,
    .certificate-card {
        transition: transform .42s cubic-bezier(.2, .75, .25, 1), box-shadow .42s ease;
    }

    .solution-card:hover,
    .content-card:hover,
    .solution-archive-card:hover,
    .hzm-related-product:hover,
    .recommended-products > a:hover,
    .certificate-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 44px rgba(7, 36, 66, .14);
    }

    .category-tile img,
    .solution-card img,
    .content-card__image img,
    .solution-archive-card__media img,
    .hzm-related-product__media img,
    .recommended-products img,
    .advantage-card > img,
    .factory-gallery__item img,
    .product-factory-grid img {
        transition: transform .72s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
    }

    .category-tile:hover img,
    .solution-card:hover img,
    .content-card:hover .content-card__image img,
    .solution-archive-card:hover .solution-archive-card__media img,
    .hzm-related-product:hover .hzm-related-product__media img,
    .recommended-products > a:hover img,
    .advantage-card:hover > img,
    .factory-gallery__item:hover img,
    .product-factory-grid img:hover {
        transform: scale(1.055);
    }
}

@media (max-width: 1020px) {
    body.hzm-header-over-hero .site-header,
    body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) {
        border-bottom-color: rgba(12, 54, 93, .1);
        background: #fff;
        box-shadow: 0 3px 20px rgba(15, 39, 68, .09);
    }

    body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .site-logo img { filter: none; }
    body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .menu-toggle > span:not(.screen-reader-text) { background: var(--ink); }
    body.hzm-header-over-hero .site-header:not(:hover):not(:focus-within):not(.is-scrolled) .site-navigation .menu > .menu-item > a { color: var(--ink); text-shadow: none; }
}

@media (max-width: 680px) {
    .product-video-modal { padding: 18px; }
    .product-video-modal__close { top: -48px; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
    .product-gallery__video-button,
    .product-video-modal,
    .product-video-modal__dialog,
    .solution-card,
    .content-card,
    .solution-archive-card,
    .hzm-related-product,
    .recommended-products > a,
    .category-tile img,
    .solution-card img,
    .content-card__image img,
    .solution-archive-card__media img,
    .hzm-related-product__media img,
    .recommended-products img,
    .advantage-card > img,
    .factory-gallery__item img,
    .product-factory-grid img {
        transition: none !important;
    }
}

/* Banner copy enters only after the first painted frame. */
.has-banner-motion .banner-motion-item {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2, .75, .25, 1);
    will-change: opacity, transform;
}

.has-banner-motion .is-banner-revealed .banner-motion-item {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Product detail keeps one circular video control; image selection stays in thumbnails. */
.product-gallery__carousel-controls {
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.product-gallery__carousel-controls > .product-gallery__video-button {
    border-radius: 50%;
    background: rgba(4, 43, 79, .9);
    box-shadow: 0 6px 20px rgba(0, 28, 54, .24);
}

@media (min-width: 1021px) {
    .site-navigation .sub-menu {
        transform: translate3d(0, -14px, 0) scaleY(.96);
        transform-origin: top center;
        transition: opacity .28s ease, transform .32s cubic-bezier(.2, .75, .25, 1), visibility .28s;
    }

    .site-navigation .menu-item:hover > .sub-menu,
    .site-navigation .menu-item:focus-within > .sub-menu {
        transform: none;
    }

    .nav-mega {
        transform: translate3d(0, -16px, 0) scaleY(.97);
        transform-origin: top center;
        transition: opacity .3s ease, transform .34s cubic-bezier(.2, .75, .25, 1), visibility .3s;
    }

    .menu-item--mega:hover > .nav-mega,
    .menu-item--mega:focus-within > .nav-mega,
    .menu-item--mega.mega-open > .nav-mega {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
    .has-banner-motion .banner-motion-item,
    .site-navigation .sub-menu,
    .nav-mega {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
}
/* Mobile product archives use a wrapped, text-first category index. */
@media (max-width: 1020px) {
    .product-archive-page {
        display: flex;
        flex-direction: column;
    }

    .product-archive-head {
        order: 1;
        min-height: 0;
        overflow: visible;
        background: #fff;
    }

    .product-archive-head > img,
    .product-archive-head__shade,
    .product-archive-head .breadcrumbs,
    .product-archive-head .eyebrow {
        display: none;
    }

    .product-archive-head__content {
        width: calc(100% - 20px);
        min-height: 0;
        padding: 16px 0 4px;
        color: var(--ink);
		margin-top: 50px;
    }

    .product-archive-head h1 {
        max-width: none;
        margin: 0;
        color: var(--ink);
        font-size: 22px;
        line-height: 1.25;
    }

    .product-archive-main {
        order: 2;
        padding: 10px 0 52px;
        background: #fff;
    }

    .product-archive-main > .site-shell,
    .product-archive-intro > .site-shell {
        width: calc(100% - 20px);
    }

    .product-archive-intro {
        order: 3;
        padding: 32px 0;
        border-top: 1px solid #e4e9ee;
        background: #f7f9fb;
    }

    .product-archive-copy { order: 4; }

    .product-buying-content { order: 5; }

    .product-archive-results__heading {
        display: none;
    }

    .product-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-archive-grid .content-card__image {
        height: auto;
        aspect-ratio: 1.3 / 1;
    }

    .product-archive-grid .content-card__body {
        min-height: 64px;
        padding: 10px 8px;
        text-align: left;
    }

    .product-archive-grid .content-card__body h2 {
        font-size: 14px;
        line-height: 1.4;
    }

    .product-detail-layout {
        display: flex;
        flex-direction: column;
    }

    .product-detail-layout > .product-sidebar {
        order: -1;
        margin-top: 0;
    }

    .product-sidebar {
        margin-bottom: 16px;
    }

    .product-sidebar__panel:first-child {
        margin: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .product-category-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0 10px;
        padding: 0;
        overflow: visible;
        background: transparent;
    }

    .product-category-nav__group {
        flex: 0 1 auto;
        max-width: 100%;
    }

    .product-category-nav__children,
    .product-category-nav__family b {
        display: none;
    }

    .product-category-nav .product-category-nav__family,
    .product-category-nav .product-category-nav__family:hover,
    .product-category-nav .product-category-nav__family.is-active {
        display: inline;
        min-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        color: #0085c3;
        background: transparent;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.7;
        white-space: normal;
    }

    .product-category-nav__family::before {
        content: "#";
    }

}
/* Site-wide mobile navigation, media containment and responsive type. */
.submenu-toggle {
    display: none;
}

.solution-card,
.customer-logo-card,
.about-client-logo,
.certificate-card,
.recommended-products > a,
.hzm-related-product__media {
    overflow: hidden;
}

.product-anchor-nav {
    position: relative;
    top: auto;
}

@media (max-width: 900px) {
    .site-navigation {
        padding: 10px 18px 24px;
        overscroll-behavior: contain;
    }

    .site-navigation .menu > .menu-item > a {
        min-height: 42px;
        font-size: 15px;
        line-height: 1.25;
    }

    .site-navigation .menu-item-has-children {
        position: relative;
    }

    .site-navigation .menu-item-has-children:not(.menu-item--mega) > a,
    .menu-item--mega > a {
        padding-right: 42px !important;
    }

    .submenu-toggle,
    .nav-mega-toggle {
        position: absolute;
        top: 2px;
        right: 0;
        z-index: 3;
        display: grid;
        width: 38px;
        height: 38px;
        padding: 0;
        place-items: center;
        border: 0;
        color: var(--blue-700);
        background: transparent;
        font: inherit;
        font-size: 21px;
        line-height: 1;
        cursor: pointer;
    }

    .submenu-toggle > span[aria-hidden],
    .nav-mega-toggle > span[aria-hidden] {
        display: inline-block;
        transition: transform .18s ease;
    }

    .submenu-open > .submenu-toggle > span[aria-hidden],
    .menu-item--mega.mega-open > .nav-mega-toggle > span[aria-hidden] {
        transform: rotate(45deg);
    }

    .site-navigation .menu-item-has-children:not(.submenu-open) > .sub-menu {
        display: none;
    }

    .site-navigation .submenu-open > .sub-menu {
        display: block;
    }

    .site-navigation .sub-menu {
        padding: 3px 0 7px 14px;
    }

    .site-navigation .sub-menu a {
        padding: 5px 0;
        font-size: 13px;
        line-height: 1.3;
    }

    .nav-mega {
        padding: 4px 0 8px 14px;
    }

    .nav-mega__heading {
        display: none;
    }

    .nav-mega__card > span {
        min-height: 30px;
        padding: 4px 0;
        font-size: 12.5px;
        line-height: 1.3;
    }
}

@media (hover: hover) and (pointer: fine) {
    .product-factory-grid img:hover {
        transform: none;
    }
}

@media (max-width: 767px) {
    .product-anchor-nav {
        display: none;
    }

    .product-detail-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .product-detail-main > .site-shell {
        width: calc(100% - 20px);
    }

    .product-detail-layout,
    .product-detail-content,
    .product-overview,
    .product-overview__grid,
    .product-gallery,
    .product-summary,
    .product-detail-section,
    .product-inline-inquiry {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-overview {
        padding: 10px;
        overflow: hidden;
    }

    .product-gallery__main,
    .product-gallery__thumbs {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-gallery__thumbs {
        overscroll-behavior-x: contain;
    }

    .product-overview .product-summary {
        padding: 20px 2px 2px;
    }

    .product-actions {
        width: 100%;
        margin: 18px 0 0;
    }

    .product-categories,
    .article-taxonomy,
    .product-points,
    .product-tip,
    .product-detail-section .prose {
        overflow-wrap: anywhere;
        word-break: normal;
        font-size: 14px;
    }

    .product-detail-section {
        padding: 22px 14px;
        overflow: hidden;
        scroll-margin-top: 70px;
    }

    .product-detail-section .prose > * {
        max-width: 100%;
    }

    .product-detail-section .prose pre {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre;
    }

    .product-detail-section .prose table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .product-factory-grid {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        grid-gap: 8px;
    }

    .product-factory-grid > * {
        min-width: 0;
        overflow: hidden;
    }

    .product-inline-inquiry {
        padding: 24px 18px;
        overflow: hidden;
    }

    .product-inline-inquiry .button {
        width: 100%;
        margin: 16px 0 0;
    }
}

@media (max-width: 680px) {
    body {
        overflow-x: hidden;
        font-size: 15px;
        line-height: 1.6;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 21px;
    }

    h4 {
        font-size: 18px;
    }

    .site-header__inner {
        min-height: 52px;
    }

    .site-logo {
        flex-basis: 150px;
    }

    .site-logo img {
        max-width: 100px;
        max-height: 40px;
    }

    .site-navigation {
        top: 52px;
        padding: 6px 14px 18px;
    }

    .site-navigation .menu > .menu-item > a {
        min-height: 38px;
        font-size: 14px;
    }

    .submenu-toggle,
    .nav-mega-toggle {
        top: 1px;
        width: 36px;
        height: 36px;
        font-size: 19px;
    }

    .site-navigation .sub-menu {
        padding: 2px 0 5px 12px;
    }

    .site-navigation .sub-menu a {
        padding: 4px 0;
        font-size: 12.5px;
    }

    .nav-mega {
        padding: 2px 0 6px 12px;
    }

    .nav-mega__card > span {
        min-height: 27px;
        padding: 3px 0;
        font-size: 12px;
    }

    .section,
    .page-complete-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-hero,
    .hero-slide__content {
        min-height: 520px;
    }

    .hero-slide__content {
        padding-top: 64px;
        padding-bottom: 74px;
    }

    .home-hero .hero-slide__title,
    .home-hero h1 {
        font-size: 32px;
        line-height: 1.18;
    }

    .hero-slide__description,
    .home-hero__content > p:not(.eyebrow),
    .page-hero__content > p,
    .solution-archive__hero-content > p:not(.eyebrow),
    .split-layout__copy > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-hero,
    .page-hero__content,
    .about-page__hero,
    .contact-page__hero,
    .about-page__hero .page-hero__content,
    .contact-page__hero .page-hero__content {
        min-height: 320px;
    }

    .page-hero h1,
    .article-header h1,
    .services-hero h1,
    .solution-archive__hero h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .solution-archive__hero,
    .solution-archive__hero-content,
    .services-hero,
    .services-hero .page-hero__content {
        min-height: 360px;
    }

    .section-heading h2,
    .legacy-section-heading h2,
    .complete-section-heading h2,
    .company-intro__copy h2,
    .contact-overview__intro h2,
    .contact-overview__form > h2,
    .contact-visit__copy h2,
    .services-card__body h2,
    .services-downloads__heading h2,
    .solution-archive__heading h2,
    .site-cta h2 {
        font-size: 18px;
        line-height: 1.24;
    }

    .services-card__body {
        padding: 30px 20px 34px;
    }

    .services-card__body h3,
    .advantage-card__body h3 {
        font-size: 16px;
    }

    .product-overview .product-summary h1 {
        font-size: 16px;
        line-height: 1.24;
    }

    .product-detail-section > h2,
    .product-inline-inquiry h2 {
        font-size: 23px;
        line-height: 1.28;
    }

    .prose {
        font-size: 15px;
    }

    .prose h2 {
        font-size: 16px;
    }

    .prose h3 {
        font-size: 20px;
    }

    .company-stats strong {
        font-size: 27px;
    }

    .contact-overview__intro,
    .contact-overview__form,
    .contact-visit__copy {
        padding: 30px 18px;
    }
    .contact-overview__intro{display: none;}
}

@media (max-width: 380px) {
    .home-hero .hero-slide__title,
    .home-hero h1,
    .page-hero h1,
    .article-header h1,
    .services-hero h1,
    .solution-archive__hero h1 {
        font-size: 28px;
    }

    .section-heading h2,
    .legacy-section-heading h2,
    .complete-section-heading h2,
    .company-intro__copy h2,
    .contact-overview__intro h2,
    .contact-overview__form > h2,
    .contact-visit__copy h2,
    .services-card__body h2,
    .site-cta h2 {
        font-size: 24px;
    }
}
/* Keep the compact mobile menu clear of the fixed contact bar. */
@media (max-width: 900px) {
    body.menu-open .floating-contact {
        display: none;
    }
}
/* Article detail layout with reusable product sidebar. */
.article-detail-page {
    background: #f4f6f8;
}

.article-detail-content__header {
    margin-bottom: 38px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e7ec;
}

.article-detail-content__header .breadcrumbs {
    margin-bottom: 24px;
    color: var(--muted);
}

.article-detail-content__header .eyebrow {
    margin-bottom: 12px;
}

.article-detail-content__header h1 {
    max-width: 1120px;
    margin: 0 0 18px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.14;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.article-detail-meta a {
    font-weight: 700;
}

.project-detail-location {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 9px;
    color: var(--blue-700);
    font-size: 15px;
    font-weight: 800;
}

.project-detail-location svg {
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.article-detail-main {
    padding: 56px 0 96px;
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: start;
}

.article-detail-content {
    min-width: 0;
    padding: 46px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 49, 74, 0.08);
}

.article-detail-layout > .product-sidebar {
    position: sticky;
    top: 120px;
    min-width: 0;
}

.article-detail-content .article-featured {
    margin: 0 0 38px;
    overflow: hidden;
}

.article-detail-content .article-featured img {
    display: block;
    width: 100%;
    height: auto;
}

.article-detail-video {
    margin: 0 0 38px;
}

.article-detail-video video,
.article-detail-video .wp-video {
    max-width: 100%;
}

.article-detail-prose {
    max-width: none;
    overflow-wrap: anywhere;
}

.article-inquiry-cta {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 34px 36px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #006faf 0%, #024f86 100%);
}

.article-inquiry-cta > div {
    min-width: 0;
}

.article-inquiry-cta .eyebrow {
    margin-bottom: 8px;
    color: #82d2ff;
}

.article-inquiry-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
}

.article-inquiry-cta p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.article-inquiry-cta .button {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #064f7e;
    background: #fff;
}

.article-related-section {
    margin-top: 56px;
    padding-top: 46px;
    border-top: 1px solid #e1e7ec;
}

.article-related-heading {
    margin-bottom: 24px;
}

.article-related-heading .eyebrow {
    margin-bottom: 7px;
}

.article-related-heading h2 {
    margin: 0;
    font-size: 30px;
}

.article-related-products .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.article-related-articles .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-related-section .content-card {
    min-width: 0;
    overflow: hidden;
}

.article-related-section .content-card__image {
    height: 180px;
    overflow: hidden;
}

.article-related-section .content-card__body {
    padding: 16px;
}

.article-related-section .content-card__body h2 {
    font-size: 17px;
    line-height: 1.35;
}

.article-related-products .content-card__body > p:not(.eyebrow),
.article-related-products .content-card__body > .text-link {
    display: none;
}

@media (max-width: 1280px) {
    .article-detail-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 28px;
    }

    .article-detail-content {
        padding: 36px;
    }

    .article-related-products .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .article-detail-layout {
        display: flex;
        flex-direction: column;
    }

    .article-detail-layout > .product-sidebar {
        position: static;
        order: -1;
        width: 100%;
        margin: 0 0 24px;
    }

    .article-detail-content {
        width: 100%;
    }

    .article-related-articles .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .article-detail-main > .site-shell {
        width: calc(100% - 20px);
    }

    .article-detail-content__header {
        margin-bottom: 24px;
        padding-bottom: 22px;
    }

    .article-detail-content__header .breadcrumbs {
        margin-bottom: 16px;
    }

    .article-detail-content__header .eyebrow {
        margin-bottom: 8px;
    }

    .article-detail-content__header h1 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.23;
    }

    .article-detail-meta {
        gap: 5px 8px;
        font-size: 13px;
    }

    .article-detail-main {
        padding: 20px 0 60px;
    }

    .article-detail-layout {
        gap: 0;
    }

    .article-detail-layout > .product-sidebar {
        margin-bottom: 18px;
    }

    .article-detail-content {
        padding: 24px 16px;
    }

    .article-detail-content .article-featured,
    .article-detail-video {
        margin-bottom: 24px;
    }

    .article-detail-prose {
        font-size: 15px;
        line-height: 1.75;
    }

    .article-detail-prose h2 {
        font-size: 24px;
    }

    .article-detail-prose h3 {
        font-size: 20px;
    }

    .article-inquiry-cta {
        display: block;
        margin-top: 36px;
        padding: 24px 18px;
    }

    .article-inquiry-cta h2 {
        font-size: 23px;
    }

    .article-inquiry-cta .button {
        width: 100%;
        margin-top: 18px;
    }

    .article-related-section {
        margin-top: 40px;
        padding-top: 32px;
    }

    .article-related-heading {
        margin-bottom: 18px;
    }

    .article-related-heading h2 {
        font-size: 24px;
    }

    .article-related-products .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .article-related-articles .card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-related-products .content-card__image {
        height: auto;
        aspect-ratio: 1.3 / 1;
    }

    .article-related-articles .content-card__image {
        height: 210px;
    }

    .article-related-products .content-card__body {
        padding: 10px;
    }

    .article-related-products .content-card__body h2 {
        font-size: 14px;
    }

    .article-related-articles .content-card__body h2 {
        font-size: 18px;
    }
}
/* Legacy editor quotation labels now behave as global inquiry buttons. */
.prose .quotation,
.article-detail-prose .quotation,
.solution-detail__prose .quotation {
    display: inline-flex;
    max-width: 100%;
    min-height: 44px;
    padding: 10px 18px !important;
    border: 0;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: var(--blue-700);
    box-shadow: 0 7px 18px rgba(8, 74, 139, .18);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.prose .quotation:hover,
.article-detail-prose .quotation:hover,
.solution-detail__prose .quotation:hover {
    color: #fff !important;
    background: var(--blue-900);
    box-shadow: 0 10px 24px rgba(8, 74, 139, .25);
    transform: translateY(-1px);
}

.prose .quotation:focus-visible,
.article-detail-prose .quotation:focus-visible,
.solution-detail__prose .quotation:focus-visible {
    outline: 3px solid rgba(19, 127, 200, .36);
    outline-offset: 3px;
}

/* Keep the Services and Solutions hero typography aligned with every page hero. */
.services-hero h1,
.solution-archive__hero h1 {
    max-width: 900px;
    margin-bottom: 14px;
    font-size: 52px;
}

.services-hero .page-hero__content > p:not(.eyebrow),
.solution-archive__hero .page-hero__content > p:not(.eyebrow) {
    max-width: 850px;
    color: #e8f2f8;
    font-size: 14px;
}

/* Project cases use two complete cards per row instead of three compact cards. */
.projects-archive__main {
    background: #f4f6f8;
}

.projects-archive__heading {
    margin-bottom: 34px;
}

.projects-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.project-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 49, 74, .09);
}

.project-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9eef2;
}

.project-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.project-card:hover .project-card__media img {
    transform: scale(1.025);
}

.project-card__body {
    display: flex;
    padding: 30px;
    flex: 1 1 auto;
    flex-direction: column;
}

.project-card__body h2 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.32;
}

.project-card__body h2 a {
    color: var(--ink);
}

.project-card__body h2 a:hover {
    color: var(--blue-700);
}

.project-card__summary {
    margin: 0 0 24px;
    color: var(--muted);
}

.project-card__location {
    display: flex;
    margin: auto 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    align-items: center;
    gap: 9px;
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 800;
}

.project-card__location svg {
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 767px) {
    .product-detail-layout > .product-sidebar,
    .article-detail-layout > .product-sidebar {
        display: none !important;
    }

    .services-hero h1,
    .solution-archive__hero h1 {
        font-size: 18px;
    }

    .projects-archive__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card__body {
        padding: 22px 18px;
    }

    .project-card__body h2 {
        font-size: 21px;
    }
}
/* Keep every front-end table inside an accessible horizontal scroll frame. */
.responsive-table {
    position: relative;
    max-width: 100%;
}

.product-comparison-table.responsive-table {
    overflow: visible;
}

.responsive-table__hint {
    display: none;
    margin: 0;
}

.responsive-table__viewport {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.responsive-table__viewport:focus {
    outline: 3px solid rgba(0, 136, 199, .28);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .responsive-table,
    .product-comparison-table.responsive-table {
        margin: 28px 0;
        overflow: hidden;
        border: 2px solid #0788c4;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 10px 26px rgba(7, 74, 112, .12);
    }

    .responsive-table__hint {
        display: flex;
        min-height: 38px;
        padding: 8px 12px;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #b8deef;
        color: #075a86;
        background: #eaf7fc;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.35;
        text-align: center;
    }

    .responsive-table__viewport {
        box-shadow: inset -18px 0 20px -20px rgba(3, 49, 76, .9);
        scrollbar-color: #0788c4 #e5edf1;
        scrollbar-width: thin;
    }

    .responsive-table__viewport::-webkit-scrollbar {
        height: 8px;
    }

    .responsive-table__viewport::-webkit-scrollbar-track {
        background: #e5edf1;
    }

    .responsive-table__viewport::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background: #0788c4;
    }

    .responsive-table .responsive-table__viewport table {
        display: table !important;
        width: max-content !important;
        min-width: 100%;
        max-width: none !important;
        margin: 0 !important;
        overflow: visible !important;
        font-size: 12px !important;
    }

    .responsive-table .responsive-table__viewport th,
    .responsive-table .responsive-table__viewport td {
        font-size: 12px !important;
    }
}

@media (max-width: 680px) {
    body.home .home-hero .button-row > a.button {
        display: none;
    }

    body.home .home-hero .button-row {
        margin-right: 0;
        margin-left: 0;
    }

    body.home .home-hero .button-row > [data-inquiry-open] {
        margin-right: 0;
        margin-left: 0;
    }
}
