:root {
    --color-primary: #2c6fbb;
    --color-primary-dark: #235995;
    --color-navy: #4C4D4F;
    --color-ink: #111827;
    --color-muted: #6b6c6f;
    --color-line: #E3E3E3;
    --color-soft: #EFF3F6;
    --color-white: #ffffff;
    --color-steel: #E3E3E3;
    --color-surface: #ffffff;
    --color-panel: #eeeeee;
    --color-panel-soft: #f3f3f3;
    --color-heading: #111111;
    --color-primary-rgb: 44, 111, 187;
    --color-ink-rgb: 76, 77, 79;
    --color-white-rgb: 255, 255, 255;
    --shadow-soft: 0 18px 48px rgba(var(--color-ink-rgb), 0.12);
    --radius: 8px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: "Raleway", Arial, sans-serif;
    color: var(--color-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body.inner-page {
    padding-top: 78px;
}

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

body.is-loading {
    overflow: hidden;
}

.home-capabilities {
    position: relative;
    z-index: 6;
    width: 100%;
    margin-top: -90px;
    padding: 0 0 34px;
    background: transparent;
}

.container.home-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(var(--container), calc(100% - 0));
    max-width: var(--container);
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 24px 54px rgba(var(--color-ink-rgb), 0.13);
}

.home-capability {
    display: grid;
    grid-template-columns: clamp(60px, 5vw, 86px) minmax(0, 1fr);
    gap: clamp(14px, 1.55vw, 24px);
    min-width: 0;
    min-height: clamp(180px, 10vw, 190px);
    padding: clamp(17px, 1vw, 30px) clamp(18px, 2vw, 32px);
    align-items: center;
    border-left: 1px solid var(--color-line);
}

.home-capability:last-child {
    border-right: 1px solid var(--color-line);
}

.home-capability__icon {
    display: grid;
    place-items: center;
    width: clamp(60px, 5vw, 74px);
    height: clamp(60px, 5vw, 74px);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
}

.home-capability__icon svg {
    width: 58%;
    height: 58%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-capability h2 {
    margin: 0 0 10px;
    color: var(--color-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.home-capability p {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.5;
    /* font-size: 13px;
    font-weight: 400;
    line-height: 1.5; */
}

.home-capability--highlight {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.home-capability--highlight .home-capability__icon {
    border-color: rgba(var(--color-white-rgb), 0.75);
    color: var(--color-white);
}

.home-capability--highlight h2,
.home-capability--highlight p {
    color: var(--color-white);
}

@media (max-width: 860px) {
    .home-capabilities {
        margin-top: 0;
        padding: 0;
        background: var(--color-white);
    }

    .container.home-capabilities__grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        box-shadow: none;
    }

    .home-capability {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 20px;
        min-height: 0;
        padding: 30px 24px;
        border-right: 1px solid var(--color-line);
        border-bottom: 1px solid var(--color-line);
    }

    .home-capability__icon {
        width: 82px;
        height: 82px;
    }

    .home-capability h2 {
        font-size: 28px;
    }

    .home-capability p {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .home-capabilities {
        margin-top: 0;
        padding: 0;
    }

    .home-capability {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 18px;
    }

    .home-capability__icon {
        width: 64px;
        height: 64px;
    }

    .home-capability h2 {
        margin-bottom: 8px;
        font-size: 24px;
    }
}

/* Homepage product mosaic */
.home-page .home-product-showcase {
    padding: 40px 0;
    /* background: var(--color-panel-soft); */
}

.home-page .product-showcase-wrap {
    padding-inline: 0;
}

.home-page .product-showcase-wrap>.container {
    width: min(var(--container), calc(100% - 40px));
    max-width: var(--container);
    padding: 0;
}

.home-page .home-product-showcase .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(170px, calc((100vw - 80px) / 4.74), 248px);
    gap: 20px;
    margin: 0;
}

.home-page .home-product-showcase .row>div {
    width: auto;
    max-width: none;
    padding: 0;
}

.home-page .home-product-showcase .row>div:first-child {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.home-page .home-product-showcase .row>div:nth-child(2),
.home-page .home-product-showcase .row>div:nth-child(4) {
    grid-column: 1;
}

.home-page .home-product-showcase .row>div:nth-child(3),
.home-page .home-product-showcase .row>div:nth-child(5) {
    grid-column: 2;
}

.home-page .home-product-showcase .row>div:nth-child(2),
.home-page .home-product-showcase .row>div:nth-child(3) {
    grid-row: 1;
}

.home-page .home-product-showcase .row>div:nth-child(4),
.home-page .home-product-showcase .row>div:nth-child(5) {
    grid-row: 2;
}

.home-page .home-product-showcase .showcase-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-width: 0;
    min-height: 250px;
    height: 105.3%;
    /* height: 100%; */
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 0;
    box-shadow: none;
    isolation: isolate;
    transform: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-page .home-product-showcase .showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-page .home-product-showcase .showcase-card__image {
    order: 2;
    flex: 0 0 65%;
    height: 100%;
    aspect-ratio: auto;
    padding: 5px 0;
    overflow: visible;
    transform: none;
    z-index: -9;
}

.home-page .home-product-showcase .showcase-card__image img {
    width: 128%;
    height: 112%;
    max-width: none;
    transform: translateX(25%);
    transition: transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-product-showcase .showcase-card__caption {
    order: 1;
    flex: 1 1 42%;
    min-width: 0;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 0 18px 20px;
    transform: none;
}

.home-page .home-product-showcase .showcase-card__caption h5 {
    margin: 0 0 13px;
    color: var(--color-heading);
    font-size: clamp(30px, 1.05vw, 18px);
    font-weight: 700;
    line-height: 1.15;
}

.home-page .home-product-showcase .showcase-card__caption>span,
.home-page .home-product-showcase .showcase-card__caption p {
    display: none;
}

.home-page .home-product-showcase .showcase-card__button {
    min-height: 30px;
    margin: 0;
    padding: 8px 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card {
    flex-direction: column;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__image {
    order: 1;
    flex: 1 1 auto;
    width: 100%;
    height: 58%;
    padding: 18px 24px 0;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__caption {
    order: 2;
    flex: 0 0 auto;
    align-items: center;
    padding: 8px 24px 22px;
    text-align: center;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__caption h5 {
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 700;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__caption p {
    display: block;
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__button {
    align-self: center;
}

.home-page .home-product-showcase .showcase-card:hover {
    z-index: 2;
    border-color: var(--color-primary);
    box-shadow: 0 18px 38px rgba(var(--color-primary-rgb), 0.18);
    transform: none;
}

.home-page .home-product-showcase .showcase-card:hover::after {
    opacity: 1;
}

.home-page .home-product-showcase .showcase-card:hover .showcase-card__image img {
    /* transform: translateX(-8%); */
    transform: translateX(8%);
}

.home-page .home-product-showcase .row>div:first-child .showcase-card__image img {
    width: 135%;
    max-width: none;
    transform: translateX(18%);
    transition: transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-product-showcase .row>div:first-child .showcase-card:hover .showcase-card__image img {
    transform: translateX(2%);
}

@media (max-width: 991.98px) {
    .home-page .home-product-showcase .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: clamp(190px, calc((100vw - 76px) / 3.16), 285px);
    }

    .home-page .home-product-showcase .row>div:first-child,
    .home-page .home-product-showcase .row>div:nth-child(2),
    .home-page .home-product-showcase .row>div:nth-child(3),
    .home-page .home-product-showcase .row>div:nth-child(4),
    .home-page .home-product-showcase .row>div:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .home-page .home-product-showcase .row>div:first-child {
        grid-row: span 2;
    }
}

@media (max-width: 575.98px) {
    .home-page .home-product-showcase .row {
        grid-template-columns: 1fr;
        grid-auto-rows: clamp(180px, calc((100vw - 24px) / 1.58), 240px);
        gap: 10px;
    }

    .home-page .home-product-showcase .row>div:first-child {
        grid-row: auto;
    }

    .home-page .home-product-showcase .row>div:first-child .showcase-card {
        flex-direction: row;
    }

    .home-page .home-product-showcase .row>div:first-child .showcase-card__image {
        order: 2;
        flex: 0 0 72%;
        width: auto;
        height: 100%;
        padding: 10px 5px 4px 0;
    }

    .home-page .home-product-showcase .row>div:first-child .showcase-card__caption {
        order: 1;
        flex: 1 1 48%;
        align-items: flex-start;
        padding: 16px 0 16px 16px;
        text-align: left;
    }

    .home-page .home-product-showcase .row>div:first-child .showcase-card__caption p {
        display: none;
    }

    .home-page .home-product-showcase .showcase-card__caption h5,
    .home-page .home-product-showcase .row>div:first-child .showcase-card__caption h5 {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .home-page .home-product-showcase .row>div:first-child .showcase-card__button {
        align-self: flex-start;
    }
}

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

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: all;
}

.page-loader__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: var(--color-white);
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.page-loader__panel--left {
    left: 0;
}

.page-loader__panel--right {
    right: 0;
}

.page-loader__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-loader__content img {
    width: 190px;
    max-width: 52vw;
}

.page-loader__spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--color-line);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: loader-spin 0.85s linear infinite;
}

.page-loader.is-opening {
    pointer-events: none;
}

.page-loader.is-opening .page-loader__content {
    opacity: 0;
    transform: scale(0.96);
}

.page-loader.is-opening .page-loader__panel--left {
    transform: translateX(-100%);
}

.page-loader.is-opening .page-loader__panel--right {
    transform: translateX(100%);
}

.page-loader.is-hidden {
    display: none;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

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

.container {
    width: min(var(--container), calc(100% - 40px));
    max-width: var(--container) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-inline: auto;
}

.topbar {
    background: var(--color-navy);
    color: rgba(var(--color-white-rgb), 0.82);
    font-size: 13px;
}

.topbar__inner,
.topbar__links,
.nav,
.hero__actions,
.footer-cta__inner,
.product-group__head {
    display: flex;
    align-items: center;
}

.topbar__inner {
    justify-content: space-between;
    min-height: 38px;
    gap: 16px;
}

.topbar__links {
    gap: 18px;
}

.topbar a:hover,
.site-footer a:hover {
    color: var(--color-primary);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-white);
    box-shadow: 0 10px 26px rgba(var(--color-ink-rgb), 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav {
    justify-content: space-between;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-navy);
}

.brand__logo {
    width: auto;
    height: 62px;
    max-width: min(250px, 45vw);
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-weight: 800;
    font-size: 28px;
    box-shadow: 0 10px 22px rgba(var(--color-primary-rgb), 0.24);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 22px;
    line-height: 1;
}

.brand small {
    font-size: 12px;
    color: var(--color-muted);
}

.nav-menu {
    justify-content: flex-end;
}

.nav-menu .navbar-nav {
    align-items: center;
    gap: 18px;
}

.nav-menu a {
    padding: 10px 0;
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu .is-active {
    color: var(--color-primary) !important;
}

.nav-menu .dropdown-menu {
    min-width: 220px;
    padding: 0;
    background: var(--color-soft);
    border: 1px solid var(--color-line);
    border-radius: 0;
    box-shadow: none;
}

.nav-menu .dropdown-item {
    padding: 14px 34px;
    color: var(--color-ink);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--color-line);
    font-weight: 700;
}

.nav-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.nav-menu .dropdown-item:hover,
.nav-menu .dropdown-item.active {
    color: var(--color-primary);
    background: var(--color-white);
}

@media (min-width: 992px) {
    .nav-menu .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .nav-menu .dropdown:hover>.dropdown-toggle {
        color: var(--color-primary) !important;
    }
}

.nav-menu .header-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 20px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white) !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu .header-quote-btn:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
    transform: translateY(-1px);
}

.mobile-menu-head,
.mobile-menu-backdrop {
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        position: relative;
        z-index: 41;
        border: 1px solid var(--color-line);
        background: var(--color-white);
        box-shadow: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 50;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        width: min(86vw, 380px);
        height: 100vh;
        padding: 24px;
        background: var(--color-white);
        border-left: 1px solid var(--color-line);
        box-shadow: -22px 0 54px rgba(var(--color-ink-rgb), 0.18);
        overflow-y: auto;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.32s ease, visibility 0.32s ease;
    }

    .nav-menu.show,
    .nav-menu.collapsing {
        visibility: visible;
        transform: translateX(0);
    }

    .nav-menu.collapsing {
        height: 100vh !important;
        transition: transform 0.32s ease, visibility 0.32s ease;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 106px;
        margin-bottom: 26px;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--color-line);
    }

    .mobile-menu-head img {
        width: 130px;
        height: auto;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-line);
        background: var(--color-soft);
        color: var(--color-ink);
        font-size: 28px;
        line-height: 1;
    }

    .nav-menu .navbar-nav {
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-menu a,
    .nav-menu .dropdown-toggle {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-line);
        color: var(--color-ink);
        font-size: 15px;
        text-transform: uppercase;
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin: 0 0 8px;
        background: var(--color-soft);
        border: 0;
    }

    .nav-menu .dropdown-item {
        padding: 12px 18px;
        font-size: 13px;
        border-bottom: 1px solid var(--color-line);
    }

    .nav-menu .header-quote-btn {
        width: 100%;
        margin-top: 22px !important;
        padding: 15px 20px;
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 40;
        display: block;
        border: 0;
        background: rgba(var(--color-ink-rgb), 0.42);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .nav-menu.show+.mobile-menu-backdrop,
    .nav-menu.collapsing+.mobile-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.is-menu-open {
        overflow: hidden;
    }
}

.hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-navy);
}

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

.hero__media {
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease, transform 4.8s ease;
}

.hero--product-slider {
    min-height: 70vh;
    color: var(--color-ink);
    background: var(--color-white);
}

.hero--product-slider .hero__media {
    display: none;
}

.hero__image:nth-child(2) {
    background-position: 62% center;
    filter: saturate(0.9) contrast(1.08);
}

.hero__image:nth-child(3) {
    background-position: 74% center;
    filter: brightness(0.92) contrast(1.12);
}

.hero__image.is-active {
    opacity: 1;
    transform: none;
}

.hero__overlay {
    display: none;
}

.hero-slider__wrap {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: center;
    padding: 0px 0 88px;
}

.hero__content {
    display: grid;
    min-height: 430px;
    align-items: center;
    max-width: var(--container);
}

.hero-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
    align-items: center;
    gap: clamp(24px, 5vw, 76px);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.hero h1,
.page-hero h1,
.section-head h2,
.split h2 {
    margin: 0;
    line-height: 1.06;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    color: var(--color-heading);
    text-transform: uppercase;
}

.hero p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 17px;
}

.hero-slide__text {
    position: relative;
    z-index: 2;
}

.hero-slide__text .btn {
    margin-top: 30px;
}

.hero-slide__image {
    display: grid;
    place-items: center;
    min-height: 360px;
}

.hero-slide__image img {
    width: min(650px, 100%);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 34px 44px rgba(var(--color-ink-rgb), 0.16));
    transform: translateX(28px) scale(0.98);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-slide.is-active .hero-slide__image img {
    transform: translateX(0) scale(1);
}

.hero__actions {
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-slider__controls {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 4;
}

.hero-slider__arrow,
.hero-slider__dots button {
    border: 1px solid var(--color-line);
    background: rgba(var(--color-white-rgb), 0.88);
    color: var(--color-primary);
    cursor: pointer;
}

.hero-slider__arrow {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 0;
    line-height: 1;
}

.hero-slider__arrow::before {
    font-size: 28px;
}

.hero-slider__arrow[data-slider-prev]::before {
    content: "\2039";
}

.hero-slider__arrow[data-slider-next]::before {
    content: "\203A";
}

.hero-slider__arrow:hover,
.hero-slider__dots button.is-active,
.hero-slider__dots button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-slider__dots button {
    width: 34px;
    height: 5px;
    padding: 0;
    border-radius: 999px;
}

.eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--color-primary);
}

.simple-slider__caption {
    width: min(720px, 100% - 250px);
    padding: 22px 28px;
    background: rgba(var(--color-ink-rgb), 0.82);
    border-left: 5px solid var(--color-primary);
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.simple-slider__caption .btn--outline {
    color: var(--color-white);
    border-color: rgba(var(--color-white-rgb), 0.58);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 14px 28px rgba(var(--color-primary-rgb), 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: rgba(var(--color-primary-rgb), 0.35);
}

.btn--outline:hover,
.btn--light {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn--small {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 14px;
}

.section {
    padding: 88px 0;
}

.section--tight {
    padding: 0;
}

.section--muted {
    background: var(--color-soft);
}

.industries-section {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.industries-section__head {
    position: relative;
    z-index: 1;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.industries-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 48px 58px;
}

.industries-slider__viewport {
    overflow: hidden;
}

.industries-slider__arrow {
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.industries-slider__arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.industries-slider__arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.industries-slider__arrow[data-industries-prev] {
    left: auto;
    right: 104px;
}

.industries-slider__arrow[data-industries-next] {
    right: 48px;
}

.industry-card {
    position: relative;
    flex: 0 0 calc((100% - 90px) / 4);
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--color-steel);
    background-position: center;
    background-size: cover;
    color: var(--color-white);
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(var(--color-ink-rgb), 0.02), rgba(var(--color-ink-rgb), 0.08));
    z-index: 1;
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-position: inherit;
    background-size: inherit;
    transform: scale(1);
    transition: transform 0.45s ease;
    z-index: 0;
}

.industry-card span {
    position: relative;
    z-index: 2;
    display: block;
    width: calc(100% - 48px);
    padding: 14px 20px 14px 24px;
    background: rgba(var(--color-white-rgb), 0.88);
    color: var(--color-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    border-left: 4px solid var(--color-primary);
    transform: translateY(1px);
}

.industry-card:hover {
    color: var(--color-heading);
}

.industry-card:hover::after {
    transform: scale(1.06);
}

.industry-card--oil {
    background-image: url("../img/industries/oil_and_gas.jpg");
}

.industry-card--power {
    background-image: url("../img/industries/power-plant.jpg");
}

.industry-card--nuclear {
    background-image: url("../img/industries/nuclear.jpg");
}

.industry-card--chemical {
    background-image: url("../img/industries/chemical_petrochemical.jpg");
}

.industry-card--hydraulics {
    background-image: url("../img/industries/hydraulic.jpg");
}

.industry-card--ship {
    background-image: url("../img/industries/Ship-Building.jpg");
}

.industry-card--bio {
    background-image: url("../img/industries/BIOPHARMACEUTICAL.jpg");
}

.industry-card--paper {
    background-image: url("../img/industries/pulp-and-paper.jpg");
}

.industry-card--process {
    background-image: url("../img/industries/process-instrumentation.jpg");
}

.industries-mosaic {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 18px;
    width: 100%;
    padding: 0 clamp(18px, 3vw, 52px);
}

.industries-mosaic .industry-card {
    flex: none;
    min-height: auto;
    border: 1px solid rgba(var(--color-white-rgb), 0.76);
    box-shadow: 0 18px 46px rgba(var(--color-ink-rgb), 0.13);
}

.industries-mosaic .industry-card::before {
    background:
        linear-gradient(180deg, rgba(var(--color-ink-rgb), 0.04), rgba(var(--color-ink-rgb), 0.5)),
        linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.28), transparent 58%);
}

.industries-mosaic .industry-card span {
    width: auto;
    min-width: min(280px, calc(100% - 36px));
    margin: 0 18px 18px;
    padding: 14px 18px;
    background: rgba(var(--color-white-rgb), 0.92);
    border-left: 4px solid var(--color-primary);
    color: var(--color-heading);
    box-shadow: 0 14px 32px rgba(var(--color-ink-rgb), 0.18);
}

.industries-mosaic .industry-card--oil,
.industries-mosaic .industry-card--chemical {
    grid-column: span 2;
}

.industries-mosaic .industry-card--oil {
    grid-row: span 2;
}

.industries-mosaic .industry-card--process {
    grid-column: span 2;
}

.industries-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.85fr);
    min-height: 560px;
    padding: 0 clamp(18px, 9vw, 170px);
    align-items: center;
}

.industries-showcase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 16%;
    bottom: 13%;
    background:
        linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.95), rgba(7, 61, 133, 0.92)),
        url("../img/industries/process-instrumentation.jpg") center / cover no-repeat;
}

