:root {
    --v4-red: #c8102e;
    --v4-red-dark: #9f0c24;
    --v4-ink: #17191d;
    --v4-slate: #4f5661;
    --v4-line: #dfe3e8;
    --v4-soft: #f4f6f8;
    --v4-white: #ffffff;
    --v4-focus: #1d63d4;
    --v4-radius: 12px;
    --v4-shadow: 0 16px 40px rgba(20, 25, 35, .11);
    --v4-font-sans: Inter, Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.v4-page,
.v4-site-header,
.v4-mobile-drawer,
.v4-site-footer {
    color: var(--v4-ink);
    font-family: var(--v4-font-sans);
    font-weight: 400;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.v4-page {
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    background: var(--v4-white);
}

.v4-site-header *,
.v4-mobile-drawer *,
.v4-site-footer *,
.v4-live-chat *,
.v4-home *,
.v4-search-page *,
.v4-product-page *,
.v4-quality-page *,
.v4-content-page * {
    box-sizing: border-box;
}

.v4-container {
    width: min(100% - 40px, 1280px);
    margin-inline: auto;
}

.v4-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.v4-skip-link {
    position: fixed;
    z-index: 1200;
    top: 8px;
    left: 12px;
    padding: 10px 14px;
    color: var(--v4-white);
    background: var(--v4-ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

.v4-skip-link:focus {
    transform: translateY(0);
}

.v4-main-start {
    display: block;
    height: 0;
    scroll-margin-top: 100px;
}

.v4-site-header a,
.v4-mobile-drawer a,
.v4-site-footer a,
.v4-home a {
    text-decoration: none;
}

.v4-site-header button,
.v4-mobile-drawer button,
.v4-home button {
    font: inherit;
}

.v4-site-header :focus-visible,
.v4-mobile-drawer :focus-visible,
.v4-site-footer :focus-visible,
.v4-live-chat :focus-visible,
.v4-home :focus-visible,
.v4-quality-page :focus-visible,
.v4-content-page :focus-visible,
.v4-skip-link:focus-visible {
    outline: 3px solid var(--v4-focus) !important;
    outline-offset: 3px !important;
}

/* Global header */
.v4-site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--v4-line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 10px rgba(20, 25, 35, .04);
}

.v4-site-header__row {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 10px;
}

.v4-site-header .v4-container {
    width: min(100% - 24px, 1320px);
}

.v4-brand {
    position: relative;
    display: inline-flex;
    min-width: 132px;
    min-height: 44px;
    align-items: center;
    flex: 0 0 auto;
}

.v4-brand__image {
    display: block;
    width: 144px;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.v4-site-header .v4-brand {
    min-width: 190px;
    padding-right: 8px;
}

.v4-site-header .v4-brand__image {
    width: 190px;
    max-height: 38px;
    filter: drop-shadow(0 1px 0 rgba(126, 5, 25, .96)) drop-shadow(0 3px 3px rgba(42, 0, 8, .2));
    transform: translateZ(0);
    transition: filter .22s ease, transform .22s ease;
}

.v4-site-header .v4-brand:hover .v4-brand__image,
.v4-site-header .v4-brand:focus-visible .v4-brand__image {
    filter: drop-shadow(0 2px 0 rgba(112, 4, 22, .98)) drop-shadow(0 5px 6px rgba(42, 0, 8, .24));
    transform: translateY(-1px);
}

.v4-site-header .v4-brand::after {
    position: absolute;
    inset: 0 8px 0 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(108deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, .52) 45%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, .48) 55%,
        transparent 61%,
        transparent 100%);
    background-position: 145% 0;
    background-size: 240% 100%;
    -webkit-mask: url('/static/image/logo.png') center / contain no-repeat;
    mask: url('/static/image/logo.png') center / contain no-repeat;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, .58));
    animation: v4-brand-light-flow 8.6s cubic-bezier(.4, 0, .2, 1) infinite;
}

.v4-site-header .v4-brand.has-image-error::after {
    display: none;
}

@keyframes v4-brand-light-flow {
    0%,
    38% {
        background-position: 145% 0;
    }

    90%,
    100% {
        background-position: -65% 0;
    }
}

.v4-brand__fallback {
    display: none;
    color: var(--v4-red);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.v4-brand.has-image-error .v4-brand__image {
    display: none;
}

.v4-brand.has-image-error .v4-brand__fallback {
    display: inline;
}

.v4-desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
}

.v4-desktop-nav .v4-nav__link,
.v4-desktop-nav .v4-nav__toggle {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    border: 0;
    border-radius: 6px;
    color: var(--v4-ink) !important;
    background: transparent !important;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .005em;
    line-height: 1;
    white-space: nowrap;
}

.v4-nav__link:hover,
.v4-nav__toggle:hover,
.v4-nav__link:focus-visible,
.v4-nav__toggle:focus-visible {
    background: var(--v4-soft) !important;
}

.v4-nav__link.is-current::after,
.v4-nav__toggle.is-current::after {
    position: absolute;
    right: 6px;
    bottom: 4px;
    left: 6px;
    height: 2px;
    background: var(--v4-red);
    content: "";
}

.v4-nav__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.v4-nav__group {
    position: relative;
}

.v4-nav__menu {
    position: absolute;
    z-index: 1020;
    top: calc(100% + 9px);
    left: 0;
    width: 244px;
    padding: 10px;
    border: 1px solid var(--v4-line);
    border-radius: 10px;
    background: var(--v4-white);
    box-shadow: var(--v4-shadow);
}

#v4-products-menu {
    width: min(520px, calc(100vw - 32px));
}

.v4-nav__menu[hidden] {
    display: none;
}

.v4-nav__menu a {
    display: block;
    padding: 10px 11px;
    border-radius: 6px;
    color: var(--v4-ink) !important;
    font-size: 14px;
    line-height: 1.35;
}

.v4-nav__menu a:hover,
.v4-nav__menu a:focus-visible {
    background: var(--v4-soft);
}

.v4-nav__menu-divider {
    height: 1px;
    margin: 7px 4px;
    background: var(--v4-line);
}

