header {
    margin-bottom: 0;
}

/* Experimental equipment mosaic. Enabled only by the homepage ?catalog flag. */
.xhome--catalog-variant .xh-equipment-grid--mosaic {
    display: grid;
    height: 760px;
    padding: 4px;
    gap: 4px;
    grid-template-columns: 1.2fr .9fr 1fr;
    grid-template-rows: 1.3fr 1fr 1fr;
    grid-template-areas:
        "feature feature side"
        "third fourth fifth"
        "sixth seventh eighth";
    overflow: visible;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 28px rgba(120, 196, 255, .32);
    isolation: isolate;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(230, 244, 255, .74);
    border-radius: 4px;
    background: #14212f;
    box-shadow: inset 0 0 24px rgba(182, 221, 255, .08);
    transform: scale(1);
    transform-origin: center;
    transition: transform .42s cubic-bezier(.2, .72, .2, 1), filter .42s ease, opacity .42s ease, box-shadow .42s ease;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(1) {
    grid-area: feature;
    background: #14212f;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(2) {
    grid-area: side;
    background: #221d28;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(3) {
    grid-area: third;
    background: #132629;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(4) {
    grid-area: fourth;
    background: #262119;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(5) {
    grid-area: fifth;
    background: #19232d;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(6) {
    grid-area: sixth;
    background: #251e29;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(7) {
    grid-area: seventh;
    background: #17251f;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(8) {
    grid-area: eighth;
    background: #222126;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(4, 10, 16, .08) 12%, rgba(4, 9, 15, .26) 52%, rgba(3, 8, 13, .88) 100%);
    pointer-events: none;
    transition: background .36s ease;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 18px rgba(185, 226, 255, .12);
    pointer-events: none;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    padding: 0;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 18px 22px 66px;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, .5));
    transform: scale(.98);
    transition: opacity 1.15s ease, transform 1.15s ease, filter .42s ease;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item--primary {
    right: auto;
    bottom: auto;
    left: auto;
    opacity: 1;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item--secondary {
    top: auto;
    right: auto;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card.is-secondary .xh-equipment-card__image-item--primary {
    opacity: 0;
    transform: scale(1.025);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card.is-secondary .xh-equipment-card__image-item--secondary {
    opacity: 1;
    transform: scale(1);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__content,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 22px;
    pointer-events: none;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    min-height: 0;
    max-width: 96%;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.02;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .86);
    pointer-events: auto;
    transition: font-size .36s ease, transform .36s ease;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(1) .xh-equipment-card__title {
    max-width: 82%;
    font-size: 46px;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(2) .xh-equipment-card__title {
    font-size: 34px;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title small {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 600;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__subcats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 0;
    max-height: 0;
    max-width: calc(100% - 48px);
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(12px);
    transition: max-height .4s ease, margin .4s ease, opacity .3s ease, transform .4s ease;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a {
    min-height: 0;
    color: inherit;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .82);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a:hover,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a:focus-visible,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title:hover,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__link,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__link {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: auto;
    display: grid;
    width: 36px;
    height: 36px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: translateY(8px);
    transition: opacity .3s ease, visibility .3s ease, transform .36s ease, background .2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic:has(> .xh-equipment-card:hover) > .xh-equipment-card:not(:hover),
    .xhome--catalog-variant .xh-equipment-grid--mosaic:has(> .xh-equipment-card:focus-within) > .xh-equipment-card:not(:focus-within) {
        z-index: 1;
        opacity: .84;
        filter: brightness(.82) saturate(.86);
        transform: scale(.965);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within {
        z-index: 8;
        border-color: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 38px rgba(0, 0, 0, .38), 0 0 24px rgba(168, 218, 255, .38);
        transform: scale(1.035);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover::before,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within::before {
        background: linear-gradient(180deg, rgba(4, 10, 16, .12) 6%, rgba(4, 9, 15, .42) 48%, rgba(3, 8, 13, .95) 100%);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover .xh-equipment-card__image-item,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within .xh-equipment-card__image-item {
        filter: drop-shadow(0 22px 18px rgba(0, 0, 0, .62));
        transform: scale(1.035);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within .xh-equipment-card__title {
        font-size: 22px;
        transform: translateY(-2px);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover .xh-equipment-card__subcats,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within .xh-equipment-card__subcats {
        max-height: 92px;
        margin-top: 12px;
        opacity: 1;
        transform: translateY(0);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover .xh-equipment-card__link,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within .xh-equipment-card__link {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic {
        height: auto;
        grid-template-columns: 1.12fr .88fr;
        grid-template-rows: repeat(4, 230px);
        grid-template-areas:
            "feature side"
            "third fourth"
            "fifth sixth"
            "seventh eighth";
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(1) .xh-equipment-card__title {
        max-width: 94%;
        font-size: 34px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(2) .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title {
        font-size: 27px;
    }
}

@media (max-width: 760px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic {
        height: auto;
        padding: 3px;
        gap: 3px;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas: none;
        grid-auto-rows: 260px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(n) {
        grid-area: auto;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__content,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__content {
        padding: 18px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(n) .xh-equipment-card__title {
        max-width: 100%;
        font-size: 28px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item {
        padding: 16px 18px 64px;
    }
}

@media (hover: none) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__link {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__link {
        transition: none;
    }
}

body {
    overflow-x: hidden;
}

.xhome {
    --xh-blue: #0e55a0;
    --xh-blue-dark: #073b73;
    --xh-orange: #ff7a00;
    --xh-text: #1b2b3a;
    --xh-muted: #667789;
    --xh-line: #dce5ee;
    --xh-soft: #f4f7fa;
    --xh-card: #ffffff;
    color: var(--xh-text);
    max-width: 100%;
    overflow-x: hidden;
}

.xhome h1,
.xhome h2,
.xhome h3,
.xhome p {
    margin-top: 0;
}

.xhome h2 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.15;
}

.xh-section {
    padding: 42px 0;
}

.xh-section--muted,
.xh-section--faq {
    background: var(--xh-soft);
}

.xh-section--compact {
    padding-top: 28px;
}

.xh-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.xh-section__head h2 {
    margin-bottom: 0;
}

.xh-section__head a,
.xh-link {
    color: var(--xh-blue);
    font-weight: 700;
    text-decoration: none;
}

.xh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.xh-btn--primary {
    border-color: var(--xh-blue);
    background: #fff;
    color: var(--xh-blue);
}

.xh-btn--primary:hover {
    background: var(--xh-blue);
    color: #fff;
}

.xh-btn--light {
    background: #fff;
    color: var(--xh-blue);
    border-color: var(--xh-blue);
}

.xh-btn--light:hover {
    background: var(--xh-blue);
    color: #fff;
}

.xh-btn--outline {
    border: 1px solid var(--xh-line);
    background: #fff;
    color: var(--xh-blue-dark);
}

.xh-btn--small {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 13px;
}

.xh-hero {
    padding: 26px 0 64px;
    background: #fff;
    color: #fff;
}

.xh-hero__panel {
    position: relative;
    min-height: 500px;
    overflow: visible;
    padding: 58px 46px 126px;
    border-radius: 12px;
    background-position: center right;
    background-size: cover;
    box-shadow: 0 18px 38px rgba(20, 45, 70, .16);
}

.xh-hero__panel:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(5, 13, 24, .94) 0%, rgba(5, 13, 24, .78) 33%, rgba(5, 13, 24, .18) 72%, rgba(5, 13, 24, .03) 100%);
}

.xh-hero__content,
.xh-benefits {
    position: relative;
    z-index: 1;
}

.xh-hero__content {
    max-width: 520px;
}

.xh-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.xh-hero__eyebrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #e30613;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xh-hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 56px;
    line-height: .98;
}

.xh-hero__lead {
    max-width: 520px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.55;
}

.xh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.xh-hero__actions .xh-btn {
    min-height: 58px;
    min-width: 222px;
    gap: 18px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
}

.xh-hero__actions .xh-btn:after {
    content: "→";
    font-size: 20px;
    line-height: 1;
}

.xh-hero__actions .xh-btn--primary {
    border-color: #ef1d2f;
    background: #ef1d2f;
    color: #fff;
}

.xh-hero__actions .xh-btn--primary:hover {
    border-color: #fff;
    background: #fff;
    color: #111827;
}

.xh-hero__actions .xh-btn--light {
    border-color: #fff;
    background: #fff;
    color: #111827;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}

.xh-hero__actions .xh-btn--light:hover,
.xh-hero__actions .xh-btn--light:focus-visible {
    border-color: var(--xh-blue);
    background: var(--xh-blue);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 101, 189, .28);
}

.xh-benefits {
    position: absolute;
    right: 46px;
    bottom: -42px;
    left: 46px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    padding: 14px 16px;
    border: 1px solid #e7edf4;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 42px rgba(20, 45, 70, .18);
}

.xh-benefit {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 3px 12px;
    align-items: center;
    min-height: 74px;
    padding: 8px 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--xh-text);
    box-shadow: none;
}

.xh-benefit + .xh-benefit:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 1px;
    background: #e6ecf2;
}

.xh-benefit__icon,
.xh-step__icon,
.xh-stat-card__icon,
.xh-final-cta__icon {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #eaf3fb;
    color: var(--xh-blue);
}

.xh-benefit__icon {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e6ecf2;
}

.xh-benefit__icon svg,
.xh-benefit__icon img,
.xh-step__icon svg,
.xh-stat-card__icon svg,
.xh-final-cta__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xh-benefit__icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.xh-benefit__title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.xh-benefit__text {
    color: var(--xh-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.xh-section--shorts {
    padding-top: 46px;
}

.xh-shorts-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.xh-shorts-title svg {
    width: 58px;
    height: 36px;
    fill: #5f5f5f;
    flex: 0 0 auto;
}

.xh-shorts-row {
    gap: 40px;
}

.xh-shorts-row > * {
    flex: 0 0 calc((100% - 120px) / 4);
}

.xh-short-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: #172333;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.xh-short-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .38);
    transition: background .2s ease;
}

.xh-short-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease, transform .22s ease;
}

.xh-short-card__img--hover {
    opacity: 0;
}

.xh-short-card__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    align-items: start;
    min-height: 350px;
    padding: 26px 18px 14px;
    pointer-events: none;
}

.xh-short-card__title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
}

.xh-short-card__subtitle {
    align-self: start;
    justify-self: center;
    max-width: 165px;
    margin-top: 8px;
    padding: 7px 12px;
    border-radius: 30px;
    background: var(--xh-blue);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.xh-short-card:nth-child(even) .xh-short-card__subtitle {
    background: #d82934;
}

.xh-short-card__note {
    align-self: end;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.xh-factory-video {
    padding: 0 0 42px;
}

.xh-factory-video__frame {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: var(--xh-soft);
    cursor: pointer;
}

.xh-factory-video__frame img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform .24s ease, filter .24s ease;
}

.xh-factory-video__play,
.xh-responsibility__play {
    display: grid;
    flex: 0 0 90px;
    place-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 16px 34px rgba(20, 45, 70, .16);
}

.xh-factory-video__play {
    position: absolute;
    top: 50%;
    left: 112px;
    transform: translateY(-50%);
}

.xh-factory-video__play:before,
.xh-responsibility__play:before {
    content: "";
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--xh-blue);
}

.xh-catalog-grid,
.xh-products-grid,
.xh-stats-grid,
.xh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.xh-category-card,
.xh-product-card,
.xh-stat-card,
.xh-service-card,
.xh-review-card,
.xh-article-card,
.xh-faq-item,
.xh-final-cta__inner {
    border: 1px solid var(--xh-line);
    border-radius: 6px;
    background: var(--xh-card);
    box-shadow: 0 10px 24px rgba(20, 45, 70, .06);
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .xh-short-card:hover:before {
        background: rgba(0, 0, 0, .24);
    }

    .xh-short-card:hover .xh-short-card__img {
        transform: scale(1.035);
    }

    .xh-short-card:hover .xh-short-card__img--hover {
        opacity: 1;
    }

    .xh-factory-video__frame:hover img {
        filter: brightness(.92);
        transform: scale(1.015);
    }

    .xh-responsibility__video:hover {
        color: var(--xh-blue);
    }

    .xh-category-card:hover,
    .xh-product-card:hover,
    .xh-stat-card:hover,
    .xh-service-card:hover,
    .xh-review-card:hover,
    .xh-article-card:hover {
        border-color: #D3E0EC;
        box-shadow: 0 16px 34px rgba(20, 45, 70, .12);
        transform: translateY(-2px);
    }
}

.xh-category-card {
    display: grid;
    grid-template-rows: 156px 1fr;
    min-height: 310px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.xh-category-card__image {
    position: relative;
    display: grid;
    place-items: center;
    padding: 14px;
    background: linear-gradient(180deg, #f8fbfe 0%, #eef4f8 100%);
}

.xh-category-card__image img {
    width: 100%;
    height: 128px;
    object-fit: contain;
}

.xh-category-card__tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 20px);
}

.xh-category-card__tags span {
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(14, 85, 160, .92);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.xh-category-card__tags span:nth-child(2) {
    background: rgba(255, 122, 0, .94);
}

.xh-category-card__content {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.xh-category-card__title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.xh-category-card__links {
    display: grid;
    gap: 5px;
    margin-bottom: 14px;
    color: var(--xh-muted);
    font-size: 13px;
}

.xh-category-card .xh-link {
    margin-top: auto;
}

.xh-equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.xh-equipment-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(120px, 1fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 12px;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid var(--xh-line);
    border-radius: 6px;
    background: #f2f7fd;
    box-shadow: 0 10px 24px rgba(20, 45, 70, .06);
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
    grid-column: span 2;
}

.xh-equipment-card--large {
    grid-column: span 3;
    grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
    min-height: 220px;
}

.xh-equipment-card__image {
    position: relative;
    grid-column: 2;
    grid-row: 2 / 4;
    display: block;
    min-width: 0;
    padding: 0 10px 0 0;
}

.xh-equipment-card__image-item {
    position: absolute;
    width: 44%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 10px 9px rgba(20, 45, 70, .24));
    transition: transform .22s ease, filter .22s ease;
}

.xh-equipment-card__image-item--primary {
    right: auto;
    bottom: 1%;
    left: 2%;
}

.xh-equipment-card__image-item--secondary {
    top: 1%;
    right: 2%;
}

.xh-equipment-card--large .xh-equipment-card__image {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    padding: 16px 18px 0 0;
}

.xh-equipment-card--large .xh-equipment-card__image-item {
    width: 46%;
    height: 82%;
}

.xh-equipment-card__content {
    display: contents;
    padding: 16px 16px 18px;
}

.xh-equipment-card--large .xh-equipment-card__content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 14px 20px 24px;
}

.xh-equipment-card--large .xh-equipment-card__title {
    margin: 0 0 12px;
}

.xh-equipment-card--large .xh-equipment-card__subcats {
    margin: 0 0 14px;
}

.xh-equipment-card--large .xh-equipment-card__link {
    margin: auto 0 0;
}

.xh-equipment-card__title {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    min-height: 40px;
    margin: 16px 16px 10px;
    color: var(--xh-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.xh-equipment-card__title span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xh-equipment-card__title small {
    flex: 0 0 auto;
    color: var(--xh-muted);
    font-size: 11px;
    font-weight: 500;
}

.xh-equipment-card__subcats {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: calc(3 * 2.7em + 12px);
    margin: 0 0 14px 16px;
    color: var(--xh-muted);
    font-size: 12px;
    line-height: 1.35;
}

.xh-equipment-card__subcats a {
    display: -webkit-box;
    min-height: 1.35em;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xh-equipment-card--compact .xh-equipment-card__subcats {
    display: none;
}

.xh-equipment-card__subcats a:hover,
.xh-equipment-card__title:hover,
.xh-equipment-card__link:hover {
    color: var(--xh-blue);
}

.xh-equipment-card__link {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: auto 0 18px 16px;
    border-radius: 50%;
    background: #fff;
    color: var(--xh-blue);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(20, 45, 70, .08);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.xh-equipment-card__link svg {
    width: 28px;
    height: 28px;
}

.xh-equipment-card__link:hover {
    background: var(--xh-blue);
    color: #fff;
    transform: translateY(-1px);
}

@media (hover: hover) and (pointer: fine) {
    .xh-equipment-card__link {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
    }

    .xh-equipment-card:hover .xh-equipment-card__link,
    .xh-equipment-card:focus-within .xh-equipment-card__link {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .xh-equipment-card:hover .xh-equipment-card__link:hover {
        transform: translateY(-1px);
    }

    .xh-equipment-card:hover {
        border-color: #D3E0EC;
        box-shadow: 0 16px 34px rgba(20, 45, 70, .12);
        transform: translateY(-2px);
    }

    .xh-equipment-card:hover .xh-equipment-card__image-item {
        filter: drop-shadow(0 13px 11px rgba(20, 45, 70, .3));
    }

    .xh-equipment-card:hover .xh-equipment-card__image-item--primary {
        transform: translate(-2px, -2px);
    }

    .xh-equipment-card:hover .xh-equipment-card__image-item--secondary {
        transform: translate(2px, -3px);
    }
}

.xh-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.xh-product-card__image {
    position: relative;
    display: grid;
    place-items: center;
    height: 210px;
    padding: 14px;
    background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.xh-product-card__image img {
    width: 100%;
    height: 178px;
    object-fit: contain;
}

.xh-product-card__tags {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.xh-product-card__tags span {
    padding: 5px 8px;
    border-radius: 6px;
    background: #11a76f;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
}

.xh-product-card__tags span:nth-child(2) {
    background: var(--xh-orange);
}

.xh-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--xh-line);
}

.xh-product-card__title {
    min-height: 48px;
    color: var(--xh-text);
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.xh-product-card__meta {
    display: grid;
    gap: 5px;
    min-height: 62px;
    margin: 12px 0 10px;
    color: var(--xh-muted);
    font-size: 13px;
    line-height: 1.32;
}

.xh-product-card__rating {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    color: var(--xh-muted);
    font-size: 13px;
}

.xh-stars {
    color: #ffad0d;
    letter-spacing: 0;
}

.xh-stars .is-muted {
    color: #d1dbe5;
}

.xh-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-height: 30px;
    margin-top: auto;
    margin-bottom: 12px;
}

.xh-price span {
    color: var(--xh-text);
    font-size: 20px;
    font-weight: 900;
}

.xh-price del {
    color: var(--xh-muted);
    font-size: 13px;
}

.xh-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.xh-product-card__actions .xh-btn {
    width: 100%;
}

.xh-product-card__actions .add-to-cart {
    border-color: var(--xh-blue);
    background: #fff;
    color: var(--xh-blue);
}

.xh-product-card__actions .add-to-cart:hover {
    background: var(--xh-blue);
    color: #fff;
}

.xh-section--project-cta {
    padding: 34px 0 42px;
}

.xh-project-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 48%);
    align-items: center;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(105deg, #0b61bf 0%, #176fca 41%, rgba(236, 246, 255, .94) 68%, #f7fbff 100%);
    box-shadow: 0 18px 42px rgba(15, 72, 132, .18);
}

.xh-project-cta__content {
    position: relative;
    z-index: 2;
    max-width: 610px;
    padding: 42px 34px 42px 52px;
    color: #fff;
}

.xh-project-cta h2 {
    max-width: 560px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 31px;
    line-height: 1.15;
}

.xh-project-cta p {
    max-width: 560px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.5;
}

.xh-project-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.xh-project-cta__btn {
    min-width: 170px;
    min-height: 48px;
    border-radius: 6px;
    font-weight: 500;
}

.xh-project-cta__btn--primary {
    border-color: #ef1d2f;
    background: #ef1d2f;
    color: #fff;
}

.xh-project-cta__btn--primary:hover {
    border-color: #c91222;
    background: #c91222;
}

.xh-project-cta__btn--light {
    border-color: var(--xh-blue);
    background: #fff;
    color: var(--xh-blue);
}

.xh-project-cta__btn--light:hover {
    border-color: var(--xh-blue);
    background: var(--xh-blue);
    color: #fff;
}

.xh-project-cta__image {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 600px);
    max-height: 300px;
    object-fit: contain;
    object-position: right center;
    margin: 0 26px 0 0;
    filter: drop-shadow(0 20px 24px rgba(19, 62, 104, .24));
}

.xh-stat-card {
    position: relative;
    min-height: 188px;
    padding: 22px;
    overflow: hidden;
}

.xh-stat-card__icon {
    position: absolute;
    right: -18px;
    bottom: -22px;
    width: 156px;
    height: 156px;
    margin: 0;
    background: transparent;
    color: var(--xh-blue);
    opacity: .09;
    pointer-events: none;
}

.xh-stat-card__icon svg {
    width: 118px;
    height: 118px;
    stroke-width: 1.35;
}

.xh-stat-card__value {
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
    color: var(--xh-blue);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
}

.xh-stat-card__title {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.xh-stat-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--xh-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.xh-section--responsibility {
    padding-top: 18px;
}

.xh-responsibility {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    min-height: 360px;
    overflow: hidden;
    padding: 54px;
    border-radius: 6px;
    background: #f5f7fa;
}

.xh-responsibility__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.xh-responsibility__content h2 {
    max-width: 760px;
    margin-bottom: 38px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.18;
}

.xh-responsibility__content p {
    margin-bottom: 10px;
}

.xh-responsibility__mail {
    color: var(--xh-muted);
}

.xh-responsibility__mail a {
    color: var(--xh-text);
    text-decoration: none;
}

.xh-responsibility__video {
    position: absolute;
    right: 285px;
    bottom: 54px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 360px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--xh-muted);
    font: inherit;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.xh-responsibility__img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 520px;
    max-width: 46%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.xh-service-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 350px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    padding: 28px 20px 22px;
    background: #fff;
    transform-origin: center;
}

.xh-service-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .7) 0%, rgba(246, 250, 255, .91) 58%, rgba(255, 255, 255, .96) 100%),
        var(--xh-service-bg, url("/wp-content/themes/listogib/img/equipment-categories/listogibochnye-stanki.webp")) center/cover no-repeat;
    opacity: 0;
    transition: opacity .24s ease;
}

.xh-service-card:after {
    content: "";
    position: absolute;
    left: 20px;
    top: 132px;
    width: 34px;
    height: 3px;
    z-index: 1;
    border-radius: 999px;
    background: #ef1d2f;
}

.xh-service-card__image {
    display: inline-grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 34px;
}

.xh-service-card__image img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.xh-service-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
}

.xh-service-card__title {
    margin-bottom: 18px;
    color: #101827;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
}

.xh-service-card__text {
    margin-bottom: 26px;
    color: #3e4b5d;
    font-size: 14px;
    line-height: 1.55;
}

.xh-service-card .xh-link {
    margin-top: auto;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--xh-blue);
    border-radius: 6px;
    background: #fff;
    color: var(--xh-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.xh-service-card:hover,
.xh-service-card:focus-within {
    z-index: 3;
    border-color: rgba(14, 85, 160, .28);
    box-shadow: 0 26px 54px rgba(14, 43, 74, .2);
    transform: scale(1.035) translateY(-8px);
}

.xh-service-card:hover:before,
.xh-service-card:focus-within:before {
    opacity: 1;
}

.xh-service-card:hover .xh-service-card__order,
.xh-service-card:focus-within .xh-service-card__order {
    border-color: #ef1d2f;
    background: #ef1d2f;
    color: #fff;
}

.xh-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 54px;
    align-items: start;
}

.xh-step {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.xh-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 27px;
    right: -48px;
    left: 66px;
    height: 1px;
    background: repeating-linear-gradient(90deg, #d7ecff 0 5px, transparent 5px 10px);
    pointer-events: none;
}

.xh-step__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: transparent;
    color: var(--xh-blue);
    box-shadow: none;
}

.xh-step__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.xh-step__number {
    display: inline;
    flex: 0 0 auto;
    color: #149bd8;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.xh-step__content {
    display: grid;
    gap: 9px;
    max-width: 190px;
}

.xh-step__title {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--xh-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.xh-step__text {
    color: var(--xh-muted);
    font-size: 12px;
    line-height: 1.45;
}

.xh-slider-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.xh-scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.xh-scroll-row::-webkit-scrollbar {
    display: none;
}

.xh-scroll-row.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.xh-scroll-row.dragging * {
    user-select: none;
}

.xh-scroll-row img,
.xh-scroll-row a {
    -webkit-user-drag: none;
}

.xh-scroll-row > * {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
}

.xh-shorts-row > * {
    flex: 0 0 calc((100% - 120px) / 4);
}

.xh-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--xh-line);
    border-radius: 50%;
    background: #fff;
    color: var(--xh-blue);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(20, 45, 70, .12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .18s ease, visibility .18s ease;
}

.xh-slider-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.xh-slider-btn--prev {
    left: -18px;
}

.xh-slider-btn--next {
    right: -18px;
}

.xh-review-card {
    padding: 20px;
}

.xh-review-card__top {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 14px;
}

.xh-review-card__avatar {
    display: grid;
    place-items: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--xh-blue);
    box-shadow: 0 0 0 2px rgba(20, 45, 70, .1);
    color: #fff;
    font-weight: 900;
    overflow: hidden;
}

.xh-review-card__avatar img {
    display: block;
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
}

.xh-review-card__avatar--photo {
    background: #eef4f8;
}

.xh-review-card__name {
    font-weight: 800;
}

.xh-review-card__date {
    margin: 2px 0 3px;
    color: var(--xh-muted);
    font-size: 12px;
    line-height: 1.25;
}

.xh-review-card p {
    margin-bottom: 0;
    color: var(--xh-muted);
    line-height: 1.5;
}

.xh-article-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.xh-article-card__video-btn {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.xh-article-card__video-btn * {
    pointer-events: none;
}

.xh-article-card__image {
    position: relative;
    display: block;
    height: 190px;
    background: var(--xh-soft);
}

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

.xh-article-card__label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .94);
    color: var(--xh-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.xh-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 122, 0, .96);
}

.xh-play:before {
    content: "";
    margin-left: 4px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.xh-article-card__content {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.xh-article-card__title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.xh-article-card__text {
    color: var(--xh-muted);
    line-height: 1.45;
}

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

.xh-faq-item {
    padding: 0;
    overflow: hidden;
}

.xh-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 16px 18px;
    font-weight: 500;
    cursor: pointer;
}

.xh-faq-item summary::-webkit-details-marker {
    display: none;
}

.xh-faq-item summary:after {
    content: "+";
    color: var(--xh-blue);
    font-size: 22px;
    font-weight: 900;
}

.xh-faq-item[open] summary:after {
    content: "-";
}

.xh-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--xh-muted);
    line-height: 1.5;
}

.xh-final-cta {
    padding: 42px 0;
    background: #fff;
}

.xh-final-cta__inner {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(180deg, #f9fcff 0%, #fff 100%);
}

.xh-final-cta__icon {
    width: 62px;
    height: 62px;
}

.xh-final-cta h2 {
    margin-bottom: 8px;
}

.xh-final-cta p {
    margin-bottom: 0;
    color: var(--xh-muted);
}

@media (max-width: 1180px) {
    .xh-hero {
        padding-bottom: 0;
    }

    .xh-hero__panel {
        padding-bottom: 42px;
    }

    .xh-benefits {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 42px;
    }

    .xh-benefits,
    .xh-equipment-grid,
    .xh-catalog-grid,
    .xh-products-grid,
    .xh-stats-grid,
    .xh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xh-benefits {
        margin-top: 42px;
    }

    .xh-benefit:nth-child(odd):before {
        display: none;
    }

    .xh-project-cta {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 42%);
    }

    .xh-project-cta__content {
        padding-left: 34px;
    }

    .xh-project-cta h2 {
        font-size: 28px;
    }

    .xh-project-cta__image {
        width: min(100%, 500px);
        margin-right: 12px;
    }

    .xh-shorts-row {
        gap: 20px;
    }

    .xh-shorts-row > * {
        flex-basis: calc((100% - 40px) / 3);
    }

    .xh-responsibility {
        padding: 42px;
    }

    .xh-responsibility__content h2 {
        max-width: 620px;
        font-size: 30px;
    }

    .xh-responsibility__video {
        right: 250px;
    }

    .xh-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .xh-step:nth-child(2):after {
        display: none;
    }
}

@media (max-width: 860px) {
    .xh-hero {
        padding: 18px 0 0;
    }

    .xh-hero__panel {
        min-height: auto;
        overflow: hidden;
        padding: 42px 28px 24px;
        background-position: 60% center;
    }

    .xh-hero__panel:before {
        background: linear-gradient(90deg, rgba(6, 16, 29, .95) 0%, rgba(6, 16, 29, .78) 58%, rgba(6, 16, 29, .38) 100%);
    }

    .xh-hero h1 {
        font-size: 38px;
    }

    .xh-hero__lead {
        font-size: 16px;
    }

    .xh-hero__actions .xh-btn {
        min-height: 54px;
    }

    .xh-project-cta {
        grid-template-columns: 1fr;
        min-height: 0;
        background: linear-gradient(160deg, #0b61bf 0%, #176fca 52%, #f7fbff 100%);
    }

    .xh-project-cta__content {
        max-width: none;
        padding: 34px 28px 12px;
    }

    .xh-project-cta h2 {
        font-size: 26px;
    }

    .xh-project-cta__image {
        justify-self: center;
        width: min(92%, 520px);
        max-height: 260px;
        margin: 0 0 14px;
        object-position: center;
    }

    .xh-catalog-grid,
    .xh-products-grid,
    .xh-stats-grid,
    .xh-services-grid,
    .xh-steps,
    .xh-faq-grid {
        grid-template-columns: 1fr;
    }

    .xh-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .xh-equipment-card--large {
        grid-column: auto;
    }

    .xh-equipment-card {
        grid-template-columns: 1fr;
        grid-template-rows: 122px 1fr;
        min-height: auto;
    }

    .xh-equipment-card .xh-equipment-card__image {
        grid-column: auto;
        grid-row: auto;
        padding: 10px 12px 6px;
    }

    .xh-equipment-card .xh-equipment-card__image-item {
        height: 104px;
    }

    .xh-equipment-card .xh-equipment-card__content {
        display: flex;
        flex-direction: column;
        grid-column: auto;
        grid-row: auto;
        padding: 12px;
    }

    .xh-equipment-card .xh-equipment-card__title {
        min-height: 34px;
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 1.2;
    }

    .xh-equipment-card .xh-equipment-card__title span {
        display: -webkit-box;
        overflow: hidden;
        white-space: normal;
        overflow-wrap: anywhere;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .xh-equipment-card .xh-equipment-card__subcats {
        min-height: auto;
        margin: 0 0 12px;
        font-size: 11px;
        line-height: 1.28;
    }

    .xh-equipment-card .xh-equipment-card__subcats a {
        overflow-wrap: anywhere;
        -webkit-line-clamp: 1;
    }

    .xh-equipment-card .xh-equipment-card__link {
        margin: auto 0 0;
    }

    .xh-benefits {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 44px;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .xh-benefit {
        border: 1px solid rgba(255, 255, 255, .16);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    }

    .xh-benefit + .xh-benefit:before {
        display: none;
    }

    .xh-benefit__icon img {
        width: 28px;
        height: 28px;
    }

    .xh-benefit:first-child {
        grid-column: 1 / -1;
    }

    .xh-step {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        column-gap: 14px;
        align-items: start;
    }

    .xh-step__number {
        font-size: 13px;
    }

    .xh-step__icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
        margin-bottom: 0;
    }

    .xh-step__icon img {
        width: 54px;
        height: 54px;
    }

    .xh-step__content {
        grid-column: 2;
        max-width: none;
    }

    .xh-step:not(:last-child):after,
    .xh-step:nth-child(2):after {
        display: block;
        top: 62px;
        right: auto;
        bottom: -28px;
        left: 26px;
        width: 1px;
        height: auto;
        background: repeating-linear-gradient(180deg, #d7ecff 0 5px, transparent 5px 10px);
    }

    .xh-scroll-row > * {
        flex-basis: 82%;
    }

    .xh-shorts-row > * {
        flex-basis: min(270px, 76%);
    }

    .xh-short-card,
    .xh-short-card__content {
        min-height: 330px;
    }

    .xh-factory-video {
        padding-bottom: 30px;
    }

    .xh-factory-video__frame img {
        height: 240px;
    }

    .xh-factory-video__play {
        left: 32px;
        width: 64px;
        height: 64px;
    }

    .xh-factory-video__play:before,
    .xh-responsibility__play:before {
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-left-width: 17px;
    }

    .xh-responsibility {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 28px 28px 0;
    }

    .xh-responsibility__content h2 {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .xh-responsibility__video {
        position: relative;
        right: auto;
        bottom: auto;
        order: 2;
        margin: 10px 0 -78px auto;
        max-width: 280px;
        gap: 16px;
    }

    .xh-responsibility__play {
        width: 62px;
        height: 62px;
        flex: 0 0 auto;
    }

    .xh-responsibility__img {
        position: relative;
        order: 3;
        align-self: flex-end;
        max-width: none;
        width: min(390px, 100%);
        height: 230px;
    }

    .xh-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .xh-final-cta__inner {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .xh-final-cta__inner .xh-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .xh-section {
        padding: 30px 0;
    }

    .xhome h2 {
        font-size: 24px;
    }

    .xh-hero__panel {
        padding: 34px 18px 18px;
        background-position: 64% center;
    }

    .xh-hero__eyebrow {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: .1em;
    }

    .xh-hero__eyebrow svg {
        width: 18px;
        height: 18px;
    }

    .xh-hero h1 {
        font-size: 32px;
    }

    .xh-hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .xh-hero__actions .xh-btn {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 15px 18px;
    }

    .xh-step {
        grid-template-columns: 60px minmax(0, 1fr);
        column-gap: 12px;
    }

    .xh-step__icon,
    .xh-step__icon img {
        width: 50px;
        height: 50px;
    }

    .xh-step:not(:last-child):after,
    .xh-step:nth-child(2):after {
        top: 58px;
        left: 24px;
    }

    .xh-step__title {
        font-size: 13px;
    }

    .xh-step__text {
        font-size: 12px;
    }

    .xh-section--project-cta {
        padding: 26px 0 30px;
    }

    .xh-project-cta {
        border-radius: 8px;
    }

    .xh-project-cta__content {
        padding: 28px 18px 8px;
    }

    .xh-project-cta h2 {
        font-size: 23px;
        line-height: 1.2;
    }

    .xh-project-cta p {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .xh-project-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .xh-project-cta__btn {
        width: 100%;
        min-width: 0;
    }

    .xh-project-cta__image {
        width: 96%;
        max-height: 210px;
        margin-bottom: 10px;
    }

    .xh-shorts-title {
        align-items: flex-start;
        font-size: 22px;
    }

    .xh-shorts-title svg {
        width: 44px;
        height: 28px;
    }

    .xh-shorts-row {
        gap: 12px;
    }

    .xh-short-card,
    .xh-short-card__content {
        min-height: 300px;
    }

    .xh-short-card__content {
        padding: 22px 14px 12px;
    }

    .xh-short-card__title {
        font-size: 15px;
    }

    .xh-factory-video__frame img {
        height: 190px;
    }

    .xh-factory-video__play {
        left: 22px;
        width: 56px;
        height: 56px;
    }

    .xh-responsibility {
        padding: 22px 18px 0;
    }

    .xh-responsibility__content h2 {
        font-size: 20px;
    }

    .xh-responsibility__video {
        margin-bottom: -64px;
        font-size: 13px;
    }

    .xh-btn {
        width: 100%;
    }

    .xh-benefit {
        grid-template-columns: 44px 1fr;
        min-height: auto;
        gap: 3px 10px;
        padding: 12px;
    }

    .xh-benefit__icon {
        width: 44px;
        height: 44px;
    }

    .xh-benefit__icon svg,
    .xh-benefit__icon img {
        width: 24px;
        height: 24px;
    }

    .xh-benefit:not(:first-child) {
        grid-template-columns: 36px minmax(0, 1fr);
        align-content: center;
        gap: 3px 8px;
        padding: 10px;
    }

    .xh-benefit:not(:first-child) .xh-benefit__icon {
        grid-row: span 2;
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .xh-benefit:not(:first-child) .xh-benefit__icon svg,
    .xh-benefit:not(:first-child) .xh-benefit__icon img {
        width: 21px;
        height: 21px;
    }

    .xh-benefit__title {
        font-size: 12px;
    }

    .xh-benefit__text {
        font-size: 9px;
    }

    .xh-benefit:not(:first-child) .xh-benefit__title {
        font-size: 11px;
        line-height: 1.15;
    }

    .xh-benefit:not(:first-child) .xh-benefit__text {
        font-size: 9px;
        line-height: 1.2;
    }

    .xh-category-card {
        grid-template-rows: 104px 1fr;
        min-height: auto;
    }

    .xh-equipment-card {
        grid-template-rows: 104px 1fr;
        min-height: auto;
    }

    .xh-equipment-card__image {
        padding: 10px;
    }

    .xh-equipment-card__image-item {
        height: 82px;
    }

    .xh-equipment-card__content {
        padding: 12px;
    }

    .xh-equipment-card__title {
        min-height: 34px;
        font-size: 13px;
    }

    .xh-equipment-card__subcats {
        font-size: 11px;
        min-height: calc(3 * 2.7em + 12px);
    }

    .xh-category-card__image {
        padding: 10px;
    }

    .xh-category-card__image img {
        height: 84px;
    }

    .xh-category-card__content {
        padding: 12px;
    }

    .xh-category-card__title {
        font-size: 13px;
    }

    .xh-category-card__links {
        font-size: 11px;
    }

    .xh-product-card__actions {
        grid-template-columns: 1fr;
    }

    .xh-scroll-row {
        margin-right: 0;
        padding-right: 0;
    }

    .xh-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .xh-slider-btn--prev {
        left: 6px;
    }

    .xh-slider-btn--next {
        right: 6px;
    }

    .xh-scroll-row > * {
        flex-basis: 88%;
    }

    .xh-final-cta__inner {
        grid-template-columns: 1fr;
    }
}

/* Fluid asymmetric equipment mosaic. */
.xhome--catalog-variant .xh-equipment-grid--mosaic {
    display: flex;
    flex-direction: column;
    height: 760px;
    padding: 3px;
    gap: 3px;
    overflow: hidden;
    border-radius: 6px;
    background: #f7fafc;
    box-shadow: 0 0 26px rgba(85, 125, 154, .22);
}

.xhome--catalog-variant .xh-equipment-mosaic__row {
    display: flex;
    min-width: 0;
    min-height: 0;
    gap: 3px;
    flex-basis: 0;
    transition: flex-grow .46s cubic-bezier(.2, .72, .2, 1);
}

.xhome--catalog-variant .xh-equipment-mosaic__row--1 {
    flex-grow: 1.32;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--2 {
    flex-grow: .95;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--3 {
    flex-grow: 1.05;
}

.xhome--catalog-variant .xh-equipment-mosaic__row > .xh-equipment-card {
    position: relative;
    display: block;
    width: 0;
    min-width: 0;
    min-height: 0;
    flex-basis: 0;
    flex-grow: var(--tile-grow);
    overflow: hidden;
    border: 0;
    border-radius: 3px;
    background: #cfd6dc;
    box-shadow: none;
    opacity: 1;
    filter: none;
    transform: none;
    transition: flex-grow .46s cubic-bezier(.2, .72, .2, 1), opacity .34s ease, filter .34s ease, box-shadow .34s ease;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:nth-child(1) {
    --tile-grow: 2.15;
    --tile-hover-grow: 3.15;
    background: #cfd6dc;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:nth-child(2) {
    --tile-grow: 1;
    --tile-hover-grow: 2;
    background: #d9d7d4;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--2 > .xh-equipment-card:nth-child(1) {
    --tile-grow: 1.35;
    --tile-hover-grow: 2.35;
    background: #ccd8d8;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--2 > .xh-equipment-card:nth-child(2) {
    --tile-grow: .95;
    --tile-hover-grow: 1.95;
    background: #d8d3cc;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--2 > .xh-equipment-card:nth-child(3) {
    --tile-grow: 1.15;
    --tile-hover-grow: 2.15;
    background: #cbd4dc;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--3 > .xh-equipment-card:nth-child(1) {
    --tile-grow: 1.05;
    --tile-hover-grow: 2.05;
    background: #d5d1d7;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--3 > .xh-equipment-card:nth-child(2) {
    --tile-grow: 1.18;
    --tile-hover-grow: 2.18;
    background: #cbd8d2;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--3 > .xh-equipment-card:nth-child(3) {
    --tile-grow: 1.37;
    --tile-hover-grow: 2.37;
    background: #d2d5da;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card::before {
    background: linear-gradient(180deg, rgba(248, 250, 252, .04) 8%, rgba(248, 250, 252, .18) 52%, rgba(248, 250, 252, .96) 100%);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card::after {
    border: 1px solid rgba(255, 255, 255, .76);
    box-shadow: inset 0 0 16px rgba(255, 255, 255, .2);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__image {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item {
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 16px 20px 62px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 12px rgba(25, 42, 55, .28));
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__content,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__title {
    max-width: 96%;
    margin: 0;
    color: #102235;
    font-size: 23px;
    line-height: 1.04;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .9);
}

.xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:first-child .xh-equipment-card__title {
    max-width: 84%;
    font-size: 41px;
}

.xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:nth-child(2) .xh-equipment-card__title {
    font-size: 29px;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title small {
    color: rgba(16, 34, 53, .66);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__subcats {
    color: rgba(16, 34, 53, .88);
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a {
    text-shadow: none;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a:hover,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a:focus-visible,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title:hover,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title:focus-visible {
    color: #0b5faa;
}

.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__link,
.xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__link {
    border-color: rgba(16, 34, 53, .5);
    background: rgba(255, 255, 255, .62);
    color: #102235;
}

@media (hover: hover) and (pointer: fine) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic:has(.xh-equipment-mosaic__row:hover) .xh-equipment-mosaic__row:not(:hover),
    .xhome--catalog-variant .xh-equipment-grid--mosaic:has(.xh-equipment-mosaic__row:focus-within) .xh-equipment-mosaic__row:not(:focus-within) {
        flex-grow: .78;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row:hover,
    .xhome--catalog-variant .xh-equipment-mosaic__row:focus-within {
        flex-grow: 1.62;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row:has(> .xh-equipment-card:hover) > .xh-equipment-card:not(:hover),
    .xhome--catalog-variant .xh-equipment-mosaic__row:has(> .xh-equipment-card:focus-within) > .xh-equipment-card:not(:focus-within) {
        flex-grow: .72;
        opacity: .76;
        filter: saturate(.72) brightness(.96);
        transform: none;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row > .xh-equipment-card:hover,
    .xhome--catalog-variant .xh-equipment-mosaic__row > .xh-equipment-card:focus-within {
        z-index: 3;
        flex-grow: var(--tile-hover-grow);
        border-color: transparent;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9), 0 10px 24px rgba(32, 52, 68, .2);
        transform: none;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover::before,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within::before {
        background: linear-gradient(180deg, rgba(248, 250, 252, .02) 6%, rgba(248, 250, 252, .28) 48%, rgba(248, 250, 252, .99) 100%);
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:hover .xh-equipment-card__image-item,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:focus-within .xh-equipment-card__image-item {
        filter: drop-shadow(0 18px 14px rgba(25, 42, 55, .34));
        transform: scale(1.025);
    }
}

@media (max-width: 1100px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic {
        display: flex;
        height: 900px;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row {
        display: flex;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:first-child .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-mosaic__row--1 > .xh-equipment-card:nth-child(2) .xh-equipment-card__title {
        font-size: 20px;
    }
}

/* Mobile independent catalog sliders. */
@media (max-width: 760px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic {
        display: flex;
        height: auto;
        padding: 3px;
        gap: 10px;
        overflow: visible;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-basis: auto;
        flex-grow: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row::-webkit-scrollbar {
        display: none;
    }

    .xhome--catalog-variant .xh-equipment-mosaic__row > .xh-equipment-card:nth-child(n) {
        box-sizing: border-box;
        width: min(86vw, 360px);
        min-width: min(86vw, 360px);
        min-height: 360px;
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__content,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__content {
        padding: 18px 56px 18px 18px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card:nth-child(n) .xh-equipment-card__title {
        max-width: 100%;
        font-size: 22px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card--large .xh-equipment-card__subcats {
        max-height: none;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__subcats a {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-card__image-item {
        padding: 14px 16px 154px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xhome--catalog-variant .xh-equipment-mosaic__row,
    .xhome--catalog-variant .xh-equipment-mosaic__row > .xh-equipment-card {
        transition: none;
    }
}

/* Catalog title sizes by interaction state. */
@media (min-width: 1101px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:not(:hover):not(:focus-within) .xh-equipment-card__title {
        font-size: 23px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:first-child:not(:hover):not(:focus-within) .xh-equipment-card__title {
        font-size: 41px;
    }

    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:nth-child(2):not(:hover):not(:focus-within) .xh-equipment-card__title {
        font-size: 29px;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:not(:hover):not(:focus-within) .xh-equipment-card__title {
        font-size: 20px;
    }
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:hover .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card:focus-within .xh-equipment-card__title {
        font-size: 22px;
    }
}

/* Long-title category width correction. */
@media (min-width: 1101px) {
    .xhome--catalog-variant .xh-equipment-mosaic__row--2 > .xh-equipment-card--lentochnopilnye-stanki {
        --tile-grow: 1.55;
        --tile-hover-grow: 2.55;
    }

    .xhome--catalog-variant .xh-equipment-card--lentochnopilnye-stanki .xh-equipment-card__title span {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }
}

/* Matching initial title sizes. */
@media (min-width: 1101px) {
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card.xh-equipment-card--lentochnopilnye-stanki:not(:hover):not(:focus-within) .xh-equipment-card__title,
    .xhome--catalog-variant .xh-equipment-grid--mosaic .xh-equipment-mosaic__row > .xh-equipment-card.xh-equipment-card--razmotchiki-rulona:not(:hover):not(:focus-within) .xh-equipment-card__title {
        font-size: 29px;
    }
}

/* Larger stepped composition for the two sheet benders. */
.xh-equipment-card--listogibochnye-stanki {
    --xh-sheet-bender-gap: 10px;
}

.xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image {
    isolation: isolate;
}

.xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--primary {
    z-index: 1;
    width: calc(50% - (var(--xh-sheet-bender-gap) / 2));
    height: 88%;
    top: auto;
    right: auto;
    bottom: -5%;
    left: 0;
}

.xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--secondary {
    z-index: 2;
    width: calc(50% - (var(--xh-sheet-bender-gap) / 2));
    height: 92%;
    top: -7%;
    right: 8%;
    bottom: auto;
    left: auto;
}

@media (max-width: 860px) {
    .xh-equipment-card--listogibochnye-stanki {
        --xh-sheet-bender-gap: 12px;
        grid-template-rows: 140px 1fr;
    }

    .xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--primary {
        height: 104px;
        bottom: 0;
        left: 0;
    }

    .xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--secondary {
        height: 108px;
        top: 0;
        right: 0;
    }
}

@media (max-width: 560px) {
    .xh-equipment-card--listogibochnye-stanki {
        --xh-sheet-bender-gap: 8px;
        grid-template-rows: 122px 1fr;
    }

    .xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--primary {
        height: 86px;
        bottom: 0;
        left: 0;
    }

    .xh-equipment-card--listogibochnye-stanki .xh-equipment-card__image-item--secondary {
        height: 90px;
        top: 0;
        right: 0;
    }
}

.xh-equipment-card--lentochnopilnye-stanki .xh-equipment-card__image-item--primary,
.xh-equipment-card--valcovochnye-stanki .xh-equipment-card__image-item--primary,
.xh-equipment-card--zigovochnye-stanki .xh-equipment-card__image-item--primary,
.xh-equipment-card--razmotchiki-rulona .xh-equipment-card__image-item--primary,
.xh-equipment-card--gilotiny-dlya-rezki-metalla .xh-equipment-card__image-item--primary {
    width: 170px !important;
    height: 130px !important;
    transform: none !important;
}

@media (max-width: 760px) {
    .xh-equipment-card--lentochnopilnye-stanki .xh-equipment-card__image-item--primary,
    .xh-equipment-card--valcovochnye-stanki .xh-equipment-card__image-item--primary,
    .xh-equipment-card--zigovochnye-stanki .xh-equipment-card__image-item--primary,
    .xh-equipment-card--razmotchiki-rulona .xh-equipment-card__image-item--primary,
    .xh-equipment-card--gilotiny-dlya-rezki-metalla .xh-equipment-card__image-item--primary {
        width: 470px !important;
        height: 170px !important;
        top: auto !important;
        bottom: -70% !important;
        left: 20% !important;
        max-width: none !important;
    }
}

.xhome .xh-equipment-card--aksessuary-dlya-listogiba .xh-equipment-card__image-item--primary {
    width: 170px !important;
    height: 130px !important;
    transform: none !important;
}

@media (max-width: 760px) {
    .xhome .xh-equipment-card--aksessuary-dlya-listogiba .xh-equipment-card__image-item--primary {
        width: 470px !important;
        height: 170px !important;
        top: auto !important;
        bottom: -70% !important;
        left: 20% !important;
        max-width: none !important;
    }
}

/* Four-image composition for the roofing category card. */
.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--primary,
.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--secondary,
.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--tertiary,
.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--quaternary {
    width: 46%;
    height: 48%;
}

.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--primary {
    top: auto;
    right: auto;
    bottom: 1%;
    left: 2%;
}

.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--secondary {
    top: 1%;
    right: 2%;
    bottom: auto;
    left: auto;
}

.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--tertiary {
    top: 1%;
    right: auto;
    bottom: auto;
    left: 2%;
}

.xhome .xh-equipment-card--dlya-krovli .xh-equipment-card__image-item--quaternary {
    top: auto;
    right: 2%;
    bottom: 1%;
    left: auto;
}