.industries-info {
    position: relative;
    z-index: 2;
    min-height: 520px;
    padding: clamp(34px, 4vw, 56px);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 24px 60px rgba(var(--color-ink-rgb), 0.18);
}

.industries-info h2 {
    margin: 0 0 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(var(--color-white-rgb), 0.5);
    color: var(--color-white);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.28;
}

.industries-info ul {
    display: grid;
    gap: 15px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.industries-info li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.3;
}

.industries-info li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    font-size: 11px;
    line-height: 1;
}

.industries-info a {
    color: var(--color-white);
    font-weight: 800;
}

.industries-gallery {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 70px clamp(28px, 5vw, 88px);
    color: var(--color-white);
}

.industries-gallery__content {
    width: 100%;
    min-width: 0;
}

.industries-gallery .eyebrow {
    color: rgba(var(--color-white-rgb), 0.8);
    font-size: 13px;
}

.industries-gallery h3 {
    max-width: 840px;
    margin: 0 0 26px;
    color: var(--color-white);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.18;
}

.industries-gallery__slider {
    position: relative;
    min-width: 0;
}

.industries-gallery__viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.industries-gallery__track {
    display: flex;
    gap: 14px;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.industries-gallery__track .industry-card {
    flex: none;
    flex-basis: calc((100% - 28px) / 3);
    min-height: 220px;
    border: 0;
    box-shadow: 0 16px 36px rgba(var(--color-ink-rgb), 0.22);
}

.industries-gallery__track .industry-card span {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 12px 14px;
    background: rgba(var(--color-white-rgb), 0.9);
    color: var(--color-heading);
}

.industries-slider__arrow--gallery {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(var(--color-white-rgb), 0.9);
}

.industries-slider__arrow--gallery[data-industries-prev] {
    left: -18px;
    right: auto;
}

.industries-slider__arrow--gallery[data-industries-next] {
    right: -18px;
}

@media (max-width: 991.98px) {
    .industries-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 24px;
        gap: 0;
    }

    .industries-showcase::before {
        top: 22%;
        bottom: 0;
    }

    .industries-info {
        min-height: auto;
    }

    .industries-gallery {
        min-height: auto;
        padding: 44px 24px 54px;
    }

    .industries-gallery h3 {
        max-width: 100%;
    }

    .industries-gallery__track .industry-card {
        flex-basis: calc((100% - 14px) / 2);
    }

    .industries-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }

    .industries-mosaic .industry-card--oil,
    .industries-mosaic .industry-card--chemical,
    .industries-mosaic .industry-card--process {
        grid-column: span 1;
        grid-row: span 1;
    }

    .industry-card {
        flex-basis: calc((100% - 30px) / 2);
    }
}

@media (max-width: 575.98px) {
    .industries-section {
        overflow: hidden;
    }

    .industries-showcase {
        padding: 0 18px;
    }

    .industries-info {
        padding: 30px 24px;
    }

    .industries-info h2 {
        font-size: 28px;
    }

    .industries-gallery {
        padding: 34px 0 44px;
        width: 100%;
        overflow: hidden;
    }

    .industries-gallery h3 {
        margin-bottom: 22px;
        font-size: 17px;
        line-height: 1.35;
        overflow-wrap: normal;
    }

    .industries-gallery__slider {
        padding: 0 44px;
        width: 100%;
        overflow: hidden;
    }

    .industries-gallery__track .industry-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 210px;
    }

    .industries-slider__arrow--gallery[data-industries-prev] {
        left: 8px;
    }

    .industries-slider__arrow--gallery[data-industries-next] {
        right: 8px;
    }

    .industries-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 14px;
        padding-inline: 18px;
    }

    .industries-slider {
        padding-inline: 18px;
    }

    .industries-grid {
        gap: 18px;
    }

    .industry-card {
        flex-basis: 100%;
        min-height: 230px;
    }

    .industry-card span {
        width: calc(100% - 32px);
        margin: 0 16px 16px;
    }

    .industries-slider__arrow[data-industries-prev] {
        right: 74px;
    }

    .industries-slider__arrow[data-industries-next] {
        right: 18px;
    }
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -62px;
    position: relative;
    z-index: 2;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-strip article {
    padding: 30px;
    border-right: 1px solid var(--color-line);
}

.feature-strip article:last-child {
    border-right: 0;
}

.feature-strip span,
.product-tile__icon {
    display: block;
    width: 34px;
    height: 4px;
    background: var(--color-primary);
    margin-bottom: 18px;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    margin: 0 0 8px;
    line-height: 1.2;
}

p {
    color: var(--color-muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 70px;
    align-items: start;
}

.prose p:first-child {
    margin-top: 0;
}

.section-head {
    max-width: 780px;
    margin-bottom: 34px;
}

.values-grid,
.service-grid,
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.values-grid article,
.service-grid article,
.infra-grid article,
.contact-card,
.enquiry-form,
.catalogue-request {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 28px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.stats div {
    padding: 20px;
}

.stats div:last-child {
    border-right: 0;
}

.stats strong {
    display: block;
    color: var(--color-primary);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.stats span {
    color: var(--color-navy);
    font-weight: 700;
}

.page-hero {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(var(--color-ink-rgb), 0.95), rgba(var(--color-ink-rgb), 0.78)),
        url("../img/about-banner.png");
    color: var(--color-white);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
    max-width: 720px;
    color: rgba(var(--color-white-rgb), 0.78);
    font-size: 18px;
}

.catalogue-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.catalogue-nav {
    position: sticky;
    top: 120px;
    align-self: start;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 20px;
}

.catalogue-nav h2 {
    font-size: 20px;
    margin: 0 0 14px;
}

.catalogue-nav a {
    display: block;
    padding: 12px 0;
    color: var(--color-muted);
    border-top: 1px solid var(--color-line);
    font-weight: 700;
}

.catalogue-nav a:hover {
    color: var(--color-primary);
}

.catalogue-list {
    display: grid;
    gap: 28px;
}

.catalogue-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.catalogue-section-head h2,
.catalogue-support h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.12;
}

.catalogue-section-head p,
.catalogue-support p {
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 17px;
}

.catalogue-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.catalogue-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid #dfe7f2;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(var(--color-ink-rgb), 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalogue-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.42);
    box-shadow: 0 18px 38px rgba(var(--color-ink-rgb), 0.12);
    transform: translateY(-3px);
}

.catalogue-card__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 0;
    width: 100%;
}

.catalogue-card__top > div {
    width: 100%;
}

.catalogue-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    margin-right: 8px;
    background: #eff5ff;
    color: var(--color-primary);
}

.catalogue-card__icon svg,
.catalogue-card__download svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalogue-card h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    word-break: normal;
    white-space: normal;
    overflow-wrap: normal;
}

.catalogue-card__category {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.catalogue-card__top::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 6px;
    background: var(--color-primary);
}

.catalogue-card__image {
    display: grid;
    place-items: center;
    min-height: 154px;
    padding: 6px 22px 12px;
}

.catalogue-card__image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(var(--color-ink-rgb), 0.12));
    transition: transform 0.24s ease;
}

.catalogue-card:hover .catalogue-card__image img {
    transform: scale(1.04);
}

.catalogue-request-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(var(--color-ink-rgb), 0.28);
}

.catalogue-request-modal__header {
    position: relative;
    padding: 18px 70px 18px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.catalogue-request-modal__header h2 {
    margin: 0;
    color: inherit;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.catalogue-request-modal__header button {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-heading);
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
}

.catalogue-request-modal__body {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    min-height: 440px;
}

.catalogue-request-modal__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 42px 34px;
    background: #f4f8fc;
}

.catalogue-request-modal__contact img {
    width: min(220px, 100%);
    height: auto;
    margin-bottom: 26px;
}

.catalogue-request-modal__contact p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
}

.catalogue-request-modal__contact a {
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.catalogue-request-modal__contact a:hover {
    color: var(--color-primary);
}

.catalogue-request-modal__form {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 30px;
}

.catalogue-request-modal__form label {
    display: block;
}

.catalogue-request-modal__form .product-enquiry-message {
    display: block;
}

.catalogue-request-modal__form textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px;
    border: 1px solid #cfd9e4;
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-heading);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    resize: vertical;
    outline: none;
}