.v4-nav__menu-label {
    display: block;
    padding: 4px 11px 7px;
    color: var(--v4-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v4-nav__menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 6px;
}

.v4-site-header__actions {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    gap: 7px;
}

.v4-header-search {
    display: flex;
    overflow: visible;
    height: 42px;
    border: 1px solid #b9c0ca;
    border-radius: 8px;
    background: var(--v4-white);
}

.v4-header-search input {
    min-width: 0;
    height: 100%;
    padding: 0 9px;
    border: 0 !important;
    color: var(--v4-ink);
    background: transparent !important;
    box-shadow: none !important;
    font: inherit;
    font-size: 14px;
}

.v4-header-search input:focus {
    outline: 0;
}

.v4-header-search button {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 0;
    color: var(--v4-white);
    background: var(--v4-ink) !important;
    cursor: pointer;
    font-weight: 700;
}

.v4-header-search--desktop {
    width: 175px;
}

.v4-header-search--desktop .v4-autocomplete {
    width: 131px;
}

.v4-action-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: var(--v4-ink) !important;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.v4-action-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.v4-action-link--secondary {
    gap: 7px;
    padding-inline: 10px;
    border: 1px solid #c6cbd2;
    border-radius: 8px;
    color: var(--v4-red-dark) !important;
    background: linear-gradient(180deg, #fff, #fafbfc);
    box-shadow: 0 3px 10px rgba(20, 25, 35, .07);
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.v4-action-link--secondary svg {
    flex: 0 0 auto;
}

.v4-action-link--secondary:hover,
.v4-action-link--secondary:focus-visible {
    border-color: var(--v4-red);
    background: #fff5f7;
    box-shadow: 0 6px 16px rgba(159, 12, 36, .13);
    text-decoration: none;
    transform: translateY(-1px);
}

.v4-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.v4-button--primary {
    border-color: var(--v4-red) !important;
    color: var(--v4-white) !important;
    background: var(--v4-red) !important;
}

.v4-button--primary:hover {
    border-color: var(--v4-red-dark) !important;
    background: var(--v4-red-dark) !important;
}

.v4-button--outline {
    border-color: #aeb4bd !important;
    color: var(--v4-ink) !important;
    background: transparent !important;
}

.v4-button--outline:hover {
    border-color: var(--v4-ink) !important;
    background: rgba(255, 255, 255, .72) !important;
}

.v4-button--dark {
    border-color: var(--v4-ink) !important;
    color: var(--v4-white) !important;
    background: var(--v4-ink) !important;
}

.v4-button--dark:hover {
    border-color: #343941 !important;
    background: #343941 !important;
}

.v4-header-quote {
    min-height: 44px;
    padding-inline: 14px;
    white-space: nowrap;
}

.v4-icon-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 7px;
    color: var(--v4-ink);
    background: transparent !important;
    cursor: pointer;
}

.v4-icon-button:hover {
    background: var(--v4-soft) !important;
}

.v4-menu-button,
.v4-mobile-search-button,
.v4-mobile-search-row {
    display: none;
}

/* Mobile navigation */
.v4-drawer-backdrop {
    position: fixed;
    z-index: 1090;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(15, 18, 23, .6) !important;
    cursor: pointer;
}

.v4-drawer-backdrop[hidden],
.v4-mobile-drawer[hidden] {
    display: none;
}

.v4-mobile-drawer {
    position: fixed;
    z-index: 1100;
    inset: 0 auto 0 0;
    width: min(88vw, 360px);
    max-width: 100%;
    overflow-y: auto;
    padding: 18px;
    color: var(--v4-ink);
    background: var(--v4-white);
    box-shadow: 10px 0 34px rgba(0, 0, 0, .2);
}

.v4-mobile-drawer__heading {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--v4-line);
    font-size: 20px;
    font-weight: 750;
}

.v4-mobile-nav {
    padding-block: 12px;
}

.v4-mobile-nav > a,
.v4-mobile-nav__group > button {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px;
    border: 0;
    border-bottom: 1px solid #eceff2;
    color: var(--v4-ink) !important;
    background: transparent !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.v4-mobile-nav [aria-current="page"] {
    box-shadow: inset 3px 0 var(--v4-red);
    padding-left: 12px;
}

.v4-mobile-nav__group > button[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.v4-mobile-nav__group [data-accordion-panel] {
    padding: 6px 0 8px 16px;
    border-bottom: 1px solid var(--v4-line);
}

.v4-mobile-nav__group [data-accordion-panel][hidden] {
    display: none;
}

.v4-mobile-nav__group [data-accordion-panel] a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 7px 4px;
    color: var(--v4-slate) !important;
    font-size: 15px;
}

.v4-mobile-drawer__actions {
    display: grid;
    gap: 10px;
    padding-block: 12px;
}

.v4-mobile-drawer__contact {
    display: grid;
    gap: 9px;
    padding-top: 16px;
    border-top: 1px solid var(--v4-line);
    font-style: normal;
}

.v4-mobile-drawer__contact a {
    color: var(--v4-ink) !important;
    overflow-wrap: anywhere;
}

body.v4-drawer-open {
    overflow: hidden !important;
}

/* Home */
.v4-home {
    min-width: 0;
    color: var(--v4-ink);
    background: var(--v4-white);
}

.v4-hero {
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(200, 16, 46, .06), transparent 42%),
        linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.v4-hero__grid {
    display: grid;
    min-height: 600px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(40px, 7vw, 100px);
    padding-block: 80px;
}

.v4-eyebrow {
    margin: 0 0 13px;
    color: var(--v4-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.v4-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(42px, 5.3vw, 72px);
    font-weight: 700;
    letter-spacing: -.038em;
    line-height: 1.02;
}

.v4-hero__lede {
    max-width: 640px;
    margin: 24px 0 28px;
    color: var(--v4-slate);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.6;
}

.v4-hero-search {
    max-width: 660px;
}

.v4-hero-search > label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 750;
}

.v4-hero-search__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
}

.v4-hero-search input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 11px 15px;
    border: 1px solid #aeb5bf;
    border-radius: 8px;
    color: var(--v4-ink);
    background: var(--v4-white);
    box-shadow: none;
    font: inherit;
    font-size: 16px;
}

.v4-form-status {
    min-height: 0;
    margin: 8px 0 0;
    color: var(--v4-slate);
    font-size: 14px;
}

.v4-form-status:empty {
    display: none;
}

/* Search autocomplete */
.v4-autocomplete {
    position: relative;
    min-width: 0;
    flex: 1 1 auto;
}

.v4-autocomplete > input {
    width: 100%;
}

