:root {
    --color-ink: #171717;
    --color-muted: #6c6c6c;
    --color-line: #dedede;
    --color-bg: #f3f3f3;
    --color-surface: #ffffff;
    --color-teal: #f05a1a;
    --color-amber: #ff6a21;
    --color-coral: #f05a1a;
    --color-industrial-orange: #f05a1a;
    --color-industrial-black: #0a0a0a;
    --color-industrial-charcoal: #202020;
    --color-industrial-blue: #082579;
    --color-industrial-blue-card: #173a92;
    --color-industrial-cyan: #29c6d6;
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.11);
    --radius: 3px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

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

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 20;
    background: var(--color-ink);
    color: #fff;
    padding: 10px 14px;
}

.skip-link:focus {
    left: 12px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #ededed;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
}

.header-topbar {
    border-bottom: 1px solid #ece7e2;
    background: linear-gradient(180deg, #fbf8f5 0%, #f6f1eb 100%);
}

.header-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-height: 58px;
}

.header-topbar-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px 30px;
}

.header-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--color-ink);
    text-decoration: none;
}

.header-topbar-item:hover,
.header-topbar-item:focus-visible {
    color: var(--color-industrial-orange);
}

.header-topbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(240, 90, 26, 0.22);
    border-radius: 999px;
    color: var(--color-industrial-black);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 12px rgba(20, 33, 61, 0.04);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
}

.header-topbar-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.header-topbar-label {
    color: var(--color-industrial-orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-topbar-value {
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.header-topbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--color-industrial-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(240, 90, 26, 0.18);
}

.header-topbar-cta:hover,
.header-topbar-cta:focus-visible {
    background: #d94f16;
    color: #fff;
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-weight: 700;
}

.custom-logo,
.custom-logo-link img,
.brand-logo-image {
    width: auto;
    max-width: 220px;
    max-height: 54px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 36px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--color-industrial-orange);
    font-size: 20px;
    letter-spacing: 0.03em;
}

.brand-text {
    max-width: min(52vw, 560px);
    overflow: hidden;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.primary-nav a,
.site-footer a {
    color: var(--color-ink);
}

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

.nav-toggle {
    display: none;
    border: 1px solid var(--color-line);
    background: #fff;
    border-radius: var(--radius);
    padding: 9px 12px;
    font-weight: 700;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.language-switcher a {
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--color-muted);
}

.language-switcher a.is-active {
    color: #fff;
    background: var(--color-industrial-orange);
}

.hero-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #fff;
    background: var(--color-industrial-black);
}

.hero-carousel {
    display: block;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 680ms ease, visibility 680ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--color-industrial-black);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02));
}

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