.catalogue-request-modal__form label>span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.catalogue-request-modal__form input,
.catalogue-request-modal__form select {
    width: 100%;
    height: 58px;
    padding: 0 14px;
    border: 1px solid #cfd9e4;
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-heading);
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.catalogue-request-modal__form input:focus,
.catalogue-request-modal__form select:focus,
.catalogue-request-modal__form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.catalogue-request-modal__form input:disabled {
    background: #eef3f8;
    color: var(--color-muted);
    cursor: not-allowed;
    opacity: 1;
}

.catalogue-request-modal__form button {
    min-height: 58px;
    margin-top: 2px;
    padding: 14px 20px;
    border: 0;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 800;
}

.catalogue-request-modal__form button:hover {
    background: var(--color-primary-dark);
}

@media (max-width: 767.98px) {
    .catalogue-request-modal__body {
        grid-template-columns: 1fr;
    }

    .catalogue-request-modal__contact {
        padding: 24px;
    }

    .catalogue-request-modal__contact img {
        width: 170px;
        margin-bottom: 14px;
    }

    .catalogue-request-modal__contact p {
        display: none;
    }

    .catalogue-request-modal__form {
        padding: 24px;
    }
}

.catalogue-card__body {
    flex: 1 1 auto;
    padding: 0 20px 18px;
}

.catalogue-card__body p {
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.catalogue-card__body ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalogue-card__body li {
    position: relative;
    padding-left: 18px;
    color: #35404d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.catalogue-card__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translateY(-50%);
}

.catalogue-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #dfe7f2;
}

.catalogue-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    background: #edf4ff;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.catalogue-card__download:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.catalogue-card__request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    background: var(--color-white);
    border-top: 1px solid #dfe7f2;
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.catalogue-card__request:hover {
    color: var(--color-primary);
    background: #f7fbff;
}

.catalogue-support-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.catalogue-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.catalogue-support div {
    max-width: 780px;
}

.product-group {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-group__head {
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    background: var(--color-soft);
}

.product-group__head h2 {
    margin: 0;
    font-size: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.product-tile {
    min-height: 190px;
    padding: 24px;
    border-top: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
}

.product-tile:nth-child(3n) {
    border-right: 0;
}

.product-tabs-sidebar {
    position: relative;
    max-height: none;
    overflow: visible;
}

.product-tab-table {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px 12px;
    min-height: auto;
}

.product-tabs-section .row {
    align-items: flex-start;
}

.product-tabs-section .product-tabs-sidebar {
    position: sticky;
    top: 112px;
}

.product-tabs-section .product-tab-table {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(var(--color-ink-rgb), 0.06);
}

.product-tabs-section .product-tab-table strong {
    display: block;
    padding: 14px 16px;
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-line);
}

.product-tabs-section .product-tab-table button,
.product-tabs-section .product-tab-table a {
    position: relative;
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 13px 36px 13px 16px;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-white);
    text-align: left;
}