.v4-suggestions {
    position: absolute;
    z-index: 1060;
    top: calc(100% + 9px);
    left: 0;
    width: max(100%, 310px);
    max-height: min(420px, 60vh);
    overflow-y: auto;
    padding: 7px;
    border: 1px solid var(--v4-line);
    border-radius: 10px;
    background: var(--v4-white);
    box-shadow: var(--v4-shadow);
}

.v4-suggestions[hidden] {
    display: none;
}

.v4-suggestion-option,
.v4-suggestion-all,
.v4-suggestion-message {
    display: grid;
    width: 100%;
    min-height: 52px;
    align-content: center;
    gap: 3px;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    color: var(--v4-ink);
    background: transparent !important;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.v4-suggestion-option strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v4-suggestion-option span {
    overflow: hidden;
    color: var(--v4-slate);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v4-suggestion-option:hover,
.v4-suggestion-option.is-active,
.v4-suggestion-option[aria-selected="true"],
.v4-suggestion-all:hover {
    background: var(--v4-soft) !important;
}

.v4-suggestion-all {
    min-height: 46px;
    margin-top: 5px;
    border-top: 1px solid var(--v4-line);
    color: var(--v4-red);
    font-size: 13px;
    font-weight: 750;
}

.v4-suggestion-message {
    min-height: 52px;
    color: var(--v4-slate);
    cursor: default;
    font-size: 13px;
    line-height: 1.45;
}

.v4-button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.v4-hero__content > .v4-button-row {
    margin-top: 22px;
}

.v4-text-link,
.v4-task-card a,
.v4-solution-card a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: var(--v4-ink) !important;
    font-size: 14px;
    font-weight: 750;
    text-decoration: underline !important;
    text-decoration-color: transparent !important;
    text-underline-offset: 4px;
}

.v4-text-link:hover,
.v4-task-card a:hover,
.v4-solution-card a:hover {
    text-decoration-color: currentColor !important;
}

.v4-hero__visual {
    position: relative;
    min-height: 390px;
    border: 1px solid #e0e4e9;
    border-radius: 28px;
    background:
        linear-gradient(#e9edf1 1px, transparent 1px),
        linear-gradient(90deg, #e9edf1 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(200, 16, 46, .12), transparent 55%),
        var(--v4-white);
    background-size: 28px 28px, 28px 28px, auto, auto;
    box-shadow: var(--v4-shadow);
}

.v4-hero__visual::before,
.v4-hero__visual::after {
    position: absolute;
    background: var(--v4-red);
    content: "";
    opacity: .35;
}

.v4-hero__visual::before {
    top: 50%;
    left: 15%;
    width: 70%;
    height: 2px;
}

.v4-hero__visual::after {
    top: 15%;
    left: 50%;
    width: 2px;
    height: 70%;
}

.v4-component-card {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 170px;
    min-height: 118px;
    padding: 18px;
    border: 1px solid #ccd2da;
    border-radius: 12px;
    color: var(--v4-ink);
    background: var(--v4-white);
    box-shadow: 0 10px 25px rgba(20, 25, 35, .12);
}

.v4-component-card span {
    color: var(--v4-red);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
}

.v4-component-card strong {
    margin-top: 7px;
    font-size: 20px;
}

.v4-component-card i {
    position: absolute;
    bottom: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--v4-red);
}

.v4-component-card i:nth-of-type(1) { left: 30px; }
.v4-component-card i:nth-of-type(2) { left: 78px; }
.v4-component-card i:nth-of-type(3) { left: 126px; }
.v4-component-card--one { top: 44px; left: 36px; transform: rotate(-3deg); }
.v4-component-card--two { top: 137px; right: 34px; transform: rotate(3deg); }
.v4-component-card--three { bottom: 36px; left: 70px; transform: rotate(-1deg); }

.v4-facts {
    border-block: 1px solid var(--v4-line);
    background: var(--v4-white);
}

.v4-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v4-facts p {
    display: grid;
    min-width: 0;
    min-height: 112px;
    align-content: center;
    gap: 5px;
    margin: 0;
    padding: 22px 30px;
    border-right: 1px solid var(--v4-line);
}

.v4-facts p:last-child {
    border-right: 0;
}

.v4-facts strong {
    font-size: 15px;
}

.v4-facts strong a {
    color: inherit;
}

.v4-facts strong a:hover {
    color: var(--v4-red-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v4-facts span {
    color: var(--v4-slate);
    font-size: 14px;
    line-height: 1.5;
}

.v4-section {
    padding-block: clamp(72px, 8vw, 112px);
}

.v4-section--muted {
    background: var(--v4-soft);
}

.v4-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.v4-section-heading--row {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.v4-section-heading--row .v4-text-link {
    flex: 0 0 auto;
}

.v4-section h2,
.v4-quality h2,
.v4-final-cta h2 {
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.12;
}

.v4-card-grid {
    display: grid;
    gap: 20px;
}

.v4-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v4-task-card,
.v4-solution-card {
    display: flex;
    min-width: 0;
    min-height: 280px;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-white);
}

.v4-task-card:hover,
.v4-solution-card:hover {
    border-color: #b7bec7;
    box-shadow: 0 12px 28px rgba(20, 25, 35, .07);
}

.v4-card-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--v4-red);
    background: rgba(200, 16, 46, .08);
    font-size: 13px;
    font-weight: 800;
}

.v4-task-card h3,
.v4-solution-card h3,
.v4-inline-state h3 {
    margin: 24px 0 10px;
    color: var(--v4-ink);
    font-size: 22px;
    line-height: 1.25;
}

.v4-task-card p,
.v4-solution-card p,
.v4-inline-state p {
    margin: 0;
    color: var(--v4-slate);
    font-size: 16px;
    line-height: 1.65;
}

.v4-task-card a,
.v4-solution-card a {
    margin-top: auto;
    padding-top: 20px;
}

.v4-category-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(72px, 7vw, 100px);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.v4-category-section::before {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, .055) 0%, rgba(200, 16, 46, 0) 68%);
    content: "";
    pointer-events: none;
}

.v4-category-section .v4-container {
    position: relative;
}

.v4-category-showcase__heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: clamp(38px, 7vw, 100px);
    margin-bottom: 42px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--v4-line);
}

.v4-category-showcase__heading h2 {
    max-width: 690px;
}

.v4-category-showcase__context {
    display: grid;
    justify-items: start;
    gap: 20px;
}

