@font-face {
    font-family: "Inter";
    src: url("../fonts/InterVariable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --red: #c80d16;
    --dark: #2f2f2f;
    --text: #555;
    --muted: #777;
    --soft: #f5f5f5;
    --card: #f0f0f0;
    --container: 1048px;
    --narrow: 800px;
    --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 100000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: #fff;
    background: #111;
    outline: 3px solid #fff;
    white-space: normal;
}

:focus-visible {
    outline: 3px solid #ffcc00;
    outline-offset: 3px;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 54px 0;
}

.section-title {
    margin: 0 0 34px;
    color: #3c3c3c;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

/* Header */
.top-line {
    display: block;
    height: 16px;
    background: #fff;
    color: #111;
    font-size: 6px;
    font-weight: 700;
    line-height: 16px;
}

.header-main {
    background: #fff;
}

.header-inner {
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo,
.footer-logo {
    color: #111;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.site-logo span,
.footer-logo span {
    color: var(--red);
}

.main-nav ul {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav a {
    color: #222;
    font-size: 10px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--red);
}

.header-sticky-area {
    z-index: 1000;
}

.header-sticky-area.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

body.admin-bar .header-sticky-area.is-fixed {
    top: 32px;
}

.site-header.has-fixed-sticky {
    padding-bottom: var(--header-sticky-height, 0px);
}

.language-switcher {
    position: relative;
    z-index: 1205;
    margin-left: 18px;
}

.language-switcher button {
    position: relative;
    padding: 0 13px 0 0;
    border: 0;
    background: transparent;
    color: #222;
    font: inherit;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
}

.language-switcher button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
}

.language-switcher ul {
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
    z-index: 1210;
    min-width: 110px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.language-switcher:hover ul,
.language-switcher:focus-within ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher a {
    display: block;
    padding: 8px 12px;
    color: #222;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
    color: var(--red);
}

.language-switcher--translatepress .trp-language-switcher {
    width: auto;
    height: auto;
}

.language-switcher--translatepress .trp_language_switcher_shortcode,
.language-switcher--translatepress .trp-language-switcher-container {
    position: relative;
    z-index: 1205;
    width: auto;
}

.language-switcher--translatepress a {
    min-height: 0;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.language-switcher--translatepress .trp-ls-shortcode-current-language a {
    position: relative;
    padding: 0 13px 0 0;
    font-size: 9px;
}

.language-switcher--translatepress .trp-ls-shortcode-current-language a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
}

.language-switcher--translatepress .trp-ls-shortcode-language {
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
    z-index: 1210;
    min-width: 110px;
    padding: 6px 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.language-switcher--translatepress:hover .trp-ls-shortcode-language,
.language-switcher--translatepress:focus-within .trp-ls-shortcode-language {
    display: block !important;
}

.language-switcher--translatepress .trp-ls-shortcode-language a {
    padding: 8px 12px;
}

.language-switcher--translatepress .trp-ls-shortcode-language a:hover {
    color: var(--red);
}

.language-switcher--translatepress .trp-ls-shortcode-current-language {
    border: 0;
    background: transparent;
}

.header-search {
    background: var(--red);
    padding: 14px 0;
}

.header-search-row {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.search-inner {
    max-width: 850px;
    flex: 1 1 850px;
    height: 40px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 5px;
    background: #f3f6fb;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 0 0 auto;
}

.header-user-link,
.header-collection-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.header-user-link::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.header-user-link::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 2px;
    width: 16px;
    height: 10px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.header-collection-toggle::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 22px;
    height: 22px;
    background: currentColor;
    clip-path: polygon(50% 2%, 61% 35%, 96% 35%, 68% 55%, 79% 90%, 50% 69%, 21% 90%, 32% 55%, 4% 35%, 39% 35%);
}

.collection-count {
    position: absolute;
    right: -8px;
    top: -5px;
    min-width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f8c02d;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

.search-inner::after {
    content: "";
    position: absolute;
    left: 191px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #7c8798;
    border-bottom: 2px solid #7c8798;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.search-inner form {
    display: flex;
    flex: 1;
    min-width: 0;
}

.search-inner select,
.search-inner input,
.search-inner button {
    height: 39px;
    border: 0;
    padding: 0 16px;
    font-size: 12px;
}

.search-inner select,
.search-inner input {
    background: transparent;
    color: #404a58;
}

.search-inner select {
    width: 185px;
    flex: 0 0 185px;
    padding-left: 34px;
    padding-right: 34px;
    border-right: 1px solid #d8dee8;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
}

.search-inner input {
    flex: 1;
    min-width: 0;
    outline: 0;
}

.search-inner button {
    position: relative;
    width: 42px;
    min-width: 42px;
    padding: 0;
    margin: 3px 5px 3px 3px;
    border-radius: 4px;
    background: #30384a;
    color: #fff;
    cursor: pointer;
}

.search-inner button::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.search-inner button::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 23px;
    width: 8px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.category-menu {
    background: var(--red);
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.category-menu .container {
    display: flex;
    justify-content: center;
    gap: 54px;
}

.category-menu a {
    padding: 9px 0;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

/* Hero */
.home-hero {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: clamp(300px, 30vw, 430px);
}

.hero-card {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .44);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card > div {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-card h2 {
    max-width: 340px;
    margin: 0 0 23px;
    color: #fff;
    font-size: clamp(24px, 2.7vw, 44px);
    font-weight: 900;
    line-height: 1.02;
    text-align: center;
}

.hero-card a,
.red-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 24px;
    border-radius: 22px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Category + cases */
.home-categories {
    position: relative;
    padding-top: 48px;
    padding-bottom: 36px;
    background: #fff;
}

.category-layout {
    max-width: var(--narrow);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-slider {
    position: relative;
}

.category-slide {
    display: none;
}

.category-slide.is-active {
    display: block;
    animation: categoryFade .22s ease;
}

@keyframes categoryFade {
    from {
        opacity: .45;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-large,
.category-small,
.case-card {
    background: #f3f3f3;
    text-align: center;
}

.category-large {
    min-height: 170px;
    padding: 20px 18px;
}

.category-small-grid {
    display: contents;
}

.category-small {
    min-height: 170px;
    padding: 20px 18px;
}

.category-large span,
.category-small span,
.case-subtitle {
    display: block;
    margin-bottom: 16px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
}

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

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

.case-grid {
    max-width: var(--narrow);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    min-height: 220px;
    padding: 22px 20px 20px;
    border: 0;
}

.case-card img {
    width: 100%;
    height: 115px;
    object-fit: contain;
}

.case-card strong,
.product-info strong,
.blog-info strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    text-transform: none;
}

.case-card strong {
    min-height: 24px;
    margin-top: 16px;
    padding: 0 13px;
    font-size: 9px;
}

.home-slider-arrow,
.blog-arrow {
    position: absolute;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #9299a0;
    font-size: 31px;
    font-weight: 300;
    line-height: 38px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
    cursor: pointer;
    transition: color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-slider-arrow:hover,
.blog-arrow:hover {
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.home-slider-arrow:active,
.blog-arrow:active {
    transform: translateY(0) scale(.96);
}

.home-slider-arrow {
    top: 38%;
}

.home-slider-prev {
    left: calc(50% - 528px);
}

.home-slider-next {
    right: calc(50% - 528px);
}

/* Products */
.top-products {
    padding-top: 44px;
    padding-bottom: 52px;
    background: #fff;
}

.product-grid {
    max-width: var(--narrow);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.product-card a {
    display: block;
}

.product-image img,
.product-card .wp-post-image {
    width: 100%;
    height: 188px;
    object-fit: cover;
}

.product-info {
    position: relative;
    padding: 12px 13px 15px;
}

.product-info span {
    display: block;
    color: #777;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 7px 0 8px;
    color: #333;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.18;
}

.product-info strong {
    min-height: 22px;
    margin: 0 0 9px;
    padding: 0 10px;
    font-size: 9px;
}

.product-info p {
    margin: 0;
    color: #666;
    font-size: 10px;
    line-height: 1.45;
}

.product-favorite {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: box-shadow .22s ease, transform .22s ease, background-color .22s ease;
}

.product-favorite:hover,
.product-favorite:focus-visible {
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    transform: translateY(-2px) scale(1.04);
}

.product-favorite:active {
    transform: translateY(0) scale(.96);
}

.product-favorite::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: currentColor;
    clip-path: polygon(50% 2%, 61% 35%, 96% 35%, 68% 55%, 79% 90%, 50% 69%, 21% 90%, 32% 55%, 4% 35%, 39% 35%);
    opacity: .28;
}

.product-favorite.is-active::before {
    opacity: 1;
}

.collection-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, .42);
}

.collection-overlay[hidden] {
    display: none;
}

.collection-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1510;
    width: min(568px, 100vw);
    background: #fff;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform .22s ease;
}

.collection-panel[aria-hidden="false"] {
    transform: translateX(0);
}

.collection-open {
    overflow: hidden;
}

.collection-panel-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 40px 40px;
    overflow-x: hidden;
}

.collection-panel-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7e7e7;
}

.collection-panel-head h2 {
    margin: 0;
    color: #050505;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}
.collection-panel.is-product-rfq .collection-title-count,
.collection-panel.is-product-rfq .collection-list,
.collection-panel.is-product-rfq > .collection-interest-button,
.collection-panel.is-product-rfq .collection-panel-inner > .collection-interest-button {
    display: none;
}

.collection-panel.is-product-rfq .collection-rfq {
    display: block;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}


.collection-panel-close {
    position: relative;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.collection-panel-close::before,
.collection-panel-close::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 13px;
    width: 18px;
    height: 2px;
    background: #222;
}

.collection-panel-close::before {
    transform: rotate(45deg);
}

.collection-panel-close::after {
    transform: rotate(-45deg);
}

.collection-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.collection-item {
    position: relative;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 32px;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
}

.collection-item-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.collection-item-copy span {
    display: block;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.collection-item-copy h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.collection-item-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #555;
    font-size: 16px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.collection-remove {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #e04444;
    cursor: pointer;
    transition: color .16s ease;
}

.collection-remove::before {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.collection-remove::after {
    content: none;
}

.collection-remove:hover {
    color: var(--red);
}

.collection-interest-button {
    display: flex;
    min-height: 68px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 23px;
    font-weight: 900;
}

.collection-interest-button[type="button"] {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.collection-rfq {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e7e7e7;
}

.collection-rfq h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 22px;
    font-weight: 900;
}

.collection-rfq > p {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}

.collection-panel,
.collection-panel * {
    max-width: 100%;
}

.wilamac-fluent-form {
    text-align: left;
}

.wilamac-fluent-form .ff-el-group {
    margin-bottom: 16px;
}

.wilamac-fluent-form .ff-el-input--label label,
.wilamac-fluent-form label {
    margin-bottom: 7px;
    color: #222;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.wilamac-fluent-form input[type="text"],
.wilamac-fluent-form input[type="email"],
.wilamac-fluent-form input[type="tel"],
.wilamac-fluent-form input[type="url"],
.wilamac-fluent-form select,
.wilamac-fluent-form textarea,
.wilamac-fluent-form .ff-el-form-control {
    width: 100%;
    min-height: 44px;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    padding: 12px 14px;
    background: #f8f8f8;
    color: #222;
    font-size: 13px;
    box-shadow: none;
    outline: 0;
}

.wilamac-fluent-form textarea,
.wilamac-fluent-form textarea.ff-el-form-control {
    min-height: 118px;
    resize: vertical;
}

.wilamac-fluent-form input:focus,
.wilamac-fluent-form select:focus,
.wilamac-fluent-form textarea:focus,
.wilamac-fluent-form .ff-el-form-control:focus {
    border-color: var(--red);
    background: #fff;
}

.wilamac-fluent-form .ff-btn-submit,
.wilamac-fluent-form button[type="submit"],
.wilamac-fluent-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 42px;
    border: 0;
    border-radius: 0;
    padding: 0 22px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.wilamac-fluent-form .ff-message-success {
    border: 1px solid #d9ead7;
    background: #f4fbf3;
    color: #256b2b;
    font-weight: 700;
}

/* About */
.home-about {
    padding-top: 48px;
    padding-bottom: 64px;
    background: #fff;
}

.home-about .about-grid {
    max-width: var(--narrow);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 32px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 295px;
    object-fit: cover;
}

.about-content h2 {
    margin: 0 0 12px;
    color: #3b3b3b;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.08;
}

.about-content p {
    margin: 0 0 18px;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.feature-grid {
    max-width: var(--narrow);
    margin: -25px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
}

.feature-item {
    min-height: 112px;
    padding: 18px 13px 15px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.feature-item strong {
    color: #333;
    font-size: 19px;
    font-weight: 900;
}

.feature-item h3 {
    margin: 8px 0 6px;
    color: #333;
    font-size: 12px;
    font-weight: 900;
}

.feature-item p {
    margin: 0;
    color: #777;
    font-size: 9px;
    line-height: 1.4;
}

/* Video + solution */
.factory-video {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #111;
}

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

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .84);
    color: var(--red);
    font-size: 20px;
    line-height: 52px;
    cursor: pointer;
}

.home-solution {
    padding-top: 48px;
    padding-bottom: 44px;
    background: #fff;
    text-align: center;
}

.home-solution p {
    max-width: 720px;
    margin: -16px auto 0;
    color: #777;
    font-size: 16px;
    line-height: 1.35;
}

/* Blog */
.home-blog {
    position: relative;
    padding-top: 29px;
    padding-bottom: 57px;
    background: #fff;
}

.home-blog .container {
    max-width: 960px;
}

.home-blog .section-title {
    margin-bottom: 28px;
}

.blog-grid {
    max-width: 875px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 0;
}

.blog-card a {
    display: block;
}

.blog-image img {
    width: 100%;
    height: 163px;
    object-fit: cover;
}

.blog-info {
    padding: 13px 13px 16px;
}

.blog-info span {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.blog-info h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.blog-info p {
    margin: 0 0 14px;
    color: #666;
    font-size: 12px;
    line-height: 1.55;
}

.blog-info strong {
    min-height: 28px;
    padding: 0 14px;
    font-size: 10px;
}

.blog-arrow {
    top: 54%;
}

.blog-arrow-prev {
    left: calc(50% - 500px);
}

.blog-arrow-next {
    right: calc(50% - 500px);
}

/* Process */
.cooperation-process {
    padding-top: 47px;
    padding-bottom: 45px;
    background:
        linear-gradient(rgba(237, 247, 252, .92), rgba(237, 247, 252, .92)),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .92) 0 1px, transparent 2px),
        #edf7fc;
}

.process-line {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.process-item {
    text-align: center;
}

.process-item span {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}

.process-item strong {
    position: relative;
    display: block;
    padding: 9px 8px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.process-item strong::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    z-index: 2;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 15px solid var(--red);
}

.process-item:last-child strong::after {
    display: none;
}

.process-item p {
    margin: 13px 0 0;
    color: #555;
    font-size: 10px;
}

/* Contact */
.home-contact {
    padding-top: 51px;
    padding-bottom: 72px;
    background: #fff;
}

.contact-form {
    max-width: var(--narrow);
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    margin-bottom: 18px;
    padding: 11px 14px;
    background: #fff;
    color: #555;
    font-size: 11px;
}

.contact-form input {
    height: 36px;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form button {
    display: block;
    min-width: 170px;
    height: 38px;
    margin: 0 auto;
    border: 0;
    padding: 0 40px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

/* About page */
.about-page {
    background: #f5f5f5;
}

.about-container {
    max-width: 1120px;
}

.breadcrumb {
    margin: 0;
    color: #777;
    font-size: 10px;
    font-weight: 700;
}

.breadcrumb a::after {
    content: "|";
    margin: 0 7px;
    color: #cfcfcf;
}

.breadcrumb span {
    color: var(--red);
}

.page-breadcrumb-band,
.blog-breadcrumb-band,
.custom-service-breadcrumb,
.product-breadcrumb-band {
    padding: 14px 0;
    background: #f3f3f3;
}

.page-breadcrumb-band .breadcrumb,
.blog-breadcrumb-band .breadcrumb,
.custom-service-breadcrumb .breadcrumb,
.product-breadcrumb-band .breadcrumb {
    margin: 0;
}

.about-hero {
    padding-top: 45px;
    padding-bottom: 18px;
    background: #f5f5f5;
}

.about-hero h1 {
    position: relative;
    margin: 0 0 31px;
    color: #3c3c3c;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
}

.about-hero h1::after,
.about-contact-detail .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 45px;
    height: 3px;
    background: var(--red);
}

.about-lead {
    max-width: 540px;
    margin: 0 0 42px;
    color: #5f5f5f;
    font-size: 12px;
    line-height: 1.65;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 44px;
    align-items: start;
}

.about-intro-grid h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.12;
}

.about-intro-grid p {
    margin: 0 0 14px;
    color: #555;
    font-size: 11px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
    margin-top: 18px;
}

.about-stats div {
    border-left: 3px solid var(--red);
    padding-left: 9px;
}

.about-stats strong {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.about-stats span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-factory-visual {
    position: relative;
    height: 320px;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(6, 25, 35, .25), rgba(6, 25, 35, .05)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 80px),
        linear-gradient(160deg, #d9e4e9 0%, #7f98a2 43%, #32434d 100%);
}

.about-factory-visual::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 38px;
    height: 74px;
    background: linear-gradient(#dfe8ec, #b8c7ce);
    box-shadow:
        0 90px 0 -6px rgba(225, 235, 240, .95),
        0 178px 0 -12px rgba(219, 229, 235, .92);
}

.about-factory-visual::after {
    content: "";
    position: absolute;
    left: 53%;
    bottom: -8px;
    width: 16px;
    height: 360px;
    background: #f2c322;
    transform: rotate(21deg);
    box-shadow: 18px 0 0 rgba(255, 255, 255, .8);
}

.about-factory-visual span {
    position: absolute;
    bottom: 42px;
    width: 74px;
    height: 80px;
    border-radius: 3px;
    background: linear-gradient(#eef3f5, #b9c7ce);
    box-shadow: inset 0 -18px 0 rgba(0, 0, 0, .08);
}

.about-factory-visual span:nth-child(1) {
    left: 42px;
}

.about-factory-visual span:nth-child(2) {
    left: 145px;
    bottom: 66px;
}

.about-factory-visual span:nth-child(3) {
    left: 244px;
}

.about-factory-visual.has-image::before,
.about-factory-visual.has-image::after {
    display: none;
}

.about-factory-visual.has-image img,
.about-map.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-portrait.has-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.about-work {
    padding-top: 43px;
    padding-bottom: 66px;
}

.about-work .section-title,
.about-team .section-title,
.about-clients .section-title,
.about-contact-detail .section-title {
    margin-bottom: 41px;
    font-size: 28px;
}

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

.about-work-card {
    min-height: 155px;
    padding: 30px 18px 18px;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .62)),
        repeating-linear-gradient(130deg, #263943 0 22px, #182830 22px 44px);
}

.about-work-card:nth-child(2n) {
    background:
        linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)),
        repeating-linear-gradient(45deg, #31434c 0 24px, #1b2d36 24px 48px);
}

.about-work-card h3 {
    margin: 0 0 9px;
    font-size: 14px;
    font-weight: 900;
}

.about-work-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    line-height: 1.58;
}

.about-process {
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-team {
    padding-top: 60px;
    padding-bottom: 44px;
    background: #f5f5f5;
}

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

.team-card {
    text-align: center;
}

.team-portrait {
    height: 320px;
    margin-bottom: 19px;
    background:
        radial-gradient(circle at 50% 31%, #f0d2bd 0 37px, transparent 38px),
        linear-gradient(70deg, transparent 42%, #1e2b34 43% 58%, transparent 59%),
        linear-gradient(#f4f4f4, #e6e6e6);
}

.team-card-2 .team-portrait {
    background:
        radial-gradient(circle at 50% 31%, #edc8b3 0 37px, transparent 38px),
        linear-gradient(70deg, transparent 38%, #163743 39% 62%, transparent 63%),
        linear-gradient(#f5f5f5, #e9eceb);
}

.team-card-3 .team-portrait {
    background:
        radial-gradient(circle at 50% 31%, #eccab5 0 37px, transparent 38px),
        linear-gradient(70deg, transparent 42%, #222b31 43% 58%, transparent 59%),
        linear-gradient(#f3f3f3, #e4e6e7);
}

.team-portrait.has-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.team-card h3 {
    margin: 0 0 5px;
    color: #222;
    font-size: 14px;
    font-weight: 900;
}

.team-card p {
    margin: 0;
    color: #777;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-clients {
    padding-top: 34px;
    padding-bottom: 58px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 26px;
    align-items: center;
    max-width: 900px;
    margin: 24px auto 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 72px;
    color: #535b65;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-align: left;
    overflow: visible;
}

.client-logo span {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0189ff, #1b4bc4);
    flex: 0 0 auto;
}

.client-logo:nth-child(3n) span {
    border-radius: 50%;
    background: #111;
}

.client-logo:nth-child(5n) span {
    background: #155bd6;
    clip-path: polygon(0 0, 100% 0, 100% 56%, 51% 100%, 0 56%);
}

.client-logo img {
    width: 170px;
    max-width: 100%;
    max-height: 76px;
    object-fit: contain;
    transform: scale(1.14);
    transform-origin: center;
}

.about-contact-detail {
    padding-top: 34px;
    padding-bottom: 70px;
    background: #f5f5f5;
}

.about-contact-detail .section-title {
    position: relative;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 900;
}

.about-contact-detail .section-title::after {
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
}

.about-contact-lead {
    max-width: 520px;
    margin: 0 auto 47px;
    color: #666;
    font-size: 11px;
    line-height: 1.65;
    text-align: center;
}

.office-title {
    margin: 0 0 22px;
    color: #222;
    font-size: 17px;
    font-weight: 900;
}

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

.office-card {
    min-height: 140px;
    padding: 18px 22px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: none;
}

.office-card h4 {
    margin: 0 0 9px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.office-card .office-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 8px;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.office-card .office-info-icon {
    display: inline-flex;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    color: #8a8a8a;
}

.office-card .office-info-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.office-card .office-contact-link {
    width: fit-content;
    max-width: 100%;
    color: #d71920;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color .2s ease;
}

.office-card .office-contact-link + .office-contact-link {
    margin-top: 0;
}

.office-card .office-contact-link:hover,
.office-card .office-contact-link:focus-visible {
    color: #9f1117;
}

.about-message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
    align-items: stretch;
}

.about-map {
    position: relative;
    min-height: 298px;
    overflow: hidden;
    background:
        linear-gradient(rgba(237, 245, 250, .88), rgba(237, 245, 250, .88)),
        repeating-linear-gradient(40deg, transparent 0 42px, #cfdde5 43px 45px),
        repeating-linear-gradient(120deg, transparent 0 54px, #dbe6ec 55px 57px),
        #eaf2f6;
}

.about-map::before,
.about-map::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.about-map::before {
    left: 38px;
    top: 67px;
    width: 215px;
    height: 126px;
    border: 7px solid #8fbfd6;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(22deg);
}

.about-map::after {
    right: 65px;
    bottom: 70px;
    width: 14px;
    height: 14px;
    background: #f0444a;
    box-shadow: -108px -38px 0 #3da8ff, -26px -112px 0 #f49dbb;
}

.about-map.has-image::before,
.about-map.has-image::after {
    display: none;
}

.about-message-form h3 {
    margin: 0 0 20px;
    color: #222;
    font-size: 20px;
    font-weight: 900;
}

.about-message-form label {
    display: block;
    margin-bottom: 14px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

.about-message-form input,
.about-message-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    background: #fff;
}

.about-message-form input {
    height: 32px;
}

.about-message-form textarea {
    min-height: 86px;
    resize: vertical;
}

.about-message-form button {
    width: 100%;
    height: 38px;
    margin-top: 8px;
    border: 0;
    background: #f03535;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.urgent-support {
    max-width: 560px;
    margin: 68px auto 0;
    text-align: center;
}

.support-icon {
    display: block;
    width: 36px;
    height: auto;
    margin: 0 auto 12px;
    object-fit: contain;
}

.urgent-support h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.urgent-support p {
    max-width: 520px;
    margin: 0 auto 10px;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.35;
}

.urgent-support span {
    display: block;
    margin-bottom: 7px;
    color: #888;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.urgent-support a {
    color: #f03a3a;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

/* Resources page */
.resources-page {
    background: #fff;
}

.resources-container {
    max-width: 1120px;
}

.resources-hero {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding-top: 22px;
    background:
        linear-gradient(rgba(245, 248, 250, .86), rgba(245, 248, 250, .86)),
        radial-gradient(ellipse at 78% 12%, rgba(150, 162, 174, .36), transparent 48%),
        linear-gradient(155deg, #f8fbfd 0%, #e7edf2 58%, #dce5eb 100%);
    background-size: cover;
    background-position: center;
}

.resources-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(245, 248, 250, .86);
    pointer-events: none;
}

.resources-hero-bg,
.industries-hero-bg,
.wilamac-login-visual-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resources-hero-bg,
.industries-hero-bg {
    z-index: 0;
}

.resources-hero .container,
.industries-hero .container {
    position: relative;
    z-index: 2;
}

.resources-hero h1 {
    margin: 0 0 24px;
    color: #000;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
}

.resources-hero p {
    max-width: 670px;
    margin: 0;
    color: #555;
    font-size: 24px;
    line-height: 1.12;
}

.resources-main {
    min-height: 880px;
    padding-top: 56px;
    padding-bottom: 95px;
}

.resources-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 42px;
    align-items: start;
}

.resources-sidebar {
    border: 1px solid #e7e7e7;
}

.resources-sidebar a {
    display: flex;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e7e7e7;
    color: #111;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.resources-sidebar a:last-child {
    border-bottom: 0;
}

.resources-sidebar a.is-active {
    background: var(--red);
    color: #fff;
}

.resources-content {
    max-width: 710px;
}

.resources-content h2 {
    margin: 12px 0 28px;
    color: #000;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.resources-subtabs {
    display: flex;
    gap: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
    overflow-x: auto;
}

.resources-subtabs a {
    position: relative;
    padding: 0 0 13px;
    color: #333;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.resources-subtabs a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--red);
}

.resources-faq-copy {
    color: #222;
    font-size: 13px;
    line-height: 1.48;
}

.resources-faq-copy p,
.resources-faq-copy ul,
.resources-faq-copy ol {
    margin: 0 0 12px;
}

.resources-faq-copy strong,
.resources-faq-copy b {
    font-weight: 900;
}

.resource-file-list {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.resource-file-row {
    min-height: 78px;
    display: grid;
    grid-template-columns: 36px 1fr 118px;
    gap: 22px;
    align-items: center;
    padding: 0 22px 0 28px;
    background: #f1f1f1;
}

.pdf-icon {
    display: inline-flex;
    width: 32px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #ef5c5c;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.resource-file-row strong {
    color: #111;
    font-size: 16px;
    font-weight: 500;
}

.resource-file-row a {
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.resources-design-intro {
    max-width: 700px;
    margin: 0 0 34px;
    color: #888;
    font-size: 16px;
    line-height: 1.45;
}

.resources-design-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
}

.resources-design-card {
    display: block;
    color: #111;
}

.resources-design-card img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.resources-design-card span {
    position: relative;
    display: block;
    padding: 15px 34px 0 0;
    color: #111;
    font-size: 16px;
    font-weight: 900;
}

.resources-design-card span::after {
    content: ">";
    position: absolute;
    right: 0;
    top: 13px;
    color: var(--red);
    font-size: 25px;
    font-weight: 400;
}

/* Industries page */
.industries-page {
    background: #fff;
}

.industries-container {
    max-width: 1120px;
}

.industries-hero {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding-top: 18px;
    background:
        linear-gradient(rgba(7, 20, 34, .58), rgba(7, 20, 34, .58)),
        linear-gradient(115deg, rgba(12, 29, 44, .95), rgba(44, 77, 96, .62) 42%, rgba(196, 95, 38, .5)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 120px),
        #172c3b;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.industries-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(7, 20, 34, .58);
    pointer-events: none;
}

.industries-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
}

.industries-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    line-height: 1.16;
}

.industries-serve {
    padding-top: 54px;
    padding-bottom: 50px;
}

.industries-serve .section-title,
.industries-use .section-title {
    margin-bottom: 38px;
    font-size: 31px;
}

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

.industry-card {
    text-align: center;
}

.industry-card-image,
.industry-feature-image {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 28, 38, .18), rgba(7, 28, 38, .18)),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 0 2px, transparent 2px 46px),
        linear-gradient(180deg, #0f2b35 0%, #193f4d 54%, #d7ecef 55%, #0d2630 100%);
}

.industry-card-image::before,
.industry-feature-image::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 14%;
    height: 12px;
    background: rgba(233, 252, 255, .92);
    box-shadow:
        0 22px 0 rgba(233, 252, 255, .76),
        0 44px 0 rgba(233, 252, 255, .5);
}

.industry-card-image::after,
.industry-feature-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 38%;
    height: 120%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .12));
    clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
    transform: translateX(-50%);
}

.industry-card-image {
    height: 144px;
    margin-bottom: 14px;
}

.industry-card-image.has-image::before,
.industry-card-image.has-image::after,
.industry-feature-image.has-image::before,
.industry-feature-image.has-image::after {
    display: none;
}

.industry-card-image img,
.industry-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card h3 {
    margin: 0;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.industries-use {
    padding-top: 46px;
    padding-bottom: 50px;
    background: #f1f1f1;
}

.industries-use-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 80px;
}

.industries-use-grid h3 {
    margin: 0 0 12px;
    color: #424242;
    font-size: 16px;
    font-weight: 900;
}

.industries-use-grid p {
    margin: 0;
    color: #252525;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.industries-features {
    padding-top: 44px;
    padding-bottom: 70px;
}

.industry-feature {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 38px;
    align-items: center;
    margin-bottom: 39px;
}

.industry-feature:last-child {
    margin-bottom: 0;
}

.industry-feature.is-reversed {
    grid-template-columns: .8fr 1.2fr;
}

.industry-feature.is-reversed .industry-feature-image {
    order: 2;
}

.industry-feature-image {
    min-height: 245px;
}

.industry-feature-copy h2 {
    margin: 0 0 22px;
    color: #3f3f3f;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.1;
}

.industry-feature-copy p {
    margin: 0 0 32px;
    color: #111;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
}

.industry-feature-copy a {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.industry-feature-copy a::after {
    content: " ->";
}

/* Blog pages */
.blog-page,
.blog-detail-page {
    background: #fff;
}

.blog-container {
    max-width: 1120px;
}

.blog-breadcrumb-band {
    background: #f3f3f3;
}

.blog-breadcrumb-band .breadcrumb {
    margin: 0;
}

.blog-list-section {
    padding-top: 57px;
    padding-bottom: 82px;
    background: #fff;
}

.blog-page-title {
    position: relative;
    margin: 0 0 51px;
    color: #050505;
    font-size: 43px;
    font-weight: 900;
    line-height: 1;
}

.blog-page-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 64px;
    height: 3px;
    background: #ef2830;
}

.blog-list-layout {
    display: grid;
    grid-template-columns: 222px 1fr;
    gap: 25px;
    align-items: start;
}

.blog-sidebar {
    padding-right: 2px;
    background: #fff;
}

.blog-filter-search {
    position: relative;
    margin-bottom: 22px;
}

.blog-filter-search input {
    width: 100%;
    height: 33px;
    border: 1px solid #eee;
    padding: 0 12px 0 35px;
    color: #333;
    font-size: 12px;
    outline: 0;
}

.blog-filter-search button {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 16px;
    height: 16px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.blog-filter-search button::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 9px;
    height: 9px;
    border: 2px solid #b4b9bf;
    border-radius: 50%;
}

.blog-filter-search button::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 12px;
    width: 7px;
    height: 2px;
    background: #b4b9bf;
    transform: rotate(45deg);
    transform-origin: left center;
}

.blog-filter-block {
    margin-bottom: 27px;
}

.blog-filter-block h2 {
    position: relative;
    margin: 0 0 21px;
    color: #262626;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.blog-filter-block h2::after,
.blog-popular h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 29px;
    height: 2px;
    background: #ef2830;
}

.blog-filter-block a {
    display: block;
    margin-bottom: 15px;
    color: #303030;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.blog-filter-block a:hover,
.blog-filter-block a.is-active {
    color: #e11c23;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
}

.blog-list-image,
.blog-detail-image,
.popular-post-image {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 55% 50%, #ff7b31 0 15%, #171f22 16% 23%, #657477 24% 31%, transparent 32%),
        linear-gradient(90deg, #0c1719, #445153 45%, #11191b);
}

.blog-list-image {
    height: 176px;
    margin-bottom: 15px;
}

.blog-list-image.has-image,
.blog-detail-image.has-image,
.popular-post-image.has-image {
    background: #e8eef0;
}

.blog-list-image img,
.blog-detail-image img,
.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-card h2 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #111;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-list-card {
    background: #fff;
}

.blog-list-card p {
    display: -webkit-box;
    margin: 0 0 14px;
    overflow: hidden;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.blog-read-more::after {
    content: " ->";
    padding-left: 4px;
}

.blog-detail-hero {
    padding: 43px 0 47px;
    background: #faf4f4;
}

.blog-detail-meta {
    margin-bottom: 20px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
}

.blog-detail-hero h1 {
    max-width: 590px;
    margin: 0;
    color: #171717;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.22;
}

.blog-detail-main {
    padding-top: 45px;
    padding-bottom: 88px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 650px) 220px;
    gap: 45px;
    align-items: start;
}

.blog-detail-image {
    height: 348px;
    margin-bottom: 42px;
}

.blog-detail-copy {
    color: #111;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.blog-detail-copy h1,
.blog-detail-copy h2,
.blog-detail-copy h3,
.blog-detail-copy h4 {
    margin: 30px 0 16px;
    color: #222;
    font-weight: 900;
    line-height: 1.18;
}

.blog-detail-copy h2 {
    font-size: 21px;
}

.blog-detail-copy h3 {
    font-size: 18px;
}

.blog-detail-copy p {
    margin: 0 0 14px;
}

.blog-detail-copy img {
    height: auto;
    margin: 24px 0;
}

.blog-popular {
    padding-top: 5px;
}

.blog-popular h2 {
    position: relative;
    margin: 0 0 23px;
    color: #171717;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.popular-post {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 13px;
    margin-bottom: 20px;
    align-items: start;
}

.popular-post-image {
    height: 60px;
}

.popular-post span {
    display: block;
    color: #111;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}

.popular-post strong {
    display: block;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    padding-top: 47px;
    background: #030303;
    color: #fff;
}

.footer-grid {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1.55fr .8fr 1.25fr 1.22fr;
    gap: 58px;
    align-items: start;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
}

.site-footer h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 9px;
    color: #fff;
    font-size: 11px;
    line-height: 1.75;
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px 0;
    border-top: 1px solid #202020;
    color: #9a9a9a;
    font-size: 10px;
}

@media (max-width: 1100px) {
    .home-slider-prev,
    .blog-arrow-prev {
        left: 24px;
    }

    .home-slider-next,
    .blog-arrow-next {
        right: 24px;
    }
}

@media (max-width: 900px) {
    .home-hero,
    .product-grid,
    .case-grid,
    .blog-grid,
    .home-about .about-grid,
    .feature-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-menu .container {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .about-intro-grid,
    .about-message-grid,
    .office-grid,
    .resources-layout {
        grid-template-columns: 1fr;
    }

    .about-work-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .resources-sidebar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .resources-sidebar a {
        border-bottom: 0;
        border-right: 1px solid #e7e7e7;
    }

    .resources-sidebar a:last-child {
        border-right: 0;
    }

    .industries-card-grid,
    .industries-use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-feature,
    .industry-feature.is-reversed {
        grid-template-columns: 1fr;
    }

    .industry-feature.is-reversed .industry-feature-image {
        order: 0;
    }

    .blog-list-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding-right: 0;
    }

    .blog-filter-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .home-hero,
    .product-grid,
    .case-grid,
    .blog-grid,
    .home-about .about-grid,
    .feature-grid,
    .footer-grid,
    .form-row,
    .search-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .home-hero {
        height: auto;
    }

    .hero-card {
        height: 270px;
    }

    .factory-video {
        height: 270px;
    }

    .process-line {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-item strong::after {
        display: none;
    }

    .home-slider-arrow,
    .blog-arrow {
        display: none;
    }

    .header-inner {
        gap: 14px;
    }

    .language-switcher {
        margin-left: auto;
    }

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

    .about-work-grid,
    .team-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        padding: 0;
    }

    .client-logo img {
        width: 180px;
        max-height: 78px;
    }

    .about-factory-visual,
    .about-map {
        height: 260px;
        min-height: 260px;
    }

    .team-portrait {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .urgent-support a {
        font-size: 30px;
    }

    .resources-hero {
        min-height: 240px;
    }

    .resources-hero h1 {
        font-size: 34px;
    }

    .resources-hero p {
        font-size: 18px;
    }

    .resources-sidebar {
        grid-template-columns: 1fr;
    }

    .resources-sidebar a {
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .resource-file-row {
        grid-template-columns: 36px 1fr;
    }

    .resource-file-row a {
        grid-column: 1 / -1;
    }

    .resources-design-grid {
        grid-template-columns: 1fr;
    }

    .header-search-row {
        gap: 14px;
    }

    .industries-hero h1 {
        font-size: 30px;
    }

    .industries-hero p {
        font-size: 17px;
    }

    .industries-card-grid,
    .industries-use-grid {
        grid-template-columns: 1fr;
    }

    .industry-card-image,
    .industry-feature-image {
        min-height: 205px;
        height: auto;
    }

    .blog-page-title {
        font-size: 34px;
    }

    .blog-sidebar,
    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-image,
    .blog-detail-image {
        height: 230px;
    }

    .blog-detail-hero h1 {
        font-size: 24px;
    }

}

/* New homepage from the 2026 reference */
.home-2026-narrow {
    max-width: 1120px;
}

.home-2026-section-title {
    margin: 0 0 30px;
    color: #333;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.home-2026-subcategories,
.home-2026-tabs,
.home-2026-products,
.home-2026-about,
.home-2026-video,
.home-2026-solution,
.home-2026-blog,
.home-2026-process,
.home-2026-contact,
.about-page > section:not(:first-child),
.industries-page > section:not(:first-child),
.resources-page > section:not(:first-child),
.blog-page > section:not(:first-child),
.product-detail-page > article > section:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.home-2026-red-btn {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-2026-red-btn:hover,
.home-2026-red-btn:focus-visible {
    background: #b70000;
    box-shadow: 0 10px 22px rgba(214, 0, 0, .2);
    transform: translateY(-2px);
}

.home-2026-red-btn:active {
    transform: translateY(0) scale(.97);
}

.home-2026-hero {
    overflow: hidden;
    min-height: clamp(390px, 28vw, 480px);
}

.home-2026-hero-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: home-hero-marquee 28s linear infinite;
    will-change: transform;
}

.home-2026-hero:hover .home-2026-hero-track,
.home-2026-hero:focus-within .home-2026-hero-track {
    animation-play-state: paused;
}

@keyframes home-hero-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 5px));
    }
}

.home-2026-hero-card {
    position: relative;
    flex: 0 0 calc((100vw - 30px) / 4);
    min-height: clamp(390px, 28vw, 480px);
    overflow: hidden;
}

.home-2026-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .43);
    pointer-events: none;
    transition: background-color .45s cubic-bezier(.2, .8, .2, 1);
}

.home-2026-hero-media {
    position: absolute;
    inset: 0;
    display: block;
}

.home-2026-hero-card img {
    width: 100%;
    height: 100%;
    min-height: clamp(390px, 28vw, 480px);
    object-fit: cover;
    transform: scale(1);
    transition: transform .75s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.home-2026-hero-card:hover::before,
.home-2026-hero-card:focus-within::before {
    background: rgba(0, 0, 0, .34);
}

.home-2026-hero-card:hover img,
.home-2026-hero-card:focus-within img {
    transform: scale(1.08);
}

.home-2026-hero-card > div {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    pointer-events: none;
}

.home-2026-hero-card h2 {
    max-width: 280px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(22px, 2.35vw, 36px);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.home-2026-hero-card > div a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: auto;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-2026-hero-card > div a:hover,
.home-2026-hero-card > div a:focus-visible {
    background: #b70000;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
    transform: translateY(-2px);
}

.home-2026-hero-card > div a:active {
    transform: translateY(0) scale(.97);
}

.home-2026-intro {
    padding: 38px 0 26px;
    background: #fff;
}

.home-2026-intro-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.home-2026-intro h1,
.home-2026-intro h2 {
    margin: 0;
    color: var(--red);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.home-2026-intro p {
    margin: 0 0 8px;
    color: #333;
    font-size: 13px;
    line-height: 1.58;
}

.home-2026-subcategories {
    padding: 8px 0 34px;
    background: #fff;
}

.home-2026-subcategory-carousel {
    overflow: hidden;
}

.home-2026-subcategory-grid {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: home-subcategory-marquee 24s linear infinite;
    will-change: transform;
}

.home-2026-subcategory-carousel:hover .home-2026-subcategory-grid,
.home-2026-subcategory-carousel:focus-within .home-2026-subcategory-grid {
    animation-play-state: paused;
}

@keyframes home-subcategory-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.home-2026-subcategory {
    flex: 0 0 calc((min(100vw, 1080px) - 54px) / 4);
    background: #f2f2f2;
    text-align: center;
    transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-2026-subcategory:hover,
.home-2026-subcategory:focus-within {
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.home-2026-subcategory a {
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 15px;
}

.home-2026-subcategory h3 {
    margin: 0;
    color: #111;
    font-size: 10px;
    font-weight: 900;
}

.home-2026-subcategory img {
    width: 100%;
    height: 108px;
    object-fit: contain;
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.home-2026-subcategory:hover img,
.home-2026-subcategory:focus-within img {
    transform: scale(1.06);
}

.home-2026-subcategory span {
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    background: var(--red);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.home-2026-tabs {
    padding: 0 0 42px;
    background: #fff;
}

.home-2026-tab-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid #e5e5e5;
}

.home-2026-tab-nav button {
    position: relative;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.home-2026-tab-nav button.is-active {
    color: #333;
}

.home-2026-tab-nav button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--red);
}

.home-2026-tab-layout {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 300px;
    gap: 48px;
    align-items: start;
    padding-top: 24px;
}

.home-2026-tab-panel {
    display: none;
}

.home-2026-tab-panel.is-active {
    display: block;
}

.home-2026-tab-panel h2 {
    margin: 0 0 12px;
    color: #333;
    font-size: 28px;
    font-weight: 900;
}

.home-2026-tab-text {
    columns: 1;
}

.home-2026-tab-text p,
.home-2026-tab-middle p {
    break-inside: avoid;
    margin: 0 0 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.58;
}

.home-2026-tab-middle p {
    position: relative;
    padding-left: 14px;
}

.home-2026-tab-middle p::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
    transform: rotate(45deg);
}

.home-2026-tab-layout > img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.home-2026-products {
    padding: 44px 0 48px;
    background: #fff;
}

.home-2026-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-2026-product-card {
    position: relative;
    border: 1px solid #e3e3e3;
    background: #fff;
}

.home-2026-product-card > a:first-child {
    position: relative;
    display: block;
    overflow: hidden;
    isolation: isolate;
}

.home-2026-product-card > a:first-child::before,
.home-2026-product-card > a:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    z-index: 3;
    background: rgba(0, 0, 0, .4);
    pointer-events: none;
    transform: scaleY(0);
    transition: transform .52s cubic-bezier(.2, .8, .2, 1);
}

.home-2026-product-card > a:first-child::before {
    top: 0;
    transform-origin: top;
}

.home-2026-product-card > a:first-child::after {
    bottom: 0;
    transform-origin: bottom;
}

.home-2026-product-card > a:first-child:hover::before,
.home-2026-product-card > a:first-child:hover::after,
.home-2026-product-card > a:first-child:focus::before,
.home-2026-product-card > a:first-child:focus::after {
    transform: scaleY(1);
}

.home-2026-product-card > a img {
    display: block;
    width: 100%;
    height: 205px;
    object-fit: cover;
    transform: scale(1);
    transition: transform .62s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.home-2026-product-card > a:first-child:hover img,
.home-2026-product-card > a:first-child:focus img {
    transform: scale(1.055);
}

.home-2026-product-card > div {
    position: relative;
    padding: 12px 13px 15px;
}

.home-2026-product-card span {
    display: block;
    color: #777;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-2026-product-card h3 {
    margin: 7px 0 8px;
    color: #333;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.home-2026-product-card strong {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    transition: background-color .22s ease, transform .22s ease;
}

.home-2026-product-card strong:hover {
    background: #b70000;
    transform: translateY(-1px);
}

.home-2026-product-card p {
    margin: 9px 0 0;
    color: #666;
    font-size: 10px;
    line-height: 1.45;
}

.home-2026-about {
    padding: 38px 0 64px;
    background: #fff;
}

.home-2026-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.home-2026-about-grid > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.home-2026-about h2 {
    margin: 0 0 14px;
    color: #333;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.08;
}

.home-2026-about p {
    margin: 0 0 12px;
    color: #666;
    font-size: 15px;
    line-height: 1.55;
}

.home-2026-about .home-2026-red-btn {
    margin-top: 12px;
    min-height: 38px;
    padding: 0 28px;
    font-size: 13px;
}

.home-2026-feature-grid {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0 20px;
}

.home-2026-feature-grid article {
    min-height: 130px;
    padding: 24px 22px 22px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 32px rgba(32, 56, 90, .1);
}

.home-2026-feature-grid span {
    color: #333;
    font-size: 19px;
    font-weight: 900;
}

.home-2026-feature-grid img {
    width: 34px;
    height: 34px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.home-2026-feature-grid h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 14px;
    font-weight: 900;
}

.home-2026-feature-grid p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

.home-2026-video {
    position: relative;
    height: clamp(310px, 41vw, 520px);
    overflow: hidden;
    background: #111;
}

.home-2026-video-poster {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(310px, 41vw, 520px);
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}

.home-2026-video video,
.home-2026-video img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-2026-video video {
    object-fit: contain;
    background: #111;
}

.home-2026-video img {
    height: 100%;
    object-fit: cover;
}

.home-2026-video-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    transition: transform .22s ease, background .22s ease;
}

.home-2026-video-poster:hover span,
.home-2026-video-poster:focus-visible span {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

.home-2026-video-poster span::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid var(--red);
}

.home-2026-video.is-playing {
    height: clamp(310px, 41vw, 520px);
}

.home-2026-solution {
    padding: 48px 0 38px;
    background: #fff;
    text-align: center;
}

.home-2026-solution p {
    max-width: 760px;
    margin: -16px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.45;
}

.home-2026-blog {
    position: relative;
    padding: 6px 0 58px;
    background: #fff;
}

.home-2026-blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 5);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.home-2026-blog-grid::-webkit-scrollbar {
    display: none;
}

.home-2026-blog-grid article {
    height: 100%;
}

.home-2026-blog-grid article > a {
    --home-blog-image-height: 155px;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 318px;
    color: inherit;
    text-decoration: none;
}

.home-2026-blog-grid article > a::before,
.home-2026-blog-grid article > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: calc(var(--home-blog-image-height) / 2);
    z-index: 3;
    background: rgba(0, 0, 0, .4);
    pointer-events: none;
    transform: scaleY(0);
    transition: transform .52s cubic-bezier(.2, .8, .2, 1);
}

.home-2026-blog-grid article > a::before {
    top: 0;
    transform-origin: top;
}

.home-2026-blog-grid article > a::after {
    top: calc(var(--home-blog-image-height) / 2);
    transform-origin: bottom;
}

.home-2026-blog-grid article > a:has(> img:hover)::before,
.home-2026-blog-grid article > a:has(> img:hover)::after,
.home-2026-blog-grid article > a:focus::before,
.home-2026-blog-grid article > a:focus::after,
.home-2026-blog-grid article > a:focus-within::before,
.home-2026-blog-grid article > a:focus-within::after {
    transform: scaleY(1);
}

.home-2026-blog-grid article img {
    display: block;
    width: 100%;
    height: 155px;
    flex: 0 0 auto;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    transition: transform .62s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.home-2026-blog-grid article > a:has(> img:hover) img,
.home-2026-blog-grid article > a:focus img,
.home-2026-blog-grid article > a:focus-within img {
    transform: scale(1.055);
}

.home-2026-blog-grid article div {
    padding: 12px 12px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-2026-blog-grid span {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-2026-blog-grid h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    min-height: 51px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-2026-blog-grid p {
    margin: 0 0 12px;
    color: #666;
    font-size: 11px;
    line-height: 1.45;
    min-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-2026-blog-grid strong {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    padding: 0 13px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-2026-blog-grid article > a:hover strong,
.home-2026-blog-grid article > a:focus strong,
.home-2026-blog-grid article > a:focus-within strong {
    background: #b70000;
    box-shadow: 0 8px 18px rgba(214, 0, 0, .18);
    transform: translateY(-1px);
}

.home-2026-blog .blog-arrow::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.home-2026-blog .blog-arrow-prev::before {
    transform: rotate(45deg);
}

.home-2026-blog .blog-arrow-next::before {
    left: 13px;
    transform: rotate(-135deg);
}

.home-2026-process {
    padding: 48px 0 52px;
    background: #eef9fd;
    text-align: center;
}

.home-2026-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.home-2026-process-grid article {
    text-align: center;
}

.home-2026-process-grid span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 23px;
    font-weight: 900;
}

.home-2026-process-grid img {
    width: 34px;
    height: 34px;
    margin: 0 auto;
    object-fit: contain;
}

.home-2026-process-grid h3 {
    margin: 12px 0 8px;
    color: #333;
    font-size: 14px;
    font-weight: 900;
}

.home-2026-process-grid p {
    margin: 0;
    color: #666;
    font-size: 11px;
    line-height: 1.45;
}

.home-2026-contact {
    padding: 50px 0 72px;
    background: #fff;
    text-align: center;
}

.home-2026-contact > .container > p {
    max-width: 620px;
    margin: -18px auto 26px;
    color: #666;
    font-size: 11px;
    line-height: 1.45;
}

.home-contact-alert {
    max-width: 860px;
    margin: 24px auto 0;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.home-contact-alert.is-success {
    border: 1px solid #b7dfbd;
    background: #f1fbf2;
    color: #0b6b22;
}

.home-contact-alert.is-error {
    border: 1px solid #f0b5b5;
    background: #fff2f2;
    color: #a40000;
}

.home-contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.home-2026-contact form {
    max-width: 700px;
    margin: 0 auto;
}

.home-2026-contact .home-2026-contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.home-2026-contact form > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-2026-contact input,
.home-2026-contact textarea {
    width: 100%;
    border: 0;
    margin-bottom: 18px;
    padding: 11px 14px;
    background: #f7f7f7;
    color: #555;
    font-size: 11px;
    outline: 0;
}

.home-2026-contact input {
    height: 36px;
}

.home-2026-contact textarea {
    min-height: 110px;
    resize: vertical;
}

.home-2026-contact button {
    min-width: 170px;
    height: 38px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 900px) {
    .home-2026-product-grid,
    .home-2026-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026-hero-card {
        flex-basis: calc((100vw - 10px) / 2);
    }

    .home-2026-intro-grid,
    .home-2026-tab-layout,
    .home-2026-about-grid {
        grid-template-columns: 1fr;
    }

    .home-2026-blog-grid {
        grid-template-columns: none;
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .home-2026-tab-nav,
    .home-2026-feature-grid,
    .home-2026-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-2026-subcategory {
        flex-basis: calc((100vw - 54px) / 2);
    }
}

@media (max-width: 640px) {
    .home-2026-tab-nav,
    .home-2026-product-grid,
    .home-2026-feature-grid,
    .home-2026-blog-grid,
    .home-2026-process-grid,
    .home-2026-contact form > div {
        grid-template-columns: 1fr;
    }

    .home-2026-tab-text {
        columns: 1;
    }

    .home-2026-subcategory {
        flex-basis: calc(100vw - 40px);
    }

    .home-2026-blog-grid {
        grid-template-columns: none;
        grid-auto-columns: 82%;
    }

    .home-2026-hero-card {
        flex-basis: 100vw;
    }

    .home-2026-hero,
    .home-2026-hero-card,
    .home-2026-hero-card img {
        min-height: 260px;
    }
}

/* Final override: header search bar alignment. */
.header-search .search-inner {
    max-width: 850px !important;
    height: 40px !important;
    display: flex !important;
    align-items: stretch !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    background: #f3f6fb !important;
}

.header-search .search-inner::after {
    left: 193px !important;
}

.header-search .search-inner select {
    width: 205px !important;
    flex: 0 0 205px !important;
    height: 40px !important;
    padding-left: 28px !important;
    padding-right: 42px !important;
    border: 0 !important;
    border-right: 1px solid #d8dee8 !important;
    background-color: transparent !important;
    color: #243040 !important;
    font-size: 12px !important;
    text-align: center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.header-search .search-inner form {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.header-search .search-inner input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 40px !important;
    padding: 0 14px !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 12px !important;
    outline: 0 !important;
}

.header-search .search-inner button {
    position: relative !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 33px !important;
    margin: 3px 3px 3px 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: #30384a !important;
}

/* Custom login page */
.wilamac-login-body {
    min-height: 100vh;
    background: #fff;
}

.wilamac-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
}

.wilamac-login-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(5, 17, 27, .62), rgba(5, 17, 27, .62)),
        radial-gradient(circle at 52% 46%, rgba(255, 255, 255, .16), transparent 18%),
        linear-gradient(135deg, #1b313d, #06111a 78%);
    background-size: cover;
    background-position: center;
}

.wilamac-login-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 17, 27, .62);
    pointer-events: none;
}

.wilamac-login-visual-bg {
    z-index: 0;
    object-fit: cover;
    object-position: center center;
}

.wilamac-login-copy {
    position: relative;
    z-index: 2;
    width: min(540px, calc(100% - 96px));
    max-width: 540px;
    margin: 0;
    color: #fff;
}

.wilamac-login-copy h1 {
    margin: 0 0 44px;
    color: #fff;
    font-size: clamp(66px, 5.4vw, 88px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.wilamac-login-copy p {
    max-width: 500px;
    margin: 0;
    color: #fff;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
}

.wilamac-login-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #fff;
}

.wilamac-login-box {
    width: min(500px, 100%);
    margin-top: -8px;
    text-align: center;
}

.wilamac-login-logo,
.wilamac-login-logo-image {
    display: inline-block;
    margin-bottom: 58px;
}

.wilamac-login-logo {
    color: #050505;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.wilamac-login-logo span {
    display: inline-block;
    padding: 0 5px;
    background: var(--red);
    color: #fff;
}

.wilamac-login-logo-image {
    max-width: 230px;
    max-height: 72px;
    object-fit: contain;
}

.wilamac-login-box h2 {
    margin: 0 0 50px;
    color: #050505;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}

.wilamac-login-error {
    margin: -22px 0 24px;
    padding: 12px 14px;
    background: #fff3f3;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.wilamac-login-form {
    display: grid;
    gap: 30px;
}

.wilamac-login-form input {
    width: 100%;
    height: 62px;
    border: 0;
    padding: 0 21px;
    background: #f1f1f1;
    color: #111;
    font-size: 20px;
    outline: 0;
}

.wilamac-login-form input::placeholder {
    color: #999;
}

.wilamac-login-form button {
    height: 68px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
}

.wilamac-login-form button:hover {
    background: #a90c14;
}

@media (max-width: 900px) {
    .wilamac-login-page {
        grid-template-columns: 1fr;
    }

    .wilamac-login-visual {
        min-height: 45vh;
        align-items: center;
    }

    .wilamac-login-panel {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .wilamac-login-copy {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 48px 28px;
    }

    .wilamac-login-copy h1 {
        margin-bottom: 28px;
        font-size: 46px;
    }

    .wilamac-login-panel {
        padding: 42px 24px;
    }

    .wilamac-login-logo,
    .wilamac-login-logo-image {
        margin-bottom: 38px;
    }

    .wilamac-login-box h2 {
        margin-bottom: 34px;
    }
}

/* Homepage 2026 layout overrides */
.home-page {
    background: #fff;
}

.top-line .container {
    max-width: 1000px;
}

.header-main .container,
.header-search .container,
.category-menu .container {
    max-width: 1000px;
}

.header-main {
    border-bottom: 0;
}

.header-inner {
    height: 46px;
}

.site-logo {
    font-size: 30px;
}

.main-nav ul {
    gap: 26px;
}

.main-nav a {
    font-size: 9px;
    font-weight: 700;
}

.header-search {
    padding: 10px 0 14px;
}

.header-search-row {
    gap: 22px;
}

.category-menu .container {
    gap: clamp(38px, 7vw, 92px);
}

.category-menu a {
    padding: 8px 0 9px;
    font-size: 9px;
}

.home-hero {
    height: clamp(250px, 28vw, 390px);
}

.hero-card h2 {
    max-width: 300px;
    margin-bottom: 22px;
    font-size: clamp(24px, 2.8vw, 42px);
}

.hero-card a,
.red-btn {
    min-height: 31px;
    padding: 0 22px;
    border-radius: 20px;
    font-size: 9px;
}

.home-categories {
    padding: 36px 0 34px;
}

/* Final typography and contact alignment */
html {
    font-size: 16px;
}

.top-line {
    height: 20px;
    font-size: 9px;
    line-height: 20px;
}

.header-inner {
    height: 56px;
}

.site-logo {
    font-size: 34px;
}

.main-nav a {
    font-size: 12px;
    font-weight: 800;
}

.header-search {
    padding: 12px 0 16px;
}

.header-search .container,
.category-menu .container,
.header-main .container {
    max-width: 1120px;
}

.header-search .search-inner {
    height: 46px !important;
    max-width: 900px !important;
}

.header-search .search-inner select,
.header-search .search-inner input {
    height: 46px !important;
    font-size: 14px !important;
}

.header-search .search-inner button {
    height: 38px !important;
    width: 46px !important;
    min-width: 46px !important;
    margin-top: 4px !important;
}

.header-actions {
    gap: 28px;
}

.header-user-link,
.header-collection-toggle {
    width: 28px;
    height: 28px;
}

.category-menu .container {
    gap: clamp(48px, 8vw, 108px);
}

.category-menu a {
    padding: 11px 0;
    font-size: 12px;
}

.home-2026-section-title {
    font-size: 30px;
}

.home-2026-contact {
    padding: 42px 0 70px;
    background: #fff;
}

.home-2026-contact .home-2026-narrow {
    max-width: 900px;
}

.home-2026-contact .home-2026-section-title {
    margin-bottom: 16px;
    color: #26344a;
    font-size: 30px;
}

.home-2026-contact > .container > p {
    max-width: 760px;
    margin: 0 auto 34px;
    color: #26344a;
    font-size: 16px;
    line-height: 1.35;
}

.home-contact-alert {
    max-width: 860px;
    margin: 24px auto 0;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.home-contact-alert.is-success {
    border: 1px solid #b7dfbd;
    background: #f1fbf2;
    color: #0b6b22;
}

.home-contact-alert.is-error {
    border: 1px solid #f0b5b5;
    background: #fff2f2;
    color: #a40000;
}

.home-contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.home-2026-contact form {
    max-width: 900px;
}

.home-2026-contact form > div {
    gap: 36px;
}

.home-2026-contact label {
    display: block;
    margin: 0;
    text-align: left;
}

.home-2026-contact label > span {
    display: block;
    margin-bottom: 10px;
    color: #26344a;
    font-size: 14px;
    font-weight: 900;
}

.home-2026-contact input,
.home-2026-contact textarea {
    margin-bottom: 28px;
    background: #d4e3f5;
    color: #26344a;
    font-size: 13px;
}

.home-2026-contact input {
    height: 52px;
    padding: 0 18px;
}

.home-2026-contact textarea {
    min-height: 120px;
    padding: 18px;
}

.home-2026-contact button {
    min-width: 196px;
    height: 48px;
    font-size: 14px;
}

.home-intro {
    max-width: var(--narrow);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 44px;
    align-items: center;
}

.home-intro h2 {
    margin: 0;
    color: var(--red);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.home-intro-text p {
    margin: 0 0 8px;
    color: #333;
    font-size: 10px;
    line-height: 1.58;
}

.home-subcategory-grid {
    max-width: var(--narrow);
    margin: 0 auto 35px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-subcategory-card {
    min-height: 168px;
    background: #f3f3f3;
    text-align: center;
}

.home-subcategory-card a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px 16px;
}

.home-subcategory-card span {
    color: #111;
    font-size: 10px;
    font-weight: 900;
}

.home-subcategory-card img {
    width: 100%;
    height: 88px;
    object-fit: contain;
}

.home-subcategory-card strong {
    min-height: 20px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.home-tabs-block {
    max-width: var(--narrow);
    margin: 0 auto;
}

.home-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid #e8e8e8;
}

.home-tabs-nav button {
    position: relative;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.home-tabs-nav button.is-active {
    color: #333;
}

.home-tabs-nav button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--red);
}

.home-tabs-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 42px;
    align-items: center;
    padding-top: 26px;
}

.home-tabs-content h2,
.home-tab-panel h3 {
    margin: 0 0 12px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.home-tab-panel {
    display: none;
}

.home-tab-panel.is-active {
    display: block;
}

.home-tab-text {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
}

.home-tab-text p {
    margin: 0 0 8px;
    color: #666;
    font-size: 10px;
    line-height: 1.58;
}

.home-tabs-content > img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.top-products {
    padding-top: 42px;
}

.top-products .section-title,
.home-solution .section-title,
.home-blog .section-title,
.cooperation-process .section-title,
.home-contact .section-title {
    margin-bottom: 28px;
    font-size: 24px;
}

.product-grid {
    gap: 19px;
}

.product-card {
    border-color: #e1e1e1;
}

.product-image img,
.product-card .wp-post-image {
    height: 205px;
}

.home-about {
    padding-top: 24px;
}

.about-image img {
    height: 285px;
}

.feature-grid {
    margin-top: -12px;
}

.factory-video {
    height: clamp(300px, 40vw, 520px);
}

.home-solution {
    padding-top: 46px;
    padding-bottom: 48px;
}

.home-blog {
    padding-top: 6px;
    padding-bottom: 58px;
}

.blog-grid {
    gap: 18px;
}

.cooperation-process {
    padding-top: 48px;
    padding-bottom: 52px;
    background:
        linear-gradient(rgba(239, 249, 253, .94), rgba(239, 249, 253, .94)),
        radial-gradient(circle at 30% 45%, rgba(255, 255, 255, .8) 0 2px, transparent 3px),
        #eef9fd;
}

.process-line {
    max-width: 780px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-contact {
    padding-top: 50px;
    padding-bottom: 72px;
}

.home-contact .section-title {
    margin-bottom: 16px;
}

.contact-form {
    max-width: 700px;
}

.contact-form input,
.contact-form textarea {
    background: #f7f7f7;
}

.site-footer {
    background: var(--red);
}

.site-footer .footer-logo {
    color: #fff;
    font-size: 20px;
}

.site-footer .footer-logo span {
    color: #fff;
}

.site-footer h3,
.site-footer a,
.site-footer p,
.footer-bottom {
    color: #fff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, .2);
}

@media (max-width: 900px) {
    .home-intro,
    .home-tabs-content {
        grid-template-columns: 1fr;
    }

    .home-subcategory-grid,
    .home-tabs-nav,
    .process-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .home-hero,
    .product-grid,
    .home-subcategory-grid,
    .home-tabs-nav,
    .process-line {
        grid-template-columns: 1fr;
    }

    .home-hero {
        height: auto;
    }

    .hero-card {
        min-height: 260px;
    }
}

/* Final header alignment for the new home reference */
.site-header {
    background: #b01836;
}

.header-main {
    background: #dfeafa;
}

.header-inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.top-line-text {
    color: #243246;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.header-top-right .main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-top-right .main-nav a {
    color: #243246;
    font-size: 13px;
    font-weight: 500;
    line-height: 40px;
}

.header-top-right .main-nav a:hover,
.header-top-right .main-nav a.is-active {
    color: var(--red);
}

.header-top-right .language-switcher {
    margin-left: 0;
}

.header-top-right .language-switcher button,
.header-top-right .language-switcher--translatepress a {
    color: #243246;
    font-size: 13px;
    line-height: 1;
}

.header-search {
    background: #b01836;
    padding: 18px 0;
}

.header-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.header-search .site-logo {
    flex: 0 0 auto;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.header-search .site-logo span {
    color: #fff;
}

.header-search .search-inner {
    flex: 1 1 650px;
    max-width: 650px !important;
    height: 38px !important;
    background: #eaf1fb !important;
    border-radius: 5px !important;
}

.header-search .search-inner::after {
    left: 122px !important;
    height: 18px;
}

.header-search .search-inner select {
    flex: 0 0 140px !important;
    width: 140px !important;
    height: 38px !important;
    padding-left: 16px !important;
    padding-right: 30px !important;
    color: #1f2937;
    font-size: 12px !important;
}

.header-search .search-inner input {
    height: 38px !important;
    font-size: 12px !important;
}

.header-search .search-inner button {
    width: 36px !important;
    min-width: 36px !important;
    height: 34px !important;
    margin: 2px 2px 2px 0 !important;
    background-color: #9e1230 !important;
    border-radius: 4px !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.header-user-link,
.header-collection-toggle {
    width: 28px;
    height: 28px;
}

.category-menu {
    background: #b01836;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.category-menu .container {
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.category-menu a {
    padding: 13px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 900px) {
    .header-inner {
        height: auto;
        padding: 10px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .header-top-right,
    .header-top-right .main-nav ul {
        flex-wrap: wrap;
        gap: 14px;
    }

    .header-search-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-search .search-inner {
        order: 3;
        flex-basis: 100%;
        max-width: none !important;
    }

    .category-menu .container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Header icon/detail cleanup */
.header-search .search-inner {
    position: relative;
}

.header-search .search-inner::before {
    content: "";
    position: absolute;
    left: 112px;
    top: 15px;
    z-index: 2;
    width: 7px;
    height: 7px;
    border-right: 1px solid #8c98a8;
    border-bottom: 1px solid #8c98a8;
    pointer-events: none;
    transform: rotate(45deg);
}

.header-search .search-inner::after {
    left: 140px !important;
    top: 10px;
    width: 1px;
    height: 18px;
    background: #d2d9e4;
}

.header-search .search-inner select {
    border: 0 !important;
    background-image: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.header-search .search-inner select::-ms-expand {
    display: none;
}

.header-user-link,
.header-collection-toggle {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none;
}

.header-user-link:focus,
.header-collection-toggle:focus {
    outline: 0;
}

.header-collection-toggle::before {
    background: #fff;
}

.collection-count {
    right: -8px;
    top: -6px;
    background: #ffc400;
    color: #b01836;
}

/* Header icon final sizing */
.header-search .search-inner::before {
    content: none !important;
}

.header-actions {
    gap: 18px;
}

.header-user-link,
.header-collection-toggle {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
}

.header-user-link::before {
    left: 9px;
    top: 4px;
    width: 9px;
    height: 9px;
}

.header-user-link::after {
    left: 5px;
    bottom: 4px;
    width: 18px;
    height: 11px;
}

.header-collection-toggle::before {
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
}

.collection-count {
    right: -4px;
    top: -2px;
}

/* Header select and collection icon final polish */
.header-search .search-inner {
    overflow: hidden;
}

.header-search .search-inner::before {
    content: "" !important;
    position: absolute;
    left: 113px;
    top: 13px;
    z-index: 3;
    width: 8px;
    height: 8px;
    border-right: 1px solid #7d8a9a;
    border-bottom: 1px solid #7d8a9a;
    pointer-events: none;
    transform: rotate(45deg);
}

.header-search .search-inner select {
    background: transparent !important;
    background-image: none !important;
    color: transparent !important;
    text-shadow: 0 0 0 #1f2937;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.header-search .search-inner select::-ms-expand {
    display: none !important;
}

.header-collection-toggle::before {
    left: 1px;
    top: 1px;
    width: 28px;
    height: 28px;
}

.collection-count {
    right: -7px;
    top: -3px;
}

/* Final removal of duplicated select arrow */
.header-search .search-inner::before {
    content: none !important;
    display: none !important;
}

/* Product search category dropdown */
.header-search .search-inner::before {
    content: "" !important;
    position: absolute !important;
    left: 113px !important;
    top: 13px !important;
    z-index: 4 !important;
    width: 8px !important;
    height: 8px !important;
    display: block !important;
    border-right: 1px solid #7d8a9a !important;
    border-bottom: 1px solid #7d8a9a !important;
    pointer-events: none !important;
    transform: rotate(45deg) !important;
}

.header-search .search-inner select {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.header-search .search-inner select option {
    background: #fff !important;
    color: #1f2937 !important;
}

/* Match the new about feature card composition */
.home-2026-about {
    padding: 40px 0 64px;
    background: #dce9fb;
}

.home-2026-about-grid {
    gap: 52px;
    align-items: start;
}

.home-2026-about-grid > img {
    height: 315px;
}

.home-2026-about h2 {
    margin-top: 28px;
    color: #2d3a4d;
    font-size: 28px;
    line-height: 1.13;
}

.home-2026-about p {
    color: #516078;
    font-size: 14px;
    line-height: 1.55;
}

.home-2026-about .home-2026-red-btn {
    margin-top: 12px;
    min-height: 32px;
    padding: 0 24px;
    font-size: 12px;
}

.home-2026-feature-grid {
    margin-top: 0;
    padding: 0;
    gap: 0;
}

.home-2026-feature-grid article {
    min-height: 118px;
    padding: 20px 24px 18px;
    background: rgba(232, 241, 253, .78);
    border-right: 1px solid rgba(255, 255, 255, .66);
    box-shadow: 0 18px 34px rgba(43, 75, 118, .14);
}

.home-2026-feature-grid article:last-child {
    border-right: 0;
}

.home-2026-feature-grid img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.home-2026-feature-grid span {
    font-size: 22px;
}

.home-2026-feature-grid h3 {
    margin-bottom: 9px;
    color: #1f2d40;
    font-size: 14px;
}

.home-2026-feature-grid p {
    color: #526076;
    font-size: 12px;
    line-height: 1.42;
}

/* Correct header divider and support both about templates */
.header-search .search-inner::after {
    content: "" !important;
    left: 136px !important;
    top: 10px !important;
    width: 1px !important;
    height: 18px !important;
    border: 0 !important;
    background: #d2d9e4 !important;
    transform: none !important;
}

.header-search .search-inner::before {
    content: none !important;
    display: none !important;
}

.home-about,
.home-2026-about {
    padding: 42px 0 0 !important;
    background: #dce9fb !important;
}

.home-about .about-grid,
.home-2026-about-grid {
    max-width: 1120px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 58px !important;
    align-items: start !important;
    margin: 0 auto !important;
}

.about-image img,
.home-2026-about-grid > img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
}

.about-content,
.home-2026-about-grid > div {
    padding-top: 34px !important;
}

.about-content h2,
.home-2026-about h2 {
    margin: 0 0 18px !important;
    color: #2d3a4d !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
}

.about-content p,
.home-2026-about p {
    margin: 0 0 14px !important;
    color: #53627a !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.feature-grid,
.home-2026-feature-grid {
    max-width: 1120px !important;
    margin: -1px auto 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    position: relative !important;
    z-index: 3 !important;
}

.feature-item,
.home-2026-feature-grid article {
    min-height: 126px !important;
    padding: 20px 26px 18px !important;
    background: rgba(232, 241, 253, .8) !important;
    border-right: 1px solid rgba(255, 255, 255, .7) !important;
    text-align: center !important;
    box-shadow: 0 18px 34px rgba(43, 75, 118, .14) !important;
}

.feature-item:last-child,
.home-2026-feature-grid article:last-child {
    border-right: 0 !important;
}

.feature-item img,
.home-2026-feature-grid img {
    width: 30px !important;
    height: 30px !important;
    margin: 0 auto 10px !important;
    object-fit: contain !important;
}

.feature-item strong,
.home-2026-feature-grid span {
    font-size: 22px !important;
}

.feature-item h3,
.home-2026-feature-grid h3 {
    margin: 0 0 9px !important;
    color: #1f2d40 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.feature-item p,
.home-2026-feature-grid p {
    margin: 0 !important;
    color: #526076 !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
}

/* Custom service cases page */
.category-menu a.is-active {
    color: #ffdc2f;
}

.custom-service-page {
    background: #fff;
}

.custom-service-container {
    max-width: 1120px;
}

.custom-service-breadcrumb {
    background: #f3f3f3;
}

.custom-service-breadcrumb .breadcrumb {
    margin: 0;
}

.custom-service-main {
    padding: 46px 0 74px;
}

.custom-service-main h1 {
    margin: 0 0 44px;
    color: #3a3a3a;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.custom-service-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 46px;
    overflow: hidden;
    background: #111;
}

.custom-service-video-poster {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}

.custom-service-video video,
.custom-service-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-service-video video {
    object-fit: contain;
    background: #111;
}

.custom-service-video img {
    object-fit: cover;
}

.custom-service-video-poster span {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 35, 45, .72);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    transition: transform .22s ease, background .22s ease;
}

.custom-service-video-poster:hover span,
.custom-service-video-poster:focus-visible span {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(26, 35, 45, .88);
}

.custom-service-video-poster span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #fff;
    transform: translate(-35%, -50%);
    pointer-events: none;
}

.custom-service-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 14px;
    align-items: stretch;
}

.custom-service-gallery-large,
.custom-service-gallery-item {
    margin: 0;
    overflow: hidden;
    background: #edf2f5;
}

.custom-service-gallery-large img,
.custom-service-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-service-gallery-large {
    height: 456px;
}

.custom-service-gallery-side {
    height: 456px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.custom-service-gallery-item {
    min-height: 0;
}

/* Product taxonomy and detail templates */
.category-menu {
    position: relative;
    z-index: 40;
}

.category-menu-item {
    position: static;
}

.category-menu-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-menu-item > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.category-menu-item:hover > a,
.category-menu-item:focus-within > a {
    color: #ffdc2f;
}

.category-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    padding: 24px 0 34px;
    background: #9f0610;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.category-menu-item:hover .category-mega-menu,
.category-menu-item:focus-within .category-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-mega-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 70px !important;
    justify-content: initial !important;
}

.category-mega-grid a {
    position: relative;
    display: block;
    padding: 0 0 0 26px !important;
    color: #fff;
    font-size: 15px !important;
    font-weight: 800;
    line-height: 1.35;
    white-space: normal;
}

.category-mega-grid a::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
}

.product-page-container {
    max-width: 1120px;
}

.product-breadcrumb-band {
    background: #f3f3f3;
}

.product-breadcrumb-band .breadcrumb {
    margin: 0 auto;
}

.product-archive-page,
.product-detail-page {
    background: #fff;
}

.product-archive-main {
    padding: 58px 0 76px;
}

.product-archive-main h1 {
    margin: 0 0 48px;
    color: #3b3b3b;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.product-archive-grid,
.product-related-grid {
    max-width: none;
}

.product-empty {
    margin: 0;
    color: #666;
    text-align: center;
}

.product-detail-main {
    padding-top: 44px;
    padding-bottom: 78px;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(360px, 1fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 42px;
}

.product-detail-image {
    display: flex;
    width: 100%;
    height: 520px;
    margin: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f8fa;
    border: 1px solid #eceff3;
}

.product-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-detail-summary h1 {
    margin: 0 0 22px;
    color: #080808;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.18;
}

.product-detail-rule {
    width: 100%;
    height: 1px;
    margin-bottom: 22px;
    background: #e8e8e8;
}

.product-detail-meta {
    margin-bottom: 20px;
}

.product-detail-meta p {
    margin: 0 0 7px;
    color: #222;
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-detail-meta strong {
    font-weight: 900;
}

.product-detail-meta a,
.product-detail-meta span {
    color: var(--red);
    font-weight: 900;
    text-transform: none;
}

.product-detail-intro {
    max-width: 470px;
    margin: 0 0 28px;
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.42;
}

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

.product-consult-button,
.product-detail-favorite {
    min-width: 188px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.product-consult-button {
    text-transform: uppercase;
}

.product-detail-favorite {
    text-transform: none;
}

.product-consult-button {
    background: var(--red);
}

.product-consult-button::before {
    content: ">";
    margin-right: 14px;
    font-size: 18px;
    line-height: 1;
}

.product-detail-favorite {
    background: #3c3c3c;
}

.product-detail-favorite.is-active {
    background: #222;
}

.product-share-row {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #777;
    font-size: 12px;
    font-weight: 900;
    text-transform: none;
}

.product-share-row a {
    color: #777;
    font-size: 14px;
    text-transform: none;
}

.product-detail-actions .product-detail-favorite {
    min-width: 188px !important;
    min-height: 42px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 20px !important;
    border: 2px solid #334155 !important;
    border-radius: var(--cta-radius, 6px) !important;
    background: #334155 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: center;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .16);
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.product-detail-actions .product-detail-favorite:hover,
.product-detail-actions .product-detail-favorite:focus-visible {
    border-color: #1e293b !important;
    background: #1e293b !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(15, 23, 42, .22);
    transform: translateY(-2px);
}

.product-detail-actions .product-detail-favorite.is-active {
    border-color: var(--cta-red, #b7131a) !important;
    background: var(--cta-red, #b7131a) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(183, 19, 26, .18);
}

.product-detail-actions .product-detail-favorite.is-active:hover,
.product-detail-actions .product-detail-favorite.is-active:focus-visible {
    border-color: var(--cta-red-dark, #a51117) !important;
    background: var(--cta-red-dark, #a51117) !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(183, 19, 26, .24);
    transform: translateY(-2px);
}

.product-detail-actions .product-detail-favorite:active {
    box-shadow: none;
    transform: translateY(0) scale(.98);
}

.product-detail-tabs {
    display: flex;
    gap: 42px;
    align-items: flex-end;
    margin-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.product-detail-tabs a,
.product-detail-tabs button {
    position: relative;
    padding: 0 0 12px;
    border: 0;
    background: transparent;
    color: #777;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.product-detail-tabs a.is-active,
.product-detail-tabs button.is-active {
    color: #222;
    font-weight: 900;
}

.product-detail-tabs a.is-active::after,
.product-detail-tabs button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--red);
}

.product-spec-panel {
    display: none;
}

.product-spec-panel.is-active {
    display: block;
}

.product-spec-table {
    width: 100%;
    margin-bottom: 42px;
    border-collapse: collapse;
    background: #f3f3f3;
}

.product-spec-table th,
.product-spec-table td {
    width: 50%;
    padding: 17px 24px;
    border: 1px solid #e5e5e5;
    color: #2f2f2f;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.product-feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 92px;
    margin-bottom: 44px;
}

.product-feature-blocks h2,
.product-related h2 {
    margin: 0 0 12px;
    color: #111;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.product-feature-blocks p {
    margin: 0;
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.52;
}

.product-related h2 {
    position: relative;
    margin-bottom: 34px;
    padding-bottom: 16px;
    font-size: 24px;
    text-transform: uppercase;
}

.product-related h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 3px;
    background: var(--red);
}

@media (max-width: 900px) {
    .category-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 28px !important;
    }

    .product-detail-hero,
    .product-feature-blocks {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-detail-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .product-detail-tabs {
        gap: 20px;
        overflow-x: auto;
    }

    .home-about .about-grid,
    .home-2026-about-grid,
    .feature-grid,
    .home-2026-feature-grid {
        grid-template-columns: 1fr !important;
    }

    .custom-service-gallery {
        grid-template-columns: 1fr;
    }

    .custom-service-gallery-large,
    .custom-service-gallery-side {
        height: auto;
    }

    .custom-service-gallery-large,
    .custom-service-gallery-item {
        aspect-ratio: 16 / 10;
    }

    .custom-service-gallery-side {
        grid-template-columns: 1fr;
    }
}
/* Remove the WordPress admin-bar offset on the frontend. */
html {
    margin-top: 0 !important;
}
/* Remove the marked whitespace around the homepage header and category hero. */
html,
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#wpadminbar {
    display: none !important;
}

.site-header {
    margin-top: 0 !important;
}

.category-menu {
    margin-bottom: 0 !important;
}

.site-header + main,
.site-header + .home-2026-hero,
.category-menu + .home-2026-hero,
.home-2026-hero {
    margin-top: 0 !important;
}

/* Header search interaction polish */
.header-search .search-inner {
    transform: translateY(0);
    transition: box-shadow .24s ease, background-color .24s ease, transform .24s ease !important;
}

.header-search .search-inner:hover,
.header-search .search-inner:focus-within {
    background: #f5f8fe !important;
    box-shadow: 0 12px 26px rgba(18, 32, 56, .16), inset 0 0 0 1px rgba(255, 255, 255, .82) !important;
    transform: translateY(-1px);
}

.header-search .search-inner select,
.header-search .search-inner input {
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease !important;
}

.header-search .search-inner select:hover,
.header-search .search-inner select:focus,
.header-search .search-inner input:hover,
.header-search .search-inner input:focus {
    background-color: rgba(255, 255, 255, .42) !important;
}

.header-search .search-inner input::placeholder {
    color: #667386;
    transition: color .2s ease;
}

.header-search .search-inner input:focus::placeholder {
    color: #9aa5b5;
}

.header-search .search-inner button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    color: #fff !important;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease !important;
}

.header-search .search-inner button:hover,
.header-search .search-inner button:focus-visible {
    background: #7f0f28 !important;
    box-shadow: 0 8px 18px rgba(38, 16, 28, .28) !important;
    transform: translateY(-1px);
}

.header-search .search-inner button:active {
    transform: translateY(0) scale(.96);
}

.header-search .search-inner button::before {
    left: 50% !important;
    top: 50% !important;
    width: 13px !important;
    height: 13px !important;
    border: 2px solid currentColor !important;
    border-radius: 50% !important;
    background: transparent !important;
    transform: translate(-58%, -58%) !important;
}

.header-search .search-inner button::after {
    left: 50% !important;
    top: 50% !important;
    width: 8px !important;
    height: 2px !important;
    background: currentColor !important;
    transform: translate(1px, 5px) rotate(45deg) !important;
    transform-origin: left center !important;
}

/* Header action icon interaction polish */
.header-actions {
    align-items: center;
}

.header-user-link,
.header-collection-toggle {
    border-radius: 50%;
    transform: translateY(0) scale(1);
    transition: background-color .24s ease, box-shadow .24s ease, transform .24s cubic-bezier(.2, .8, .2, 1) !important;
}

.header-user-link::before,
.header-user-link::after,
.header-collection-toggle::before {
    transition: opacity .24s ease, transform .28s cubic-bezier(.2, .8, .2, 1), filter .24s ease !important;
    transform-origin: center;
}

.header-user-link:hover,
.header-user-link:focus-visible,
.header-collection-toggle:hover,
.header-collection-toggle:focus-visible {
    background: rgba(255, 255, 255, .11) !important;
    box-shadow: 0 10px 24px rgba(38, 16, 28, .22), inset 0 0 0 1px rgba(255, 255, 255, .14) !important;
    transform: translateY(-2px) scale(1.04);
}

.header-user-link:hover::before,
.header-user-link:focus-visible::before {
    transform: translateY(-1px) scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, .18));
}

.header-user-link:hover::after,
.header-user-link:focus-visible::after {
    transform: translateY(1px) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, .18));
}

.header-collection-toggle:hover::before,
.header-collection-toggle:focus-visible::before {
    transform: rotate(8deg) scale(1.12);
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, .2));
}

.header-user-link:active,
.header-collection-toggle:active {
    transform: translateY(0) scale(.96);
}

.collection-count {
    transition: background-color .24s ease, box-shadow .24s ease, transform .28s cubic-bezier(.2, .8, .2, 1) !important;
    transform-origin: center;
}

.header-collection-toggle:hover .collection-count,
.header-collection-toggle:focus-visible .collection-count {
    background: #ffe36b !important;
    box-shadow: 0 5px 12px rgba(255, 196, 0, .32);
    transform: translate(1px, -1px) scale(1.12);
}

/* Floating share bar */
.floating-share-bar {
    position: fixed;
    right: 0;
    top: 52%;
    z-index: 85;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
}

.floating-share-link {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #d60000;
    color: #fff;
    text-decoration: none;
    transform: translateX(0);
    transition: width .32s cubic-bezier(.2, .8, .2, 1), background-color .24s ease, box-shadow .24s ease, color .24s ease, transform .24s ease;
}

.floating-share-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .22) 42%, transparent 72%);
    transform: translateX(-120%);
    transition: transform .45s ease;
}

.floating-share-link .floating-share-text {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    transform: translateX(-8px);
    transition: max-width .32s cubic-bezier(.2, .8, .2, 1), opacity .2s ease, transform .32s cubic-bezier(.2, .8, .2, 1);
}

.floating-share-link svg {
    position: relative;
    z-index: 1;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: block;
    fill: currentColor;
    padding: 9px;
    box-sizing: border-box;
}

.floating-share-link-whatsapp svg,
.floating-share-link-instagram svg,
.floating-share-link-youtube svg {
    padding: 8px;
}

.floating-share-link:hover,
.floating-share-link:focus-visible {
    width: 150px;
    background: #b70000;
    color: #fff;
    box-shadow: -8px 8px 18px rgba(0, 0, 0, .18);
    transform: translateX(0);
}

.floating-share-link:hover .floating-share-text,
.floating-share-link:focus-visible .floating-share-text {
    max-width: 104px;
    opacity: 1;
    transform: translateX(0);
}

.floating-share-link:hover::before,
.floating-share-link:focus-visible::before {
    transform: translateX(120%);
}

.floating-share-link:active {
    transform: scale(.98);
}

.floating-share-status {
    position: absolute;
    right: 42px;
    bottom: 5px;
    min-width: 88px;
    padding: 6px 8px;
    border-radius: 4px;
    background: rgba(24, 32, 42, .92);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.floating-share-status.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .home-2026-hero-track,
    .home-2026-subcategory-grid {
        animation: none;
        transform: none;
    }

    .home-2026-hero-card img,
    .home-2026-subcategory img,
    .home-2026-product-card > a img,
    .home-2026-blog-grid article img,
    .home-2026-product-card > a:first-child::before,
    .home-2026-product-card > a:first-child::after,
    .home-2026-blog-grid article > a::before,
    .home-2026-blog-grid article > a::after,
    .home-2026-red-btn,
    .home-2026-hero-card > div a,
    .home-slider-arrow,
    .blog-arrow,
    .product-favorite,
    .header-search .search-inner,
    .header-search .search-inner select,
    .header-search .search-inner input,
    .header-search .search-inner input::placeholder,
    .header-search .search-inner button,
    .header-user-link,
    .header-user-link::before,
    .header-user-link::after,
    .header-collection-toggle,
    .header-collection-toggle::before,
    .collection-count,
    .floating-share-link,
    .floating-share-link::before,
    .floating-share-status {
        transition: none;
    }
}

@media (max-width: 640px) {
    .floating-share-bar {
        top: auto;
        bottom: 14px;
        left: 50%;
        right: auto;
        flex-direction: row;
        padding: 4px;
        transform: translateX(-50%);
    }

    .floating-share-link {
        width: 32px;
        height: 32px;
    }

    .floating-share-link svg {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        padding: 7px;
    }

    .floating-share-link:hover,
    .floating-share-link:focus-visible {
        width: 32px;
        transform: translateY(-4px);
    }

    .floating-share-link:hover .floating-share-text,
    .floating-share-link:focus-visible .floating-share-text {
        max-width: 0;
        opacity: 0;
    }

    .floating-share-status {
        left: 50%;
        bottom: 42px;
        transform: translateX(-50%) translateY(6px);
    }

    .floating-share-status.is-visible {
        transform: translateX(-50%) translateY(0);
    }
}

/* Keep the industrial layout consistent when WPML serves RTL languages such as Arabic. */
html[dir="rtl"] body,
body.rtl {
    direction: ltr;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .site-footer,
html[dir="rtl"] main,
html[dir="rtl"] .home-2026-hero,
html[dir="rtl"] .home-2026-intro,
html[dir="rtl"] .home-2026-subcategories,
html[dir="rtl"] .home-2026-tabs,
html[dir="rtl"] .home-2026-products,
html[dir="rtl"] .home-2026-about,
html[dir="rtl"] .home-2026-video,
html[dir="rtl"] .home-2026-solution,
html[dir="rtl"] .home-2026-blog,
html[dir="rtl"] .home-2026-process,
html[dir="rtl"] .home-2026-contact,
body.rtl .site-header,
body.rtl .site-footer,
body.rtl main,
body.rtl .home-2026-hero,
body.rtl .home-2026-intro,
body.rtl .home-2026-subcategories,
body.rtl .home-2026-tabs,
body.rtl .home-2026-products,
body.rtl .home-2026-about,
body.rtl .home-2026-video,
body.rtl .home-2026-solution,
body.rtl .home-2026-blog,
body.rtl .home-2026-process,
body.rtl .home-2026-contact {
    direction: ltr;
}

html[dir="rtl"] .header-top-right,
html[dir="rtl"] .header-top-right .main-nav ul,
html[dir="rtl"] .header-search-row,
html[dir="rtl"] .category-menu .container,
html[dir="rtl"] .home-2026-intro-grid,
body.rtl .header-top-right,
body.rtl .header-top-right .main-nav ul,
body.rtl .header-search-row,
body.rtl .category-menu .container,
body.rtl .home-2026-intro-grid {
    flex-direction: row;
}

html[dir="rtl"] .header-search .search-inner form,
body.rtl .header-search .search-inner form {
    direction: ltr;
}

html[dir="rtl"] .language-switcher ul,
html[dir="rtl"] .language-switcher--translatepress .trp-ls-shortcode-language,
body.rtl .language-switcher ul,
body.rtl .language-switcher--translatepress .trp-ls-shortcode-language {
    left: auto;
    right: 0;
    text-align: left;
}

/* User account hover menu. */
.header-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-user-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -18px;
    width: 260px;
    height: 16px;
}

.header-user-menu .header-user-link {
    display: block;
}

.header-user-popover {
    position: absolute;
    top: calc(100% + 14px);
    right: -18px;
    z-index: 1400;
    width: 260px;
    padding: 18px;
    border-radius: 6px;
    background: #fff;
    color: #243246;
    box-shadow: 0 18px 38px rgba(10, 18, 30, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.header-user-popover::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
}

.header-user-menu:hover .header-user-popover,
.header-user-menu:focus-within .header-user-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.header-user-kicker {
    display: block;
    margin-bottom: 8px;
    color: #b01836;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.header-user-popover strong {
    display: block;
    margin-bottom: 6px;
    color: #172033;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.header-user-popover p {
    margin: 0 0 14px;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
}

.header-user-popover a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 9px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #d60b16;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.header-user-popover a + a {
    background: #243246;
}

.header-user-popover a:hover,
.header-user-popover a:focus-visible {
    background: #b70000;
    color: #fff;
    box-shadow: 0 8px 18px rgba(183, 0, 0, .22);
    transform: translateY(-1px);
}

.header-user-popover a + a:hover,
.header-user-popover a + a:focus-visible {
    background: #111827;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .22);
}

@media (max-width: 640px) {
    .header-user-popover {
        right: -70px;
        width: min(260px, calc(100vw - 28px));
    }

    .header-user-popover::before {
        right: 76px;
    }
}

/* Slate header/footer theme and primary quote action. */
.site-header,
.header-main,
.header-search,
.category-menu,
.category-mega-menu,
.site-footer {
    background: #1e293b;
}

.header-main {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.top-line-text,
.header-top-right .main-nav a,
.header-top-right .language-switcher button,
.header-top-right .language-switcher--translatepress .trp-ls-shortcode-current-language a {
    color: #fff;
}

.header-top-right .main-nav a:hover,
.header-top-right .main-nav a.is-active {
    color: #fbbf24;
}

.header-top-right .language-switcher ul a,
.header-top-right .language-switcher--translatepress .trp-ls-shortcode-language a {
    color: #1e293b;
}

.header-top-right .language-switcher ul a:hover,
.header-top-right .language-switcher ul a[aria-current="true"],
.header-top-right .language-switcher--translatepress .trp-ls-shortcode-language a:hover {
    color: #b01836;
}

.header-quote-button {
    min-height: 30px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #b01836;
    border-radius: 4px;
    background: #b01836;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.header-quote-button:hover,
.header-quote-button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #b01836;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .28);
    transform: translateY(-1px);
}

.header-quote-button:active {
    box-shadow: none;
    transform: translateY(0) scale(.98);
}

.header-search .search-inner button {
    background-color: #334155 !important;
}

.header-search .search-inner button:hover,
.header-search .search-inner button:focus-visible {
    background-color: #0f172a !important;
}

.category-menu {
    border-top-color: rgba(255, 255, 255, .14);
}

.site-footer .footer-logo,
.site-footer .footer-logo span,
.site-footer h3,
.site-footer a,
.site-footer p,
.footer-bottom {
    color: #fff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, .16);
    text-align: center;
}

/* The header already provides language navigation. */
.wpml-ls-statics-footer {
    display: none !important;
}

@media (max-width: 900px) {
    .header-top-right {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .header-quote-button {
        min-height: 34px;
        padding: 0 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-quote-button {
        transition: none;
    }
}

/* Keep the top navigation on one line after adding the quote action. */
.header-inner {
    gap: 18px;
}

.header-top-right {
    min-width: 0;
    gap: 16px;
}

.header-top-right .main-nav ul {
    flex-wrap: nowrap;
    gap: 18px;
}

.header-top-right .main-nav a {
    display: block;
    white-space: nowrap;
}

.header-top-right .language-switcher,
.header-quote-button {
    flex: 0 0 auto;
}

.header-quote-button {
    padding-right: 14px;
    padding-left: 14px;
}

@media (min-width: 901px) and (max-width: 1100px) {
    .top-line-text {
        font-size: 11px;
    }

    .header-inner {
        gap: 14px;
    }

    .header-top-right {
        gap: 14px;
    }

    .header-top-right .main-nav ul {
        gap: 14px;
    }

    .header-top-right .main-nav a,
    .header-top-right .language-switcher button,
    .header-top-right .language-switcher--translatepress a {
        font-size: 12px;
    }

    .header-quote-button {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 11px;
    }
}

/* English typography system. Inter handles Latin text; language-specific glyphs use the local fallbacks. */
button,
input,
select,
textarea {
    font-family: inherit;
}

html[lang^="en"] body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

html[lang^="en"] p,
html[lang^="en"] main li,
html[lang^="en"] main dd,
html[lang^="en"] main dt {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

html[lang^="en"] body.wilamac-login-body .wilamac-login-copy p,
body.wilamac-login-body .wilamac-login-copy p {
    font-size: 20px !important;
    line-height: 1.25 !important;
}

html[lang^="en"] h1,
html[lang^="en"] h2,
html[lang^="en"] h3,
html[lang^="en"] h4,
html[lang^="en"] h5,
html[lang^="en"] h6,
html[lang^="en"] .section-title,
html[lang^="en"] .home-2026-section-title,
html[lang^="en"] .blog-page-title,
html[lang^="en"] .office-title {
    font-family: var(--font-sans);
    font-weight: 700 !important;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none !important;
}

html[lang^="en"] strong,
html[lang^="en"] b {
    font-weight: 600;
}

/* Unified CTA hierarchy. Keep icon, tab, carousel, and media controls untouched. */
:root {
    --cta-red: #b7131a;
    --cta-red-dark: #a51117;
    --cta-radius: 6px;
}

/* Primary actions: submissions, quotes, sign-in, and product consultation. */
.header-quote-button,
.home-2026-contact button[type="submit"],
.contact-form button[type="submit"],
.about-message-form button[type="submit"],
.wilamac-login-form button[type="submit"],
.wilamac-fluent-form .ff-btn-submit,
.wilamac-fluent-form button[type="submit"],
.wilamac-fluent-form input[type="submit"],
.product-consult-button,
.collection-interest-button {
    min-width: 0;
    min-height: 42px;
    height: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid var(--cta-red);
    border-radius: var(--cta-radius);
    background: var(--cta-red);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: none !important;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.header-quote-button:hover,
.header-quote-button:focus-visible,
.home-2026-contact button[type="submit"]:hover,
.home-2026-contact button[type="submit"]:focus-visible,
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible,
.about-message-form button[type="submit"]:hover,
.about-message-form button[type="submit"]:focus-visible,
.wilamac-login-form button[type="submit"]:hover,
.wilamac-login-form button[type="submit"]:focus-visible,
.wilamac-fluent-form .ff-btn-submit:hover,
.wilamac-fluent-form .ff-btn-submit:focus-visible,
.wilamac-fluent-form button[type="submit"]:hover,
.wilamac-fluent-form button[type="submit"]:focus-visible,
.wilamac-fluent-form input[type="submit"]:hover,
.wilamac-fluent-form input[type="submit"]:focus-visible,
.product-consult-button:hover,
.product-consult-button:focus-visible,
.collection-interest-button:hover,
.collection-interest-button:focus-visible {
    border-color: var(--cta-red-dark);
    background: var(--cta-red-dark);
    color: #fff;
    box-shadow: 0 8px 18px rgba(183, 19, 26, .22);
    transform: translateY(-2px);
}

/* Secondary actions: product, article, resource, and supporting content links. */
.hero-card > div a,
.red-btn,
.home-2026-hero-card > div a,
.home-2026-red-btn,
.home-2026-subcategory span,
.home-subcategory-card span,
.home-2026-blog-grid strong,
.blog-read-more,
.resource-file-row a,
.industry-feature-copy a {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 11px;
    border: 1px solid var(--cta-red);
    border-radius: var(--cta-radius);
    background: #fff;
    color: var(--cta-red);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: none !important;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.hero-card > div a:hover,
.hero-card > div a:focus-visible,
.red-btn:hover,
.red-btn:focus-visible,
.home-2026-hero-card > div a:hover,
.home-2026-hero-card > div a:focus-visible,
.home-2026-red-btn:hover,
.home-2026-red-btn:focus-visible,
.home-2026-subcategory a:hover span,
.home-2026-subcategory a:focus-visible span,
.home-subcategory-card a:hover span,
.home-subcategory-card a:focus-visible span,
.home-2026-blog-grid article > a:hover strong,
.home-2026-blog-grid article > a:focus-visible strong,
.blog-read-more:hover,
.blog-read-more:focus-visible,
.resource-file-row a:hover,
.resource-file-row a:focus-visible,
.industry-feature-copy a:hover,
.industry-feature-copy a:focus-visible {
    border-color: var(--cta-red);
    background: var(--cta-red);
    color: #fff;
    box-shadow: 0 8px 18px rgba(183, 19, 26, .18);
    transform: translateY(-2px);
}

.header-quote-button:active,
.home-2026-contact button[type="submit"]:active,
.contact-form button[type="submit"]:active,
.about-message-form button[type="submit"]:active,
.wilamac-login-form button[type="submit"]:active,
.wilamac-fluent-form .ff-btn-submit:active,
.wilamac-fluent-form button[type="submit"]:active,
.wilamac-fluent-form input[type="submit"]:active,
.product-consult-button:active,
.collection-interest-button:active,
.hero-card > div a:active,
.red-btn:active,
.home-2026-hero-card > div a:active,
.home-2026-red-btn:active,
.blog-read-more:active,
.resource-file-row a:active,
.industry-feature-copy a:active {
    box-shadow: none;
    transform: translateY(0) scale(.98);
}

.industry-feature-copy a::after,
.blog-read-more::after {
    text-transform: none;
}

.header-quote-button {
    min-height: 32px;
    padding: 7px 16px;
}

.wilamac-login-form button[type="submit"],
.collection-interest-button {
    width: 100%;
}

@media (max-width: 640px) {
    .header-quote-button,
    .home-2026-contact button[type="submit"],
    .contact-form button[type="submit"],
    .about-message-form button[type="submit"],
    .wilamac-login-form button[type="submit"],
    .wilamac-fluent-form .ff-btn-submit,
    .wilamac-fluent-form button[type="submit"],
    .wilamac-fluent-form input[type="submit"],
    .product-consult-button,
    .collection-interest-button,
    .hero-card > div a,
    .red-btn,
    .home-2026-hero-card > div a,
    .home-2026-red-btn,
    .home-2026-subcategory span,
    .home-subcategory-card span,
    .home-2026-blog-grid strong,
    .blog-read-more,
    .resource-file-row a,
    .industry-feature-copy a {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-quote-button,
    .home-2026-contact button[type="submit"],
    .contact-form button[type="submit"],
    .about-message-form button[type="submit"],
    .wilamac-login-form button[type="submit"],
    .wilamac-fluent-form .ff-btn-submit,
    .wilamac-fluent-form button[type="submit"],
    .wilamac-fluent-form input[type="submit"],
    .product-consult-button,
    .collection-interest-button,
    .hero-card > div a,
    .red-btn,
    .home-2026-hero-card > div a,
    .home-2026-red-btn,
    .home-2026-subcategory span,
    .home-subcategory-card span,
    .home-2026-blog-grid strong,
    .blog-read-more,
    .resource-file-row a,
    .industry-feature-copy a {
        transition: none;
    }
}

/* Keep the homepage category carousel visually separate from the header. */
.home-2026-hero {
    margin-top: 16px !important;
}

/* Reserve two title lines so every category CTA shares one baseline. */
.hero-card h2,
.home-2026-hero-card h2 {
    min-height: 2.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Homepage category cards keep a solid CTA and deepen on interaction. */
.hero-card > div a,
.home-2026-hero-card > div a {
    border-color: var(--cta-red);
    background: var(--cta-red);
    color: #fff;
    box-shadow: 0 4px 10px rgba(183, 19, 26, .18);
}

.hero-card > div a:hover,
.hero-card > div a:focus-visible,
.home-2026-hero-card > div a:hover,
.home-2026-hero-card > div a:focus-visible {
    border-color: var(--cta-red-dark);
    background: var(--cta-red-dark);
    color: #fff;
    box-shadow: 0 7px 16px rgba(183, 19, 26, .24);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .home-2026-hero {
        margin-top: 10px !important;
    }
}

/* Tighten the transition from the tabbed service section to products. */
.home-2026-tabs {
    padding-bottom: 24px;
}

.home-2026-products {
    padding-top: 20px;
}

/* Product-card CTA: readable, compact, and consistent with the primary brand button. */
.home-2026-product-card strong {
    min-height: 30px;
    padding: 5px 12px;
    border: 0;
    border-radius: var(--cta-radius);
    background: var(--cta-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-2026-product-card strong:hover,
.home-2026-product-card strong:focus-visible {
    background: var(--cta-red-dark);
    color: #fff;
    box-shadow: 0 6px 14px rgba(183, 19, 26, .22);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .home-2026-product-card strong {
        min-height: 28px;
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Mobile navigation and viewport containment. */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.mobile-menu-toggle,
.mobile-menu-panel,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

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

    .site-header,
    .header-sticky-area,
    .header-search,
    .header-search-row,
    main,
    #main-content,
    .site-footer,
    .container,
    section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    img,
    video,
    iframe,
    embed,
    object,
    svg {
        max-width: 100%;
    }

    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .header-main {
        display: none;
    }

    .header-search {
        padding: 12px 0;
    }

    .header-search-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
        align-items: center;
        justify-content: stretch;
    }

    .header-search .site-logo {
        min-width: 0;
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1;
        white-space: nowrap;
    }

    .header-actions {
        gap: 14px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .42);
        border-radius: 4px;
        padding: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        display: block;
        border-radius: 2px;
        background: currentColor;
        transition: transform .25s ease, opacity .2s ease;
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-search .search-inner {
        grid-column: 1 / -1;
        order: initial;
        width: 100%;
        max-width: 100% !important;
        min-width: 0;
        flex-basis: auto;
    }

    .header-search .search-inner::before,
    .header-search .search-inner::after {
        display: none;
    }

    .header-search .search-inner form {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: minmax(105px, 38%) minmax(0, 1fr) 42px;
    }

    .header-search .search-inner select,
    .header-search .search-inner input,
    .header-search .search-inner button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .header-search .search-inner select {
        flex: none;
        text-overflow: ellipsis;
    }

    .category-menu {
        display: none;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 998;
        display: block;
        background: rgba(15, 23, 42, .55);
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay[hidden] {
        display: none;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        width: min(88vw, 360px);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #1e293b;
        color: #fff;
        box-shadow: -16px 0 34px rgba(15, 23, 42, .28);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility .3s;
    }

    .mobile-menu-panel.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-menu-head {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .mobile-menu-head strong {
        font-size: 20px;
        font-weight: 700;
    }

    .mobile-menu-close {
        position: relative;
        width: 40px;
        height: 40px;
        border: 0;
        padding: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: "";
        position: absolute;
        top: 19px;
        left: 10px;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
    }

    .mobile-menu-close::before {
        transform: rotate(45deg);
    }

    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }

    .mobile-menu-tagline {
        color: #dbe5f4;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
        text-align: center;
        white-space: normal;
    }

    .mobile-menu-primary,
    .mobile-menu-primary ul,
    .mobile-menu-categories {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-primary {
        display: block !important;
    }

    .mobile-menu-primary ul,
    .mobile-menu-categories {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 0;
        overflow: visible;
        list-style: none;
    }

    .mobile-menu-primary a,
    .mobile-menu-categories > a,
    .mobile-menu-categories .category-menu-item > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 12px;
        border-radius: 4px;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
        white-space: normal;
    }

    .mobile-menu-primary a:hover,
    .mobile-menu-primary a:focus-visible,
    .mobile-menu-categories a:hover,
    .mobile-menu-categories a:focus-visible {
        background: rgba(255, 255, 255, .1);
        color: #fff;
    }

    .mobile-menu-categories .category-menu-item {
        width: 100%;
    }

    .mobile-menu-categories .category-mega-menu {
        display: none !important;
    }

    .mobile-menu-languages {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .mobile-menu-languages button,
    .mobile-menu-languages a {
        color: #fff !important;
    }

    .mobile-menu-languages button,
    .mobile-menu-languages .trp-ls-shortcode-current-language a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 28px 10px 12px !important;
        border-radius: 4px;
        background: rgba(255, 255, 255, .06) !important;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 600;
        line-height: 1.35;
        text-align: left;
    }

    .mobile-menu-languages button::after,
    .mobile-menu-languages .trp-ls-shortcode-current-language a::after {
        right: 13px;
        width: 7px;
        height: 7px;
        border-width: 0 2px 2px 0;
    }

    .mobile-menu-languages ul {
        position: static;
        width: 100%;
        max-width: 100%;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin: 8px 0 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        list-style: none;
    }

    .mobile-menu-languages.is-open ul {
        display: grid;
    }

    .mobile-menu-languages ul a {
        display: block;
        padding: 8px 10px;
        border-radius: 4px;
        background: rgba(255, 255, 255, .08);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
    }

    .mobile-menu-languages .trp-language-switcher,
    .mobile-menu-languages .trp-ls-shortcode-current-language,
    .mobile-menu-languages .trp-ls-shortcode-language {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .mobile-menu-languages .trp-ls-shortcode-language {
        position: static !important;
        display: none !important;
        visibility: visible !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-menu-languages.is-open .trp-ls-shortcode-language {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin-top: 8px;
    }

    .mobile-menu-languages.is-open .trp-ls-shortcode-language a {
        padding: 8px 10px !important;
        border-radius: 4px;
        background: rgba(255, 255, 255, .08) !important;
        color: #fff !important;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
    }

    .mobile-menu-quote {
        width: 100%;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .collection-panel {
        width: min(100%, 420px);
        max-width: 100%;
    }

    .home-2026-hero,
    .home-2026-subcategory-carousel,
    .home-2026-blog-carousel,
    .home-categories {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .floating-share-bar {
        top: auto;
        right: 8px;
        bottom: 18px;
        left: auto;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        transform: none;
    }

    .floating-share-link {
        width: 34px;
        height: 34px;
        border-radius: 3px;
    }

    .floating-share-link svg {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        padding: 8px;
    }

    .floating-share-link:hover,
    .floating-share-link:focus-visible {
        width: 34px;
        transform: translateY(-2px);
    }

    .floating-share-link:hover .floating-share-text,
    .floating-share-link:focus-visible .floating-share-text {
        max-width: 0;
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .header-search-row {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px;
    }

    .header-search .site-logo {
        font-size: clamp(28px, 9vw, 36px);
    }

    .header-actions {
        gap: 10px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .home-2026-hero-card {
        flex-basis: 100vw;
        max-width: 100vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    .mobile-menu-panel {
        transition: none;
    }
}

/* Keep the desktop quote action compact and aligned with the top navigation. */
@media (min-width: 901px) {
    .header-top-right {
        gap: 14px;
    }

    .header-quote-button {
        min-height: 28px;
        height: 28px !important;
        padding: 0 13px;
        border-width: 1px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        box-shadow: none;
    }

    .header-quote-button:hover,
    .header-quote-button:focus-visible {
        border-color: var(--cta-red-dark);
        background: var(--cta-red-dark);
        color: #fff;
        box-shadow: 0 5px 12px rgba(15, 23, 42, .18);
        transform: translateY(-1px);
    }
}

/* Use the page background for the maximum-performance section. */
.home-about,
.home-2026-about {
    background: #fff !important;
}

.home-about .red-btn,
.home-2026-about .home-2026-red-btn {
    border-color: #b7131a !important;
    background: #b7131a !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(183, 19, 26, .18);
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-about .red-btn:hover,
.home-about .red-btn:focus-visible,
.home-2026-about .home-2026-red-btn:hover,
.home-2026-about .home-2026-red-btn:focus-visible {
    border-color: #a51117 !important;
    background: #a51117 !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(183, 19, 26, .24);
    transform: translateY(-2px);
}

/* About page: How to Work With Us */
.about-process {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 50px 0 48px !important;
    background-color: #f4f9fd !important;
    background-image: var(--about-process-bg, url("../images/about-process-world-map.svg")) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.about-process .about-container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
}

.about-process .section-title {
    margin: 0 0 34px;
    color: #30343b;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-process-step {
    min-width: 0;
    text-align: center;
}

.about-process-icon {
    display: flex;
    width: 46px;
    height: 46px;
    margin: 0 auto 13px;
    align-items: center;
    justify-content: center;
    color: #b7131a;
}

.about-process-icon svg,
.about-process-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-process-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-process-step h3 {
    margin: 0 0 10px;
    color: #171b20;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.about-process-step p {
    max-width: 215px;
    margin: 0 auto;
    color: #454b53;
    font-size: 13px;
    line-height: 1.45;
}

.about-process-action {
    margin-top: 32px;
    text-align: center;
}

.about-process-button {
    display: inline-flex;
    min-width: 150px;
    min-height: 40px;
    padding: 9px 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid #b7131a;
    border-radius: 3px;
    background: #b7131a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.about-process-button:hover,
.about-process-button:focus-visible {
    border-color: #991016;
    background: #991016;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(183, 19, 26, .18);
}

@media (max-width: 900px) {
    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }
}

@media (max-width: 640px) {
    .about-process {
        padding: 42px 0 !important;
        background-size: auto 100% !important;
    }

    .about-process .section-title {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-process-step p {
        max-width: 300px;
    }

    .about-process-action {
        margin-top: 30px;
    }
}

/* About page: introduction feature cards */
.about-intro-grid > :first-child {
    padding-bottom: 56px;
}

.about-intro-features {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 24px);
    width: min(880px, calc(100% - 24px));
    margin: -42px auto 0 0;
}

.about-intro-feature {
    min-width: 0;
    min-height: 172px;
    padding: 19px clamp(12px, 1.4vw, 18px) 17px;
    border: 1px solid rgba(30, 41, 59, .04);
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 22px rgba(30, 41, 59, .09);
}

.about-intro-feature-icon {
    display: flex;
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    align-items: center;
    justify-content: center;
    color: #1e293b;
}

.about-intro-feature-icon svg,
.about-intro-feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-intro-feature-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-intro-feature h3 {
    margin: 0 0 9px;
    color: #171b20;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.about-intro-feature p {
    margin: 0;
    color: #555f6c;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .about-intro-grid > :first-child {
        padding-bottom: 0;
    }

    .about-intro-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin: 28px 0 0;
    }
}

@media (max-width: 560px) {
    .about-intro-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-intro-feature {
        min-height: 0;
    }
}

/* Home: maximum-performance section final visual alignment */
.home-2026-about {
    padding: 64px 0 66px !important;
    background: #fff !important;
    overflow: hidden;
}

.home-2026-about .home-2026-about-grid {
    max-width: 1120px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 430px) minmax(0, 520px) !important;
    gap: 54px !important;
    align-items: start !important;
    margin: 0 auto !important;
}

.home-2026-about .home-2026-about-grid > img {
    width: 100% !important;
    height: 398px !important;
    object-fit: cover !important;
}

.home-2026-about .home-2026-about-grid > div {
    padding-top: 28px !important;
}

.home-2026-about h2 {
    margin: 0 0 16px !important;
    color: #3a3a3a !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
}

.home-2026-about p {
    max-width: 510px;
    margin: 0 0 18px !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.52 !important;
}

.home-2026-about .home-2026-red-btn {
    min-height: 27px !important;
    margin-top: 3px !important;
    padding: 0 20px !important;
    border-radius: 0 !important;
    background: #b7131a !important;
    border-color: #b7131a !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.home-2026-about .home-2026-red-btn:hover,
.home-2026-about .home-2026-red-btn:focus-visible {
    background: #a51117 !important;
    border-color: #a51117 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.home-2026-about .home-2026-feature-grid {
    max-width: 740px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: -114px auto 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 4 !important;
}

.home-2026-about .home-2026-feature-grid article {
    min-height: 146px !important;
    padding: 20px 18px 18px !important;
    background: #fff !important;
    border: 0 !important;
    text-align: center !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08) !important;
}

.home-2026-about .home-2026-feature-grid img {
    width: 30px !important;
    height: 30px !important;
    margin: 0 auto 10px !important;
    object-fit: contain !important;
}

.home-2026-about .home-2026-feature-grid h3 {
    margin: 0 0 9px !important;
    color: #252525 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;
}

.home-2026-about .home-2026-feature-grid p {
    margin: 0 !important;
    color: #666 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
}

@media (max-width: 980px) {
    .home-2026-about .home-2026-about-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .home-2026-about .home-2026-about-grid > img {
        height: auto !important;
        aspect-ratio: 16 / 10;
    }

    .home-2026-about .home-2026-about-grid > div {
        padding-top: 0 !important;
    }

    .home-2026-about .home-2026-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 100% !important;
        margin-top: 28px !important;
    }
}

@media (max-width: 560px) {
    .home-2026-about {
        padding: 42px 0 46px !important;
    }

    .home-2026-about .home-2026-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* Home: contact form soft grey treatment */
.home-2026-contact {
    background: #f4f5f7 !important;
}

.home-2026-contact input:not([type="hidden"]):not([type="submit"]):not([type="button"]),
.home-2026-contact textarea,
.home-2026-contact .wilamac-fluent-form input:not([type="hidden"]):not([type="submit"]):not([type="button"]),
.home-2026-contact .wilamac-fluent-form textarea {
    border: 1px solid #d7dce3 !important;
    background: #fff !important;
    color: #1e293b !important;
    box-shadow: none !important;
}

.home-2026-contact input::placeholder,
.home-2026-contact textarea::placeholder,
.home-2026-contact .wilamac-fluent-form input::placeholder,
.home-2026-contact .wilamac-fluent-form textarea::placeholder {
    color: #606b7a !important;
    opacity: 1 !important;
}

.home-2026-contact input:focus,
.home-2026-contact textarea:focus,
.home-2026-contact .wilamac-fluent-form input:focus,
.home-2026-contact .wilamac-fluent-form textarea:focus {
    border-color: #aeb7c4 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, .08) !important;
}

/* About Us: message form soft grey treatment */
.about-contact-detail .about-message-grid {
    padding: 28px !important;
    background: #f4f5f7 !important;
}

.about-contact-detail .about-message-form input,
.about-contact-detail .about-message-form textarea {
    border: 1px solid #d7dce3 !important;
    background: #fff !important;
    color: #1e293b !important;
    box-shadow: none !important;
}

.about-contact-detail .about-message-form input::placeholder,
.about-contact-detail .about-message-form textarea::placeholder {
    color: #606b7a !important;
    opacity: 1 !important;
}

.about-contact-detail .about-message-form input:focus,
.about-contact-detail .about-message-form textarea:focus {
    border-color: #aeb7c4 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, .08) !important;
}

@media (max-width: 767px) {
    .about-contact-detail .about-message-grid {
        padding: 20px !important;
    }
}