.product-tabs-section .product-tab-table button::after,
.product-tabs-section .product-tab-table a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.product-tabs-section .product-tab-table a:hover,
.product-tabs-section .product-tab-table a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-tab-content--listing-hidden {
    display: none;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.product-overview-card {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 190px;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    color: var(--color-heading);
    text-align: center;
    box-shadow: 0 14px 34px rgba(var(--color-ink-rgb), 0.05);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-overview-card img {
    width: 100%;
    height: 116px;
    object-fit: contain;
}

.product-overview-card span {
    max-width: 130px;
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.product-overview-card:hover,
.product-overview-card.active {
    border-color: var(--color-primary);
    box-shadow: 0 18px 42px rgba(var(--color-primary-rgb), 0.14);
    transform: translateY(-3px);
}

.product-main-tab-table {
    margin-bottom: 16px;
}

.product-tab-table button {
    width: auto;
    min-height: 44px;
    padding: 13px 16px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: normal;
    margin: 0;
}

.product-tab-table button[hidden] {
    display: none !important;
}

.product-tab-table button:last-child {
    border-bottom: 1px solid var(--color-line);
}

.product-tab-table button:hover,
.product-tab-table button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.product-tab-table button:hover::after,
.product-tab-table button.active::after {
    opacity: 1;
    color: var(--color-white);
    transform: translateX(0);
}

.product-detail-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

.product-detail-back:hover {
    color: var(--color-primary-dark);
}

.product-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.4;
}

.product-detail-breadcrumb a {
    color: var(--color-primary);
    font-weight: 700;
}

.product-detail-breadcrumb a:hover {
    color: var(--color-primary-dark);
}

.product-detail-breadcrumb strong {
    color: var(--color-heading);
    font-weight: 700;
}

.product-detail-card>.row:first-of-type {
    align-items: stretch !important;
}

.product-detail-image {
    --zoom-x: 50%;
    --zoom-y: 50%;
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    padding: 26px;
    border: 1px solid var(--color-primary);
    overflow: hidden;
    cursor: zoom-in;
}

.product-image-view-trigger {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(var(--color-primary-rgb), 0.22);
    border-radius: 50%;
    background: rgba(var(--color-white-rgb), 0.94);
    color: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(var(--color-ink-rgb), 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-image-view-trigger:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.product-image-view-trigger svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: contain;
    transform-origin: var(--zoom-x) var(--zoom-y);
    transition: transform 0.25s ease;
    will-change: transform;
}

.product-detail-image:hover img {
    transform: scale(1.75);
}

@media (max-width: 767.98px) {
    .product-detail-image {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }
    .product-detail-image img {
        max-height: 240px;
    }
}

.product-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    place-items: center;
    padding: 28px;
    background: rgba(9, 23, 42, 0.88);
}

.product-image-viewer.is-open {
    display: grid;
}

.product-image-viewer img {
    max-width: min(1080px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    background: var(--color-white);
    border: 1px solid rgba(var(--color-white-rgb), 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.product-image-viewer button {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(var(--color-white-rgb), 0.28);
    border-radius: 50%;
    background: rgba(var(--color-white-rgb), 0.1);
    color: var(--color-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.product-detail-card h2 {
    margin: 8px 0 14px;
    color: var(--color-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.08;
}

.product-detail-card p {
    color: var(--color-muted);
}

.product-detail-list {
    display: grid;
    gap: 5px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.product-detail-list li {
    position: relative;
    padding-left: 26px;
    color: var(--color-ink);
    font-weight: 400;
    font-size: 14px;
}

.product-detail-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 12px;
    height: 3px;
    background: var(--color-primary);
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    gap: 9px;
    max-width: 270px;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-detail-action svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail-action--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-detail-action--secondary {
    background: var(--color-white);
}

.product-detail-action:hover {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .product-detail-action {
        flex-basis: 100%;
        max-width: none;
    }
}

.product-detail-card>h3 {
    margin: 36px 0 18px;
    color: var(--color-heading);
    font-size: 24px;
    font-weight: 800;
}

.product-sub-grid>div>div {
    height: 100%;
    padding: 18px;
    border: 1px solid var(--color-line);
    cursor: default;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-sub-grid img {
    width: 100%;
    /* height: 50px; */
    height: 100px;
    object-fit: contain;
}

.product-sub-grid span {
    display: block;
    margin-top: 14px;
    color: var(--color-ink);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.product-sub-grid>div>div:hover {
    border-color: var(--color-primary);
    box-shadow: 0 14px 30px rgba(var(--color-ink-rgb), 0.1);
    transform: translateY(-4px);
}

.product-sub-grid--catalog>div>div {
    padding: 0;
    border: 0;
}

.product-sub-grid--catalog .product-sub-grid__image {
    display: grid;
    place-items: center;
    /* height: 100px; */
    height: 150px;
    margin: 0;
    /* padding: 12px; */
    padding: 0;
    border: 1px solid var(--color-line);
    background: var(--color-white);
}

.product-sub-grid--catalog .product-sub-grid__image img {
    width: 70%;
    /* height: 100%; */
    object-fit: contain;
}

.product-sub-grid--catalog .product-sub-grid__image img.product-image--compact {
    height: 130px;
}

#block-bleed-valves .product-sub-grid--catalog .product-sub-grid__image img,
.product-sub-grid--block-bleed .product-sub-grid__image img {
    width: 100%;
}

.product-sub-grid--catalog>div>div>span:last-child {
    margin-top: 10px;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    text-transform: none;
}

.product-sub-grid--catalog>div>div:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.product-sub-grid--catalog>div>div:hover .product-sub-grid__image {
    border-color: var(--color-primary);
}

#tube-fittings>.product-detail-card>.product-sub-grid {
    display: none;
}

.tube-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.tube-category-tabs button {
    padding: 11px 16px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tube-category-tabs button:hover,
.tube-category-tabs button.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tube-category-grid {
    display: block;
}

.tube-category {
    display: none;
    width: 100%;
    margin: 0;
}

.tube-category.is-active {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tube-category h4 {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    padding: 0 0 12px;
    background: transparent;
    color: var(--color-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    border-bottom: 3px solid var(--color-primary);
}

.tube-category__item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    min-height: 220px;
    gap: 14px;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    cursor: default;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tube-category__item span {
    display: block;
    margin-top: 8px;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.tube-category__item img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.tube-category__item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 14px 30px rgba(var(--color-ink-rgb), 0.1);
    transform: translateY(-4px);
}

.tube-category__item:has(.tube-category__image) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: 0;
    border: 0;
}

.tube-category__item .tube-category__image {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 220px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    box-sizing: border-box;
}

.tube-category__item .tube-category__image img {
    position: absolute;
    inset: 12px;
    display: block;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    max-width: calc(100% - 24px);
    max-height: calc(100% - 24px);
    object-fit: contain;
}

.tube-category__item .tube-category__name {
    margin: 0;
    padding: 0 6px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    text-transform: none;
}

.tube-category__item:has(.tube-category__image):hover {
    box-shadow: none;
    transform: none;
}

.tube-category__item:has(.tube-category__image):hover .tube-category__image {
    border-color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .catalogue-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogue-support {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-card h2 {
        font-size: 18px;
    }

    .tube-category.is-active {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-tabs-sidebar {
        position: static !important;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .product-tab-table button {
        min-height: 46px;
        border: 1px solid var(--color-line);
    }

    .product-tab-table button::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .catalogue-section-head {
        margin-bottom: 28px;
        text-align: left;
    }

    .catalogue-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalogue-card {
        min-height: 238px;
    }

    .catalogue-card__top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        grid-template-columns: none;
        width: 100%;
        padding: 16px 16px 0;
    }

    .catalogue-card__icon {
        width: 38px;
        height: 38px;
    }

    .catalogue-card__image {
        min-height: 142px;
        padding-inline: 18px;
    }

    .catalogue-card__image img {
        height: 138px;
    }

    .catalogue-card__body {
        padding-inline: 16px;
    }

    .catalogue-support-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .tube-category-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tube-category-tabs button {
        width: 100%;
        padding: 10px 8px;
        text-align: center;
    }

    .tube-category__item {
        min-height: 210px;
    }

    .tube-category__item img {
        height: 130px;
    }

    .tube-category.is-active {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-tab-table button {
        flex: 1 1 calc(50% - 6px);
        min-height: 48px;
        justify-content: center;
        padding: 12px 10px;
        font-size: 12px;
        text-align: center;
        white-space: normal;
    }

}

.infra-grid {
    grid-template-columns: repeat(4, 1fr);
}

.infra-grid span {
    color: var(--color-primary);
    font-weight: 800;
}

.infra-grid h2,
.service-grid h2,
.catalogue-request h2 {
    font-size: 24px;
    margin-top: 12px;
}

.catalogue-request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--color-navy);
    color: var(--color-white);
}

.catalogue-request p {
    color: rgba(var(--color-white-rgb), 0.74);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 700;
}

.enquiry-form {
    display: grid;
    gap: 16px;
}

.enquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--color-navy);
    font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    padding: 12px 14px;
    font: inherit;
    color: var(--color-ink);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: 3px solid rgba(var(--color-primary-rgb), 0.14);
    border-color: var(--color-primary);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-page-layout .contact-form-panel {
    width: 100%;
}

.contact-summary-section {
    padding-bottom: 0;
    background: var(--color-white);
}

.contact-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-summary-card {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 210px;
    padding: 34px 34px 28px;
    border: 1px solid #bfc5cc;
    background: var(--color-white);
    text-align: center;
}

.contact-summary-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
}

.contact-summary-card__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-summary-card h2 {
    margin: 0 0 8px;
    color: #071833;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
}

.contact-summary-card p {
    max-width: 320px;
    margin: 0;
    color: #16243a;
    font-size: 16px;
    line-height: 1.55;
}

.contact-summary-card strong,
.contact-summary-card a {
    color: #16243a;
    font-size: 16px;
    line-height: 1.4;
}

.contact-form-panel {
    min-height: 500px;
    /* padding: 0 42px; */
    background: var(--color-white);
    /* border-top: 3px solid var(--color-primary); */
}

.contact-form-panel>span,
.contact-details-panel>span {
    display: block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-form-panel h2,
.contact-details-panel h2 {
    margin: 0 0 30px;
    color: var(--color-heading);
    font-size: 27px;
    font-weight: 900;
    line-height: 1.2;
}

.contact-form-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 30px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    min-height: 58px;
    padding: 15px 18px;
    border: 1px solid #d5dfe9;
    border-radius: 6px;
    background: #f7fbff;
    color: var(--color-ink);
    font: inherit;
    font-size: 16px;
}

.contact-form-panel textarea {
    grid-column: 1 / -1;
    min-height: 150px;
    resize: vertical;
}

.form-recaptcha {
    grid-column: 1 / -1;
    min-height: 78px;
    overflow: hidden;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    margin: 0 0 20px;
    padding: 12px 15px;
    border-radius: 6px;
}

.form-status--success {
    background: #e9f8ef;
    color: #176b3a;
}

.form-status--error {
    background: #fff0f0;
    color: #a32626;
}

.form-success-modal .modal-content {
    position: relative;
    align-items: center;
    padding: 42px 30px 34px;
    border: 0;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(var(--color-ink-rgb), 0.25);
}

.form-success-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 28px;
    line-height: 1;
}

.form-success-modal__icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #e9f8ef;
    color: #20a45b;
    font-size: 42px;
    font-weight: 800;
}

.form-success-modal h2 {
    margin: 0 0 10px;
    color: var(--color-primary);
}

.form-success-modal p {
    margin: 0 0 26px;
    color: var(--color-muted);
}

.form-success-modal__button {
    min-width: 130px;
    padding: 12px 24px;
    border: 0;
    border-radius: 5px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    outline: 3px solid rgba(var(--color-primary-rgb), 0.14);
    border-color: var(--color-primary);
}

.contact-form-panel button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 153px;
    min-height: 60px;
    margin-top: 22px;
    padding: 16px 28px;
    border: 0;
    background: var(--color-primary);
    color: var(--color-white);
    font: inherit;
    font-size: 18px;
    cursor: pointer;
}

.contact-details-panel {
    padding: 50px 42px;
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-details-panel>span,
.contact-details-panel h2 {
    color: var(--color-white);
}

.contact-details-list {
    display: grid;
}

.contact-details-list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0 26px;
    border-bottom: 1px solid rgba(var(--color-white-rgb), 0.24);
}

.contact-details-list article:first-child {
    padding-top: 0;
}

.contact-details-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-details-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 46px;
    background: var(--color-white);
    color: var(--color-primary);
}

.contact-details-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details-list h3 {
    margin: 0 0 8px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 900;
}

.contact-details-list p,
.contact-details-list a {
    margin: 0;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.62;
}

.contact-map-section {
    padding-top: 0;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-map-card {
    display: grid;
    grid-template-rows: auto minmax(320px, 1fr);
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: var(--color-white);
}

.contact-map-card__body {
    padding: 24px;
    border-bottom: 1px solid var(--color-line);
}

.contact-map-card h3 {
    margin: 0 0 10px;
    color: var(--color-heading);
    font-size: 22px;
    font-weight: 900;
}

.contact-map-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.footer-cta {
    background: var(--color-primary);
    color: var(--color-white);
}

.home-consultation {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 650px;
    padding: clamp(58px, 7vw, 92px) 0;
    overflow: hidden;
    background: url("../img/hero2-.jpg") center / cover no-repeat;
}

.home-consultation::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 14, 30, 0.76);
}

.home-consultation__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(52px, 7vw, 112px);
    align-items: center;
}

.home-consultation__content {
    color: var(--color-white);
}

.home-consultation__content h2 {
    margin: 0 0 24px;
    color: var(--color-white);
    font-size: clamp(32px, 38px, 50px);
    font-weight: 700;
    line-height: 1.15;
}

.home-consultation__content>p {
    max-width: 600px;
    margin: 0 0 38px;
    color: rgba(var(--color-white-rgb), 0.92);
    font-size: 17px;
    line-height: 1.6;
}

.home-consultation__contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 24px;
    border-top: 1px solid rgba(var(--color-white-rgb), 0.28);
}

.home-consultation__contacts a {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding-right: 20px;
    color: var(--color-white);
}

.home-consultation__contacts a+a {
    padding-left: 26px;
    border-left: 1px solid rgba(var(--color-white-rgb), 0.28);
}

.home-consultation__contacts a>span {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(var(--color-white-rgb), 0.8);
    border-radius: 50%;
    color: var(--color-primary);
}

.home-consultation__contacts svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-consultation__contacts small {
    align-self: end;
    color: rgba(var(--color-white-rgb), 0.9);
    font-size: 13px;
}

.home-consultation__contacts strong {
    align-self: start;
    font-size: clamp(16px, 1.3vw, 21px);
    font-weight: 500;
    white-space: nowrap;
}

.home-consultation__form {
    padding: clamp(34px, 4vw, 64px);
    background: rgba(248, 248, 249, 0.97);
}

.home-consultation__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-consultation__form input[type="text"],
.home-consultation__form input[type="email"],
.home-consultation__form input[type="tel"],
.home-consultation__form textarea {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 15px;
    border: 1px solid #aeb3ba;
    border-radius: 0;
    outline: 0;
    background: var(--color-white);
    color: var(--color-ink);
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-consultation__form textarea {
    min-height: 88px;
    resize: vertical;
}

.home-consultation__form input:focus,
.home-consultation__form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.12);
}

.home-consultation__full {
    grid-column: 1 / -1;
}

.home-consultation__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 18px;
    color: var(--color-heading);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.home-consultation__consent input {
    flex: 0 0 auto;
    margin-top: 2px;
}

.home-consultation__form button {
    min-width: 104px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-consultation__form button:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .home-consultation__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-consultation__content {
        max-width: 700px;
    }
}

@media (max-width: 575.98px) {
    .home-consultation {
        padding: 48px 0;
    }

    .home-consultation__content h2 {
        font-size: 23px;
    }

    .home-consultation__content>p {
        font-size: 15px;
    }

    .home-consultation__contacts {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-consultation__contacts a+a {
        padding-top: 22px;
        padding-left: 0;
        border-top: 1px solid rgba(var(--color-white-rgb), 0.22);
        border-left: 0;
    }

    .home-consultation__fields {
        grid-template-columns: 1fr;
    }

    .home-consultation__full {
        grid-column: auto;
    }

    .home-consultation__form {
        padding: 24px 18px;
    }
}

.footer-cta__inner {
    justify-content: space-between;
    gap: 24px;
    padding: 44px 0;
}

.footer-cta .eyebrow,
.footer-cta h2 {
    color: var(--color-white);
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.site-footer {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
    color: var(--color-ink);
    box-shadow: inset 0 1px 0 rgba(var(--color-white-rgb), 0.75);
    overflow: hidden;
}

.footer-grid {
    align-items: flex-start;
    padding: 18px 0 16px;
}

.footer-brand-row {
    padding-top: 42px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-line);
}

.brand--footer {
    color: var(--color-ink);
    margin-bottom: 12px;
}

.brand--footer .brand__logo {
    width: 150px;
    height: auto;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #d6e1ed;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.footer-social .fi,
.footer-social .bi {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-size: 14px;
    line-height: 1;
}

.footer-social .fi::before,
.footer-social .bi::before {
    display: block;
    line-height: 1;
}

.footer-social svg {
    display: block;
    width: 24px;
    height: 24px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 52, 95, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease,
        background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(0, 82, 145, 0.3);
    outline-offset: 3px;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

.brand--footer small,
.site-footer p {
    color: var(--color-muted);
}

.footer-about p {
    max-width: 235px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.site-footer h3 {
    color: #10254b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: 0 0 9px;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.footer-link-list--columns {
    column-count: 2;
    column-gap: 34px;
}

.footer-link-list li {
    position: relative;
    padding-left: 15px;
    break-inside: avoid;
}

.footer-link-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
}

.footer-link-list a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link-list a:hover {
    padding-left: 3px;
}

.footer-quick-links {
    padding-left: 14px;
}

.footer-contact-block strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.footer-contact-block p {
    position: relative;
    margin: 0 0 8px;
    padding-left: 25px;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.footer-contact-block b {
    color: var(--color-ink);
    font-weight: 700;
}

.footer-contact-icon {
    position: absolute;
    left: 0;
    top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-addresses {
    padding: 12px 12px 24px;
}

.footer-address h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: var(--color-ink);
    text-transform: none;
}

.footer-address-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    color: var(--color-primary);
    flex: 0 0 auto;
}

.footer-address-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-address p {
    margin: 0;
    max-width: 690px;
    font-size: 14px;
    line-height: 1.55;
}

.copyright {
    padding: 9px 0 10px;
    border-top: 1px solid #d6dde7;
    font-size: 14px;
    color: #111827;
}

.footer-reference-grid {
    /* padding-top: clamp(45px, 3vw, 104px); */
    padding-bottom: clamp(45px, 3vw, 88px);
}

.footer-reference-grid .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    margin: 0 !important;
}

.footer-reference-grid .row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

.footer-reference-column {
    min-width: 0;
}

.site-footer .footer-reference-about .brand--footer {
    display: inline-flex;
    margin: 0 0 26px;
}

.site-footer .footer-reference-about .brand__logo {
    width: min(100px, 100%);
}

.site-footer .footer-reference-about>p {
    max-width: 330px;
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.75;
}

.footer-reference-line {
    display: block;
    width: 22%;
    height: 3px;
    margin: 22px 0 40px;
    background: var(--color-primary);
}

.site-footer .footer-reference-column h3 {
    margin: 0 0 24px;
    color: var(--color-heading);
    font-size: clamp(20px, 20px, 29px);
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.site-footer .footer-reference-address {
    max-width: 350px;
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.75;
}

.site-footer .footer-reference-contact p {
    position: relative;
    margin: 0 0 22px;
    padding-left: 34px;
    color: var(--color-ink);
    font-size: 16px;
    /* font-weight: 700; */
    line-height: 1.45;
}

.site-footer .footer-reference-contact .footer-contact-icon {
    top: 1px;
    width: 21px;
    height: 21px;
}

.site-footer .footer-reference-contact .footer-contact-icon svg {
    width: 21px;
    height: 21px;
}

.footer-reference-about .footer-social {
    margin-top: 28px;
    gap: 18px;
}

.footer-reference-about .footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
}

.footer-reference-about .footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-reference-about .footer-social .fi,
.footer-reference-about .footer-social .bi {
    font-size: 21px;
}


.site-footer .copyright {
    padding-top: 22px;
    padding-bottom: 22px;
}

@media (max-width: 1199.98px) {
    .footer-reference-line {
        margin-bottom: 32px;
    }
}

@media (max-width: 991.98px) {
    .footer-reference-grid .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .footer-reference-grid .row {
        grid-template-columns: 1fr;
    }

    .footer-reference-grid {
        padding-top: 52px;
        padding-bottom: 48px;
    }

    .footer-reference-line {
        width: 62px;
        margin: 0 0 24px;
    }

    .site-footer .footer-reference-column h3 {
        margin-bottom: 20px;
        font-size: 23px;
    }

    .site-footer .footer-reference-about>p,
    .site-footer .footer-reference-address,
    .site-footer .footer-reference-contact p {
        font-size: 15px;
    }

    .site-footer .copyright {
        font-size: 12px;
        text-align: center;
    }
}

body {
    background: var(--color-white);
}

.topbar {
    background: var(--color-primary);
    color: var(--color-white);
}

.topbar a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
}

.nav {
    min-height: 74px;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 0;
    box-shadow: none;
}



.brand strong {
    color: var(--color-primary);
    font-size: 24px;
}

.nav-menu {
    gap: 0;
}

.nav-menu a {
    border-radius: 0;
    padding: 27px 0;
    color: var(--color-ink);
    text-transform: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-menu a:hover,
.nav-menu .is-active {
    background: transparent;
    color: var(--color-primary);
}

.nav-menu .dropdown-menu a {
    padding: 14px 34px;
    text-transform: none;
}

.hero {
    min-height: 500px;
    border-bottom: 4px solid var(--color-primary);
    border-bottom-width: 1px;
}

.hero__image {
    background-size: cover;
    background-position: center;
}

.hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(var(--color-ink-rgb), 0.05), rgba(var(--color-ink-rgb), 0.18));
}

.hero-slider__wrap {
    min-height: 500px;
    padding-bottom: 28px;
}

.simple-slider__caption {
    width: min(620px, calc(100% - 220px));
    background: rgba(var(--color-white-rgb), 0.93);
    color: var(--color-navy);
    border-left: 6px solid var(--color-primary);
    border-radius: 0;
    padding: 20px 24px;
    backdrop-filter: none;
}

.simple-slider__caption h1 {
    color: var(--color-navy);
    font-size: clamp(26px, 4vw, 44px);
}

.simple-slider__caption p {
    max-width: 560px;
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 16px;
}

.simple-slider__caption .btn--outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-white);
}

.hero__actions {
    margin-top: 20px;
}

.btn {
    border-radius: 0;
    min-height: 42px;
    padding: 10px 18px;
    box-shadow: none;
}

.btn:hover {
    transform: none;
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.hero-slider__controls {
    right: 0;
    bottom: 28px;
    gap: 10px;
}

.home-page .hero-slider__controls {
    right: clamp(28px, 8vw, 130px);
    bottom: 30px;
}

.hero-slider__arrow {
    width: 38px;
    height: 38px;
    border-radius: 0;
}

.hero-slider__dots button {
    width: 28px;
    height: 4px;
}

.section {
    /* padding: 58px 0; */
    padding: 40px 0;
}

.section--muted {
    background: var(--color-soft);
}

.section-head {
    margin-bottom: 28px;
}

.section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head--center h2::after {
    content: "";
    display: block;
    width: 62px;
    height: 3px;
    background: var(--color-white);
    margin: 14px auto 0;
}

.product-section-head {
    margin-bottom: 42px;
    text-align: center;
}

.product-section-head span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.product-section-head span::before,
.product-section-head span::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    background: currentColor;
}

.product-section-head h2 {
    margin-bottom: 16px;
    color: var(--color-navy);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.product-section-head h2 strong {
    color: var(--color-primary);
    font-weight: inherit;
}

.product-section-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--color-ink);
    font-size: 16px;
    line-height: 1.55;
}

.services-solutions__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.services-solutions__head span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.services-solutions__head span::before,
.services-solutions__head span::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: currentColor;
}

.services-solutions__head h1 {
    margin: 0 0 10px;
    color: var(--color-navy);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.16;
}

.services-solutions__head h1 strong {
    color: var(--color-primary);
    font-weight: inherit;
}

.services-solutions__head p {
    max-width: 570px;
    margin: 0 auto;
    color: var(--color-ink);
    font-size: 14px;
    line-height: 1.55;
}

.services-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-solution-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 35px;
    align-items: center;
    /* min-height: 122px; */
    min-height: 145px;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid rgba(18, 50, 91, 0.08);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(18, 50, 91, 0.08);
}

.service-solution-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    background: rgba(44, 112, 185, 0.11);
    border-radius: 50%;
}