.v4-category-showcase__context p {
    max-width: 510px;
    margin: 0;
    color: var(--v4-slate);
    font-size: 16px;
    line-height: 1.7;
}

.v4-category-showcase__link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid #cdd2d9;
    border-radius: 999px;
    color: var(--v4-ink) !important;
    background: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.v4-category-showcase__link:hover,
.v4-category-showcase__link:focus-visible {
    border-color: var(--v4-red);
    color: var(--v4-red) !important;
    background: var(--v4-white);
}

.v4-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1px;
    row-gap: 0;
    padding: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: #dde1e6;
    box-shadow: 0 22px 54px rgba(18, 23, 31, .065);
}

.v4-category-card {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 132px;
    align-items: center;
    grid-template-columns: 76px minmax(0, 1fr) 36px;
    gap: 16px;
    padding: 20px;
    border: 0;
    border-radius: 0;
    color: var(--v4-ink) !important;
    background: rgba(255, 255, 255, .96);
    line-height: 1.3;
    overflow-wrap: anywhere;
    box-shadow: none;
    transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.v4-category-card:nth-child(n + 5) {
    border-top: 1px solid #d7dce2;
}

.v4-category-card:hover,
.v4-category-card:focus-visible {
    color: var(--v4-red) !important;
    background: #fff7f8;
    box-shadow: inset 0 -3px 0 rgba(200, 16, 46, .82);
    transform: none;
}

.v4-category-card:focus-visible {
    z-index: 1;
    outline: 2px solid var(--v4-red);
    outline-offset: -3px;
}

.v4-category-card__media {
    display: grid;
    width: 76px;
    height: 60px;
    place-items: center;
}

.v4-category-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v4-category-card__copy {
    display: grid;
}

.v4-category-card__copy strong {
    color: inherit;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
}

.v4-category-card > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    color: #5f6873;
    background: #f1f3f5;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.v4-category-card:hover > svg,
.v4-category-card:focus-visible > svg {
    color: var(--v4-white);
    background: var(--v4-red);
    transform: translateX(2px);
}

.v4-section-heading__lede {
    max-width: 670px;
    margin: 12px 0 0;
    color: var(--v4-muted);
    font-size: 15px;
    line-height: 1.6;
}

.v4-inline-state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px;
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-white);
}

.v4-inline-state h3 {
    margin-top: 0;
}

.v4-solution-card {
    min-height: 250px;
    border-top: 4px solid var(--v4-ink);
}

.v4-solution-card h3 {
    margin-top: 0;
}

.v4-industry-briefing {
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(200, 16, 46, .08), transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.v4-industry-briefing__updated {
    flex: 0 0 auto;
    margin: 0;
    color: var(--v4-slate);
    font-size: 14px;
    line-height: 1.5;
}

.v4-industry-briefing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.v4-news-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 520px;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 32px rgba(20, 25, 35, .06);
}

.v4-news-card__media {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    overflow: hidden;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(200, 16, 46, .92), rgba(93, 16, 42, .96)),
        #8c102d;
    color: #ffffff;
}

.v4-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v4-news-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--v4-red);
    content: "";
}

.v4-news-card__meta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px clamp(24px, 3vw, 30px) 0;
    color: var(--v4-slate);
    font-size: 12px;
    line-height: 1.4;
}

.v4-news-card__meta span {
    color: var(--v4-red);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.v4-news-card h3 {
    margin: 10px clamp(24px, 3vw, 30px) 13px;
    color: var(--v4-ink);
    font-size: 23px;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.v4-news-card > .v4-news-card__verification {
    margin: 12px clamp(24px, 3vw, 30px) 0;
    padding: 0;
    color: #42624b;
    font-size: 12px;
    font-weight: 720;
    line-height: 1.4;
}

.v4-news-card > p {
    margin: 0;
    padding: 0 clamp(24px, 3vw, 30px);
    color: var(--v4-slate);
    font-size: 15px;
    line-height: 1.7;
}

.v4-news-card > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    margin: auto clamp(24px, 3vw, 30px) 0;
    padding: 24px 0 28px;
    color: var(--v4-ink) !important;
    font-size: 14px;
    font-weight: 760;
    text-decoration: underline !important;
    text-decoration-color: transparent !important;
    text-underline-offset: 4px;
}

.v4-news-card > a:hover {
    color: var(--v4-red) !important;
    text-decoration-color: currentColor !important;
}

.v4-industry-briefing__note {
    max-width: 900px;
    margin: 22px 0 0;
    color: var(--v4-slate);
    font-size: 13px;
    line-height: 1.55;
}

.v4-quality {
    padding-block: clamp(72px, 8vw, 112px);
    color: var(--v4-white);
    background:
        radial-gradient(circle at 80% 20%, rgba(200, 16, 46, .45), transparent 32%),
        #17191d;
}

.v4-quality__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
    gap: clamp(40px, 8vw, 110px);
}

.v4-quality h2 {
    color: var(--v4-white);
}

.v4-quality__copy p {
    margin: 0 0 16px;
    color: #d4d9df;
    font-size: 17px;
    line-height: 1.7;
}

.v4-quality__copy strong {
    color: var(--v4-white);
}

.v4-text-link--light {
    color: var(--v4-white) !important;
}

.v4-process {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.v4-process li {
    position: relative;
    min-width: 0;
    padding-right: 14px;
}

.v4-process li:not(:last-child)::after {
    position: absolute;
    top: 22px;
    right: -10px;
    width: 20px;
    height: 1px;
    background: #adb4bd;
    content: "";
}

.v4-process li > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--v4-white);
    background: var(--v4-red);
    font-weight: 800;
}

.v4-process p {
    display: grid;
    gap: 7px;
    margin: 17px 0 0;
    color: var(--v4-slate);
    font-size: 15px;
    line-height: 1.55;
}

.v4-process strong {
    color: var(--v4-ink);
    font-size: 17px;
}

.v4-final-cta {
    padding-block: 64px;
    border-top: 1px solid var(--v4-line);
    background: var(--v4-soft);
}

.v4-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.v4-final-cta h2 {
    max-width: 760px;
    font-size: clamp(30px, 3.6vw, 44px);
}

.v4-final-cta p:not(.v4-eyebrow) {
    margin: 18px 0 0;
    color: var(--v4-slate);
}

