:root {
    --red: #c80d16;
    --dark: #2f2f2f;
    --text: #555;
    --muted: #777;
    --soft: #f5f5f5;
    --card: #f0f0f0;
    --container: 1048px;
    --narrow: 800px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

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);
}

.language-switcher {
    position: relative;
    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: 20;
    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;
    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: 20;
    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;
}

.home-slider-arrow:hover,
.blog-arrow:hover {
    color: var(--red);
}

.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;
}

.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: 90;
    background: rgba(0, 0, 0, .42);
}

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

.collection-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    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,
.team-portrait.has-image img,
.about-map.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: 288px;
    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 {
    background: #f2f2f2;
}

.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: 32px;
    padding-bottom: 52px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 25px 30px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #535b65;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

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

.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: 76px;
    max-height: 32px;
    object-fit: contain;
}

.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;
}

.office-card {
    min-height: 118px;
    padding: 22px 20px;
    background: #fff;
}

.office-card h4 {
    margin: 0 0 11px;
    color: #222;
    font-size: 13px;
    font-weight: 900;
}

.office-card p,
.office-card a {
    display: block;
    margin: 0 0 8px;
    color: #555;
    font-size: 9px;
    line-height: 1.45;
}

.office-card a {
    color: #f03434;
    font-weight: 800;
}

.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: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.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: 520px;
    margin: 70px auto 0;
    text-align: center;
}

.support-icon {
    width: 33px;
    height: 33px;
    margin: 0 auto 13px;
    border: 3px solid #111;
    border-radius: 50%;
    position: relative;
}

.support-icon::before {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 4px;
    height: 9px;
    border: 3px solid #111;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.urgent-support h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: 20px;
    font-weight: 900;
}

.urgent-support p {
    max-width: 450px;
    margin: 0 auto 13px;
    color: #666;
    font-size: 11px;
    line-height: 1.55;
}

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

.urgent-support a {
    color: #f03a3a;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

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

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

.resources-hero {
    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 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 {
    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 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;
    }

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

    .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-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;
}

.home-2026-hero {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    min-height: clamp(390px, 28vw, 480px);
}

.home-2026-hero-card {
    position: relative;
    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;
}

.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;
}

.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;
}

.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 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-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-2026-subcategory {
    background: #f2f2f2;
    text-align: center;
}

.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;
}

.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 img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.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;
}

.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 video,
.home-2026-video img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-2026-video video {
    object-fit: cover;
}

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

.home-2026-video span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .84);
}

.home-2026-video 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-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 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 318px;
    color: inherit;
    text-decoration: none;
}

.home-2026-blog-grid article img {
    width: 100%;
    height: 155px;
    flex: 0 0 auto;
    object-fit: cover;
}

.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;
}

.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-hero,
    .home-2026-product-grid,
    .home-2026-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .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-subcategory-grid,
    .home-2026-tab-nav,
    .home-2026-feature-grid,
    .home-2026-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-2026-hero,
    .home-2026-subcategory-grid,
    .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-blog-grid {
        grid-template-columns: none;
        grid-auto-columns: 82%;
    }

    .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: 56.25% 43.75%;
    background: #fff;
}

.wilamac-login-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    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-copy {
    max-width: 640px;
    margin-left: clamp(42px, 8.4vw, 162px);
    color: #fff;
}

.wilamac-login-copy h1 {
    margin: 0 0 64px;
    color: #fff;
    font-size: clamp(58px, 5.4vw, 104px);
    font-weight: 900;
    line-height: 1.1;
}

.wilamac-login-copy p {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 1.4vw, 28px);
    line-height: 1.35;
}

.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;
    }

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

@media (max-width: 640px) {
    .wilamac-login-copy {
        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: #d8e0e7;
}

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

.custom-service-video span,
.custom-service-video::after {
    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;
}

.custom-service-video span::after,
.custom-service-video::before {
    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-video--file::after,
.custom-service-video--file::before {
    display: none;
}

.custom-service-video::after,
.custom-service-video::before {
    display: none;
}

.custom-service-video--poster span,
.custom-service-video--poster span::after {
    display: block;
}

.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, 1fr) minmax(360px, 1fr);
    gap: 66px;
    align-items: center;
    margin-bottom: 42px;
}

.product-detail-image {
    margin: 0;
    background: #edf0f2;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.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;
    text-transform: uppercase;
    cursor: pointer;
}

.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: uppercase;
}

.product-share-row a {
    color: #777;
    font-size: 14px;
    text-transform: none;
}

.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-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;
}