.service-solution-card__icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-solution-card__content h2 {
    margin: 0 0 8px;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-solution-card__content p {
    margin: 0;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.65;
}

.service-solution-card__image {
    display: block;
    width: 92px;
    height: 82px;
    overflow: hidden;
    border-radius: 6px;
    background: #eef4fb;
}

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

.product-showcase-wrap {
    width: 100%;
    padding-inline: 0;
}

.showcase-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    color: var(--color-ink);
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    box-shadow: 0 18px 42px rgba(var(--color-ink-rgb), 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.12s ease;
}

.showcase-card__image {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1.32;
    background: var(--color-white);
    overflow: hidden;
    transform: translateZ(24px);
}

.showcase-card__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-card__caption {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    background: transparent;
    transform: translateZ(18px);
}

.showcase-card__caption h5 {
    color: var(--color-ink);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.showcase-card__caption span {
    content: '';
    position: absolute;
    width: 34px;
    background: var(--color-primary);
    height: 3px;
    border-radius: 20px;
}

.showcase-card__caption p {
    flex: 1 1 auto;
    color: var(--color-ink);
    font-size: 14px;
    margin-top: 20px;
}

.showcase-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    margin-top: auto;
    padding: 11px 22px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.showcase-card__button:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.product-benefits-strip {
    padding: 38px 0;
    background: var(--color-line);
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.product-benefit {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    padding-right: 28px;
    align-items: center;
    padding-right: 28px;
    border-right: 1px solid rgb(70 70 70 / 18%);
}

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

.product-benefit__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--color-primary);
}

.product-benefit__icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-benefit h3 {
    margin-bottom: 8px;
    color: var(--color-navy);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.12;
}

.product-benefit p {
    margin: 0;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.commitment-head {
    max-width: 860px;
    margin-bottom: 38px;
    text-align: center;
}

.commitment-head span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.commitment-head span::before,
.commitment-head span::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    background: currentColor;
}

.commitment-head h2 {
    margin-bottom: 18px;
    color: var(--color-navy);
    ;
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 900;
    font-size: 30px;
    line-height: 1.12;
}

.commitment-head h2 strong {
    color: var(--color-primary);
    font-weight: inherit;
}

.commitment-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--color-ink);
    ;
    font-size: 16px;
    line-height: 1.55;
}

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

.commitment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px 18px 26px;
    background: var(--color-white);
    border: 1px solid #d9e1ec;
    border-radius: 8px;
    box-shadow: 0 15px 38px rgba(var(--color-ink-rgb), 0.07);
    overflow: hidden;
}

.commitment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24%;
    width: 52%;
    height: 8px;
    background: var(--color-primary);
    border-radius: 0 0 8px 8px;
}

.commitment-card--dark::before {
    background: var(--color-navy);
}

.commitment-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2.05;
    object-fit: cover;
}

.commitment-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 0 0;
    text-align: center;
}

.commitment-card h3 {
    margin-bottom: 12px;
    color: #071229;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.commitment-card h3::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin: 10px auto 0;
    background: var(--color-primary);
}

.commitment-card p {
    /* min-height: 112px; */
    margin: 0 auto 24px;
    color: #111827;
    font-size: 17px;
    line-height: 1.65;
}

.commitment-card ul {
    margin: auto 0 0;
    padding: 26px 0 0;
    border-top: 1px solid #d9e1ec;
    list-style: none;
    text-align: left;
}

.commitment-card li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    color: #111827;
    font-size: 14.5px;
    line-height: 1.45;
}

.commitment-card li:last-child {
    margin-bottom: 0;
}

.commitment-card li span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 900;
}

.commitment-card--dark li span {
    background: var(--color-navy);
}

.commitment-card li strong {
    font-weight: 900;
}

.mission-vision-section {
    background: var(--color-white);
}

.mission-vision-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.mission-vision-title--right {
    justify-content: center;
    margin-top: 36px;
}

.mission-vision-title span {
    width: 64px;
    height: 3px;
    background: var(--color-primary);
    flex: 0 0 auto;
}

.mission-vision-title h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.mission-vision-row {
    position: relative;
    margin-bottom: 10px;
}

.mission-vision-media {
    min-height: 300px;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mission-vision-media--mission {
    background-image: url("../img/hero-industrial.png");
}

.mission-vision-media--vision {
    background-image: url("../img/slider/2.jpg");
}

.mission-vision-content {
    position: relative;
    padding: 8px 0 8px 26px;
    border-left: 1px solid var(--color-line);
}

.mission-vision-row--vision .mission-vision-content {
    padding-left: 0;
    padding-right: 26px;
    border-left: 0;
    border-right: 1px solid var(--color-line);
}

.mission-vision-content::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: -1px;
    width: 3px;
    background: var(--color-primary);
}

.mission-vision-row--vision .mission-vision-content::before {
    left: auto;
    right: -1px;
}

.mission-vision-content article+article {
    margin-top: 24px;
}

.mission-vision-content h3 {
    margin: 0 0 8px;
    color: var(--color-heading);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.mission-vision-content p {
    margin: 0;
    color: var(--color-ink);
    font-size: 14px;
    line-height: 1.75;
}

.mission-vision-brand {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-brand img {
    width: min(360px, 90%);
    margin: 0 auto 34px;
}

.mission-vision-brand h2 {
    max-width: 420px;
    margin: 0 0 18px;
    color: var(--color-heading);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.08;
}

.mission-vision-brand p {
    max-width: 460px;
    margin: 0;
    color: var(--color-muted);
}

.mission-vision-tabs {
    height: 100%;
    padding: clamp(24px, 3vw, 44px);
}

.mission-vision-tabs .nav {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.mission-vision-tabs .nav button {
    flex: 1 1 0;
    padding: 12px 18px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mission-vision-tabs .nav button:hover,
.mission-vision-tabs .nav button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .mission-vision-brand {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }
}

@media (max-width: 575.98px) {
    .mission-vision-tabs .nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mission-vision-tabs .nav button {
        width: 100%;
        padding: 11px 10px;
    }
}

.feature-strip {
    margin-top: 0;
    box-shadow: none;
    border: 1px solid var(--color-line);
    border-radius: 0;
}

.feature-strip article {
    padding: 24px;
}

.stats {
    border: 1px solid var(--color-line);
}

.stats div {
    text-align: center;
}

.stats strong {
    font-size: clamp(30px, 4vw, 46px);
}

.page-hero {
    --page-hero-image: url("../img/hero-industrial.png");
    display: flex;
    align-items: center;
    min-height: 238px;
    padding: 52px 0;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    background: linear-gradient(90deg, rgb(18 28 34 / 92%), rgb(18 28 34 / 84%)), var(--page-hero-image) var(--page-hero-position, right center) / cover no-repeat;
}

.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.page-hero__content h1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    max-width: none;
    color: var(--color-white);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 800;
    line-height: 1.1;
}

.page-hero__content h1::before {
    content: "";
    width: 16px;
    height: 3px;
    background: var(--color-primary);
}

.page-hero__content h1::after {
    content: "";
    width: 30px;
    height: 3px;
    margin-left: -8px;
    background: var(--color-white);
}

.page-hero__breadcrumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    min-height: 56px;
    padding: 15px 28px;
    border-radius: 999px;
    background: rgba(var(--color-white-rgb), 0.96);
    color: var(--color-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.page-hero__breadcrumb svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-hero__breadcrumb a,
.page-hero__breadcrumb span {
    color: inherit;
    white-space: nowrap;
}

.page-hero__breadcrumb a:hover {
    color: var(--color-primary);
}

.page-hero__breadcrumb span::before {
    content: "/";
    display: inline-block;
    margin-right: 10px;
    color: #738296;
    font-weight: 500;
}

.page-hero__breadcrumb span {
    color: var(--color-primary);
    font-weight: 800;
}

.page-hero h1 {
    max-width: none;
    color: var(--color-white);
    font-size: clamp(34px, 3vw, 46px);
}

.page-hero p {
    max-width: 640px;
    color: rgba(var(--color-white-rgb), 0.82);
}

.page-hero .eyebrow {
    color: var(--color-white);
}

.page-hero--about {
    --page-hero-image: url("../img/banner/about-banner.jpeg");
    --page-hero-position: right center;
}

.page-hero--infra {
    --page-hero-image: url("../img/banner/infra-banner.png");
    --page-hero-position: right 77%;
}

.page-hero--products {
    --page-hero-image: url("../img/banner/product-banner.png");
    --page-hero-position: center 78%;
}

.page-hero--catalogue {
    --page-hero-image: url("../img/cataloge-banner.png");
    --page-hero-position: right center;
}

.page-hero--contact {
    --page-hero-image: url("../img/banner/contact-banner.png");
    --page-hero-position: right center;
}

.page-hero--services {
    --page-hero-image: url("../img/banner/service-banner.png");
    --page-hero-position: center;
}

.page-hero--business {
    --page-hero-image: url("../img/banner/service-banner.jpeg");
    --page-hero-position: right center;
}

.business-opportunity-section {
    background: var(--color-white);
}

.business-opportunity {
    max-width: 980px;
}

.business-opportunity__head {
    margin-bottom: 28px;
    text-align: left;
}

.business-opportunity__head span::before {
    display: none;
}

.business-opportunity__head span::after {
    width: 46px;
}

.business-opportunity__head p {
    margin-left: 0;
}

.business-opportunity__text {
    padding: 28px 0;
}

.business-opportunity__text h3 {
    margin: 0 0 12px;
    color: var(--color-heading);
    font-size: 21px;
    font-weight: 900;
}

.business-opportunity__text p {
    margin: 0 0 14px;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.65;
}

.business-opportunity__text p:last-child {
    margin-bottom: 0;
}

.business-opportunity__text a {
    color: var(--color-primary);
    font-weight: 800;
}

.business-enquiry-section {
    padding-top: 0;
    background: var(--color-white);
}

.business-enquiry {
    max-width: 980px;
}

.business-enquiry__form {
    min-height: auto;
    border: 1px solid var(--color-line);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 14px 34px rgba(var(--color-ink-rgb), 0.07);
}

@media (max-width: 575.98px) {
    .business-opportunity__head {
        text-align: center;
    }

    .business-opportunity__head span::before {
        display: block;
    }

    .business-opportunity__head p {
        margin-left: auto;
    }

    .business-opportunity__text {
        padding: 22px 0;
    }

    .business-enquiry {
        width: min(100% - 32px, 980px);
    }

    .business-enquiry__form.contact-form-panel {
        padding: 28px 18px !important;
    }

    .business-enquiry__form .contact-form-panel__grid {
        gap: 14px;
    }

    .business-enquiry__form .form-recaptcha {
        max-width: 100%;
        overflow: hidden;
    }

}

@media (max-width: 575.98px) {
    .page-hero {
        min-height: 220px;
        padding: 34px 0;
        background-color: var(--color-primary);
        background-position: center;
        background-size: cover;
    }

    .page-hero .container {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100% - 32px, var(--container));
    }

    .page-hero h1 {
        max-width: none;
        font-size: 31px;
        line-height: 1.1;
    }

    .page-hero__breadcrumb {
        justify-self: start;
        min-width: 0;
        min-height: 48px;
        padding: 13px 28px;
        font-size: 14px;
    }
}

.catalogue-layout {
    grid-template-columns: 240px 1fr;
}

.catalogue-nav,
.product-group,
.values-grid article,
.service-grid article,
.infra-grid article,
.contact-card,
.enquiry-form,
.catalogue-request {
    border-radius: 0;
    box-shadow: none;
}

.product-group__head {
    background: var(--color-white);
    border-bottom: 3px solid var(--color-primary);
}

.product-tile {
    min-height: 150px;
}

.footer-cta {
    background: var(--color-primary);
}

.footer-cta__inner {
    padding: 30px 0;
}

.footer-cta h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.hero--image-slider .hero__image::after {
    background: none;
}

.hero--image-slider .hero-slider__wrap {
    align-items: end;
    pointer-events: none;
}

.hero--image-slider .hero-slider__controls {
    pointer-events: auto;
}

.home-page .brand__logo {
    width: 150px;
    height: auto;
    transition: width 0.3s ease;
}

.home-page .site-header.is-sticky .brand__logo {
    width: 95px;
}

.home-page .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-page .site-header.is-sticky {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 10px 26px rgba(var(--color-ink-rgb), 0.08);
}

.home-page .hero {
    min-height: 80vh;
    padding-top: 80px;
    /* padding-top: 150px; */
}

.home-page .hero__media {
    top: 0;
}

.home-page .hero-slider__wrap {
    min-height: 80vh;
}

.home-page .hero--product-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgb(255 255 255 / 97%) 0%, rgb(255 255 255 / 92%) 50%, rgba(var(--color-white-rgb), 0.98) 100%), url(../img/industries/process-instrumentation.jpg) center / cover no-repeat;
    /* background: linear-gradient(90deg, rgb(227 227 227 / 97%) 0%, rgb(201 201 201 / 92%) 50%, rgb(219 219 219 / 98%) 100%), url(../img/industries/process-instrumentation.jpg) center / cover no-repeat; */
    border-bottom: 1px solid var(--color-line);
}

.home-page .hero--product-slider .hero-slider__wrap {
    min-height: 72vh;
}

.home-page .hero-slide__text {
    padding: 28px 0;
}

.home-page .hero-slide__text .eyebrow {
    padding: 8px 12px;
    background: rgba(var(--color-primary-rgb), 0.08);
    font-size: 13px;
}

.home-page .hero-slide__image {
    position: relative;
}

.home-page .hero-slide__image::before {
    content: "";
    position: absolute;
    width: min(560px, 88%);
    aspect-ratio: 1;
    border: 1px solid var(--color-line);
    background: #2c70b926;
    transform: rotate(6deg);
}

.home-page .hero-slide__image img {
    position: relative;
    z-index: 1;
}

.home-page .home-hero-layout {
    display: grid;
    grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 0.8fr);
    align-items: center;
    gap: clamp(0px, 0vw, 56px);
    width: min(var(--container), calc(100% - 40px));
    max-width: var(--container);
    margin: 0 auto;
    padding: 30px 0 145px;
}

.home-page .home-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 600px;
    justify-self: start;
    padding: 0;
}

.home-page .home-hero-copy::before {
    content: "";
    position: absolute;
    inset: -34px -74px -34px -26px;
    z-index: -1;
    /* background: linear-gradient(90deg, rgba(var(--color-white-rgb), 0.96) 0%, rgba(var(--color-white-rgb), 0.9) 62%, rgba(var(--color-white-rgb), 0) 100%); */
    pointer-events: none;
}