.v4-final-cta p a {
    color: var(--v4-ink) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* Global footer */
.v4-site-footer {
    width: 100%;
    min-height: 0;
    padding: 68px 0 24px;
    border: 0;
    color: #d7dbe0;
    background: #111317;
}

.v4-site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(6, minmax(100px, 1fr));
    gap: 34px 26px;
}

.v4-site-footer__intro p {
    max-width: 290px;
    margin: 20px 0 0;
    color: #aeb4bd;
    font-size: 14px;
    line-height: 1.7;
}

.v4-brand--footer .v4-brand__image {
    filter: brightness(0) invert(1);
}

.v4-brand--footer .v4-brand__fallback {
    color: var(--v4-white);
}

.v4-site-footer__column {
    min-width: 0;
}

.v4-site-footer__column h2 {
    margin: 0 0 15px;
    color: var(--v4-white);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.3;
}

.v4-site-footer__column > a,
.v4-site-footer__column address a,
.v4-site-footer__column address span {
    display: block;
    margin: 0 0 10px;
    color: #aeb4bd !important;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.v4-site-footer__column > a:hover,
.v4-site-footer__column address a:hover {
    color: var(--v4-white) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v4-site-footer__column address {
    margin: 0;
    font-style: normal;
}

.v4-site-footer__social > p {
    margin: -6px 0 12px;
    color: #7f8792;
    font-size: 11px;
    line-height: 1.4;
}

.v4-site-footer__social ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v4-site-footer__social li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: #aeb4bd;
    font-size: 12px;
    line-height: 1.35;
}

.v4-site-footer__social-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    border: 1px solid #3a4049;
    border-radius: 7px;
    color: #dfe3e8;
    background: #1a1d22;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.v4-site-footer__contact {
    grid-column: 2 / -1;
    padding-top: 23px;
    border-top: 1px solid #30343a;
}

.v4-site-footer__contact address {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.v4-site-footer__bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid #30343a;
    color: #878e98;
    font-size: 12px;
}

/* Visitor-initiated live chat gate */
.v4-live-chat {
    position: fixed;
    z-index: 1050;
    right: 20px;
    bottom: max(20px, env(safe-area-inset-bottom));
    display: grid;
    justify-items: end;
    width: min(340px, calc(100vw - 28px));
    color: var(--v4-ink);
    font-family: var(--v4-font-sans);
}

.v4-live-chat__button {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 14px 22px;
    border: 2px solid rgba(255, 255, 255, .92);
    color: var(--v4-white);
    background: linear-gradient(135deg, #d41435, var(--v4-red-dark));
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, .14), 0 16px 34px rgba(20, 25, 35, .28);
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.v4-live-chat__button:hover {
    background: linear-gradient(135deg, #e0183d, #8f0a20);
    box-shadow: 0 0 0 5px rgba(200, 16, 46, .19), 0 20px 40px rgba(20, 25, 35, .32);
    transform: translateY(-2px);
}

.v4-live-chat__button:disabled {
    cursor: wait;
    opacity: .72;
}

.v4-live-chat__icon {
    margin-right: 10px;
    font-size: 22px;
    line-height: 1;
}

.v4-live-chat__panel {
    margin-bottom: 8px;
    padding: 11px 13px;
    border: 1px solid var(--v4-line);
    background: var(--v4-white);
    border-radius: 9px;
    box-shadow: 0 10px 30px rgba(20, 25, 35, .14);
    font-size: 12px;
    line-height: 1.45;
}

.v4-live-chat__panel[hidden] {
    display: none;
}

.v4-live-chat__panel p {
    margin: 0;
}

.v4-live-chat__panel a {
    color: var(--v4-red-dark);
    font-weight: 700;
}

.v4-live-chat__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.v4-live-chat__actions button {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--v4-line);
    background: var(--v4-white);
    border-radius: 7px;
    color: var(--v4-ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.v4-live-chat__actions button:first-child {
    border-color: var(--v4-red);
    color: var(--v4-white);
    background: var(--v4-red);
}

.v4-live-chat__actions button:disabled {
    cursor: wait;
    opacity: .72;
}

.v4-live-chat__status:not(:empty) {
    margin-top: 6px;
    font-weight: 700;
}

/* Search results page */
.v4-search-main {
    min-width: 0;
    padding-block: 34px 96px;
    color: var(--v4-ink);
    background: var(--v4-white);
}

.v4-breadcrumb {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--v4-slate);
    font-size: 13px;
}

.v4-breadcrumb a {
    color: var(--v4-ink) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v4-search-heading {
    max-width: 880px;
    padding-top: 34px;
}

.v4-search-heading h1 {
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.v4-search-heading > p:last-child {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--v4-slate);
    font-size: 17px;
    line-height: 1.65;
}

.v4-results-search {
    max-width: 900px;
    margin: 34px 0 42px;
    padding: 24px;
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-soft);
}

.v4-results-search > label {
    display: block;
    margin-bottom: 9px;
    color: var(--v4-ink);
    font-size: 14px;
    font-weight: 750;
}

.v4-results-search__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
}

.v4-results-search input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 11px 14px;
    border: 1px solid #aeb5bf;
    border-radius: 8px;
    color: var(--v4-ink);
    background: var(--v4-white);
    box-shadow: none;
    font: inherit;
    font-size: 16px;
}

.v4-results-search input[aria-invalid="true"] {
    border-color: var(--v4-red);
}

.v4-field-error {
    margin: 9px 0 0;
    color: #9f0c24;
    font-size: 14px;
    font-weight: 700;
}

.v4-network-status,
.v4-search-loading {
    display: flex;
    max-width: 900px;
    align-items: center;
    gap: 12px;
    margin: -22px 0 32px;
    padding: 14px 16px;
    border: 1px solid #d39d2d;
    border-radius: 8px;
    color: #5f4306;
    background: #fff7df;
    font-size: 14px;
    line-height: 1.45;
}

.v4-network-status[hidden],
.v4-search-loading[hidden] {
    display: none;
}

.v4-network-status span {
    color: #6f571d;
}

.v4-search-loading {
    border-color: var(--v4-line);
    color: var(--v4-ink);
    background: var(--v4-soft);
}

.v4-search-spinner {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 2px solid #c7cdd5;
    border-top-color: var(--v4-red);
    border-radius: 50%;
    animation: v4-search-spin .8s linear infinite;
}