.hero-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    padding: 0 0 38px;
    z-index: 2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-content::before {
    content: "";
    position: absolute;
    left: -22px;
    bottom: 18px;
    z-index: 0;
    width: min(500px, calc(100% - 24px));
    height: 236px;
    border-left: 4px solid var(--color-industrial-orange);
    background: rgba(0, 0, 0, 0.62);
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    max-width: 450px;
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero-content p:not(.eyebrow) {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

body.home .hero-content .eyebrow,
body.home .hero-content h1,
body.home .hero-content > p:not(.eyebrow) {
    position: relative;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

body.home .hero-content {
    padding-bottom: 260px;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.52);
}

body.home .hero-content::before {
    display: none;
}

body.home .hero-content .eyebrow {
    display: block;
    margin-bottom: 14px;
    padding: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

body.home .hero-content h1 {
    max-width: 560px;
    font-size: 48px;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: 0;
}

body.home .hero-content p:not(.eyebrow) {
    display: block;
    max-width: 560px;
    margin: 18px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border-left: 0;
    font-size: 18px;
    line-height: 1.35;
}

body.home .hero-content .hero-actions {
    display: flex;
    margin-top: 24px;
    gap: 14px;
    align-items: center;
}

.hero-slide-intro-ready .hero-copy-intro {
    opacity: 0;
    transform: translate3d(-44px, 0, 0);
    animation: heroCopyIntro 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-slide-intro-ready .hero-copy-line-eyebrow { animation-delay: 140ms; }
.hero-slide-intro-ready .hero-copy-line-title { animation-delay: 280ms; }
.hero-slide-intro-ready .hero-copy-line-description { animation-delay: 420ms; }
.hero-slide-intro-ready .hero-copy-line-actions { animation-delay: 560ms; }

@keyframes heroCopyIntro {
    from {
        opacity: 0;
        transform: translate3d(-44px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-intro-ready .hero-copy-intro {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.hero-carousel-controls {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-carousel-button,
.hero-carousel-dot {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(20, 33, 61, 0.42);
    color: #fff;
    cursor: pointer;
}

.hero-carousel-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    padding: 0;
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible,
.hero-carousel-dot:hover,
.hero-carousel-dot:focus-visible,
.hero-carousel-dot.is-active {
    border-color: #fff;
    background: var(--color-industrial-orange);
    color: var(--color-industrial-black);
}

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

.eyebrow {
    color: var(--color-industrial-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
}

.button-dark {
    color: #fff;
    background: var(--color-industrial-orange);
}

.button-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.button-inline-dark {
    color: var(--color-ink);
    background: #fff;
    border-color: var(--color-line);
}

.hero-actions,
.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.section-band {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
}

.product-search-band {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    background: #fff;
    border-top: 4px solid var(--color-industrial-orange);
    border-bottom: 1px solid var(--color-line);
    box-shadow: none;
}

.product-search-inner {
    display: grid;
    grid-template-columns: minmax(210px, 0.35fr) minmax(320px, 1fr);
    gap: 22px;
    align-items: center;
}

.product-search-copy .eyebrow,
.product-search-copy p {
    margin: 0;
}

.product-search-copy p:not(.eyebrow) {
    color: var(--color-muted);
    font-weight: 700;
    font-size: 13px;
}

.product-search-form {
    display: grid;
    grid-template-columns: 0.85fr 1fr 0.9fr 1fr auto;
    gap: 8px;
}

.product-search-form input,
.product-search-form select {
    min-width: 0;
    min-height: 50px;
    padding: 12px 16px;
    border: 0;
    border-bottom: 2px solid #d2d2d2;
    border-radius: var(--radius);
    color: var(--color-ink);
    background: #f6f6f6;
    font: inherit;
}

.product-search-form input:focus,
.product-search-form select:focus {
    outline: 2px solid rgba(0, 127, 120, 0.25);
    outline-offset: 0;
    background: #fff;
}

.product-search-form .button {
    min-width: 118px;
    border-radius: var(--radius);
    background: var(--color-industrial-orange);
}

.cross-ref-index {
    padding: 24px 0 14px;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
}

.cross-ref-index-header {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.cross-ref-index-header .eyebrow,
.cross-ref-index-header p {
    margin: 0;
}

.cross-ref-index-header p:not(.eyebrow) {
    max-width: 72ch;
    color: var(--color-muted);
}

.cross-ref-index-board {
    padding: 18px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.cross-ref-index-reset {
    font-weight: 800;
}

.cross-ref-index-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px 18px;
    align-items: stretch;
}

.cross-ref-index-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    background: #fff;
    color: var(--color-ink);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cross-ref-index-link:hover,
.cross-ref-index-link:focus-visible {
    color: var(--color-industrial-orange);
    border-color: rgba(255, 92, 10, 0.35);
    box-shadow: 0 10px 22px rgba(12, 18, 28, 0.06);
}

.cross-ref-index-link.is-active {
    color: #fff;
    background: var(--color-industrial-orange);
    border-color: var(--color-industrial-orange);
}

@media (max-width: 1240px) {
    .cross-ref-index-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .cross-ref-index-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.search-status {
    margin-bottom: 22px;
}

.search-status p {
    display: inline-flex;
    margin: 0;
    padding: 10px 14px;
    color: var(--color-ink);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    font-weight: 800;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-strip article,
.feature-strip .home-link-card {
    display: block;
    min-height: 100%;
    color: inherit;
    background: #fff;
    padding: 38px;
    border: 1px solid var(--color-line);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feature-strip .home-link-card:hover,
.feature-strip .home-link-card:focus-visible,
.industrial-link-card:hover,
.industrial-link-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--color-industrial-orange);
}

.feature-strip span {
    color: var(--color-industrial-orange);
    font-weight: 800;
}

.feature-strip h2,
.section-heading h2,
.split-grid h2 {
    margin: 8px 0 10px;
    line-height: 1.18;
}

.industrial-link-section {
    color: #fff;
    background: var(--color-industrial-blue);
}

.industrial-link-section .eyebrow,
.industrial-link-section .section-heading h2 {
    color: #fff;
}

.industrial-link-grid {
    margin-top: 28px;
}

.industrial-link-card {
    color: #fff;
    background: var(--color-industrial-blue-card);
    border-color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.industrial-link-card > div {
    padding: 30px;
}

.industrial-link-card h3,
.industrial-link-card p {
    color: #fff;
}

.industrial-link-card .check-list li {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-industrial-cyan);
}

.industrial-link-card:hover,
.industrial-link-card:focus-visible {
    background: #1d44a2;
}

.factory-proof-section {
    padding: 78px 0 0;
    background: #f4f4f4;
}

.factory-proof-heading {
    max-width: 900px;
    margin-bottom: 34px;
    text-align: center;
}

.factory-proof-heading h2 {
    margin: 8px 0 12px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    text-transform: uppercase;
}

.factory-proof-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-muted);
}

.factory-proof-mosaic {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 2.2fr 1.1fr;
    grid-template-rows: 260px 260px;
    gap: 3px;
    overflow: hidden;
    background: #fff;
}

.factory-proof-banner {
    display: block;
    overflow: hidden;
    background: #fff;
}

.factory-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3px;
    overflow: hidden;
    background: #fff;
}

.factory-proof-tile {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #d8d8d8;
}

.factory-proof-banner .factory-proof-tile {
    height: clamp(360px, 42vw, 620px);
}

.factory-proof-tile-1 {
    grid-row: span 2;
}

.factory-proof-tile-3 {
    grid-row: span 2;
}

.factory-proof-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.factory-color-mono .factory-proof-tile img {
    filter: grayscale(100%) contrast(1.04);
}

.factory-fit-contain .factory-proof-tile img {
    object-fit: contain;
    background: #f6f6f6;
}

.factory-fit-auto .factory-proof-mosaic,
.factory-fit-auto .factory-proof-banner,
.factory-fit-auto .factory-proof-grid {
    display: block;
    width: 100%;
    align-items: start;
}

.factory-fit-auto .factory-proof-tile,
.factory-fit-auto .factory-proof-banner .factory-proof-tile {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
}

.factory-fit-auto .factory-proof-tile img {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.factory-proof-grid .factory-proof-tile img {
    aspect-ratio: 4 / 3;
}

.factory-proof-banner .factory-proof-tile img {
    aspect-ratio: 21 / 8;
}

.factory-fit-auto .factory-proof-tile img,
.factory-fit-auto .factory-proof-banner .factory-proof-tile img,
.factory-fit-auto .factory-proof-grid .factory-proof-tile img {
    aspect-ratio: auto;
}

.factory-color-mono:hover .factory-proof-tile img {
    filter: grayscale(45%) contrast(1.03);
}

.factory-proof-tile:hover img,
.factory-proof-tile:focus-within img {
    transform: scale(1.025);
}

.factory-color-mono .factory-proof-tile:hover img,
.factory-color-mono .factory-proof-tile:focus-within img {
    filter: grayscale(0) contrast(1.02);
}

.factory-proof-stats {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
        var(--color-industrial-orange);
}

.factory-proof-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 24%, transparent 24% 100%),
        linear-gradient(155deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62% 100%);
    pointer-events: none;
}

.factory-proof-stats-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.factory-proof-stat {
    min-height: 150px;
    display: grid;
    place-items: center;
    padding: 26px 18px;
    color: #fff;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.factory-proof-stat:first-child {
    border-left: 0;
}

.factory-proof-stat strong {
    display: block;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: 0;
}

.factory-proof-stat span {
    display: block;
    margin-top: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.content-section {
    padding: 86px 0;
}

.section-heading {
    margin-bottom: 28px;
    text-align: center;
}

.section-heading-left {
    text-align: left;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.section-heading.section-heading-split::after {
    display: none;
    content: none;
}

.section-heading h2,
.split-grid h2,
.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-heading::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 18px auto 0;
    background: var(--color-industrial-orange);
}

.section-heading-left::after {
    margin-left: 0;
}

.certification-section {
    margin-top: 54px;
    padding-top: 44px;
    border-top: 1px solid var(--color-line);
}

.factory-gallery-section {
    margin-top: 54px;
    padding-top: 44px;
    border-top: 1px solid var(--color-line);
}

.factory-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.factory-gallery-item {
    display: block;
    overflow: hidden;
    min-height: 150px;
    border-radius: var(--radius);
    background: #f4f4f4;
}

.factory-gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.factory-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 180ms ease;
}

.factory-gallery-item:hover img,
.factory-gallery-item:focus img {
    transform: scale(1.03);
}

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

.certification-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.certification-card a {
    display: block;
    background: #f8f8f8;
}

.certification-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 12px;
}

.certification-card figcaption {
    min-height: 58px;
    padding: 14px 16px;
    color: var(--color-ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

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

.product-scroll {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.product-scroll-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-scroll-viewport::-webkit-scrollbar {
    display: none;
}

.product-scroll-track {
    display: flex;
    gap: 22px;
    padding: 6px 2px 18px;
}

.product-scroll-card {
    flex: 0 0 calc((100% - 66px) / 4);
    scroll-snap-align: start;
    box-shadow: none;
    border-color: #e5e5e5;
}

.product-scroll-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    appearance: none;
    background: #fff;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.product-scroll-button::before {
    display: block;
    color: var(--color-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-1px);
}

.product-scroll-button[data-product-scroll-prev]::before {
    content: "‹";
}

.product-scroll-button[data-product-scroll-next]::before {
    content: "›";
}

.product-scroll-button:hover,
.product-scroll-button:focus-visible {
    color: #fff;
    background: var(--color-industrial-orange);
    border-color: var(--color-industrial-orange);
}

.product-scroll-button:hover::before,
.product-scroll-button:focus-visible::before {
    color: #fff;
}

.brand-video-section {
    background: #fff;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.brand-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 36px;
    align-items: center;
}

.brand-video-copy {
    display: grid;
    justify-items: start;
    align-content: center;
    gap: 18px;
    max-width: 620px;
}

.brand-video-copy .eyebrow {
    margin: 0;
}

.brand-video-copy h2 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.brand-video-copy p:not(.eyebrow) {
    margin: 0;
    max-width: 41ch;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.brand-video-actions {
    margin-top: 10px;
}

.brand-video-actions .button {
    min-width: 196px;
}

.brand-video-player {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0b0b0b;
    border-radius: var(--radius);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.brand-video-player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0b0b0b;
}

.product-card,
.post-card {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.product-card > div,
.post-card {
    padding: 24px;
}

.product-card h2,
.product-card h3,
.post-card h2 {
    margin: 0 0 10px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-card p,
.post-card p,
.split-grid p,
.site-footer p,
.page-hero p {
    color: var(--color-muted);
}

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

.news-list-section .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-preview-section {
    background: #f5f5f5;
}

.news-card {
    display: grid;
    align-content: start;
    grid-template-rows: auto 1fr;
    gap: 0;
    padding: 0;
    box-shadow: none;
}

.news-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #ececec;
}

.news-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-media-placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(180deg, #f3f3f3, #e7e7e7);
}

.news-card-placeholder-logo {
    width: min(64%, 180px);
    max-height: 64px;
    object-fit: contain;
}

.news-card-content {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
}

.news-card h2 {
    font-size: 22px;
}

.news-card h2 a {
    color: inherit;
    text-decoration: none;
}

.news-card h2 a:hover,
.news-card h2 a:focus-visible {
    color: var(--color-industrial-orange);
}

.news-archive-page .news-grid {
    align-items: stretch;
    gap: 28px;
}

.news-archive-card {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border-color: rgba(23, 23, 23, 0.08);
    box-shadow: 0 18px 38px rgba(18, 24, 36, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-archive-card:hover,
.news-archive-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(240, 90, 26, 0.18);
    box-shadow: 0 24px 46px rgba(18, 24, 36, 0.1);
}

.news-archive-card .news-card-media {
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
}

.news-archive-card .news-card-content {
    height: 100%;
    gap: 14px;
    padding: 24px 24px 22px;
    grid-template-rows: auto auto 1fr auto;
}

.news-archive-card h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.28;
}

.news-archive-card h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-archive-card .post-date {
    font-size: 12px;
}

.news-archive-card .news-card-content > p:not(.post-date) {
    margin: 0;
    line-height: 1.75;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-archive-card .text-link {
    margin-top: auto;
    align-self: flex-start;
}

.post-date {
    margin: 0;
    color: var(--color-industrial-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-grid .industrial-link-card {
    color: #fff;
    background: var(--color-industrial-blue-card);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.product-grid .industrial-link-card h3,
.product-grid .industrial-link-card p {
    color: #fff;
}

.product-grid .industrial-link-card .card-kicker {
    color: var(--color-industrial-cyan);
}

.product-grid .industrial-link-card .check-list li {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-industrial-cyan);
}

.card-kicker,
.card-meta,
.post-date {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-kicker {
    color: var(--color-industrial-orange);
}

.card-meta,
.post-date {
    color: var(--color-ink);
}

.product-image {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
}

.product-image img {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    object-fit: contain;
}

.split-section {
    background: #fff;
}

.split-grid,
.detail-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.detail-grid {
    align-items: start;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 12px;
    padding: 16px 18px;
    border-left: 4px solid var(--color-industrial-orange);
    background: var(--color-bg);
    border-radius: var(--radius);
    font-weight: 700;
}

.about-certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.about-certificate-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.about-certificate-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 12px;
    background: #f8f8f8;
}

.page-hero {
    padding: 72px 0 44px;
    background:
        linear-gradient(90deg, rgba(244, 81, 30, 0.08), rgba(255, 255, 255, 0) 36%),
        #fff;
    border-bottom: 1px solid var(--color-line);
}

.page-hero h1 {
    margin: 0;
    max-width: 940px;
    line-height: 1.12;
}

.single-layout .entry-content {
    padding-top: 46px;
    padding-bottom: 78px;
}

.entry-content {
    line-height: 1.75;
}

.entry-content > p:first-child {
    margin-top: 0;
}

.entry-content ul,
.entry-content ol {
    padding-left: 24px;
}

.entry-content li + li {
    margin-top: 8px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 52px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 50px;
}

.product-summary-panel.entry-content {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-top: 4px solid var(--color-industrial-orange);
    box-shadow: var(--shadow-soft);
}

.product-summary-panel > p {
    margin-top: 0;
}

.product-summary-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
}

.product-summary-facts div {
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid var(--color-line);
    background: var(--color-bg);
}

.product-summary-facts dt {
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-summary-facts dd {
    margin: 0;
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-detail-section {
    margin-top: 38px;
}

.product-detail-section h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 3vw, 34px);
    text-transform: uppercase;
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--color-line);
}

.product-spec-table th,
.product-spec-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
    line-height: 1.45;
}

.product-spec-table th {
    width: 38%;
    color: var(--color-ink);
    background: var(--color-bg);
}

.product-data-table tr[hidden] {
    display: none;
}

.product-data-table th {
    width: 34%;
    text-transform: uppercase;
}

.product-data-table td {
    overflow-wrap: anywhere;
}

.product-catalog-section {
    padding: 54px 0 72px;
    background: #f3f3f3;
    border-top: 1px solid var(--color-line);
}

.product-catalog-section .section-heading-left {
    margin-bottom: 26px;
}

.product-excel-data {
    padding-top: 28px;
    background: #f4f4f4;
}

.product-excel-data .container {
    max-width: 1180px;
}

.excel-data-block {
    margin-top: 28px;
}

.excel-data-block:first-child {
    margin-top: 0;
}

.excel-data-band {
    margin: 0 0 0;
    padding: 5px 26px 4px;
    color: #fff;
    background: linear-gradient(90deg, #8f8f92 0%, #b8b8bb 60%, #dedee0 100%);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.excel-data-scroll {
    overflow-x: auto;
    background: #f4f4f4;
}

.excel-data-grid {
    width: 100%;
    min-width: 820px;
    table-layout: fixed;
    border-collapse: collapse;
    background: #f4f4f4;
}

.excel-data-grid tr[hidden] {
    display: none;
}

.excel-data-grid td {
    width: 25%;
    padding: 6px 24px 5px;
    border: 0;
    color: #54585f;
    font-size: 16px;
    line-height: 1.25;
    vertical-align: top;
}

.excel-data-brand {
    display: inline-block;
    margin-right: 8px;
    color: #10151b;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.excel-data-value {
    color: #555d66;
    font-weight: 500;
}

.excel-application-grid td {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 16px;
}

.excel-application-grid .excel-data-brand {
    min-width: 86px;
    margin-right: 10px;
}

.excel-reference-toggle {
    margin-top: 10px;
    margin-left: 26px;
}

.product-excel-html-section {
    margin-top: 0;
}

.product-excel-html-scroll {
    overflow-x: hidden;
    border: 1px solid #d7dce2;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.product-excel-html-scroll table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.excel-html-table {
    table-layout: fixed;
    background: #fff;
    color: #10151b;
    font-size: 15px;
    line-height: 1.42;
}

.excel-html-section-title {
    padding: 15px 24px 14px 28px;
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, #111827 0%, #4b5563 58%, #9ca3af 100%);
    box-shadow: inset 7px 0 0 var(--color-industrial-orange);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: left;
    text-transform: uppercase;
}

.excel-html-section-row:not(:first-child) .excel-html-section-title {
    border-top: 32px solid #f3f3f3;
    background-clip: padding-box;
}

.product-excel-html-scroll th {
    border-bottom: 1px solid #c9d1dc;
}

.product-excel-html-scroll td {
    border-bottom: 1px solid #e2e6eb;
}

.product-excel-html-scroll td + td {
    border-left: 1px solid #edf0f3;
}

.excel-html-data-row:nth-child(even) td {
    background: #fafbfc;
}

.excel-html-data-row:hover td {
    background: #fff7ed;
}

.excel-html-brand {
    width: 11%;
    padding: 10px 8px 10px 10px;
    background: #f3f5f7;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    min-width: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

.excel-html-value {
    width: 9%;
    padding: 10px 4px;
    color: #27313f;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

.excel-html-empty {
    padding: 9px 10px;
    background: #f8fafc;
}

.product-excel-html-scroll td,
.product-excel-html-scroll th {
    vertical-align: middle;
}

.product-excel-html-scroll th:not(.excel-html-section-title) {
    padding: 9px 12px;
    background: #f3f5f7;
    color: #0f172a;
    font-weight: 800;
    text-align: left;
}

.product-excel-html-scroll tr:last-child td {
    border-bottom: 0;
}

.product-catalog-table-wrap {
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: #fff;
}

.product-catalog-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.product-catalog-table > thead > tr > th {
    padding: 13px 16px;
    color: #fff;
    background: var(--color-industrial-orange);
    border-right: 1px solid rgba(255, 255, 255, 0.32);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
}

.product-catalog-table > thead > tr > th:last-child {
    border-right: 0;
}

.product-catalog-table > tbody > tr > td {
    padding: 0;
    border-right: 1px solid var(--color-line);
    vertical-align: top;
}

.product-catalog-table > tbody > tr > td:last-child {
    border-right: 0;
}

.product-catalog-column {
    margin: 0;
    padding: 16px;
}

.catalog-column-heading {
    display: none;
}

.product-mini-table {
    border: 0;
}

.product-mini-table th,
.product-mini-table td {
    padding: 9px 0;
    border-bottom: 1px solid #ededed;
    background: transparent;
    font-size: 13px;
}

.product-mini-table th {
    width: 42%;
    padding-right: 10px;
    color: var(--color-ink);
    font-weight: 900;
}

.product-mini-table td {
    color: var(--color-muted);
    font-weight: 700;
}

.product-reference-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-reference-list li {
    padding: 9px 0;
    border-bottom: 1px solid #ededed;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

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

.product-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.product-support-grid .product-detail-section {
    margin: 0;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-line);
}

.product-support-grid .product-detail-section h2 {
    font-size: 22px;
}

.catalog-inquiry-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 30px;
}

.reference-toggle {
    margin-top: 14px;
    padding: 10px 14px;
    border: 1px solid var(--color-industrial-orange);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-industrial-orange);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reference-toggle:hover,
.reference-toggle:focus-visible {
    color: #fff;
    background: var(--color-industrial-orange);
}

.detail-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-card-list li {
    padding: 14px 16px;
    border: 1px solid var(--color-line);
    border-left: 3px solid var(--color-industrial-orange);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.faq-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
}

.faq-item h3 {
    margin: 0 0 8px;
}

.narrow {
    max-width: 820px;
}

.detail-media {
    display: grid;
    align-content: start;
    gap: 18px;
}

.detail-media-primary {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
}

.detail-media-primary img {
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff;
}

.detail-media img {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.detail-media .detail-media-primary img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.product-gallery-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-gallery-viewport::-webkit-scrollbar {
    display: none;
}

.product-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
    min-width: max-content;
}

.product-gallery-item {
    display: block;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--color-line);
    background: #fff;
    cursor: pointer;
}

.product-gallery-nav {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    box-shadow: var(--shadow-soft);
}

.product-gallery-nav:hover,
.product-gallery-nav:focus-visible {
    color: #fff;
    background: var(--color-industrial-orange);
    border-color: var(--color-industrial-orange);
}

.product-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.product-gallery-item:hover,
.product-gallery-item:focus-visible,
.product-gallery-item.is-active {
    border-color: var(--color-industrial-orange);
    outline: 2px solid rgba(244, 80, 24, 0.18);
    outline-offset: 2px;
}

.contact-intro {
    margin-bottom: 26px;
}

.contact-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}

.contact-profile {
    display: grid;
    gap: 24px;
    margin: 32px 0 40px;
}

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

.contact-card {
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.contact-card p,
.contact-card a {
    margin: 0;
    color: var(--color-ink);
    font-size: 16px;
    line-height: 1.6;
}

.contact-profile-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-industrial-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
}

.contact-profile-media {
    display: grid;
    gap: 8px;
}

.contact-profile-media img {
    width: 140px;
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid var(--color-line);
}

.share-row {
    margin: 28px 0;
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
    font-weight: 800;
}

.share-row a {
    color: var(--color-industrial-orange);
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: var(--color-industrial-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
}

.news-preview-link {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 18px;
    white-space: nowrap;
    flex: none;
}

.news-preview-heading {
    display: block;
    margin-bottom: 28px;
}

.related-section {
    padding-top: 0;
}

.inquiry-panel {
    margin-top: 44px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.inquiry-panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.22;
}

.inquiry-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

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

.form-field {
    display: grid;
    gap: 7px;
    margin: 0;
    font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--color-ink);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field select {
    appearance: auto;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-choice-group {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.form-choice-group legend {
    padding: 0 5px;
    font-weight: 800;
}

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

.form-choice-grid label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--color-muted);
    font-weight: 600;
}

.form-choice-grid-inline {
    grid-template-columns: repeat(3, max-content);
}

.consent-field {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: var(--color-muted);
    font-size: 14px;
}

.guoji-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-notice {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-notice-success {
    color: #075e3c;
    background: #dff4e8;
}

.form-notice-error {
    color: #8f2b1f;
    background: #ffe7e1;
}

.inquiry-form.is-submitting {
    cursor: progress;
}

.inquiry-form .button[disabled] {
    cursor: wait;
}

.inquiry-form .button.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.inquiry-form .button.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: guoji-button-spin 0.8s linear infinite;
}

@keyframes guoji-button-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.post-list {
    display: grid;
    gap: 18px;
}

.post-date {
    color: var(--color-coral);
    font-weight: 800;
}

.pagination-wrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.pagination-wrap ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-wrap ul.page-numbers li {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-wrap ul.page-numbers a.page-numbers,
.pagination-wrap ul.page-numbers span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pagination-wrap ul.page-numbers a.prev.page-numbers,
.pagination-wrap ul.page-numbers a.next.page-numbers {
    width: auto;
    min-width: 52px;
    padding: 0 22px;
    border-radius: 999px;
}

.pagination-wrap ul.page-numbers a.page-numbers:hover,
.pagination-wrap ul.page-numbers a.page-numbers:focus-visible {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

.pagination-wrap ul.page-numbers span.page-numbers.current {
    border-color: var(--color-coral);
    background: var(--color-coral);
    color: #fff;
}

.pagination-wrap ul.page-numbers span.page-numbers.dots {
    min-width: auto;
    padding: 10px 6px;
    border: 0;
    background: transparent;
    color: rgba(31, 31, 31, 0.45);
}

.site-footer {
    padding: 62px 0 24px;
    background: linear-gradient(0deg, rgba(64, 64, 64, 0.96), rgba(64, 64, 64, 0.96)), var(--color-industrial-black);
    color: #fff;
}

.site-footer h2 {
    margin-top: 0;
    font-size: 20px;
    color: var(--color-industrial-orange);
    text-transform: none;
    letter-spacing: 0;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-link-strong {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 173px;
    max-height: 57px;
    object-fit: contain;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.footer-social-link picture,
.footer-social-link img {
    display: block;
    width: 24px;
    height: 24px;
}

.footer-social-link img {
    max-width: none;
    object-fit: contain;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
}

.footer-media {
    display: grid;
    gap: 18px;
}

.footer-media-block img {
    max-width: 140px;
    height: auto;
    border-radius: var(--radius);
    background: #fff;
}

.footer-qr-frame {
    display: block;
    width: 69px;
    height: 69px;
    overflow: hidden;
    border-radius: var(--radius);
}

.footer-media-block .footer-qr-frame img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}

.footer-certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-certificates img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-copy {
    display: grid;
    gap: 6px;
}

.footer-bottom-copy p {
    margin: 0;
}

.cookie-notice {
    position: fixed;
    right: 18px;
    top: 96px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    max-width: 500px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.cookie-notice p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.button-muted {
    color: var(--color-ink);
    border-color: var(--color-line);
    background: #fff;
}

@media (max-width: 860px) {
    .cross-ref-index-board {
        padding-top: 16px;
    }

    .cross-ref-index-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .header-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
    }

    .header-topbar-list {
        justify-content: flex-start;
        gap: 10px 16px;
    }

    .header-topbar-item {
        gap: 8px;
    }

    .header-topbar-badge {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .header-topbar-icon {
        width: 16px;
        height: 16px;
    }

    .header-topbar-label {
        font-size: 11px;
    }

    .header-topbar-value {
        font-size: 14px;
    }

    .header-topbar-cta {
        min-height: 38px;
        padding: 10px 16px;
    }

    .header-inner {
        min-height: 66px;
        gap: 10px;
    }

    .site-brand {
        flex: 1 1 auto;
        max-width: calc(100% - 146px);
        gap: 8px;
    }

    .brand-mark {
        flex: 0 0 34px;
        width: 34px;
        height: 28px;
        font-size: 15px;
    }

    .brand-text {
        max-width: 100%;
        font-size: 10px;
        line-height: 1.2;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        box-shadow: var(--shadow-soft);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        display: grid;
        gap: 12px;
    }

    .language-switcher {
        order: 3;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .hero-section {
        min-height: 610px;
    }

    body.home .hero-media-image {
        object-position: left center;
    }

    .hero-content h1 {
        max-width: 260px;
        font-size: 23px;
    }

    .hero-content::before {
        left: -12px;
        bottom: 20px;
        width: 310px;
        height: 220px;
        background: rgba(0, 0, 0, 0.66);
    }

    .hero-content p:not(.eyebrow) {
        max-width: 260px;
        font-size: 13px;
    }

    body.home .hero-content {
        padding-bottom: 165px;
    }

    body.home .hero-content::before {
        display: none;
    }

    body.home .hero-content .eyebrow {
        max-width: 280px;
        padding: 0;
        font-size: 13px;
        line-height: 1.25;
    }

    body.home .hero-content h1 {
        max-width: 320px;
        font-size: 30px;
        line-height: 1.12;
    }

    body.home .hero-content p:not(.eyebrow) {
        max-width: 312px;
        margin-top: 14px;
        padding: 0;
        font-size: 13px;
        line-height: 1.35;
    }

    body.home .hero-content .hero-actions {
        display: flex;
        margin-top: 18px;
    }

    .hero-carousel-controls {
        right: 24px;
        bottom: 22px;
    }

    .feature-strip,
    .product-grid,
    .news-grid,
    .split-grid,
    .detail-grid,
    .product-detail-layout,
    .product-support-grid,
    .footer-grid,
    .product-search-inner,
    .certification-grid,
    .factory-gallery-grid,
    .brand-video-grid,
    .form-grid,
    .form-choice-grid {
        grid-template-columns: 1fr;
    }

    .brand-video-grid {
        gap: 28px;
    }

    .brand-video-copy {
        max-width: none;
        gap: 16px;
    }

    .brand-video-copy h2 {
        max-width: 12ch;
    }

    .brand-video-copy p:not(.eyebrow) {
        max-width: none;
        font-size: 17px;
        line-height: 1.7;
    }

    .about-certificates-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-split {
        display: grid;
        align-items: start;
    }

    .factory-gallery-featured {
        grid-column: auto;
        grid-row: auto;
    }

    .factory-proof-section {
        padding-top: 54px;
    }

    .factory-proof-heading {
        margin-bottom: 24px;
    }

    .factory-proof-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 2px;
    }

    .factory-proof-tile,
    .factory-proof-tile-1,
    .factory-proof-tile-3 {
        grid-column: auto;
        grid-row: auto;
        min-height: 180px;
    }

    .factory-proof-tile-3 {
        grid-column: span 2;
        min-height: 220px;
    }

    .factory-proof-tile img {
        aspect-ratio: 4 / 3;
    }

    .factory-proof-banner .factory-proof-tile {
        height: clamp(260px, 72vw, 420px);
    }

    .factory-proof-grid {
        grid-template-columns: 1fr;
    }

    .factory-proof-tile-3 img {
        aspect-ratio: 16 / 9;
    }

    .factory-proof-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .factory-proof-stat {
        min-height: 118px;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .factory-proof-stat:nth-child(odd) {
        border-left: 0;
    }

    .product-search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-search-form input,
    .product-search-form select,
    .product-search-form .button {
        width: 100%;
        border-radius: var(--radius);
        border: 1px solid var(--color-line);
    }

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

    .product-scroll-button {
        display: none;
    }

    .product-scroll-card {
        flex-basis: min(86vw, 320px);
    }

    .content-section {
        padding: 54px 0;
    }

    .page-hero {
        padding: 54px 0 34px;
    }

    .page-hero h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .single-layout .entry-content {
        padding-top: 34px;
        padding-bottom: 58px;
    }

    .product-detail-layout {
        gap: 28px;
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .single-layout .product-summary-panel.entry-content {
        padding: 22px;
    }

    .product-summary-facts {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        gap: 8px;
    }

    .entry-content {
        font-size: 16px;
        line-height: 1.68;
    }

    .product-detail-section {
        margin-top: 30px;
    }

    .product-detail-section h2 {
        font-size: 24px;
    }

    .product-catalog-section {
        padding: 42px 0 54px;
    }

    .product-excel-data {
        padding-top: 24px;
    }

    .excel-data-block {
        margin-top: 24px;
    }

    .excel-data-band {
        padding: 6px 16px 5px;
        font-size: 16px;
        letter-spacing: 0.07em;
    }

    .excel-data-grid {
        min-width: 720px;
    }

    .product-excel-html-scroll table {
        min-width: 0;
    }

    .excel-html-section-title {
        padding: 12px 16px 11px 22px;
        font-size: 17px;
        letter-spacing: 0.07em;
    }

    .excel-html-section-row:not(:first-child) .excel-html-section-title {
        border-top-width: 24px;
    }

    .excel-html-brand {
        padding-left: 12px;
    }

    .excel-html-brand,
    .excel-html-value {
        font-size: 13px;
    }

    .excel-data-grid td {
        padding: 6px 14px 5px;
        font-size: 14px;
    }

    .excel-application-grid .excel-data-brand {
        min-width: 72px;
    }

    .excel-reference-toggle {
        margin-left: 16px;
    }

    .product-catalog-table,
    .product-catalog-table tbody,
    .product-catalog-table tr,
    .product-catalog-table th,
    .product-catalog-table td {
        display: block;
        width: 100%;
    }

    .product-catalog-table thead {
        display: none;
    }

    .product-catalog-table > tbody > tr > td {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .product-catalog-table > tbody > tr > td:last-child {
        border-bottom: 0;
    }

    .product-catalog-column {
        padding: 16px 18px;
    }

    .catalog-column-heading {
        display: block;
        margin: 0 0 14px;
        color: var(--color-industrial-orange);
        font-size: 18px;
        text-transform: uppercase;
    }

    .product-support-grid .product-detail-section {
        padding: 20px;
    }

    .catalog-inquiry-panel {
        display: grid;
    }

    .product-gallery-grid,
    .contact-profile-grid {
        grid-template-columns: 1fr;
    }

    .product-spec-table,
    .product-spec-table tbody,
    .product-spec-table tr,
    .product-spec-table th,
    .product-spec-table td {
        display: block;
        width: 100%;
    }

    .product-spec-table th {
        padding-bottom: 6px;
        border-bottom: 0;
    }

    .product-spec-table td {
        padding-top: 0;
    }

    .footer-bottom,
    .cookie-notice {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-notice {
        position: static;
        margin: 16px auto;
        width: min(calc(100% - 40px), 500px);
        max-width: none;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions .button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .cross-ref-index {
        padding-bottom: 10px;
    }

    .cross-ref-index-header {
        margin-bottom: 14px;
    }

    .cross-ref-index-board {
        padding-top: 14px;
    }

    .cross-ref-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cross-ref-index-link {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
        letter-spacing: 0.03em;
    }
}