.home-page .home-hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.home-page .home-hero-copy .eyebrow::after {
    content: "";
    width: 44px;
    height: 3px;
    background: var(--color-primary);
}

.home-page .home-hero-copy h1 {
    margin-top: 12px;
    /* color: var(--color-primary); */
    font-size: 69px;
    font-weight: 700;
    line-height: 1.06;
    text-transform: none;
}

.home-page .home-hero-copy h1 span {
    color: var(--color-primary);
}

.home-page .home-hero-copy p {
    max-width: 570px;
    margin-top: 22px;
    color: var(--color-ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.home-hero-points {
    display: grid;
    gap: 8px;
    margin: 22px 0 0;
    padding-left: 20px;
    color: #5f6874;
    font-size: 16px;
    line-height: 1.45;
}

.home-hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 32px;
}

.home-hero-features article {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-height: 96px;
    padding: 0 16px;
    border-right: 1px solid #d9e4f1;
    text-align: center;
}

.home-hero-features article:last-child {
    border-right: 0;
}

.home-hero-features article>span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 4px;
    border: 1px solid #cfe0f5;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--color-primary);
}

.home-hero-features svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero-features strong {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.home-hero-features small {
    color: #526072;
    font-size: 11px;
    line-height: 1.25;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.home-hero-actions .btn {
    gap: 12px;
    min-width: 192px;
    min-height: 44px;
    border-radius: 4px;
    font-size: 15px;
}

.home-hero-actions .btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .home-hero-products {
    position: relative;
    min-height: 530px;
    max-width: 760px;
    isolation: isolate;
    justify-self: end;
    overflow: visible;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.home-page .home-hero-products.is-dragging {
    cursor: grabbing;
}

.home-page .home-hero-products img {
    pointer-events: none;
}

.home-page .home-hero-products::after {
    display: none;
}

.home-page .home-hero-products .hero-slide {
    grid-template-columns: 1fr;
    gap: 0;
}

.home-page .home-hero-products .hero-slide__image {
    min-height: 530px;
    justify-items: center;
    padding: 0;
}

.home-page .home-hero-products .hero-slide__image::before {
    display: none;
}

.home-page .home-hero-products .hero-slide__image img {
    width: min(720px, 100%);
    max-height: 500px;
    margin-left: 0;
    margin-bottom: 0;
    transform: translateX(-18px) scale(0.98);
    opacity: 1;
    filter: drop-shadow(0 34px 44px rgba(var(--color-ink-rgb), 0.2));
}

.home-page .home-hero-products .hero-slide.is-active .hero-slide__image img {
    transform: translateX(0) scale(1);
}

.home-page .home-hero-products .hero-slide--featured .hero-slide__image img {
    width: min(900px, 124%);
    max-height: 610px;
}

.home-page .home-hero-products .hero-slide--featured.is-active .hero-slide__image img {
    transform: translateX(0) scale(1.14);
}

.home-page .home-hero-products .hero-slide--first .hero-slide__image img {
    width: min(1150px, 155%);
    max-height: 720px;
}

.home-page .home-hero-products .hero-slide--first.is-active .hero-slide__image img {
    transform: translateX(-50px) scale(1.38);
}

.home-page .home-hero-products .hero-slide--block-bleed .hero-slide__image img {
    width: min(720px, 100%);
    max-height: 500px;
}

.home-page .home-hero-products .hero-slide--block-bleed.is-active .hero-slide__image img {
    transform: translateX(0) scale(1);
}

.home-hero-metrics {
    position: absolute;
    left: -82px;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 112px;
    padding: 18px clamp(24px, 4vw, 70px) 16px 120px;
    color: var(--color-white);
    background: var(--color-primary-dark);
    clip-path: polygon(86px 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.home-hero-metrics article {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    text-align: center;
}

.home-hero-metrics article+article {
    border-left: 1px solid rgba(var(--color-white-rgb), 0.16);
}

.home-hero-metrics span {
    display: grid;
    place-items: center;
    color: var(--color-white);
}

.home-hero-metrics svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero-metrics strong {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.home-hero-metrics small {
    color: rgba(var(--color-white-rgb), 0.92);
    font-size: 13px;
    line-height: 1.25;
}

.home-page .home-product-showcase,
.home-page .home-about-section,
.home-page .mission-vision-section,
.home-page .home-quality {
    position: relative;
}

.home-about-section {
    background: var(--color-white);
    padding-top: clamp(58px, 7vw, 92px);
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: center;
}

.home-about__media {
    position: relative;
    padding: 34px 0 0 0;
}

.home-about__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 74%;
    height: 72%;
    border: 12px solid var(--color-primary);
    z-index: 0;
}

.home-about__frame {
    position: relative;
    z-index: 1;
    margin-left: 34px;
    background: var(--color-white);
    box-shadow: 34px -34px 0 rgba(var(--color-ink-rgb), 0.02), -34px 10px 0 rgba(var(--color-ink-rgb), 0.02);
}

.home-about__frame img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.home-about__since {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    padding-right: 2px;
    color: var(--color-heading);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1;
    text-align: right;
    text-transform: uppercase;
}

.home-about__since strong {
    color: var(--color-primary);
}

.home-about__label {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-about__label::after {
    content: "";
    display: block;
    width: 62px;
    height: 2px;
    background: currentColor;
}

.home-about__content h2 {
    margin-bottom: 20px;
    color: var(--color-heading);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.18;
}

.home-about__content h2 strong {
    color: var(--color-primary);
    font-weight: inherit;
}

.home-about__content p {
    max-width: 620px;
    margin-bottom: 10px;
    color: #111827;
    font-size: 17px;
    line-height: 1.65;
    /* text-align: justify; */
}

.home-about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 20px;
    padding: 14px 31px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-about__button:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
}


.home-page .section-head {
    margin-bottom: 38px;
}

.home-page .section-head .eyebrow {
    font-size: 13px;
}

.home-page .showcase-card {
    border-color: rgba(var(--color-primary-rgb), 0.12);
    box-shadow: 0px 0px 13px -1px #e3e3e3;
}

.home-page .showcase-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.55);
    box-shadow: 0 24px 58px rgba(var(--color-ink-rgb), 0.13);
}


.home-page .mission-vision-row {
    position: relative;
    padding: 30px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    box-shadow: 0 18px 48px rgba(var(--color-ink-rgb), 0.07);
}

.home-page .mission-vision-row::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.16);
    pointer-events: none;
}

.home-page .mission-vision-row+.mission-vision-title {
    margin-top: 46px;
}

.home-page .mission-vision-media {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    filter: saturate(0.92) contrast(1.04);
}

.home-page .mission-vision-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent, rgba(var(--color-ink-rgb), 0.28)),
        linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.18), transparent);
}

.home-page .mission-vision-content {
    padding: 18px 0 18px 34px;
    border-left-color: rgba(var(--color-primary-rgb), 0.28);
}

.home-page .mission-vision-row--vision .mission-vision-content {
    padding-left: 0;
    padding-right: 34px;
    border-right-color: rgba(var(--color-primary-rgb), 0.28);
}

.home-page .mission-vision-content article {
    padding: 16px 18px;
    background: var(--color-soft);
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-page .mission-vision-content article:hover {
    border-left-color: var(--color-primary);
    transform: translateX(4px);
}

.home-page .mission-vision-row--vision .mission-vision-content article:hover {
    transform: translateX(-4px);
}

.home-page .mission-vision-content article+article {
    margin-top: 14px;
}

.home-page .mission-vision-tabs .mission-vision-content {
    padding: 0;
    border-left: 0;
}

.home-page .mission-vision-tabs .mission-vision-content::before {
    display: none;
}

.home-page .industries-section {
    background: var(--color-soft);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.home-page .industry-card {
    min-height: 280px;
    border: 1px solid rgba(var(--color-white-rgb), 0.75);
    box-shadow: 0 18px 42px rgba(var(--color-ink-rgb), 0.08);
}

.home-page .industry-card span {
    box-shadow: 0 14px 28px rgba(var(--color-ink-rgb), 0.12);
}

.home-page .industries-mosaic .industry-card {
    min-height: auto;
}

.home-page .industries-mosaic .industry-card span {
    width: auto;
    margin: 0 18px 18px;
    padding: 14px 18px;
    background: rgba(var(--color-white-rgb), 0.92);
    color: var(--color-heading);
}

.home-page .home-quality {
    background: var(--color-white);
}

.about-intro-section {
    padding: 58px 0 46px;
    background: var(--color-white);
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.85fr);
    gap: 44px;
    align-items: center;
}

.about-intro__brand {
    align-self: center;
    text-align: center;
}

.about-intro__brand img {
    width: 300px;
    margin: 0 auto 18px;
}

.about-intro__brand h2 {
    margin: 0 0 14px;
    color: var(--color-primary);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.14;
}

.about-intro__brand strong {
    display: block;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 900;
}

.about-intro__brand p {
    margin: 0;
    color: #7a7d82;
    font-size: 26px;
    line-height: 1.18;
}

.about-intro__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 25px;
    align-items: start;
}

.about-intro__text {
    position: relative;
    z-index: 1;
}

.about-intro__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.about-intro__label span {
    display: block;
    width: 46px;
    height: 4px;
    background: var(--color-navy);
}

.about-intro__text p {
    max-width: 620px;
    margin: 0;
    color: var(--color-navy);
    line-height: 1.58;
}

.about-intro__years {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-primary);
    line-height: 0.8;
}