@keyframes v4-search-spin {
    to { transform: rotate(360deg); }
}

.v4-search-state {
    display: grid;
    max-width: 900px;
    align-items: start;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-soft);
}

.v4-search-state__mark {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--v4-red);
    background: rgba(200, 16, 46, .09);
    font-size: 26px;
    font-weight: 800;
}

.v4-search-state h2,
.v4-search-summary h2 {
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -.025em;
    line-height: 1.2;
}

.v4-search-state p {
    margin: 12px 0 0;
    color: var(--v4-slate);
    font-size: 16px;
    line-height: 1.65;
}

.v4-search-state .v4-button-row {
    margin-top: 24px;
}

.v4-search-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.v4-search-summary p {
    margin: 0;
    color: var(--v4-slate);
    font-size: 14px;
    white-space: nowrap;
}

.v4-results-grid {
    display: grid;
    gap: 14px;
}

.v4-result-card {
    display: grid;
    min-width: 0;
    align-items: center;
    grid-template-columns: 108px minmax(0, 1fr) auto;
    gap: 22px;
    padding: 20px;
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-white);
}

.v4-result-card:hover {
    border-color: #b6bdc6;
    box-shadow: 0 10px 25px rgba(20, 25, 35, .06);
}

.v4-result-card__image {
    display: flex;
    width: 108px;
    height: 92px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e7eaee;
    border-radius: 8px;
    color: var(--v4-red);
    background: var(--v4-soft);
    font-size: 28px;
    font-weight: 800;
}

.v4-result-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v4-result-card__body {
    min-width: 0;
}

.v4-result-card__manufacturer {
    margin: 0 0 6px;
    color: var(--v4-slate);
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.v4-result-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.v4-result-card h3 a {
    color: var(--v4-ink) !important;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.v4-result-card h3 a:hover {
    text-decoration-color: currentColor;
}

.v4-result-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: var(--v4-slate);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v4-result-card__availability {
    margin: 10px 0 0;
    color: var(--v4-ink);
    font-size: 13px;
    font-weight: 700;
}

.v4-result-card__actions {
    display: grid;
    min-width: 160px;
    gap: 8px;
}

.v4-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 34px;
}

.v4-pagination a,
.v4-pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--v4-line);
    border-radius: 7px;
    color: var(--v4-ink) !important;
    background: var(--v4-white);
    font-size: 14px;
    font-weight: 700;
}

.v4-pagination a:hover {
    border-color: var(--v4-ink);
}

.v4-pagination [aria-current="page"] {
    border-color: var(--v4-ink);
    color: var(--v4-white) !important;
    background: var(--v4-ink);
}

.v4-pagination__disabled {
    color: #8a919b !important;
    background: var(--v4-soft) !important;
}

/* Product details */
.v4-product-main {
    min-width: 0;
    padding-block: 34px 96px;
    color: var(--v4-ink);
    background: var(--v4-white);
}

.v4-product-hero {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(260px, .82fr) minmax(320px, 1.18fr) minmax(250px, .72fr);
    gap: clamp(24px, 4vw, 52px);
    padding-block: 40px 72px;
}

.v4-product-media {
    min-width: 0;
}

.v4-product-media > img,
.v4-product-image-fallback {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-soft);
}

.v4-product-image-fallback {
    flex-direction: column;
    gap: 9px;
    padding: 24px;
    color: var(--v4-slate);
    text-align: center;
}

.v4-product-image-fallback[hidden] {
    display: none;
}

.v4-product-image-fallback span {
    display: inline-flex;
    min-width: 92px;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    border: 2px dashed #aeb5bf;
    border-radius: 9px;
    font-size: 12px;
}

.v4-product-image-fallback strong {
    color: var(--v4-ink);
    font-size: 15px;
}

.v4-product-media > p {
    margin: 12px 0 0;
    color: var(--v4-slate);
    font-size: 12px;
    line-height: 1.55;
}

.v4-product-info {
    min-width: 0;
}

.v4-product-info h1 {
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.v4-product-availability {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    margin: 18px 0 24px;
    padding: 6px 11px;
    border-radius: 6px;
    color: #28513a;
    background: #e8f5ed;
    font-size: 13px;
    font-weight: 750;
}

.v4-product-meta {
    display: grid;
    margin: 0;
    border-top: 1px solid var(--v4-line);
}

.v4-product-meta > div {
    display: grid;
    min-width: 0;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    padding-block: 11px;
    border-bottom: 1px solid var(--v4-line);
}

.v4-product-meta dt {
    color: var(--v4-slate);
    font-size: 13px;
}

.v4-product-meta dd {
    min-width: 0;
    margin: 0;
    color: var(--v4-ink);
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.v4-product-description {
    margin-top: 26px;
}

.v4-product-description h2 {
    margin: 0 0 8px;
    font-size: 16px;
}

.v4-product-description p {
    margin: 0;
    color: var(--v4-slate);
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.v4-product-datasheet {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding: 12px 0;
    border-top: 1px solid var(--v4-line);
    border-bottom: 1px solid var(--v4-line);
    font-size: 14px;
}

.v4-product-datasheet a {
    color: var(--v4-red) !important;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v4-product-datasheet span {
    color: var(--v4-slate);
}

.v4-product-rfq {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--v4-line);
    border-top: 4px solid var(--v4-red);
    border-radius: var(--v4-radius);
    background: var(--v4-soft);
}

.v4-product-rfq h2 {
    margin: 0;
    color: var(--v4-ink);
    font-size: 22px;
    line-height: 1.25;
}

.v4-product-rfq > p,
.v4-product-rfq__unavailable {
    margin: 10px 0 18px;
    color: var(--v4-slate);
    font-size: 13px;
    line-height: 1.55;
}

.v4-product-rfq form {
    display: grid;
    gap: 9px;
}

.v4-product-rfq label {
    color: var(--v4-ink);
    font-size: 14px;
    font-weight: 750;
}

.v4-product-rfq input {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #aeb5bf;
    border-radius: 7px;
    color: var(--v4-ink);
    background: var(--v4-white);
    font: inherit;
    font-size: 16px;
}

.v4-product-rfq > .v4-button {
    width: 100%;
    margin-top: 10px;
}

.v4-product-rfq__status {
    min-height: 0;
    margin: 14px 0 0 !important;
    color: var(--v4-ink) !important;
    font-weight: 700;
}

.v4-product-rfq__status:empty {
    display: none;
}

.v4-product-rfq__summary {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--v4-line);
    color: var(--v4-slate);
    font-size: 13px;
}

.v4-product-rfq__summary a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--v4-ink) !important;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v4-product-specifications {
    padding-block: 16px 72px;
    border-top: 1px solid var(--v4-line);
}

.v4-product-specifications details {
    border-bottom: 1px solid var(--v4-line);
}

.v4-product-specifications summary {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 800;
    list-style: none;
}

.v4-product-specifications summary::-webkit-details-marker {
    display: none;
}

.v4-product-specifications details[open] summary > span:last-child {
    transform: rotate(45deg);
}

.v4-product-specifications dl {
    display: grid;
    margin: 0 0 28px;
    border: 1px solid var(--v4-line);
    border-radius: 9px;
}

.v4-product-specifications dl > div {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(160px, .42fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--v4-line);
}

.v4-product-specifications dl > div:last-child {
    border-bottom: 0;
}

.v4-product-specifications dt,
.v4-product-specifications dd {
    min-width: 0;
    margin: 0;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.v4-product-specifications dt {
    color: var(--v4-slate);
    background: var(--v4-soft);
}

.v4-product-specifications dd {
    color: var(--v4-ink);
}

.v4-product-specifications details > p {
    margin: 0 0 28px;
    color: var(--v4-slate);
}

.v4-related-products {
    padding-block: 56px 0;
    border-top: 1px solid var(--v4-line);
}

.v4-related-products .v4-section-heading > p:last-child {
    margin: 12px 0 0;
    color: var(--v4-slate);
    line-height: 1.6;
}

.v4-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.v4-related-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--v4-line);
    border-radius: 10px;
    background: var(--v4-white);
}

.v4-related-card__image {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
    color: var(--v4-slate) !important;
    background: var(--v4-soft);
    font-size: 12px;
    text-align: center;
}

.v4-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v4-related-card > p {
    margin: 13px 0 5px;
    color: var(--v4-slate);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.v4-related-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.v4-related-card h3 a {
    color: var(--v4-ink) !important;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
}

.v4-related-card h3 a:hover {
    text-decoration-color: currentColor;
}

.v4-product-state {
    max-width: 820px;
    margin: 70px auto;
    padding: clamp(30px, 7vw, 72px);
    border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius);
    background: var(--v4-soft);
    text-align: center;
}

.v4-product-state h1 {
    margin: 0;
    color: var(--v4-ink);
    font-size: clamp(34px, 6vw, 58px);
    letter-spacing: -.04em;
    line-height: 1.08;
}

.v4-product-state > p:not(.v4-eyebrow) {
    margin: 18px auto 26px;
    color: var(--v4-slate);
    font-size: 16px;
    line-height: 1.65;
}

.v4-product-state .v4-button-row {
    justify-content: center;
}

@media (max-width: 1180px) and (min-width: 1024px) {
    .v4-container {
        width: min(100% - 28px, 1280px);
    }

    .v4-site-header__row {
        gap: 8px;
    }

    .v4-site-header .v4-brand {
        min-width: 150px;
        padding-right: 0;
    }

    .v4-site-header .v4-brand::after {
        right: 0;
    }

    .v4-site-header .v4-brand__image {
        width: 150px;
    }

    .v4-desktop-nav .v4-nav__link,
    .v4-desktop-nav .v4-nav__toggle {
        padding-inline: 5px;
        font-size: 14px;
    }

    .v4-header-search--desktop {
        width: 122px;
    }

    .v4-header-search--desktop .v4-autocomplete {
        width: 80px;
    }

    .v4-header-search--desktop input {
        padding-inline: 7px;
    }

    .v4-action-link,
    .v4-header-quote {
        font-size: 13px;
    }

    .v4-action-link--secondary {
        gap: 0;
        padding-inline: 6px;
    }

    .v4-action-link--secondary svg {
        display: none;
    }

    .v4-header-quote {
        padding-inline: 9px;
    }
}

@media (max-width: 1060px) and (min-width: 1024px) {
    .v4-site-header__row {
        gap: 6px;
    }

    .v4-site-header .v4-brand {
        min-width: 142px;
    }

    .v4-site-header .v4-brand__image {
        width: 142px;
    }

    .v4-desktop-nav .v4-nav__link,
    .v4-desktop-nav .v4-nav__toggle {
        padding-inline: 4px;
    }
}