.about-intro__years strong {
    font-size: clamp(96px, 9vw, 140px);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.about-intro__years span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-left: -16px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.about-intro__years b {
    margin-left: -6px;
    font-size: 86px;
    font-weight: 900;
}

.about-intro__divider {
    grid-column: 1 / -1;
    height: 1px;
    margin-top: 4px;
    background: rgba(var(--color-ink-rgb), 0.22);
}

.about-intro__tiles {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.about-intro-tile {
    position: relative;
    display: block;
    min-height: 214px;
    overflow: hidden;
    background: var(--color-steel);
}

.about-intro-tile img {
    width: 100%;
    height: 100%;
    min-height: 214px;
    object-fit: cover;
}

.about-intro-tile span {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 160px;
    padding: 18px 22px;
    background: linear-gradient(90deg, #168eb3, #075dac);
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
}

.about-story-section {
    padding: 68px 0;
    background: var(--color-white);
}

/* .about-story-section--muted {
    background: #f8fafc;
} */

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(38px, 6vw, 86px);
    align-items: center;
}

.about-story--image-left {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.about-story__label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px;
    color: var(--color-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.about-story__label span {
    width: 78px;
    height: 3px;
    background: var(--color-primary);
}

.about-story h2 {
    margin: 0 0 26px;
    color: var(--color-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.18;
}

.about-story p {
    margin: 0 0 20px;
    color: #111827;
    font-size: 17px;
    line-height: 1.65;
    /* text-align: justify; */
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story__media {
    margin: 0;
    overflow: hidden;
    background: var(--color-soft);
}

.about-story__media img {
    width: 100%;
    /* height: 600px; */
    /* height: clamp(280px, 25vw, 390px); */
    object-fit: cover;
}

.about-story__media--soft img {
    object-fit: contain;
    /* padding: 34px; */
    padding: 0;
    /* background: #eaf1f5; */
    background: #ffffff;
}

.about-product-band {
    padding: clamp(72px, 7vw, 112px) 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.about-product-band__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: center;
}

.about-product-band__image {
    display: grid;
    place-items: center;
}

/* .about-product-band__image img {
    background: var(--color-white);
} */

.about-product-band__content h2 {
    margin: 0 0 28px;
    color: var(--color-white);
    font-size: 35px;
    font-weight: 800;
    line-height: 1.18;
}

.about-product-band__content p {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.about-product-band__content p:last-child {
    margin-bottom: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 8vw, 128px);
    align-items: start;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    display: grid;
    place-items: center;
    width: 104px;
    height: 92px;
    margin: 0 auto 32px;
    color: var(--color-primary);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: var(--color-primary);
}

.why-choose-icon::before {
    content: "";
    grid-area: 1 / 1;
    width: calc(100% - 7px);
    height: calc(100% - 7px);
    clip-path: inherit;
    background: var(--color-white);
}

.why-choose-icon svg {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    fill: rgba(var(--color-primary-rgb), 0.1);
    stroke: #4C4D4F;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose-item:nth-child(2) .why-choose-icon {
    color: #2aa7d7;
}

.why-choose-item:nth-child(3) .why-choose-icon {
    color: #176da4;
}

.why-choose-item h3 {
    margin-bottom: 13px;
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.why-choose-item p {
    max-width: 300px;
    margin: 0 auto;
    color: var(--color-ink);
    font-size: 15.5px;
    line-height: 1.7;
}

.about-infrastructure-section {
    padding: 60px 0 40px;
    overflow: hidden;
    background: var(--color-white);
}

.about-infrastructure {
    position: relative;
    z-index: 1;
}

.about-infrastructure::after {
    content: "";
    position: absolute;
    top: 34px;
    right: -74px;
    z-index: -1;
    width: 98px;
    height: 204px;
    background: rgba(var(--color-white-rgb), 0.64);
}

.about-infrastructure__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.about-infrastructure__card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    min-height: 148px;
    padding: 22px 28px 20px;
    background: var(--color-white);
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(var(--color-ink-rgb), 0.035);
}

.about-infrastructure__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--color-primary);
}

.about-infrastructure__icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-infrastructure__card h3 {
    margin: 2px 0 10px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.22;
}

.about-infrastructure__card p,
.about-infrastructure__card li {
    color: #1d2733;
    font-size: 12px;
    line-height: 1.55;
}

.about-infrastructure__card p {
    margin: 0 0 10px;
}

.about-infrastructure__card p:last-child {
    margin-bottom: 0;
}

.about-infrastructure__card ul {
    margin: 0;
    padding-left: 17px;
    list-style: disc;
}

.about-infrastructure__card li::before {
    content: none;
}

.about-infrastructure__split-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
}

.about-infrastructure__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.about-infrastructure__gallery img {
    width: 100%;
    height: 550px;
    /* height: 158px; */
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #dfe8f2;
}

.infra-manufacturing,
.infra-distinction {
    padding: 60px 0 40px;
}

.infra-testing-standards {
    padding: 50px 0 15px;
}

.infra-industries {
    padding: 20px 0 60px;
}

.infra-manufacturing,
.infra-testing-standards,
.infra-industries {
    background: var(--color-white);
}

.infra-distinction {
    background: #edf3f8;
}

.infra-section-title {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 54px;
}

.infra-section-title>span {
    width: 92px;
    height: 4px;
    flex: 0 0 auto;
    background: var(--color-primary);
}

.infra-section-title h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.infra-manufacturing__content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.infra-manufacturing__content h3 {
    margin: 12px 0 20px;
    color: var(--color-heading);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.12;
}

.infra-manufacturing__content p {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.7;
}

.infra-manufacturing>.container>.about-infrastructure__grid {
    margin-top: 48px;
    text-align: left;
}

.infra-distinction__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 0.9fr);
    border: 1px solid #d8e2eb;
    background: var(--color-white);
}

.infra-distinction__lead {
    grid-row: span 2;
    min-height: 410px;
    padding: 48px 42px;
    background: linear-gradient(145deg, var(--color-primary), #044d88);
    color: var(--color-white);
}

.infra-distinction__lead>span {
    display: inline-block;
    margin-bottom: 26px;
    padding: 7px 12px;
    border: 1px solid rgba(var(--color-white-rgb), 0.45);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.infra-distinction__lead h3 {
    margin: 0 0 20px;
    color: inherit;
    font-size: clamp(28px, 2vw, 48px);
    font-weight: 800;
    line-height: 1.12;
}

.infra-distinction__lead p {
    margin: 0;
    color: rgba(var(--color-white-rgb), 0.88);
    font-size: 16px;
    line-height: 1.65;
}

.infra-metric {
    min-height: 205px;
    padding: 38px 30px;
    border-left: 1px solid #d8e2eb;
    border-bottom: 1px solid #d8e2eb;
}

.infra-metric:nth-last-child(-n+3) {
    border-bottom: 0;
}

.infra-metric strong {
    display: block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1;
}

.infra-metric span {
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.5;
}

.infra-section-title--inside {
    margin-bottom: 38px;
}

/* .infra-testing-standards {
    padding-top: 0;
} */

.infra-testing-standards .infra-section-title {
    margin-bottom: 36px;
}

.infra-testing-standards__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.infra-testing-standards__media {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding: 0;
    margin-left: auto;
}

/* .infra-testing-standards__stripe-circle {
    position: absolute;
    top: 7px;
    right: 15px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-image: repeating-linear-gradient(-45deg, rgba(var(--color-primary-rgb), 0.55), rgba(var(--color-primary-rgb), 0.55) 2px, transparent 2px, transparent 7px);
    z-index: 0;
} */

.infra-testing-standards__blue-tab {
    position: absolute;
    top: -6px;
    right: -36px;
    width: 145px;
    height: 165px;
    border-radius: 0 80px 80px 0;
    background: var(--color-primary);
    z-index: 1;
}

/* .infra-testing-standards__soft-shadow {
    position: absolute;
    left: -20px;
    bottom: -32px;
    width: 88%;
    height: 88%;
    border-radius: 46px;
    background: #edf4fa;
    z-index: 1;
} */

/* .infra-testing-standards__dot-grid {
    position: absolute;
    left: -48px;
    bottom: -55px;
    width: 85px;
    height: 95px;
    background-image: radial-gradient(var(--color-primary) 2.5px, transparent 2.5px);
    background-size: 11px 11px;
    z-index: 0;
} */

.infra-testing-standards__frame {
    position: relative;
    z-index: 2;
    padding: 0;
    /* border: 3.5px solid var(--color-primary); */
    border-radius: 28px;
    /* background: var(--color-white);
    box-shadow: 0 10px 30px rgba(var(--color-ink-rgb), 0.06); */
}

.infra-testing-standards__media img {
    display: block;
    width: 100%;
    height: 520px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 28px;
}

.infra-testing-standards__content h3 {
    margin: 0 0 14px;
    color: var(--color-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.infra-testing-standards__content p {
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: 15px;
    line-height: 1.6;
}

.infra-testing-standards__content p strong {
    color: var(--color-heading);
    font-weight: 600;
}

.infra-testing-standards__content p:last-child {
    margin-bottom: 0;
}

.infra-testing-list {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 38px;
    margin: 22px 0 24px;
    padding: 0;
    list-style: none;
    counter-reset: testing-step;
}

.infra-testing-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 1px);
    width: 1.5px;
    background: #cce0f2;
}

.infra-testing-list li {
    counter-increment: testing-step;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #e3effa;
    color: var(--color-heading);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
}

.infra-testing-list li::before {
    content: counter(testing-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 30px;
    min-width: 32px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%);
    padding-right: 5px;
}

.infra-industries__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.infra-industries__intro {
    max-width: 1320px;
    margin: -18px 0 42px;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.65;
}

.infra-industry-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #111111;
    color: var(--color-white);
    isolation: isolate;
}

.infra-industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(16, 35, 52, 0);
    transition: background 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.infra-industry-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transform: none;
    filter: none;
}

.infra-industry-card__number {
    position: absolute;
    left: 34px;
    bottom: 104px;
    z-index: 2;
    color: transparent;
    -webkit-text-stroke: 2px rgba(var(--color-white-rgb), 0.92);
    font-size: clamp(72px, 7vw, 116px);
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: translate(-18px, 34px) scale(0.96);
    transition: left 3s cubic-bezier(0.22, 1, 0.36, 1), bottom 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.infra-industry-card h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 84px;
    margin: 0;
    padding: 18px;
    background: rgba(17, 17, 17, 0.94);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 200;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    transform: translateY(-280px);
    transition: opacity 0.7s ease, transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.infra-industry-card:hover::before {
    background: rgba(16, 35, 52, 0.72);
}

.infra-industry-card:hover img {
    filter: none;
    transform: none;
}

.infra-industry-card:hover .infra-industry-card__number {
    left: 50%;
    bottom: 60%;
    opacity: 1;
    transform: translate(-50%, 50%) scale(1);
}

.infra-industry-card:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .infra-distinction__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infra-distinction__lead {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .infra-industries__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infra-industry-card h3 {
        bottom: 0;
        opacity: 1;
        transform: translateY(0);
    }

    .infra-testing-standards__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .infra-testing-standards__media {
        margin-left: 0;
        margin: 0 auto 10px;
        padding: 0;
        max-width: 540px;
    }

    .infra-testing-standards__stripe-circle {
        top: -20px;
        right: -12px;
        width: 95px;
        height: 95px;
    }

    .infra-testing-standards__blue-tab {
        top: 8px;
        right: -20px;
        width: 110px;
        height: 130px;
    }

    .infra-testing-standards__soft-shadow {
        left: -10px;
        bottom: -18px;
    }

    .infra-testing-standards__dot-grid {
        left: -28px;
        bottom: -32px;
        width: 65px;
        height: 75px;
    }

    .infra-testing-standards__media img {
        height: 380px;
        max-height: 400px;
    }
}

@media (max-width: 575.98px) {

    .infra-manufacturing,
    .infra-distinction,
    .infra-testing-standards,
    .infra-industries {
        padding: 36px 0;
    }

    .infra-testing-standards {
        padding: 20px 0 10px;
    }

    .infra-section-title {
        gap: 16px;
        margin-bottom: 24px;
    }

    .infra-section-title h2 {
        font-size: 20px;
    }

    .infra-section-title>span {
        width: 42px;
        height: 3px;
    }

    .infra-manufacturing__content {
        text-align: left;
    }

    .infra-manufacturing__content h3 {
        font-size: 23px;
    }

    .infra-manufacturing__content p {
        font-size: 15px;
    }

    .infra-distinction__grid,
    .infra-industries__grid {
        grid-template-columns: 1fr;
    }

    .infra-industry-card,
    .infra-industry-card img {
        min-height: 260px;
    }

    .infra-industry-card h3 {
        bottom: 0;
        opacity: 1;
        transform: translateY(0);
        min-height: 64px;
        font-size: 19px;
    }

    .infra-testing-standards .infra-section-title {
        margin-bottom: 20px;
    }

    .infra-testing-standards__content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .infra-testing-standards__media {
        margin: 0 auto 16px;
        padding: 0;
        max-width: 100%;
    }

    .infra-testing-standards__stripe-circle {
        top: -15px;
        right: -8px;
        width: 75px;
        height: 75px;
    }

    .infra-testing-standards__blue-tab {
        top: 4px;
        right: -12px;
        width: 85px;
        height: 100px;
        border-radius: 0 50px 50px 0;
    }

    .infra-testing-standards__soft-shadow {
        left: -6px;
        bottom: -12px;
        border-radius: 30px;
    }

    .infra-testing-standards__dot-grid {
        left: -16px;
        bottom: -22px;
        width: 50px;
        height: 55px;
        background-size: 9px 9px;
    }

    .infra-testing-standards__frame {
        padding: 0;
        border-width: 2.5px;
        border-radius: 22px;
    }

    .infra-testing-standards__media img {
        height: 280px;
        max-height: 320px;
        border-radius: 22px;
    }

    .infra-testing-list {
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0;
    }

    .infra-testing-list::before {
        display: none;
    }

    .infra-testing-list li {
        padding-bottom: 8px;
        font-size: 13.5px;
        gap: 10px;
    }

    .infra-testing-list li::before {
        width: 28px;
        height: 26px;
        min-width: 28px;
        font-size: 12px;
    }

    .infra-distinction__lead {
        min-height: 0;
        padding: 36px 26px;
    }

    .infra-metric {
        min-height: 0;
        padding: 28px 24px;
        border-left: 0;
        border-bottom: 1px solid #d8e2eb;
    }

    .infra-metric:nth-last-child(-n+3) {
        border-bottom: 1px solid #d8e2eb;
    }

    .infra-metric:last-child {
        border-bottom: 0;
    }
}



.home-page .stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid #d9e1ec;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 12px 24px rgba(var(--color-ink-rgb), 0.08);
}

.stat-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px max-content;
    align-items: center;
    justify-content: center;
    column-gap: 22px;
    min-height: 128px;
    padding: 28px 40px;
    background: var(--color-white);
    border-right: 1px solid #d9e1ec;
    color: var(--color-heading);
    text-align: left;
    overflow: hidden;
    transition: background 0.2s ease, transform 0.2s ease;
}

.stat-card>* {
    justify-self: start;
}

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

.stat-card:hover {
    transform: translateY(-2px);
    background: #fbfdff;
}

.stat-card__icon {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 58px;
    height: 58px;
    margin-bottom: 0;
    background: transparent;
    color: #82b235;
}

.stat-card__icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: #2c70b9;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page .stats strong {
    display: block;
    color: var(--color-navy);
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
    text-align: left;
}

.home-page .stats .stat-card>span:last-child {
    display: block;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
}