@media (max-width: 1023px) {
    .v4-container {
        width: min(100% - 32px, 920px);
    }

    .v4-site-header__row {
        min-height: 70px;
        justify-content: space-between;
    }

    .v4-menu-button,
    .v4-mobile-search-button {
        display: inline-flex;
        flex: 0 0 44px;
    }

    .v4-site-header .v4-brand {
        min-width: 0;
        padding-right: 0;
    }

    .v4-site-header .v4-brand::after {
        right: 0;
    }

    .v4-site-header .v4-brand__image {
        width: 158px;
        max-width: 44vw;
    }

    .v4-desktop-nav,
    .v4-site-header__actions {
        display: none;
    }

    .v4-mobile-search-row {
        display: block;
        padding-bottom: 12px;
    }

    .v4-header-search--mobile {
        width: 100%;
        height: 46px;
    }

    .v4-header-search--mobile input {
        width: 100%;
    }

    .v4-header-search--mobile button {
        min-width: 76px;
    }

    .v4-hero__grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 50px;
        padding-block: 64px;
    }

    .v4-hero__visual {
        width: min(100%, 610px);
        min-height: 330px;
        margin-inline: auto;
    }

    .v4-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v4-industry-briefing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v4-news-card:last-child {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    .v4-card-grid--three > :last-child {
        grid-column: 1 / -1;
    }

    .v4-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v4-category-showcase__heading {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        gap: 42px;
    }

    .v4-category-card:nth-child(n + 5) {
        border-top: 0;
    }

    .v4-category-card:nth-child(n + 3) {
        border-top: 1px solid #d7dce2;
    }

    .v4-quality__grid {
        grid-template-columns: 1fr;
    }

    .v4-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 40px;
    }

    .v4-process li:nth-child(2)::after {
        display: none;
    }

    .v4-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .v4-site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .v4-site-footer__intro {
        grid-column: 1 / -1;
    }

    .v4-site-footer__contact {
        grid-column: 1 / -1;
    }

    .v4-product-hero {
        grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
    }

    .v4-product-rfq {
        grid-column: 1 / -1;
    }

    .v4-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .v4-container {
        width: min(100% - 28px, 700px);
    }

    .v4-hero__grid {
        padding-block: 52px 58px;
    }

    .v4-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .v4-hero__lede {
        margin-top: 18px;
        font-size: 17px;
    }

    .v4-hero-search__controls {
        grid-template-columns: 1fr;
    }

    .v4-hero-search__controls .v4-button {
        width: 100%;
    }

    .v4-hero__content > .v4-button-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .v4-hero__content > .v4-button-row .v4-text-link {
        grid-column: 1 / -1;
    }

    .v4-hero__visual {
        min-height: 300px;
    }

    .v4-component-card {
        width: 145px;
        min-height: 105px;
        padding: 15px;
    }

    .v4-component-card--one { top: 32px; left: 18px; }
    .v4-component-card--two { top: 112px; right: 18px; }
    .v4-component-card--three { bottom: 28px; left: 46px; }
    .v4-component-card i:nth-of-type(1) { left: 23px; }
    .v4-component-card i:nth-of-type(2) { left: 67px; }
    .v4-component-card i:nth-of-type(3) { left: 111px; }

    .v4-facts__grid {
        grid-template-columns: 1fr;
    }

    .v4-facts p {
        min-height: 0;
        padding: 20px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--v4-line);
    }

    .v4-facts p:last-child {
        border-bottom: 0;
    }

    .v4-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .v4-category-showcase__heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .v4-category-card:nth-child(n + 3) {
        border-top: 0;
    }

    .v4-category-card:nth-child(n + 2) {
        border-top: 1px solid #d7dce2;
    }

    .v4-card-grid--three,
    .v4-category-grid,
    .v4-industry-briefing__grid {
        grid-template-columns: 1fr;
    }

    .v4-card-grid--three > :last-child {
        grid-column: auto;
    }

    .v4-task-card,
    .v4-solution-card,
    .v4-news-card,
    .v4-news-card:last-child {
        min-height: 0;
    }

    .v4-news-card:last-child {
        grid-column: auto;
    }

    .v4-inline-state {
        align-items: flex-start;
        flex-direction: column;
    }

    .v4-process {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v4-process li {
        display: grid;
        align-items: start;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 15px;
        padding-right: 0;
    }

    .v4-process li::after {
        display: none;
    }

    .v4-process p {
        margin-top: 0;
    }

    .v4-final-cta .v4-button-row,
    .v4-inline-state .v4-button-row {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .v4-site-footer {
        padding-top: 52px;
    }

    .v4-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v4-site-footer__intro,
    .v4-site-footer__contact {
        grid-column: 1 / -1;
    }

    .v4-site-footer__contact address {
        display: grid;
        gap: 0;
    }

    .v4-suggestions {
        width: 100%;
        max-width: calc(100vw - 28px);
    }

    .v4-search-main {
        padding-block: 20px 72px;
    }

    .v4-search-heading {
        padding-top: 24px;
    }

    .v4-results-search {
        margin-block: 26px 34px;
        padding: 18px;
    }

    .v4-results-search__controls {
        grid-template-columns: 1fr;
    }

    .v4-results-search__controls .v4-button {
        width: 100%;
    }

    .v4-network-status,
    .v4-search-loading {
        align-items: flex-start;
        flex-direction: column;
        margin-top: -16px;
    }

    .v4-search-state {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .v4-search-state__mark {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .v4-search-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .v4-result-card {
        align-items: start;
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 15px;
        padding: 16px;
    }

    .v4-result-card__image {
        width: 84px;
        height: 76px;
    }

    .v4-result-card__actions {
        display: grid;
        min-width: 0;
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .v4-product-main {
        padding-block: 20px 72px;
    }

    .v4-product-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 28px 54px;
    }

    .v4-product-media {
        order: 2;
    }

    .v4-product-info {
        order: 1;
    }

    .v4-product-rfq {
        order: 3;
        grid-column: auto;
    }

    .v4-product-meta > div {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .v4-product-specifications dl > div {
        grid-template-columns: 1fr;
    }

    .v4-product-specifications dd {
        border-top: 1px solid var(--v4-line);
    }

    .v4-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .v4-container {
        width: min(100% - 24px, 406px);
    }

    .v4-site-header .v4-brand__image {
        width: 150px;
    }

    .v4-hero__content > .v4-button-row {
        grid-template-columns: 1fr;
    }

    .v4-hero__content > .v4-button-row .v4-text-link {
        grid-column: auto;
    }

    .v4-hero__visual {
        min-height: 270px;
    }

    .v4-component-card {
        width: 132px;
    }

    .v4-component-card strong {
        font-size: 17px;
    }

    .v4-component-card i:nth-of-type(1) { left: 19px; }
    .v4-component-card i:nth-of-type(2) { left: 61px; }
    .v4-component-card i:nth-of-type(3) { left: 103px; }

    .v4-component-card--one { left: 10px; }
    .v4-component-card--two { right: 10px; }
    .v4-component-card--three { left: 30px; }

    .v4-category-card {
        min-height: 108px;
        grid-template-columns: 68px minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 16px;
    }

    .v4-category-card__media {
        width: 68px;
        height: 54px;
    }

    .v4-category-card > svg {
        width: 34px;
        height: 34px;
    }

    .v4-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .v4-site-footer__intro,
    .v4-site-footer__contact {
        grid-column: auto;
    }

    .v4-result-card {
        grid-template-columns: 1fr;
    }

    .v4-result-card__image {
        width: 72px;
        height: 66px;
    }

    .v4-result-card__actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .v4-pagination {
        justify-content: flex-start;
    }

    .v4-product-meta > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .v4-related-grid {
        grid-template-columns: 1fr;
    }

    .v4-live-chat {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: min(320px, calc(100vw - 24px));
    }

    .v4-live-chat__button {
        min-height: 52px;
        padding: 12px 18px;
        font-size: 15px;
    }

    .v4-product-state .v4-button-row {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v4-site-header .v4-brand::after {
        display: none;
    }

    .v4-site-header *,
    .v4-mobile-drawer *,
    .v4-site-footer *,
    .v4-live-chat *,
    .v4-home *,
    .v4-search-page *,
    .v4-product-page * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