@media (max-width: 991.98px) {
    .product-tabs-section .product-tabs-sidebar {
        position: static;
    }

    .product-overview-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }

    .services-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-about {
        grid-template-columns: 1fr;
    }

    .home-about__content {
        max-width: 720px;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-summary-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .contact-summary-card {
        min-height: auto;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        min-height: auto;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-intro__content {
        grid-template-columns: 1fr;
    }

    .about-intro__watermark {
        display: none;
    }

    .about-intro__years {
        justify-content: center;
    }

    .about-intro__tiles {
        gap: 22px;
    }

    .about-story,
    .about-story--image-left {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-story--image-left .about-story__media {
        order: 2;
    }

    .about-story--image-left .about-story__content {
        order: 1;
    }

    .about-product-band__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-product-band__content {
        text-align: center;
    }

    .about-product-band__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-infrastructure__grid {
        grid-template-columns: 1fr;
    }

    .about-infrastructure__card {
        min-height: auto;
    }

    .about-infrastructure__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .product-benefit:nth-child(2) {
        border-right: 0;
    }

    .product-benefit:nth-child(-n + 2) {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(var(--color-white-rgb), 0.18);
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .commitment-card p {
        min-height: auto;
    }

    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid #d9e1ec;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide__image {
        min-height: 260px;
    }

    .hero-slide__image img {
        max-height: 310px;
    }

    /* Mobile view subtle scaling for homepage hero slider images (1st, 2nd, 3rd, 8th, 9th) */
    .home-page .home-hero-products .hero-slide__image {
        min-height: 320px;
        padding: 10px 0;
    }

    .home-page .home-hero-products .hero-slide--first .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--first.is-active .hero-slide__image img {
        width: min(100%, 520px) !important;
        max-height: 380px !important;
        transform: translateX(0) scale(1.02) !important;
        margin: 0 auto !important;
    }

    .home-page .home-hero-products .hero-slide--slide-2 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-2.is-active .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-3 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-3.is-active .hero-slide__image img {
        width: min(100%, 480px) !important;
        max-height: 350px !important;
        transform: translateX(0) scale(0.96) !important;
        margin: 0 auto !important;
    }

    .home-page .home-hero-products .hero-slide--slide-8 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-8.is-active .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--block-bleed .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--block-bleed.is-active .hero-slide__image img {
        width: min(100%, 460px) !important;
        max-height: 330px !important;
        transform: translateX(0) scale(0.94) !important;
        margin: 0 auto !important;
    }

    .hero-slider__controls {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 575.98px) {
    .home-page .home-hero-products .hero-slide__image {
        min-height: 270px;
    }

    .home-page .home-hero-products .hero-slide--first .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--first.is-active .hero-slide__image img {
        width: min(100%, 440px) !important;
        max-height: 320px !important;
        transform: translateX(0) scale(0.96) !important;
    }

    .home-page .home-hero-products .hero-slide--slide-2 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-2.is-active .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-3 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-3.is-active .hero-slide__image img {
        width: min(100%, 420px) !important;
        max-height: 300px !important;
        transform: translateX(0) scale(0.92) !important;
    }

    .home-page .home-hero-products .hero-slide--slide-8 .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--slide-8.is-active .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--block-bleed .hero-slide__image img,
    .home-page .home-hero-products .hero-slide--block-bleed.is-active .hero-slide__image img {
        width: min(100%, 400px) !important;
        max-height: 290px !important;
        transform: translateX(0) scale(0.90) !important;
    }
    .product-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-overview-card {
        min-height: 156px;
        padding: 14px 10px;
    }

    .product-overview-card img {
        height: 92px;
    }

    .services-solutions {
        padding-top: 30px;
    }

    .services-solutions__head h1 {
        font-size: 26px;
    }

    .services-solutions__head span::before,
    .services-solutions__head span::after {
        width: 28px;
    }

    .services-solutions__grid {
        grid-template-columns: 1fr;
    }

    .service-solution-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 25px;
        padding: 14px;
    }

    .home-about__media {
        padding: 20px 10px 0 0;
    }

    .home-about__media::before {
        border-width: 8px;
        width: 78%;
    }

    .home-about__frame {
        margin-left: 20px;
        box-shadow: 20px -20px 0 rgba(var(--color-ink-rgb), 0.02), -20px 8px 0 rgba(var(--color-ink-rgb), 0.02);
    }

    .home-about__since {
        font-size: 22px;
    }

    .home-about__content h2 {
        font-size: 30px;
    }

    .contact-form-panel,
    .contact-details-panel {
        padding: 34px 22px;
    }

    .contact-page-section .contact-page-layout {
        width: min(100% - 32px, 100%);
    }

    .contact-page-section .contact-form-panel {
        padding: 28px 18px !important;
    }

    .contact-page-section .contact-form-panel__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-page-section .form-recaptcha {
        max-width: 100%;
        overflow: hidden;
    }

    .contact-page-section .contact-form-panel button {
        width: 100%;
    }

    .contact-summary-section {
        padding-top: 42px;
    }

    .contact-summary-grid {
        width: min(100% - 32px, 100%);
        gap: 14px;
    }

    .contact-summary-card {
        padding: 34px 20px 28px;
    }

    .contact-summary-card h2 {
        font-size: 20px;
    }

    .contact-summary-card p,
    .contact-summary-card strong,
    .contact-summary-card a {
        font-size: 15px;
    }

    .contact-form-panel h2,
    .contact-details-panel h2 {
        font-size: 30px;
    }

    .contact-form-panel__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form-panel textarea {
        min-height: 132px;
    }

    .contact-details-list article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-details-icon {
        width: 42px;
        height: 42px;
    }

    .about-intro-section {
        padding: 42px 0 34px;
    }

    .about-intro {
        gap: 32px;
    }

    .about-intro__brand img {
        width: 126px;
    }

    .about-intro__brand h2 {
        font-size: 32px;
    }

    .about-intro__brand p {
        font-size: 22px;
    }

    .about-intro__text p {
        font-size: 17px;
    }

    .about-intro__years strong {
        font-size: 86px;
    }

    .about-intro__years span {
        width: 68px;
        height: 68px;
        font-size: 17px;
    }

    .about-intro__years b {
        font-size: 58px;
    }

    .about-intro__tiles {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-intro-tile,
    .about-intro-tile img {
        min-height: 230px;
    }

    .about-story-section {
        padding: 42px 0;
    }

    .about-story__label {
        gap: 12px;
        margin-bottom: 26px;
        font-size: 16px;
    }

    .about-story__label span {
        width: 52px;
    }

    .about-story h2 {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .about-story p {
        font-size: 15px;
        /* text-align: justify; */
    }

    .about-story__media img {
        height: 240px;
    }

    .about-story__media--soft img {
        padding: 20px;
    }

    .about-product-band {
        padding: 48px 0;
    }

    .about-product-band__image img {
        width: min(300px, 100%);
    }

    .about-product-band__content h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .about-product-band__content p {
        font-size: 16px;
    }

    .product-section-head span {
        gap: 10px;
        font-size: 14px;
    }

    .product-section-head span::before,
    .product-section-head span::after {
        width: 34px;
    }

    .product-section-head p {
        font-size: 16px;
    }

    .commitment-head span {
        gap: 10px;
        font-size: 14px;
    }

    .commitment-head span::before,
    .commitment-head span::after {
        width: 34px;
    }

    .commitment-head p {
        font-size: 16px;
    }

    .commitment-card {
        padding: 26px 16px 22px;
    }

    .commitment-card li {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .commitment-card li span {
        width: 32px;
        height: 32px;
    }

    .product-benefits {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .product-benefit,
    .product-benefit:nth-child(2),
    .product-benefit:nth-child(-n + 2) {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 18px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(var(--color-white-rgb), 0.18);
    }

    .product-benefit:last-child {
        border-bottom: 0;
    }

    .product-benefit h3 {
        font-size: 20px;
    }

    .product-benefit p {
        font-size: 15px;
    }

    .why-choose-icon {
        width: 94px;
        height: 84px;
        margin-bottom: 24px;
    }

    .why-choose-item p {
        font-size: 15px;
    }

    .about-infrastructure-section {
        padding: 34px 0 48px;
    }

    .about-infrastructure::after {
        display: none;
    }

    .about-infrastructure__card {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 16px;
        padding: 20px 18px;
    }

    .about-infrastructure__icon {
        width: 58px;
        height: 58px;
    }

    .about-infrastructure__icon svg {
        width: 34px;
        height: 34px;
    }

    .about-infrastructure__card h3 {
        font-size: 18px;
    }

    .about-infrastructure__card p,
    .about-infrastructure__card li {
        font-size: 12px;
    }

    .about-infrastructure__split-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .about-infrastructure__gallery {
        grid-template-columns: 1fr;
    }

    .about-infrastructure__gallery img {
        height: 210px;
    }

    .home-page .stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        grid-template-columns: 60px max-content;
        column-gap: 18px;
        min-height: 116px;
        padding: 24px;
        border-right: 0;
        border-bottom: 1px solid #d9e1ec;
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .stat-card__icon,
    .stat-card__icon svg {
        width: 48px;
        height: 48px;
    }

    .hero-slider__wrap {
        padding: 108px 0 94px;
    }

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

    .hero-slide__image {
        min-height: 220px;
    }

    .hero-slider__dots button {
        width: 22px;
    }
}

.row.feature-strip,
.row.stats,
.row.split,
.row.values-grid,
.row.catalogue-layout,
.row.product-grid,
.row.infra-grid,
.row.service-grid,
.row.contact-grid,
.row.catalogue-request,
.row.footer-grid {
    display: flex;
}

.row.values-grid,
.row.infra-grid,
.row.service-grid,
.row.contact-grid,
.row.footer-grid {
    gap: 0;
}

.row.catalogue-layout,
.row.split {
    gap: 0;
}

.row.catalogue-request {
    align-items: center;
}

.map {
    background: var(--color-line);
}

.map .head-title {
    padding-bottom: 35px;
    border-bottom: 1px solid #2c70b9;
}

.map .head-title h4 {
    font-size: 30px;
}

.map .card-view .items-view {
    background: #2c70b9;
    padding: 20px 15px;
    color: #fff;
    text-align: left;
    margin-top: 20px;
    margin-right: 20px;
    width: 268px;
    display: flex;
    align-items: center;
}

.map .card-view .items-view h5 {
    margin: 0;
}

.map .card-view .flex-view {
    display: flex;
}

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

@media (max-width: 991.98px) {
    .home-page .hero {
        min-height: auto;
        padding-top: 78px;
    }

    .home-page .hero--product-slider {
        min-height: auto;
    }

    .home-page .hero--product-slider .hero-slider__wrap {
        min-height: auto;
    }

    .home-page .home-hero-layout {
        grid-template-columns: 1fr;
        gap: clamp(18px, 3vw, 28px);
        width: min(760px, calc(100% - 48px));
        padding: 34px 0 118px;
    }

    .home-page .home-hero-copy {
        order: 2;
        max-width: 720px;
        text-align: left;
    }

    .home-page .home-hero-copy h1 {
        max-width: 680px;
        font-size: clamp(32px, 6vw, 48px);
    }

    .home-page .home-hero-copy p {
        max-width: 650px;
        margin-left: 0;
        margin-right: 0;
        font-size: clamp(16px, 2.4vw, 19px);
    }

    .home-page .home-hero-products {
        order: 1;
        min-height: clamp(300px, 48vw, 430px);
        max-width: 100%;
        justify-self: stretch;
    }

    .home-page .home-hero-products::before {
        inset: -28px -40px 0 -20px;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 8% 72%, 0 58%);
    }

    .home-page .home-hero-products::after {
        display: none;
    }

    .home-page .home-hero-products .hero-slide__image {
        min-height: clamp(300px, 48vw, 410px);
        padding-bottom: 0;
    }

    .home-page .home-hero-products .hero-slide__image img {
        width: min(620px, 94%);
        max-height: clamp(260px, 42vw, 360px);
        transform: translateX(0) scale(0.98);
        mix-blend-mode: multiply;
        background: transparent;
    }

    .home-page .home-hero-products .hero-slide.is-active .hero-slide__image img {
        transform: translateX(0) scale(1);
    }

    .home-page .home-hero-products .hero-slide--featured .hero-slide__image img {
        width: min(760px, 112%);
        max-height: clamp(310px, 50vw, 430px);
    }

    .home-page .home-hero-products .hero-slide--featured.is-active .hero-slide__image img {
        transform: translateX(0) scale(1.1);
    }

    .home-page .home-hero-products .hero-slide--first .hero-slide__image img {
        width: min(920px, 130%);
        max-height: clamp(360px, 58vw, 500px);
    }

    .home-page .home-hero-products .hero-slide--first.is-active .hero-slide__image img {
        transform: translateX(-18px) scale(1.26);
    }

    .home-page .home-hero-products .hero-slide--block-bleed .hero-slide__image img {
        width: min(620px, 94%);
        max-height: clamp(260px, 42vw, 360px);
    }

    .home-page .home-hero-products .hero-slide--block-bleed.is-active .hero-slide__image img {
        transform: translateX(0) scale(1);
    }

    .home-capabilities {
        margin-top: -76px;
    }
}

@media (max-width: 575.98px) {

    .map {
        padding-top: 44px;
        padding-bottom: 38px;
    }

    .map .head-title {
        padding-bottom: 22px;
    }

    .map .head-title h4 {
        font-size: 24px;
        line-height: 1.25;
    }

    .map .card-view {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
    }

    .map .card-view .flex-view {
        display: contents;
    }

    .map .card-view .items-view {
        width: auto;
        min-height: 68px;
        margin: 0;
        padding: 12px 10px;
    }

    .map .card-view .items-view h5 {
        font-size: 12px;
        line-height: 1.18;
    }

    .map img {
        margin-top: 24px;
    }

    .home-page .hero--product-slider,
    .home-page .hero--product-slider .hero-slider__wrap {
        min-height: auto;
    }

    .home-page .hero {
        padding-top: 70px;
    }

    .home-page .hero-slider__wrap {
        padding-top: 0;
        padding-bottom: 0;
    }

    .home-page .home-hero-layout {
        gap: 12px;
        width: calc(100% - 36px);
        padding: 22px 0 38px;
    }

    .home-page .home-hero-copy {
        text-align: left;
    }

    .home-page .home-hero-copy .eyebrow {
        gap: 10px;
        font-size: 11px;
        line-height: 1.35;
    }

    .home-page .home-hero-copy .eyebrow::after {
        width: 28px;
        height: 2px;
    }

    .home-page .home-hero-copy h1 {
        margin-top: 10px;
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.1;
    }

    .home-page .home-hero-copy p {
        max-width: none;
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.48;
    }

    .home-hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .home-hero-features article:nth-child(2) {
        border-right: 0;
    }

    .home-hero-actions .btn {
        width: 100%;
    }

    .home-page .home-hero-products {
        min-height: clamp(230px, 68vw, 320px);
    }

    .home-page .home-hero-products .hero-slide__image {
        min-height: clamp(230px, 68vw, 310px);
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        /* overflow: hidden; */
    }

    .home-page .home-hero-products .hero-slide__image img {
        width: min(430px, 96%);
        max-width: 96%;
        max-height: clamp(210px, 62vw, 290px);
        object-fit: contain;
        transform: translateX(0) scale(1);
        margin: 0 auto;
        mix-blend-mode: multiply;
        background: transparent;
    }

    .home-page .home-hero-products .hero-slide.is-active .hero-slide__image img {
        transform: translateX(0) scale(1);
    }

    .home-page .home-hero-products .hero-slide--featured .hero-slide__image img {
        width: min(520px, 112%);
        max-width: 112%;
        max-height: clamp(250px, 70vw, 340px);
    }

    .home-page .home-hero-products .hero-slide--featured.is-active .hero-slide__image img {
        transform: translateX(0) scale(1.08);
    }

    .home-page .home-hero-products .hero-slide--first .hero-slide__image img {
        width: min(620px, 120%);
        max-width: 120%;
        max-height: clamp(290px, 80vw, 400px);
    }

    .home-page .home-hero-products .hero-slide--first.is-active .hero-slide__image img {
        transform: translateX(0) scale(1.18);
    }

    .home-page .home-hero-products .hero-slide--block-bleed .hero-slide__image img {
        width: min(430px, 96%);
        max-width: 96%;
        max-height: clamp(210px, 62vw, 290px);
    }

    .home-page .home-hero-products .hero-slide--block-bleed.is-active .hero-slide__image img {
        transform: translateX(0) scale(1);
    }

    .home-capabilities {
        margin-top: 0;
    }
}

.core-value-section {
    background: var(--color-soft);
}

.core-value-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
}

.core-value-head span {
    display: block;
    width: 52px;
    height: 3px;
    background: var(--color-primary);
    flex: 0 0 auto;
}

.core-value-head h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.core-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.core-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.core-value-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-bottom: 45px;
    color: var(--color-primary);
}

.core-value-icon svg {
    width: 72px;
    height: 72px;
    display: block;
    overflow: visible;
}

.core-value-card h3 {
    margin: 0 0 10px;
    color: var(--color-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.core-value-card p {
    margin: 0;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .core-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .core-value-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-section {
    background: var(--color-soft);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 36px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.contact-info-card__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
}

.contact-info-card__icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-card h3 {
    margin: 0 0 12px;
    color: var(--color-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

.contact-info-card p {
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: 17px;
    line-height: 1.65;
}

.contact-info-card__tel,
.contact-info-card__email {
    margin-top: auto;
    color: var(--color-heading);
    font-size: 15px;
    font-weight: 500;
}

.contact-info-card__tel:hover,
.contact-info-card__email:hover {
    color: var(--color-primary);
}

@media (max-width: 767.98px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}
