:root {
    --brand-blue: #087fc7;
    --brand-deep: #182778;
    --brand-red: #087fc7;
    --ink: #111a28;
    --muted: #69717c;
    --line: #e5e8ec;
    --soft: #f2f7fb;
    --white: #fff;
    --header-height: 90px;
    --shell: 1280px;
    --shell-wide: 1380px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, ul { margin-top: 0; }
ul { margin-bottom: 0; padding: 0; list-style: none; }

.shell { width: min(calc(100% - 80px), var(--shell)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 40px), var(--shell-wide)); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 8px; left: 8px; z-index: 100; padding: 8px 14px;
    color: #fff; background: var(--brand-deep); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
    position: absolute; inset: 0 0 auto; z-index: 40; height: var(--header-height);
    color: #fff; background: transparent; transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    position: fixed; color: var(--ink); background: rgba(255,255,255,.98);
    box-shadow: 0 8px 24px rgba(23, 42, 68, .08);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.brand { position: relative; flex: 0 0 196px; height: 76px; display: flex; align-items: center; }
.brand img { position: absolute; left: 0; width: 196px; height: auto; transition: opacity .2s ease; }
.brand-dark { opacity: 0; }
.site-header.is-scrolled .brand-light { opacity: 0; }
.site-header.is-scrolled .brand-dark { opacity: 1; }
.primary-nav { height: 100%; margin-left: auto; }
.nav-list { height: 100%; display: flex; align-items: stretch; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a {
    height: 100%; display: flex; align-items: center; padding: 0 15px;
    color: currentColor; font-size: 14px; font-weight: 500; white-space: nowrap;
}
.nav-item > a::after {
    content: ""; position: absolute; left: 50%; bottom: 16px; width: 18px; height: 2px;
    background: var(--brand-red); opacity: 0; transform: translate(-50%, 4px);
    transition: opacity .18s ease, transform .24s var(--ease);
}
.nav-item:hover > a::after, .nav-item:focus-within > a::after, .nav-item.is-active > a::after { opacity: 1; transform: translate(-50%, 0); }
.submenu-toggle { display: none; }
.submenu {
    position: absolute; top: 90px; left: 50%; width: max-content; min-width: 160px; max-width: calc(100vw - 40px); min-height: 0;
    display: grid; grid-template-columns: 1fr; gap: 0; padding: 14px 20px;
    color: #242d38; background: #f2f3f1; box-shadow: 0 16px 34px rgba(0,0,0,.14);
    opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
}
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item:nth-last-child(-n+3) .submenu { left: auto; right: 0; transform: translate(0, 10px); }
.nav-item:nth-last-child(-n+3):hover .submenu, .nav-item:nth-last-child(-n+3):focus-within .submenu { transform: translate(0, 0); }
.submenu ul { display: grid; grid-template-columns: 1fr; gap: 0; }
.submenu li { opacity: 0; transform: translateY(-7px); }
.nav-item:hover .submenu li, .nav-item:focus-within .submenu li, .submenu.is-open li { animation: submenu-item-in .3s var(--ease) both; }
.submenu li:nth-child(2) { animation-delay: .035s; }
.submenu li:nth-child(3) { animation-delay: .07s; }
.submenu li:nth-child(4) { animation-delay: .105s; }
.submenu li:nth-child(5) { animation-delay: .14s; }
.submenu li:nth-child(6) { animation-delay: .175s; }
.submenu li:nth-child(7) { animation-delay: .21s; }
.submenu li:nth-child(8) { animation-delay: .245s; }
.submenu a { display: block; padding: 9px 0; color: #555d65; font-size: 13px; white-space: nowrap; }
.submenu a:hover, .submenu a:focus { color: var(--brand-red); }
@keyframes submenu-item-in {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}
.language-link {
    width: 31px; height: 31px; display: grid; place-items: center; margin-left: 5px;
    border: 1px solid currentColor; border-radius: 0; font-size: 9px; line-height: 1;
}
.menu-toggle {
    width: 34px; height: 34px; display: none; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 0; border: 0; background: transparent; cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { width: 17px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Shared controls */
.button {
    min-width: 104px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    gap: 12px; padding: 0 22px; border: 0; border-radius: 0; color: #fff; font-size: 12px;
    line-height: 1; white-space: nowrap; transition: transform .2s ease, background .2s ease;
}
.button:active { transform: translateY(1px); }
.button-dark { background: var(--brand-deep); }
.button-dark:hover, .button-dark:focus { background: #101b5e; }
.button-red, .button-primary { background: var(--brand-red); }
.button-red:hover, .button-red:focus, .button-primary:hover, .button-primary:focus { background: #006ba9; }
.eyebrow { margin-bottom: 3px; color: var(--brand-red); font-size: 10px; font-weight: 700; line-height: 1.4; }
.more-link { color: #0090df; font-size: 12px; white-space: nowrap; }
.more-link span { margin-left: 7px; font-size: 18px; vertical-align: -1px; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: 30px; line-height: 1.25; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }

/* One heading treatment for homepage sections; inner pages retain their styles. */
.home-page header.home-heading { margin: 0 0 32px; text-align: left; }
.home-page .home-heading h2, .home-page .home-section-title { font-size: 32px; font-weight: 600; line-height: 1.35; letter-spacing: 0; text-wrap: balance; }
.home-page .home-heading h2 { max-width: none; margin: 0; color: var(--ink); }
.home-page .home-heading .eyebrow { margin: 0 0 8px; color: var(--brand-blue); font-size: 11px; font-weight: 700; line-height: 1.4; }
.home-page .home-heading-description { max-width: 840px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.home-page .home-heading > div { min-width: 0; }
.home-page .home-heading .more-link { flex-shrink: 0; }
.home-page .global-grid { padding-top: 0; }

/* Home hero */
.home-page { overflow: hidden; }
.hero { position: relative; height: min(966px, calc(100vh + 6px)); min-height: 610px; overflow: hidden; background: #000; }
.hero-track { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide > img, .hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:first-child > img, .hero-video { object-position: center center; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,59,.76) 0%, rgba(8,20,59,.38) 45%, rgba(8,20,59,.08) 75%); }
.hero-copy { position: absolute; left: 50%; top: 48%; z-index: 2; color: #fff; transform: translate(-50%, -50%); }
.hero-copy > p { margin: 0 0 12px; color: rgba(255,255,255,.74); font-size: 12px; }
.hero-copy h1 { max-width: 760px; margin: 0 0 15px; font-size: 54px; line-height: 1.18; font-weight: 600; }
.hero-subtitle { max-width: 680px; margin-bottom: 28px; font-size: 17px; line-height: 1.75; }
.hero-pagination { position: absolute; right: 40px; bottom: 88px; z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.48); cursor: pointer; }
.hero-dot.is-active { background: #fff; }
.hero.hero-product { height: min(900px, calc(100svh - 48px)); min-height: 640px; }
.hero-product .hero-slide > img { object-position: 60% center; }
.hero-product .hero-scrim { background: linear-gradient(90deg, rgba(6,18,38,.82), rgba(6,18,38,.48) 52%, rgba(6,18,38,.24)); }
.hero-product .hero-copy { top: 46%; pointer-events: none; }
.hero-product .hero-copy > p { max-width: 44%; }
.hero-product .hero-copy h1 { width: 44%; max-width: 580px; font-size: 48px; line-height: 1.32; text-wrap: balance; }
.hero-product .hero-subtitle { width: 43%; max-width: 520px; font-size: 16px; }
.hero-product .hero-copy a { pointer-events: auto; }
.hero-valve { position: absolute; z-index: 1; top: 48%; right: max(12px, calc((100% - 1380px) / 2 - 20px)); width: min(52%, 760px, calc(100svh - 160px)); aspect-ratio: 1; transform: translateY(-50%); pointer-events: none; }
.hero-valve-poster, .hero-valve-canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; transition: opacity .45s ease; }
.hero-valve-poster { opacity: 1; }
.hero-valve-canvas { opacity: 0; }
.hero-valve.is-ready .hero-valve-poster { opacity: 0; }
.hero-valve.is-ready .hero-valve-canvas { opacity: 1; }
.hero-valve.is-ready .hero-valve-canvas { pointer-events: auto; cursor: grab; }
.hero-valve.is-dragging .hero-valve-canvas { cursor: grabbing; }
.hero-valve-canvas:focus-visible { outline: 2px solid rgba(255,255,255,.85); outline-offset: -6px; }
.hero-valve-reset { position: absolute; z-index: 2; right: 12%; bottom: 5%; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(8,25,38,.68); opacity: 0; visibility: hidden; pointer-events: none; cursor: pointer; }
.hero-valve-reset img { filter: brightness(0) invert(1); }
.hero-valve.is-ready .hero-valve-reset { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-valve-reset:hover { background: #087fc7; }
.hero-valve-reset:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-product .hero-copy h1 { font-size: 38px; }
    .hero-product .hero-subtitle { font-size: 14px; }
}
@media (max-width: 768px) {
    .hero.hero-product { height: 650px; min-height: 0; }
    .hero-product .hero-slide > img { object-position: 62% center; }
    .hero-product .hero-scrim { background: linear-gradient(180deg, rgba(6,18,38,.72), rgba(6,18,38,.35)); }
    .hero-product .hero-copy { top: 30px; transform: translateX(-50%); text-align: center; }
    .hero-product .hero-copy h1 { width: 100%; max-width: 360px; margin: 0 auto 10px; font-size: 28px; line-height: 1.3; }
    .hero-product .hero-subtitle { width: 100%; max-width: 340px; margin: 0 auto 16px; font-size: 12px; }
    .hero-product .hero-copy .button { height: 34px; }
    .hero-valve { top: auto; right: 50%; bottom: 22px; width: min(390px, 100%); transform: translateX(50%); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-valve-poster, .hero-valve-canvas { transition: none; }
}
.metrics {
    position: relative; z-index: 5; width: min(calc(100% - 40px), var(--shell-wide)); height: 200px;
    margin: -70px auto 0; background: #fff; box-shadow: 0 12px 42px rgba(35, 55, 82, .1);
}
.metrics-grid { height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
.metric { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.metric strong { color: var(--brand-red); font-size: 42px; font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums; }
.metric [data-count] { display: inline-block; width: var(--count-width, auto); }
.metric sup { margin-left: 4px; font-size: 13px; font-weight: 500; }
.metric > span { margin-top: 16px; color: #59616c; font-size: 12px; }

/* Home company and products */
.about-section { min-height: 532px; padding: 72px 0 60px; background: #fff; }
.home-page .about-section { min-height: 0; padding-bottom: 40px; }
.home-about-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: center; }
.about-copy h1, .about-copy h2 { max-width: 690px; margin: 0 0 15px; font-size: 32px; line-height: 1.25; }
.intro-text { margin-bottom: 16px; color: #5d6570; font-size: 12px; line-height: 2; }
.stock-code { display: flex; align-items: center; gap: 15px; margin: 0 0 18px; }
.stock-code span { color: #4e5660; font-size: 12px; }
.stock-code strong { color: var(--brand-red); font-size: 28px; font-weight: 500; line-height: 1; }
.standards-line { display: flex; align-items: baseline; gap: 15px; margin: 0 0 18px; }
.standards-line span { color: #4e5660; font-size: 12px; }
.standards-line strong { color: var(--brand-deep); font-size: 15px; font-weight: 600; }
.about-media { position: relative; margin: 0; overflow: hidden; background: #0c2a3c; }
.about-media > .about-media-image { width: 100%; height: 340px; object-fit: cover; border-radius: 0; box-shadow: none; transition: transform .65s var(--ease), filter .45s ease; }
.about-media-brand {
    position: absolute; inset: 0; display: grid; place-items: center; padding: 36px;
    background: transparent; opacity: 0; pointer-events: none;
    transition: opacity .38s ease;
}
.about-media-brand img {
    width: min(48%, 260px); height: auto; object-fit: contain; opacity: 0;
    transform: translateY(14px) scale(.92); transition: opacity .32s ease .06s, transform .5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
    .about-media:hover > .about-media-image { filter: blur(4px) brightness(.68); transform: scale(1.06); }
    .about-media:hover .about-media-brand { opacity: 1; }
    .about-media:hover .about-media-brand img { opacity: 1; transform: translateY(0) scale(1); }
}
.home-page .products-section { min-height: 0; padding: 44px 0 72px; background: #fff; }
.product-heading { max-width: 840px; margin: 0 0 38px; text-align: left; }
.product-heading h2 { margin: 0 0 14px; font-size: 34px; line-height: 1.25; }
.product-heading p { margin: 0; color: #5f6873; font-size: 13px; line-height: 1.85; }
.product-grid {
    display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 24px;
}
.product-item {
    min-width: 0; display: grid; grid-template-rows: auto minmax(48px, auto);
    overflow: hidden; color: var(--ink); background: transparent; font-size: 13px; font-weight: 600;
}
.product-item-media { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.product-item img { width: 100%; height: 100%; padding: 14px; object-fit: contain; transition: transform .35s var(--ease); }
.product-item span {
    position: relative; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 14px 24px 8px; line-height: 1.4; text-align: center;
}
.product-item span::after { content: "↗"; position: absolute; right: 0; color: #89929c; font-size: 14px; font-weight: 400; transition: color .2s ease, transform .2s ease; }
.product-item:hover img, .product-item:focus img { transform: translateY(-14px) scale(1.12); }
.product-item:hover span, .product-item:focus span { color: var(--brand-red); }
.product-item:hover span::after, .product-item:focus span::after { color: currentColor; transform: translate(2px, -2px); }
.product-item:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 3px; }
.product-item:active { transform: translateY(1px); }

/* Applications */
.applications-section { min-height: 767px; padding: 52px 0 100px; background: #f7f7f7; }
.applications-section .section-heading { margin-bottom: 34px; }
/* Matching explicit track lists let the browser interpolate widths on hover. */
.application-grid { height: 500px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: 8px; transition: grid-template-columns .7s var(--ease); }
.application-item { position: relative; min-width: 0; overflow: hidden; background: #111; }
.application-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s ease; }
.application-item::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.82)); pointer-events: none; }
.application-copy { position: absolute; left: 20px; right: 20px; bottom: 24px; z-index: 1; color: #fff; }
.application-copy h3 { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.5; }
.application-description { max-width: 420px; margin: 12px 0 0; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.8; }
.application-item:focus-visible { outline: 3px solid var(--brand-blue); outline-offset: -3px; }
.application-item:hover img, .application-item:focus img { transform: scale(1.035); }

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
    .application-description { max-height: 0; margin-top: 0; opacity: 0; visibility: hidden; overflow: hidden; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, max-height .4s ease, margin .4s ease, visibility .3s; }
    .application-item:hover .application-description, .application-item:focus-visible .application-description { max-height: 140px; margin-top: 12px; opacity: 1; visibility: visible; transform: none; transition-delay: .12s; }
    .application-grid:has(.application-item:nth-child(1):hover), .application-grid:not(:has(.application-item:hover)):has(.application-item:nth-child(1):focus-visible) { grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }
    .application-grid:has(.application-item:nth-child(2):hover), .application-grid:not(:has(.application-item:hover)):has(.application-item:nth-child(2):focus-visible) { grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr) minmax(0, 1fr); }
    .application-grid:has(.application-item:nth-child(3):hover), .application-grid:not(:has(.application-item:hover)):has(.application-item:nth-child(3):focus-visible) { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr); }
    .application-grid:has(.application-item:nth-child(4):hover), .application-grid:not(:has(.application-item:hover)):has(.application-item:nth-child(4):focus-visible) { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2.2fr); }
}

/* Global map */
.global-section { min-height: calc(100svh - var(--header-height)); display: flex; padding: 44px 0 28px; color: var(--ink); background: #fafbfb; }
.global-section > .shell-wide { width: min(calc(100% - 48px), 1200px, calc((100svh - var(--header-height) - 168px) * 1.84)); display: flex; flex-direction: column; }
.global-heading { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-bottom: 27px; border-bottom: 1px solid #dce1e3; }
.global-heading h2 { margin: 0 0 12px; font-size: 30px; font-weight: 600; line-height: 1.3; }
.global-heading p { margin: 0; color: #646d72; font-size: 14px; }
.global-heading .more-link { flex-shrink: 0; color: var(--brand-blue); font-size: 13px; }
.global-grid { flex: 1; min-height: 0; display: flex; align-items: center; padding-top: 14px; }
.global-map { width: 100%; min-width: 0; margin: 0; }
.map-visual { position: relative; aspect-ratio: 1702 / 924; overflow: visible; }
.map-visual > img { width: 100%; height: 100%; display: block; object-fit: contain; opacity: .78; }
.map-point { position: absolute; z-index: 2; width: 30px; height: 30px; border-radius: 50%; transform: translate(-50%, -50%); cursor: help; }
.map-point::before, .map-point::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(210, 47, 47, .72); border-radius: 50%; animation: market-point-pulse 2.4s ease-out infinite; pointer-events: none; }
.map-point::after { animation-delay: 1.2s; }
.map-point i { position: absolute; inset: 11px; z-index: 1; display: block; border: 0; border-radius: 50%; background: #d22f2f; box-shadow: 0 0 0 2px rgba(255,255,255,.92); transition: transform .2s ease; }
.map-point:focus-visible { outline: 2px solid #d22f2f; outline-offset: 2px; }
.map-point:hover, .map-point:focus { z-index: 4; }
.map-point b {
    position: absolute; z-index: 3; padding: 6px 8px; border: 1px solid #dce1e3; border-radius: 0;
    color: var(--ink); background: #fff;
    font-size: 12px; font-weight: 400; line-height: 1.3; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: opacity .16s ease, visibility .16s ease;
}
.map-point:hover i, .map-point:focus i { transform: scale(1.25); }
.map-point:hover b, .map-point:focus b, .map-hub b { opacity: 1; visibility: visible; }
.map-hub i { inset: 9px; background: #b82020; }
.map-hub b { border: 0; background: #fafbfb; font-weight: 600; }
.label-top-left b { right: 18px; bottom: 15px; }
.label-top-right b { left: 18px; bottom: 15px; }
.label-bottom-left b { right: 18px; top: 15px; }
.label-bottom-right b { left: 18px; top: 15px; }
.label-left b { right: 18px; top: 50%; transform: translateY(-50%); }
.point-ny { left: 28.20%; top: 38.20%; }
.point-br { left: 31.10%; top: 67.30%; }
.point-gr { left: 52.20%; top: 44.10%; }
.point-tr { left: 55.00%; top: 44.20%; }
.point-az { left: 58.90%; top: 43.60%; }
.point-ae { left: 59.40%; top: 51.80%; }
.point-cn { left: 78.10%; top: 44.30%; }
.point-kr { left: 80.30%; top: 42.80%; }
.point-jp { left: 85.00%; top: 43.20%; }
.point-vn { left: 75.00%; top: 54.20%; }
.point-my { left: 74.30%; top: 61.80%; }
.point-sg { left: 74.30%; top: 63.50%; }
.point-id { left: 77.20%; top: 67.10%; }
.point-au { left: 84.20%; top: 81.60%; }
.map-caption { display: flex; justify-content: space-between; gap: 16px; margin-top: 8px; color: #737c81; font-size: 12px; }
.map-caption > span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.map-caption i { width: 6px; height: 6px; border-radius: 50%; background: #d22f2f; }

@keyframes market-point-pulse {
    0% { opacity: .9; transform: scale(.45); }
    72%, 100% { opacity: 0; transform: scale(3.1); }
}

/* Clients */
.clients-section { min-height: 491px; padding: 76px 0 86px; background: #fff; }
.client-inner { display: block; }
.client-heading {
    max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: end; gap: 72px; margin: 0 0 34px; text-align: left;
}
.client-heading h2 { margin-bottom: 0; }
.clients-section .client-heading .eyebrow { color: var(--brand-blue); }
.clients-section .client-heading h2 { color: var(--ink); }
.client-heading > p:last-child {
    margin: 0 0 3px; padding-left: 22px; border-left: 2px solid #39a9dd;
    color: #5f6b78; font-size: 12px; line-height: 1.85;
}
.client-logos { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; }
.client-logos img { width: 100%; height: 68px; padding: 9px; object-fit: contain; background: #fff; }
.certification-showcase {
    position: relative; display: grid; grid-template-columns: minmax(480px, 3fr) minmax(0, 8fr);
    overflow: hidden; color: var(--brand-deep); background: #fff;
    border: 1px solid #d8e0e7; border-top: 3px solid #36a9df; box-shadow: 0 16px 36px rgba(21, 44, 72, .09);
}
.certification-showcase-profile { max-width: 1200px; margin: 0 auto 42px; text-align: left; }
.certification-group { display: block; min-width: 0; padding: 0; }
.certification-group-iso { color: var(--brand-deep); background: #fff; }
.certification-group-class { background: #fff; }
.certification-group-title {
    min-height: 100%; display: none; align-items: flex-start; justify-content: center;
    flex-direction: column; gap: 5px; margin: 0; padding: 22px 30px;
}
.certification-group-title strong { color: var(--brand-deep); font-size: 15px; font-weight: 700; }
.certification-group-title small { color: #8995a3; font-size: 8px; font-weight: 700; }
.certification-group-iso .certification-group-title { background: transparent; }
.iso-certification-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.iso-certification-item {
    min-height: 118px; display: flex; align-items: center; gap: 12px; padding: 18px 16px;
    border-left: 1px solid #e5eaf0;
}
.iso-certification-item > img {
    width: 36px; height: 36px; flex: 0 0 36px; filter: none; opacity: .9;
}
.iso-certification-item > span, .iso-certification-item strong, .iso-certification-item small { display: block; }
.iso-certification-item strong { color: var(--brand-deep); font-size: 15px; line-height: 1.2; }
.iso-certification-item small { margin-top: 5px; color: #6e7b88; font-size: 9px; line-height: 1.4; }
.classification-logo-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); }
.classification-logo-item {
    min-width: 0; min-height: 118px; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px; padding: 16px 10px 13px; border-left: 1px solid #e5eaf0; background: #fff;
}
.classification-logo-mark { width: 100%; height: 50px; display: flex; align-items: center; justify-content: center; padding: 2px 7px; }
.classification-logo-mark img { max-width: 100%; max-height: 46px; object-fit: contain; opacity: .92; transition: opacity .22s ease, transform .26s var(--ease); }
.classification-logo-mark-dark { width: 66px; margin: 0 auto; padding: 7px 9px; background: transparent; }
.classification-logo-mark-dark img { opacity: 1; }
.classification-logo-item > small { color: #6e7b88; font-size: 8px; font-weight: 700; line-height: 1; }

/* Homepage standards: keep the profile showcase unchanged. */
.clients-section.certifications-section { min-height: 0; padding: 64px 0 32px; background: #fff; }
.certifications-section .client-heading { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 0 0 32px; text-align: left; }
.certifications-section .client-heading h2 { margin: 0; font-size: 30px; font-weight: 600; line-height: 1.3; }
.standards-carousel { border-top: 1px solid #dce1e3; }
.standards-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.standards-carousel.is-ready .standards-viewport { overflow: hidden; scroll-snap-type: none; }
.standards-viewport:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 4px; }
.standards-track { display: flex; }
.standards-carousel.is-ready .standards-track { touch-action: pan-y pinch-zoom; }
.standard-slide { flex: 0 0 20%; min-width: 0; height: 222px; padding: 32px 20px; scroll-snap-align: start; }
.standard-art { height: 112px; display: flex; align-items: center; justify-content: center; }
.standard-art img { width: auto; height: auto; max-width: min(100%, 164px); max-height: 88px; object-fit: contain; user-select: none; }
.standard-slide-iso .standard-art img { width: 100px; height: 100px; max-height: 100px; }
.standard-art-rina { display: flex; justify-content: center; align-items: center; width: 132px; max-width: 100%; height: 88px; padding: 8px 16px; background: #244b5b; }
.standard-art-rina img { max-width: 100%; max-height: 72px; }
.standard-name { display: block; margin-top: 20px; color: #263840; font-family: Arial, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; text-align: center; }

@media (max-width: 1180px) {
    .standard-slide { flex-basis: 25%; }
}

@media (max-width: 768px) {
    .clients-section.certifications-section { padding: 40px 0 20px; }
    .certifications-section .client-heading { align-items: flex-start; gap: 20px; margin-bottom: 24px; }
    .certifications-section .client-heading h2 { max-width: 240px; font-size: 24px; }
    .standard-slide { flex-basis: 33.333333%; height: 194px; padding: 28px 14px; }
    .standard-art { height: 96px; }
    .standard-art img { max-height: 72px; max-width: min(100%, 140px); }
    .standard-slide-iso .standard-art img { width: 88px; height: 88px; max-height: 88px; }
    .standard-art-rina { width: 112px; height: 72px; padding: 8px 12px; }
    .standard-art-rina img { max-width: 100%; max-height: 56px; }
    .standard-name { margin-top: 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .standard-slide { flex-basis: 50%; }
}

/* Cooperative clients */
.partners-section { scroll-margin-top: 90px; padding: 68px 0 76px; background: #fff; }
.partners-heading { margin-bottom: 30px; }
.partners-heading h2 { font-size: 34px; }
.partners-carousel { --partners-visible: 3; background: #fff; }
.partners-viewport { overflow-x: auto; scrollbar-width: none; }
.partners-viewport::-webkit-scrollbar { display: none; }
.partners-viewport:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.partners-carousel.is-ready .partners-viewport { overflow: hidden; }
.partner-grid { display: flex; touch-action: pan-y pinch-zoom; }
.partners-carousel[data-mode="static"] .partner-grid { justify-content: center; }
.partner-item { flex: 0 0 calc(100% / var(--partners-visible)); min-width: 0; height: 156px; display: flex; align-items: center; justify-content: center; padding: 28px 32px; background: #fff; }
.partner-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.partner-logo { display: block; width: 100%; max-width: 320px; height: 100px; object-fit: contain; }
@media (max-width: 1100px) { .partners-carousel { --partners-visible: 2; } }


/* News and closing banner */
.news-section {
    min-height: 0; padding: 80px 0 92px; background-color: #f4f7f7;
    background-image: linear-gradient(rgba(244, 247, 247, .72), rgba(244, 247, 247, .72)), url('../assets/images/highs/news-global-bg-v1.png');
    background-position: center; background-repeat: no-repeat; background-size: cover;
}
.news-section .home-heading { margin-bottom: 32px; }
.news-section .home-heading h2 { font-size: 32px; }
.news-heading-description { margin: 11px 0 0; color: #64717c; font-size: 14px; line-height: 1.75; }
.news-more-link {
    min-width: 126px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
    padding: 0 20px; border: 1px solid var(--brand-blue); border-radius: 0; color: #fff; background: var(--brand-blue);
    font-size: 13px; line-height: 1; white-space: nowrap; transition: background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}
.news-more-link > span { font-size: 16px; line-height: 1; transition: transform .2s var(--ease); }
.news-more-link:hover, .news-more-link:focus-visible { border-color: #006ba9; background: #006ba9; }
.news-more-link:hover > span, .news-more-link:focus-visible > span { transform: translateX(3px); }
.news-more-link:active { transform: translateY(1px) scale(.98); }
.news-more-link:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.news-card {
    min-width: 0; min-height: 440px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dfe7e9;
    border-radius: 0; color: #1d2d3b; background: #fff; transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}
.news-card-copy { min-height: 196px; display: flex; flex: 1 0 auto; flex-direction: column; align-items: flex-start; padding: 25px 24px 20px; }
.news-card time { display: block; color: #7b8790; font-size: 13px; line-height: 1.45; }
.news-card h3 { margin: 20px 0 24px; color: #1d2d3b; font-size: 19px; font-weight: 500; line-height: 1.55; }
.news-card-category {
    display: inline-flex; align-items: center; min-height: 30px; margin-top: auto; padding: 0 14px; border: 1px solid #79badb;
    border-radius: 0; color: var(--brand-blue); font-size: 12px; line-height: 1;
}
.news-card-media { display: block; width: calc(100% - 40px); height: 212px; margin: 0 20px 20px; overflow: hidden; border-radius: 0; background: #eaf0f2; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.news-card:hover, .news-card:focus-visible { border-color: #b4d3e2; box-shadow: 0 12px 26px rgba(28, 65, 87, .08); transform: translateY(-3px); }
.news-card:hover img, .news-card:focus-visible img { transform: scale(1.03); }
.news-card:hover h3, .news-card:focus-visible h3 { color: var(--brand-blue); }
.news-card:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }

/* Inner pages */
.inner-hero { position: relative; height: 600px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--brand-deep); }
.inner-hero > img, .inner-hero > picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero > picture img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,20,27,.62), transparent 32%), linear-gradient(90deg, rgba(12,20,27,.65), rgba(12,20,27,.18) 40%, transparent 72%); }
.inner-hero-family-1 > img { object-position: 62% center; }
.inner-hero-family-5 img { object-position: 72% center; }
.inner-hero-family-8 > img { object-position: 68% center; }
.inner-hero-family-2 > img { object-position: 66% 58%; }
.inner-hero-family-11 > img { object-position: 65% 58%; }
.inner-hero-content { position: relative; z-index: 1; padding-bottom: 72px; }
.inner-hero-content p { margin-bottom: 8px; color: rgba(255,255,255,.75); font-size: 11px; }
.inner-hero-content h1 { margin: 0; font-size: 42px; line-height: 1.2; }
.inner-tabs { min-height: 88px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.inner-tabs a { min-width: 138px; padding: 8px 18px; border: 1px solid var(--line); border-radius: 0; color: #666d76; text-align: center; }
.inner-tabs a:hover { color: var(--brand-red); border-color: var(--brand-red); }
.page-layout { min-height: 620px; display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 70px; padding-top: 72px; padding-bottom: 110px; }
.page-layout-full { grid-template-columns: minmax(0, 1fr); gap: 0; }
.application-list-layout .page-content { min-width: 0; }
.application-list-layout .list-heading { margin-bottom: 30px; }
.application-list-layout .case-catalog-grid-8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.application-list-page { padding-bottom: 96px; }
.application-list-page:has(.application-systems) { padding-bottom: 0; }
.application-list-page:has(.application-systems) .application-list-section { min-height: 0; }
.application-list-page:has(.application-systems) .application-systems { margin-top: 0; }
.application-list-section .section-heading { margin-bottom: 34px; }
.application-list-section .section-heading h1 { margin: 0; color: var(--ink); font-size: 32px; font-weight: 600; line-height: 1.35; }
.application-list-grid { height: auto; grid-auto-rows: 500px; }
.application-list-support { min-width: 0; }
.application-list-support .pagination { margin-top: 42px; }
.about-layout { padding-top: 40px; }
.inner-tabs-11, .side-nav-11 { display: none; }
.page-layout-11 { width: min(calc(100% - 80px), 1100px); grid-template-columns: minmax(0, 1fr); }
.side-nav { align-self: start; position: sticky; top: 112px; }
.side-nav h2 { margin: 0 0 12px; padding: 0 0 14px; border-bottom: 2px solid var(--brand-red); font-size: 23px; }
.side-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); color: #606873; font-size: 13px; transition: padding .2s, color .2s; }
.side-nav a:hover, .side-nav a:focus { padding-left: 10px; color: var(--brand-red); }
.page-content { min-width: 0; }
.page-content > h1, .list-heading h1 { margin: 0 0 30px; font-size: 34px; line-height: 1.35; }
.list-heading > p { margin: -16px 0 32px; color: var(--muted); }
.rich-content { color: #4d5662; font-size: 15px; line-height: 2.05; }
.rich-content img { height: auto; margin: 28px auto; }
.attachment-download {
    min-width: 112px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    margin-top: 22px; padding: 0 22px; border-radius: 0; color: #fff; background: var(--brand-deep);
    font-size: 12px; line-height: 1; white-space: nowrap;
}
.attachment-download:hover, .attachment-download:focus { background: #263a5a; }
.rich-content a { color: var(--brand-blue); text-decoration: underline; }
.rich-content h2, .rich-content h3 { color: var(--ink); line-height: 1.45; }
.rich-content table { width: 100%; border-collapse: collapse; }
.rich-content th, .rich-content td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }
.content-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; }
.catalog-page { background: #fafafa; }
.product-side-nav { padding: 0; border: 0; background: transparent; }
.product-side-nav h2 { margin-bottom: 12px; padding: 0 10px 18px; border-bottom: 1px solid #dfe2e4; font-size: 20px; font-weight: 600; }
.product-side-list { margin: 0; }
.product-side-nav .product-side-item { margin: 2px 0; border: 0; }
.product-side-item > a { position: relative; min-height: 46px; padding: 12px 30px 12px 10px; border: 0; color: #535b62; font-size: 14px; line-height: 22px; transition: background-color .18s ease, color .18s ease; }
.product-side-item > a::after { content: ""; position: absolute; top: 50%; right: 12px; width: 5px; height: 5px; border-top: 1px solid #969da2; border-right: 1px solid #969da2; transform: translateY(-50%) rotate(45deg); }
.product-side-item > a:hover, .product-side-item > a:focus { padding-left: 10px; color: #22282d; background: #f0f1f2; }
.product-side-item > a:focus-visible { outline: 2px solid #626a70; outline-offset: 2px; }
.product-side-item.is-active > a, .product-side-item.is-parent-active > a { color: #22282d; background: #e9ecee; font-weight: 600; }
.product-side-children { display: none; }
.product-family-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: -10px 0 28px; }
.product-family-nav:not(:has(a)) { display: none; }
.product-family-nav a { padding: 8px 14px; border: 1px solid var(--line); color: #59636e; font-size: 12px; }
.product-family-nav a:hover, .product-family-nav a:focus { color: var(--brand-blue); border-color: var(--brand-blue); }
.product-catalog-grid, .case-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card { border: 1px solid #e2e6ea; border-radius: 0; background: #fff; box-shadow: none; overflow: hidden; }
.product-card .list-card-media { height: 270px; }
.product-card .list-card-body { padding: 16px 12px; border-top: 1px solid var(--line); text-align: center; }
.product-card h2 { margin: 0; color: #727880; font-size: 17px; font-weight: 400; }
.list-card { display: block; border-bottom: 1px solid var(--line); }
.list-card-media { height: 260px; overflow: hidden; background: #f5f6f7; }
.list-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-list-media { display: grid; place-items: center; }
.product-list-media picture { display: block; width: 100%; height: 100%; min-height: 0; }
.product-list-media picture:has(source) { background: #fff; }
.product-list-media picture:has(source) img { object-fit: contain; }
.product-list-media img { width: 100%; height: 100%; object-fit: cover; }
.product-root-grid .product-list-media { background: #fff; }
.product-root-grid .product-list-media img { padding: 14px; object-fit: contain; }
.product-root-grid .list-card:hover img { transform: none; }
.product-root-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-root-grid .product-card .list-card-media { height: auto; aspect-ratio: 1 / 1; }
.product-root-grid .list-card { opacity: 1 !important; visibility: visible !important; transform: none !important; }
.list-card-body { padding: 19px 2px 24px; }
.list-card time { color: #8b929a; font-size: 11px; }
.list-card h2 { margin: 7px 0 8px; font-size: 19px; line-height: 1.5; }
.list-card p { margin: 0; color: var(--muted); font-size: 13px; }
.list-card:hover img { transform: scale(1.025); }
.list-card:hover h2 { color: var(--brand-red); }
.application-systems {
    position: relative; width: 100%; max-width: 100%; margin-top: 88px; overflow: clip; border-top: 1px solid rgba(83, 118, 134, .2);
}
.application-systems-bg {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; margin: 0; pointer-events: none;
    background-color: #d8e8ed;
    background-image: linear-gradient(90deg, rgba(239, 247, 249, .98) 0%, rgba(239, 247, 249, .93) 34%, rgba(231, 242, 245, .78) 68%, rgba(220, 236, 241, .58) 100%), url('../assets/images/highs/application-systems-bg-v2.jpg');
    background-position: center 48%;
    background-repeat: no-repeat;
    background-size: cover;
}
.application-systems-scroll {
    position: relative; z-index: 1; width: min(calc(100% - 80px), 1280px); min-height: 660px; display: flex; align-items: center; gap: clamp(48px, 6vw, 88px);
    margin-inline: auto; padding: 84px 0; overflow: visible;
}
.application-systems-heading { flex: 0 0 300px; min-width: 0; }
.application-systems-heading h2 { max-width: 9em; margin: 0; color: #0e2b3d; font-size: clamp(34px, 2.75vw, 40px); font-weight: 650; line-height: 1.22; letter-spacing: 0; }
.application-systems-catalog { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; padding: 11px 0 8px; border-bottom: 1px solid #2b91c5; color: var(--brand-blue); font-size: 13px; font-weight: 700; }
.application-systems svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.application-system-grid { flex: 1 1 auto; width: auto; max-width: none; min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: 0; border-top: 1px solid rgba(77, 111, 126, .42); }
.application-system-grid a { position: relative; min-width: 0; min-height: 154px; display: grid; grid-template-columns: 54px minmax(0, 1fr) 22px; align-items: center; gap: 18px; padding: 26px 28px 26px 0; border-bottom: 1px solid rgba(77, 111, 126, .42); transition: background-color .25s ease, color .2s ease; }
.application-system-grid a:nth-child(even) { padding-right: 0; padding-left: 28px; border-left: 1px solid rgba(77, 111, 126, .42); }
.application-system-grid a:hover, .application-system-grid a:focus-visible { background: rgba(255,255,255,.5); }
.application-system-grid .system-icon { width: 54px; height: 54px; padding: 12px; border: 0; color: var(--brand-blue); background: transparent; transform-box: fill-box; transform-origin: center; will-change: transform; }
.application-system-grid a:nth-child(even) .system-icon { color: #287c79; }
.application-system-grid .system-copy { min-width: 0; }
.application-system-grid .system-number { display: block; margin-bottom: 9px; color: #476370; font-family: Consolas, monospace; font-size: 11px; font-weight: 600; line-height: 1; }
.application-system-grid strong { display: block; color: #0a293b; font-size: 20px; font-weight: 700; line-height: 1.4; transition: color .18s ease; }
.application-system-grid .system-description { display: block; margin-top: 7px; color: #3d5662; font-size: 13px; line-height: 1.7; }
.application-system-grid .system-arrow { width: 20px; height: 20px; color: #456674; transition: color .18s ease, transform .22s var(--ease); }
.application-system-grid a:hover strong, .application-system-grid a:focus-visible strong { color: var(--brand-blue); }
.application-system-grid a:hover .system-arrow, .application-system-grid a:focus-visible .system-arrow { color: var(--brand-blue); transform: translateX(3px); }
.application-system-grid a:focus-visible, .application-systems-catalog:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
@keyframes system-icon-wind {
    0%, 100% { transform: translateX(0); }
    35% { transform: translateX(7px); }
    68% { transform: translateX(-3px); }
}
@keyframes system-icon-waves {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes system-icon-snowflake {
    0% { transform: rotate(0) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes system-icon-flame {
    0%, 100% { transform: translateY(0) rotate(0) scale(1); }
    30% { transform: translateY(-4px) rotate(-6deg) scale(1.06, 1.14); }
    68% { transform: translateY(-2px) rotate(5deg) scale(.96, 1.09); }
}
@keyframes system-icon-droplets {
    0%, 100% { transform: translateY(0) scale(1); }
    42% { transform: translateY(-7px) scale(1.08); }
    70% { transform: translateY(2px) scale(.96, 1.04); }
}
@keyframes system-icon-wrench {
    0%, 100% { transform: rotate(0); }
    35% { transform: rotate(-18deg); }
    70% { transform: rotate(11deg); }
}
.application-system-grid a:hover .system-icon--wind,
.application-system-grid a:focus-visible .system-icon--wind { animation: system-icon-wind .9s ease-in-out infinite; }
.application-system-grid a:hover .system-icon--waves,
.application-system-grid a:focus-visible .system-icon--waves { animation: system-icon-waves .9s ease-in-out infinite; }
.application-system-grid a:hover .system-icon--snowflake,
.application-system-grid a:focus-visible .system-icon--snowflake { animation: system-icon-snowflake 1.8s linear infinite; }
.application-system-grid a:hover .system-icon--flame,
.application-system-grid a:focus-visible .system-icon--flame { animation: system-icon-flame .72s ease-in-out infinite; }
.application-system-grid a:hover .system-icon--droplets,
.application-system-grid a:focus-visible .system-icon--droplets { animation: system-icon-droplets .9s cubic-bezier(.34, 1.56, .64, 1) infinite; }
.application-system-grid a:hover .system-icon--wrench,
.application-system-grid a:focus-visible .system-icon--wrench { animation: system-icon-wrench .82s ease-in-out infinite; }
.article-header { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.article-header h1 { max-width: 920px; margin: 0 0 15px; font-size: 34px; line-height: 1.45; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; color: #89919a; font-size: 12px; }
.article-cover { width: 100%; max-height: 620px; margin-bottom: 32px; object-fit: cover; }
.certificate-cover { width: min(100%, 560px); height: auto; max-height: none; margin-right: auto; margin-left: auto; object-fit: contain; background: #f5f6f7; }
.company-cover { height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; object-position: center; }
.product-detail-intro {
    display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); gap: 48px;
    align-items: start; margin-bottom: 54px;
}
.product-detail-page { grid-template-columns: minmax(0, 1fr); }
.product-detail-cover { margin: 0; background: transparent; overflow: hidden; }
.product-detail-cover img { width: 100%; height: auto; aspect-ratio: 4 / 3; display: block; object-fit: contain; }
.product-detail-summary { min-width: 0; }
.product-detail-summary .article-header { margin-bottom: 28px; }
.product-detail-description { margin: 0 0 28px; color: #52606d; font-size: 14px; line-height: 1.9; overflow-wrap: anywhere; }
.product-detail-body { max-width: 940px; }
.pager { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.pagination { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 42px; }
.pagination a, .pagination span { min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.pagination .page-num-current, .pagination a:hover { color: #fff; background: var(--brand-red); border-color: var(--brand-red); }
.news-catalog-list { display: flex; flex-direction: column; }
.news-catalog-row { min-height: 170px; display: grid; grid-template-columns: 220px 74px 1fr; gap: 25px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.news-catalog-row > img { width: 220px; height: 130px; object-fit: cover; }
.news-catalog-row time { display: flex; flex-direction: column; color: var(--brand-red); text-align: center; }
.news-catalog-row time strong { font-size: 34px; font-weight: 400; line-height: 1; }
.news-catalog-row time span { margin-top: 8px; color: #9aa0a7; font-size: 11px; }
.news-catalog-row h2 { margin: 0 0 8px; font-size: 19px; line-height: 1.5; }
.news-catalog-row p { margin: 0; color: var(--muted); font-size: 13px; }
.news-catalog-row:hover h2 { color: var(--brand-red); }
.tag-row { grid-template-columns: 74px 1fr; }
/* Company profile long page */
.profile-metrics { min-height: 210px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.profile-metrics > div { display: flex; flex-direction: column; }
.profile-metrics strong { color: var(--brand-red); font-size: 42px; font-weight: 400; line-height: 1; }
.profile-metrics sup { font-size: 12px; }
.profile-metrics span { margin-top: 12px; color: #727a83; font-size: 11px; }
.profile-band { padding: 70px 0 84px; }
.profile-band > header { margin-bottom: 50px; text-align: center; }
.profile-band > header h2 { margin: 0; font-size: 30px; line-height: 1.3; }
.profile-culture, .profile-honors { background: #f7f7f7; }
.profile-culture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.profile-culture article { min-height: 150px; padding: 42px 60px; color: #fff; background: linear-gradient(120deg, #182778, #087fc7); }
.profile-culture h3 { margin: 0 0 7px; font-size: 20px; }
.profile-culture p { margin: 0; color: rgba(255,255,255,.9); font-size: 12px; }
.profile-history { min-height: 470px; background: #f3f7ff; }
.profile-timeline { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 70px; }
.profile-timeline::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px; background: #cdd4dc; }
.profile-timeline span { position: relative; padding-top: 24px; text-align: center; }
.profile-timeline span::before { content: ""; position: absolute; top: 2px; left: 50%; width: 11px; height: 11px; border-radius: 0; background: #c3c8ce; transform: translateX(-50%); }
.profile-timeline .is-current::before { background: var(--brand-blue); }
.profile-history-copy { margin-top: 55px; }
.profile-honors { min-height: 510px; text-align: center; }
.honor-grid { display: flex; gap: 30px; justify-content: center; margin-bottom: 44px; }
.honor-grid figure { width: 280px; margin: 0; padding: 20px; background: #fff; }
.honor-grid img { width: 100%; height: 170px; object-fit: contain; }
.honor-grid figcaption { margin-top: 14px; color: #59616b; }

/* About overview */
.about-main-1 { overflow: hidden; }
.about-main-1 .inner-tabs { min-height: 76px; justify-content: flex-start; gap: 0; border-bottom: 1px solid #d9e0e6; }
.about-main-1 .inner-tabs a { min-width: 148px; padding: 25px 18px 23px; border: 0; border-right: 1px solid #e2e7eb; color: #4e5965; }
.about-main-1 .inner-tabs a:first-child { border-left: 1px solid #e2e7eb; }
.about-main-1 .inner-tabs a:hover, .about-main-1 .inner-tabs a:focus { color: #fff; border-color: var(--brand-blue); background: var(--brand-blue); }
.about-overview { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); gap: 76px; align-items: center; padding-top: 88px; padding-bottom: 94px; }
.about-overview-copy h2, .about-section-heading h2, .about-certification h2 { margin: 7px 0 0; color: #17283b; font-size: 38px; line-height: 1.35; }
.about-introduction { margin-top: 27px; color: #586572; font-size: 15px; line-height: 2; }
.about-introduction p:last-child { margin-bottom: 0; }
.about-standard-list { margin: 34px 0 0; border-top: 3px solid #26394d; }
.about-standard-list > div { display: grid; grid-template-columns: 108px minmax(0, 1fr); align-items: center; min-height: 54px; border-bottom: 1px solid #dbe1e6; }
.about-standard-list dt { color: #7b858e; font-size: 12px; }
.about-standard-list dd { margin: 0; color: #26394d; font-weight: 600; }
.about-overview-media { position: relative; margin: 0; }
.about-overview-media::before { content: ""; position: absolute; top: -14px; left: -14px; width: 120px; height: 4px; background: var(--brand-blue); }
.about-overview-media img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; }
.about-metrics { border-top: 1px solid #dbe2e8; border-bottom: 1px solid #dbe2e8; background: #f1f4f6; }
.about-metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-metrics-grid > div { min-height: 178px; display: flex; flex-direction: column; justify-content: center; padding: 26px 40px; border-left: 1px solid #d5dde4; }
.about-metrics-grid > div:last-child { border-right: 1px solid #d5dde4; }
.about-metrics strong { color: #18304a; font-size: 43px; font-weight: 600; line-height: 1; }
.about-metrics sup { margin-left: 3px; font-size: 13px; }
.about-metrics span { margin-top: 14px; color: #6f7a85; font-size: 12px; }
.about-capabilities { padding: 96px 0 104px; background: #fff; }
.about-capabilities-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 100px; }
.about-section-heading { max-width: 520px; }
.about-section-heading > p:last-child { margin: 22px 0 0; color: #65717d; line-height: 1.9; }
.about-capability-list { margin: 0; border-top: 4px solid #26394d; }
.about-capability-list li { min-height: 130px; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 24px; align-items: center; padding: 25px 8px; border-bottom: 1px solid #d9e0e6; }
.about-capability-list li > span { align-self: start; padding-top: 4px; color: var(--brand-blue); font-size: 12px; font-weight: 700; }
.about-capability-list h3 { margin: 0 0 7px; color: #1d2f43; font-size: 20px; }
.about-capability-list p { margin: 0; color: #687480; line-height: 1.85; }
.about-factory { padding-bottom: 106px; }
.about-factory .about-section-heading { margin-bottom: 38px; }
.about-factory-grid { height: 650px; display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(320px, .58fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; }
.about-factory-grid figure { margin: 0; overflow: hidden; background: #edf1f4; }
.about-factory-main { grid-row: 1 / span 2; }
.about-factory-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.about-factory-grid figure:hover img { transform: scale(1.018); }
.about-history-band { padding: 94px 0 100px; border-top: 1px solid #d8e0e6; border-bottom: 1px solid #d8e0e6; background: #f1f4f6; }
.about-history-grid { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 80px; align-items: end; }
.about-history-line { position: relative; display: grid; grid-template-columns: repeat(7, minmax(74px, 1fr)); padding-top: 30px; }
.about-history-line::before { content: ""; position: absolute; top: 10px; left: 0; right: 0; height: 2px; background: #aebbc6; }
.about-history-node { position: relative; display: flex; flex-direction: column; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; cursor: pointer; }
.about-history-node::before { content: ""; position: absolute; top: -26px; left: 0; width: 10px; height: 10px; background: #6c7d8d; box-shadow: 0 0 0 5px #f1f4f6; transition: background .2s ease, transform .2s ease; }
.about-history-node:hover::before, .about-history-node:focus-visible::before, .about-history-node.is-active::before { background: var(--brand-blue); transform: scale(1.25); }
.about-history-node:hover strong, .about-history-node:focus-visible strong, .about-history-node.is-active strong { color: var(--brand-blue); }
.about-history-node:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 8px; }
.about-history-line strong { color: #1d3044; font-size: 21px; }
.about-history-line small { margin-top: 7px; color: #75808a; font-size: 10px; }
.about-values { padding-top: 96px; padding-bottom: 105px; }
.about-values .about-section-heading { margin-bottom: 37px; }
.about-values-list { border-top: 4px solid #26394d; }
.about-values-list article { min-height: 118px; display: grid; grid-template-columns: 120px 260px minmax(0, 1fr); gap: 36px; align-items: center; border-bottom: 1px solid #d9e0e6; }
.about-values-list article > span { color: var(--brand-blue); font-size: 12px; font-weight: 700; }
.about-values-list h3 { margin: 0; color: #1d3044; font-size: 19px; }
.about-values-list p { margin: 0; color: #66727e; }
.about-certification { padding: 74px 0 82px; border-top: 1px solid #d7e0e7; background: #f1f4f6; }
.about-certification-inner { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr) auto; gap: 58px; align-items: center; }
.about-certification-inner > div:first-child > p:last-child { max-width: 430px; margin: 16px 0 0; color: #687580; }
.about-certification-tags { display: grid; grid-template-columns: repeat(4, minmax(84px, 1fr)); border-top: 1px solid #c8d2db; border-left: 1px solid #c8d2db; }
.about-certification-tags span { min-height: 56px; display: grid; place-items: center; border-right: 1px solid #c8d2db; border-bottom: 1px solid #c8d2db; color: #23384f; font-size: 12px; font-weight: 700; }

/* About page reference layout */
.about-main-1 .about-overview { grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); gap: 64px; align-items: start; padding-top: 76px; padding-bottom: 34px; }
.about-main-1 .about-overview-copy h2 { margin: 0 0 8px; color: var(--brand-blue); font-size: 15px; font-weight: 600; }
.about-company-name { margin: 0 0 22px; color: #17283b; font-size: 30px; line-height: 1.35; }
.about-main-1 .about-introduction { margin-top: 0; line-height: 1.95; }
.about-standards { margin: 21px 0 0; color: var(--brand-blue); font-size: 13px; }
.about-standards strong { color: #203248; }
.about-main-1 .about-overview-media::before { display: none; }
.about-main-1 .about-overview-media img { height: 340px; aspect-ratio: auto; object-fit: cover; }
.about-main-1 .about-metrics { border: 0; background: #fff; }
.about-main-1 .about-metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-main-1 .about-metrics-grid > div { min-height: 158px; padding: 26px 0; border: 0; }
.about-main-1 .about-metrics-grid > div + div { padding-left: 70px; }
.about-main-1 .about-metrics strong { color: var(--brand-blue); font-size: 47px; font-weight: 500; }
.about-main-1 .about-metrics span { margin-top: 12px; color: #68737e; }
.about-showcase { padding-top: 24px; padding-bottom: 86px; }
.about-plain-heading { margin-bottom: 28px; padding-bottom: 15px; border-bottom: 3px solid #26394d; }
.about-plain-heading h2 { margin: 0; color: #17283b; font-size: 26px; line-height: 1.35; }
.about-showcase-grid { height: 560px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; }
.about-showcase figure { min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) 46px; margin: 0; border: 1px solid #dce2e7; background: #fff; overflow: hidden; }
.about-showcase figure:first-child { grid-row: 1 / span 2; }
.about-showcase img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .45s var(--ease); }
.about-showcase figcaption { display: flex; align-items: center; padding: 0 16px; border-top: 1px solid #e1e6ea; color: #344251; font-size: 12px; }
.about-showcase figure:hover img { transform: scale(1.025); }
.about-reference-heading { margin-bottom: 52px; text-align: center; }
.about-reference-heading h2 { margin: 4px 0 0; color: #17283b; font-size: 30px; line-height: 1.35; }
.about-culture-reference { padding: 78px 0 88px; border-top: 1px solid #dde3e8; background: #f5f6f7; }
.about-culture-panel { min-height: 0; padding: 0; background: transparent; overflow: visible; }
.about-culture-panel::before { display: none; }
.about-culture-grid { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 3px solid #26394d; }
.about-culture-grid article { min-height: 148px; display: flex; flex-direction: column; justify-content: center; padding: 28px 36px; border-right: 1px solid #d7dee4; border-bottom: 1px solid #d7dee4; color: #203248; background: transparent; }
.about-culture-grid article:nth-child(even) { border-right: 0; }
.about-culture-grid h3 { margin: 0 0 9px; color: #1d3044; font-size: 18px; }
.about-culture-grid p { max-width: 500px; margin: 0; color: #66727e; font-size: 13px; }
.about-history-reference { padding: 72px 0 68px; background: #fff; }
.about-history-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.about-history-heading h2 { margin: 0; color: var(--ink); font-size: 28px; line-height: 1.4; }
.about-history-heading > span { color: #66727e; font-size: 14px; font-variant-numeric: tabular-nums; }
.about-history-stage { display: block; }
.about-history-summary { display: grid; grid-template-columns: 280px minmax(0, 1fr); column-gap: 56px; align-content: center; min-width: 0; min-height: 180px; padding: 12px 0; }
.about-history-year { grid-row: 1 / span 2; align-self: center; color: var(--brand-blue); font-family: Arial, sans-serif; font-size: 88px; font-weight: 700; line-height: 1; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.about-history-summary h3 { margin: 0 0 14px; color: var(--ink); font-size: 26px; line-height: 1.4; }
.about-history-summary p { max-width: 720px; min-height: 90px; margin: 0; color: #57636d; font-size: 16px; line-height: 1.85; overflow-wrap: anywhere; }
.about-history-reference .about-history-line { width: 100%; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0; margin: 48px 0 0; padding: 0; }
.about-history-reference .about-history-line::before { display: none; }
.about-history-reference .about-history-node { min-height: 114px; align-items: flex-start; gap: 8px; padding: 30px 8px 12px 0; border-top: 1px solid #dce2e7; }
.about-history-reference .about-history-node::before { top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: #a4afb7; box-shadow: 0 0 0 6px #fff; }
.about-history-reference .about-history-node.is-active::before { background: var(--brand-blue); box-shadow: 0 0 0 6px #e6f3fa; }
.about-history-reference .about-history-node.is-active { border-top-color: var(--brand-blue); }
.about-history-reference .about-history-node:focus-visible { z-index: 1; outline-offset: -2px; }
.about-history-reference .about-history-node strong { font-size: 23px; font-weight: 600; line-height: 1.3; font-variant-numeric: tabular-nums; }
.about-history-reference .about-history-node small { margin: 0; color: #66727e; font-size: 13px; line-height: 1.5; }
.about-history-reference .about-history-node.is-active small { color: var(--brand-blue); }
.about-honors { padding: 75px 0 88px; background: #fff; }
.about-honors-carousel { max-width: 1186px; }
.about-honors-carousel.is-ready .standards-viewport { overflow: hidden; scroll-snap-type: none; }
.about-honor-grid { display: flex; gap: 22px; touch-action: pan-y pinch-zoom; }
.about-honor-grid figure { flex: 0 0 280px; min-width: 0; margin: 0; scroll-snap-align: start; }
.about-honor-grid figure > span { height: 320px; display: grid; grid-template: minmax(0, 1fr) / minmax(0, 1fr); place-items: center; padding: 22px; background: #fff; overflow: hidden; }
.about-honor-grid img { width: 100%; height: 100%; object-fit: contain; user-select: none; transition: transform .4s var(--ease); }
.about-honor-grid figcaption { min-height: 40px; display: grid; place-items: center; padding: 4px 12px 8px; color: #485562; text-align: center; font-size: 12px; }
.about-honor-grid figure:hover img { transform: scale(1.025); }

/* Development history */
.history-enhanced { display: none; }
.history-timeline { margin-top: 32px; border-top: 4px solid #203248; border-bottom: 1px solid #aeb8c2; }
.history-list { margin: 0; padding: 0; list-style: none; }
.history-item { min-height: 132px; display: grid; grid-template-columns: 132px 42px minmax(0, 1fr); border-top: 1px solid #d6dde4; }
.history-item:first-child { border-top: 0; }
.history-date { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 26px 18px 26px 0; text-align: right; }
.history-date span { color: #8a949e; font-size: 9px; font-weight: 700; line-height: 1; }
.history-date strong { margin-top: 8px; color: #223247; font-size: 31px; font-weight: 700; line-height: 1; }
.history-axis { position: relative; min-height: 100%; }
.history-axis::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #cbd4dc; transform: translateX(-50%); }
.history-item:first-child .history-axis::before { top: 50%; }
.history-item:last-child .history-axis::before { bottom: 50%; }
.history-axis > span { position: absolute; top: 50%; left: 50%; z-index: 1; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 0; background: #637386; box-shadow: 0 0 0 1px #637386; transform: translate(-50%, -50%); }
.history-entry { min-width: 0; display: grid; align-content: center; padding: 25px 30px; border-left: 1px solid #e1e6ea; }
.history-item:nth-child(even) .history-entry { background: #f4f7f9; }
.history-sequence { color: #87929d; font-size: 9px; font-weight: 700; line-height: 1; }
.history-entry h2 { margin: 9px 0 6px; color: #17283b; font-size: 18px; line-height: 1.45; }
.history-entry p { max-width: 760px; margin: 0; color: #596674; font-size: 14px; line-height: 1.8; }
.history-item.is-current .history-date strong, .history-item.is-current .history-entry h2 { color: var(--brand-blue); }
.history-item.is-current .history-axis > span { background: var(--brand-blue); box-shadow: 0 0 0 1px var(--brand-blue); }

/* Forms */
.message-page-layout { width: min(calc(100% - 80px), 1100px); grid-template-columns: minmax(0, 1fr); gap: 0; }
.message-page-heading { margin: 0 0 30px; padding: 0 0 18px; border-bottom: 1px solid #c8d0d8; }
.message-page-heading .eyebrow { margin-bottom: 6px; }
.message-page-heading h1 { margin: 0; font-size: 34px; line-height: 1.35; }
.page-layout-11 .contact-form-section { margin: 0; padding: 0; border-top: 0; }
.page-layout-11 .form-grid, .message-page-layout .form-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
.page-layout-11 .form-field-full, .message-page-layout .form-field-full { grid-column: auto; }
.message-form {
    padding: 30px 0 0; border-top: 4px solid #203248;
    border-radius: 0; background: #fff;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 28px; }
.search-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: #17283b; font-size: 13px; font-weight: 700; line-height: 1.5; }
.form-field label .required-mark { margin-left: 4px; color: #c62828; font-size: 15px; font-weight: 700; line-height: 1; }
.form-field input, .form-field textarea, .search-form input {
    width: 100%; border: 1px solid #aeb9c4; border-radius: 0;
    background: #f3f6f8; color: var(--ink); outline: none;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .24s var(--ease);
}
.form-field input { height: 56px; padding: 0 16px; }
.form-field textarea, .search-form input { padding: 16px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #6f7b88; }
.form-field input:focus, .form-field textarea:focus, .search-form input:focus { border-color: var(--brand-blue); background: #fff; box-shadow: 0 0 0 3px rgba(8,127,199,.12); }
.form-field textarea { min-height: 188px; resize: vertical; }
.form-field small { color: #5f6b77; font-size: 11px; line-height: 1.5; }
.codeimg { width: 154px; height: 54px; object-fit: cover; cursor: pointer; }
.form-footer { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 40px; align-items: start; margin-top: 28px; padding: 24px 0 28px; border-top: 1px solid #c8d0d8; }
.form-status { min-height: 18px; margin: 7px 0 0; color: var(--brand-blue); font-size: 11px; line-height: 1.5; text-align: left; }
.contact-form-section { display: block; margin-top: 42px; padding-top: 44px; border-top: 1px solid var(--line); }
.contact-form-heading { max-width: 680px; margin: 0 0 28px; padding-left: 18px; border-left: 5px solid var(--brand-blue); }
.contact-form-heading h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.3; }
.contact-form-heading > p:last-child { margin: 0; color: #52606d; font-size: 13px; line-height: 1.75; }
.contact-lead { max-width: 760px; margin: 0; color: #4d5662; font-size: 16px; line-height: 1.85; }
.contact-details { margin-bottom: 42px; }
.contact-details h2, .contact-message-title { margin: 0 0 20px; font-size: 24px; font-weight: 600; line-height: 1.4; }
.contact-hours { margin: 16px 0 0; color: #52606d; font-size: 14px; }
.contact-facts { display: grid; grid-template-columns: .82fr 1.08fr 1.9fr; margin-top: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-fact { min-width: 0; padding: 20px 24px 20px 0; }
.contact-fact + .contact-fact { padding-left: 24px; border-left: 1px solid var(--line); }
.contact-fact span { display: block; margin-bottom: 6px; color: #7b838d; font-size: 11px; }
.contact-fact a, .contact-fact strong { color: var(--ink); font-size: 16px; font-weight: 600; line-height: 1.5; text-decoration: none; overflow-wrap: anywhere; }
.contact-fact a:hover, .contact-fact a:focus { color: var(--brand-red); }
.contact-note { margin: 14px 0 0; color: #7b838d; font-size: 12px; line-height: 1.7; }
.contact-columns { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr); gap: 64px; align-items: start; }
.contact-columns > section { min-width: 0; }
.contact-columns .contact-details { margin: 0; }
.contact-columns .contact-message-title { margin: 0; font-size: 34px; line-height: 1.35; }
.contact-columns .contact-facts { grid-template-columns: minmax(0, 1fr); grid-template-rows: repeat(4, 1fr); margin-top: 24px; border-top: 0; }
.contact-columns .contact-fact { display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 14px; align-content: center; align-items: start; padding: 20px 0; }
.contact-fact-icon { display: block; width: 24px; height: 24px; margin-top: 2px; color: var(--brand-blue); }
.contact-fact-copy { min-width: 0; }
.contact-columns .contact-hours { margin: 0; }
.contact-columns .contact-fact + .contact-fact { border-left: 0; border-top: 1px solid var(--line); }
.contact-columns .message-form { padding-top: 0; border-top: 0; }
.contact-columns .form-footer { grid-template-columns: minmax(0, 1fr) 120px; gap: 16px; }
.contact-columns .form-actions { width: 100%; min-width: 0; padding-top: 27.5px; }
.contact-columns .captcha-control { grid-template-columns: minmax(0, 1fr) 120px; }
@media (max-width: 1100px) {
    .contact-columns .form-footer { grid-template-columns: minmax(0, 1fr) 100px; gap: 12px; }
    .contact-columns .captcha-control { grid-template-columns: minmax(0, 1fr) 90px; }
    .contact-columns .form-actions .button { padding-right: 10px; padding-left: 10px; }
    .contact-columns .captcha-control input { padding-right: 8px; padding-left: 8px; }
}
@media (min-width: 769px) {
    .contact-columns { align-items: stretch; }
    /* Match the form's 25px feedback space and 28px bottom padding. */
    .contact-columns .contact-details { display: flex; flex-direction: column; padding-bottom: 53px; }
    .contact-columns .contact-facts { flex: 1; }
}
.captcha-control { display: grid; grid-template-columns: minmax(0, 1fr) 154px; gap: 0; }
.captcha-refresh { height: 56px; padding: 0; overflow: hidden; border: 1px solid #aeb9c4; border-left: 0; border-radius: 0; background: #fff; cursor: pointer; }
.captcha-refresh:focus-visible { border-color: var(--brand-blue); outline: 3px solid rgba(8,121,201,.12); }
.captcha-refresh .codeimg { width: 100%; height: 54px; object-fit: cover; }
.form-actions { display: flex; flex-direction: column; align-items: stretch; padding-top: 28px; }
.message-form .button { width: 100%; min-width: 0; height: 56px; border: 1px solid var(--brand-blue); border-radius: 0; font-size: 13px; font-weight: 700; cursor: pointer; }
.message-form .button:active { transform: translateY(1px); }
.message-form .button:disabled { opacity: .62; cursor: wait; }
.search-form { grid-template-columns: 1fr auto; margin-bottom: 42px; }
.search-form .button { height: 48px; }
.search-results { display: flex; flex-direction: column; }
.search-result { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.search-result img { width: 160px; height: 104px; object-fit: cover; background: #f5f6f7; }
.search-result h2 { margin: 0 0 8px; font-size: 18px; }
.search-result p { margin: 0; color: var(--muted); font-size: 13px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.72); background: #111a35; }
.footer-backdrop { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #182945; }
.footer-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,26,53,.08) 0%, rgba(17,26,53,.32) 42%, rgba(17,26,53,.58) 100%); pointer-events: none; }
.footer-backdrop picture, .footer-backdrop img { display: block; width: 100%; height: 100%; }
.footer-backdrop img { object-fit: cover; object-position: center 62%; filter: saturate(.88) contrast(.98); }
.footer-action { color: #fff; background: var(--brand-blue); }
.footer-action-inner { min-height: 154px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.footer-action-copy p { margin: 0 0 4px; color: rgba(255,255,255,.76); font-size: 12px; }
.footer-action-copy h2 { margin: 0; font-size: 28px; font-weight: 600; line-height: 1.35; }
.footer-action-contact { display: flex; align-items: center; gap: 34px; }
.footer-phone { display: flex; flex-direction: column; min-width: 150px; }
.footer-phone span { color: rgba(255,255,255,.7); font-size: 11px; }
.footer-phone strong { color: #fff; font-size: 21px; font-weight: 600; line-height: 1.35; }
.footer-phone:hover strong, .footer-phone:focus strong { text-decoration: underline; text-underline-offset: 4px; }
.footer-action-button { min-width: 126px; height: 42px; color: var(--brand-deep); background: #fff; }
.footer-action-button:hover, .footer-action-button:focus { color: #fff; background: var(--brand-deep); }
.footer-action-button span { font-size: 18px; }
.footer-body { position: relative; z-index: 1; background: rgba(17,26,53,.28); }
.footer-main { display: grid; grid-template-columns: minmax(260px, 340px) minmax(0, 1fr); gap: clamp(64px, 8vw, 126px); padding-top: 64px; padding-bottom: 56px; }
.footer-profile { min-width: 0; }
.footer-brand { width: 184px; display: block; }
.footer-brand img { width: 100%; height: auto; }
.footer-positioning { margin: 14px 0 24px; color: rgba(255,255,255,.8); font-size: 13px; }
.footer-email { display: inline-block; color: #fff; font-size: 14px; }
.footer-email:hover, .footer-email:focus { color: #65c7ff; }
.footer-standards { display: flex; flex-wrap: wrap; margin-top: 34px; }
.footer-standards span { padding: 0 13px; border-left: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; line-height: 1; }
.footer-standards span:first-child { padding-left: 0; border-left: 0; }
.footer-nav { display: grid; grid-template-columns: repeat(3, minmax(110px, 1fr)); gap: 30px 42px; }
.footer-column-title { display: block; margin-bottom: 11px; color: #fff; font-size: 14px; font-weight: 600; }
.footer-column ul { display: grid; gap: 5px; }
.footer-column li { margin: 0; line-height: 1.45; }
.footer-column li a { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover, .footer-column a:focus { color: #65c7ff; }
.footer-info-row { display: grid; grid-template-columns: 1.15fr .82fr 1.25fr; gap: 46px; padding-top: 27px; padding-bottom: 27px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-info-item h2 { margin: 0 0 5px; color: #fff; font-size: 12px; font-weight: 600; }
.footer-info-item p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.65; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.56); font-size: 10px; }
.footer-bottom p { margin: 0; }
.back-to-top {
    position: fixed; right: 24px; bottom: 24px; z-index: 35; display: grid; place-items: center;
    width: 44px; height: 44px; padding: 0; border: 1px solid #cfd8df; border-radius: 0;
    color: var(--brand-deep); background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(23,42,68,.14);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top span { font-size: 22px; line-height: 1; }
.back-to-top:hover, .back-to-top:focus-visible { color: #fff; background: var(--brand-blue); }
.back-to-top:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.button > span, .more-link > span, .footer-action-button > span {
    display: inline-block; transition: transform .24s var(--ease);
}
.button:active { transform: translateY(1px) scale(.98); }
.more-link { transition: color .22s ease; }
.more-link > span { margin-left: 3px; }

.product-item, .application-item, .product-card, .list-card, .news-card,
.news-catalog-row, .search-result, .contact-fact, .metric, .certification-showcase,
.classification-logo-item, .iso-certification-item,
.pagination a, .attachment-download, .captcha-refresh {
    transition: color .24s ease, background-color .24s ease, border-color .24s ease,
        box-shadow .28s ease, transform .28s var(--ease);
}
.product-item img, .product-card img, .list-card img, .news-card img,
.news-catalog-row img, .search-result img, .article-cover {
    transform-origin: center; backface-visibility: hidden;
}
.form-field label { transition: color .2s ease, transform .2s var(--ease); }
.form-field:focus-within label { color: var(--brand-blue); transform: none; }
.form-status[data-state="success"] { color: #147a55; }
.form-status[data-state="error"] { color: #b32634; }
.message-form.is-submitting .button { transform: scale(.985); }

/* Product motion stays inside fixed media bounds, leaving the grid stable. */
.product-interactive { position: relative; isolation: isolate; }
.product-interactive .product-motion-media { position: relative; }
.product-interactive .product-motion-media::after {
    content: ""; position: absolute; inset: auto 0 0; height: 2px;
    background: var(--brand-blue); transform: scaleX(0); transform-origin: left;
    transition: transform .45s var(--ease); pointer-events: none;
}
.product-interactive .product-motion-caption { transition: color .25s ease, background-color .3s ease; }
.product-interactive .product-motion-media { transition: opacity .35s ease, transform .2s ease; }
.product-item.product-interactive > span { padding-right: 36px; padding-left: 12px; }
.product-item.product-interactive > span::after,
.product-card.product-interactive .list-card-body::after {
    content: ""; position: absolute; right: 8px; top: 50%; width: 20px; height: 20px;
    background: #89929c; mask: url('../assets/icons/arrow-right.svg') center / contain no-repeat;
    transform: translateY(-50%) rotate(-45deg);
    transition: background-color .25s ease, transform .4s var(--ease);
}
.product-card.product-interactive .list-card-body { position: relative; padding-right: 38px; padding-left: 16px; }
.product-interactive:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 4px; }
.product-interactive:focus-visible .product-motion-media::after { transform: scaleX(1); }
.product-interactive:focus-visible .product-motion-caption { color: #fff; background-color: var(--brand-blue); }
.product-interactive:focus-visible h2 { color: #fff; }
.product-interactive:focus-visible .product-motion-caption::after { background-color: #fff; }
.product-interactive:active .product-motion-media { opacity: .88; }
@media (hover: hover) and (pointer: fine) {
    .product-interactive:hover { box-shadow: 0 18px 32px -15px rgba(17, 70, 104, .32); }
    .product-interactive:hover .product-motion-media::after { transform: scaleX(1); }
    .product-interactive:hover .product-motion-caption { color: #fff; background-color: var(--brand-blue); }
    .product-interactive:hover h2 { color: #fff; }
    .product-interactive:hover .product-motion-caption::after {
        background-color: #fff; transform: translate(4px, calc(-50% - 4px)) rotate(-45deg);
    }
    .product-interactive:not(.product-pointer-motion):hover img,
    .product-root-grid .product-interactive:not(.product-pointer-motion):hover img {
        transform: translateY(-14px) scale(1.12);
    }
    .product-grid:has(.product-interactive:hover) .product-interactive:not(:hover):not(:focus-visible) .product-motion-media,
    .product-catalog-grid:has(.product-interactive:hover) .product-interactive:not(:hover):not(:focus-visible) .product-motion-media { opacity: .55; }
}
.product-interactive.product-pointer-motion img { transition: none; }
@media (hover: none), (pointer: coarse) {
    .product-interactive img { transform: none !important; }
    .product-interactive:active .product-motion-media { transform: scale(.98); }
}
@media (prefers-reduced-motion: reduce) {
    .product-interactive:active .product-motion-media { transform: none; }
    .product-interactive img,
    .product-root-grid .product-interactive:hover img { transform: none !important; }
    .product-interactive .product-motion-caption::after { transform: translateY(-50%) rotate(-45deg) !important; }
}


@media (max-width: 1180px) {
    :root { --header-height: 72px; }
    .site-header { height: var(--header-height); }
    .brand { flex-basis: 170px; }
    .brand img { width: 170px; }
    .menu-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: var(--header-height) 0 0; height: auto; margin: 0; padding: 16px 24px 40px;
        color: var(--ink); background: #fff; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: opacity .2s, visibility .2s, transform .2s;
    }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-list { height: auto; display: block; }
    .nav-item { min-height: 54px; display: block; border-bottom: 1px solid var(--line); }
    .nav-item > a { height: 54px; padding: 0 4px; font-size: 16px; }
    .nav-item > a::after { display: none; }
    .submenu-toggle { position: absolute; top: 7px; right: 0; width: 40px; height: 40px; display: block; border: 0; background: transparent; }
    .submenu-toggle::before, .submenu-toggle::after { content: ""; position: absolute; top: 19px; left: 12px; width: 16px; height: 1px; background: #414951; }
    .submenu-toggle::after { transform: rotate(90deg); transition: transform .2s; }
    .submenu-toggle[aria-expanded="true"]::after { transform: rotate(0); }
    .submenu {
        position: static; width: auto; min-width: 0; max-width: none; min-height: 0; display: none; grid-template-columns: 1fr; gap: 0; padding: 0 0 14px 14px;
        background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none;
    }
    .submenu.is-open { display: block; }
    .submenu ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 12px; }
    .submenu a { padding: 8px 0; }
    .language-link { margin-left: auto; }
    .hero { min-height: 520px; }
    .client-logos { grid-template-columns: repeat(6, 1fr); }
    .certification-showcase { display: block; }
    .certification-group { display: grid; grid-template-columns: 190px minmax(0, 1fr); }
    .certification-group-title { display: flex; }
    .certification-group-class { border-top: 1px solid #dfe6ec; }
    .classification-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .classification-logo-item:nth-child(n+5) { border-top: 1px solid #e5eaf0; }
    .footer-main { grid-template-columns: minmax(230px, 280px) minmax(0, 1fr); gap: 54px; }
    .footer-nav { grid-template-columns: repeat(3, minmax(100px, 1fr)); gap: 26px 30px; }
    .application-list-layout .case-catalog-grid-8 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .application-list-section .section-heading h1 { font-size: 25px; }
    .application-list-grid { grid-auto-rows: 300px; }
    .product-root-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .application-systems-scroll { width: min(calc(100% - 60px), 960px); min-height: 0; display: block; padding: 72px 0; }
    .application-systems-heading { margin-bottom: 36px; }
    .application-systems-heading h2 { max-width: none; }
    .application-system-grid { width: 100%; }
    .application-systems-catalog { margin-top: 18px; }
    .about-overview { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 44px; }
    .about-capabilities-grid { gap: 58px; }
    .about-history-grid { grid-template-columns: 280px minmax(0, 1fr); gap: 48px; }
    .about-values-list article { grid-template-columns: 100px 220px minmax(0, 1fr); gap: 24px; }
    .about-certification-inner { grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: 40px; }
    .about-certification-inner .button { grid-column: 1 / -1; justify-self: start; }
}

@media (min-width: 1600px) {
    .metrics { height: 225px; }
    .about-section { min-height: 593px; }
    .products-section { min-height: 722px; }
    .applications-section { min-height: 782px; }
    .clients-section { min-height: 558px; }
    .news-section { min-height: 0; }
}

@media (min-width: 769px) and (max-width: 1300px) {
    .metrics { height: 192px; }
    .about-section { min-height: 489px; }
    .products-section { min-height: 637px; }
    .applications-section { min-height: 762px; }
    .clients-section { min-height: 458px; padding: 64px 0 70px; }
    .news-section { min-height: 0; }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 769px) and (max-width: 960px) {
    .global-grid { grid-template-columns: 1fr; gap: 28px; }
    .catalog-page .page-layout { display: block; }
    .catalog-page .product-side-nav { position: static; margin-bottom: 42px; }
    .catalog-page .product-side-nav .product-side-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 20px; }
    .catalog-page .product-side-nav .product-side-item { min-width: 0; }
    .catalog-page .product-side-nav .product-side-item > a { min-height: 46px; display: flex; align-items: center; padding: 10px 30px 10px 10px; }
    .product-root-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }
    body { font-size: 13px; }
    .shell, .shell-wide { width: calc(100% - 24px); }
    .home-page header.home-heading { margin-bottom: 24px; }
    .home-page .home-heading h2, .home-page .home-section-title { font-size: 25px; }
    .home-page .home-heading .eyebrow { font-size: 10px; }
    .home-page .home-heading-description { font-size: 12px; }
    .home-page .home-heading.section-heading-row { flex-wrap: wrap; gap: 12px 20px; }
    .site-header, .site-header.is-scrolled { position: absolute; height: 60px; color: var(--ink); background: #fff; box-shadow: none; }
    .brand { flex-basis: 120px; height: 46px; }
    .brand img { width: 120px; }
    .brand-light { opacity: 0; }
    .brand-dark, .site-header.is-scrolled .brand-dark { opacity: 1; }
    .language-link { display: none; }
    .menu-toggle { margin-left: auto; }
    .primary-nav { inset: 60px 0 0; padding-inline: 16px; }
    .hero { height: min(316px, calc(40vw + 160px)); min-height: 0; padding-top: 60px; }
    .hero-track { height: 100%; }
    .hero-slide > img, .hero-video { object-position: center center; }
    .hero-scrim { background: linear-gradient(90deg, rgba(8,20,59,.76), rgba(8,20,59,.24)); }
    .hero-copy { top: 50%; }
    .hero-copy > p { display: none; }
    .hero-copy h1 { max-width: 290px; margin-bottom: 7px; font-size: 23px; line-height: 1.25; }
    .hero-subtitle { max-width: 285px; margin-bottom: 12px; font-size: 10px; line-height: 1.55; }
    .hero-copy .button { height: 30px; }
    .hero-pagination { right: 12px; bottom: 40px; }
    .metrics { width: calc(100% - 24px); height: 148px; margin-top: -25px; }
    .metric strong { font-size: 24px; }
    .metric sup { font-size: 9px; }
    .metric > span { margin-top: 11px; font-size: 8px; }
    .about-section { min-height: 643px; padding: 30px 0 36px; }
    .home-page .about-section { padding-bottom: 24px; }
    .home-about-grid { display: flex; flex-direction: column; gap: 24px; }
    .about-copy h1, .about-copy h2 { margin-bottom: 10px; font-size: 24px; line-height: 1.3; }
    .intro-text { max-height: 124px; margin-bottom: 8px; overflow: hidden; font-size: 10px; line-height: 1.85; }
    .home-page .about-copy .intro-text { max-height: none; overflow: visible; font-size: 12px; line-height: 1.85; margin-bottom: 18px; }
    .stock-code { margin-bottom: 13px; }
    .stock-code strong { font-size: 23px; }
    .standards-line { align-items: flex-start; flex-direction: column; gap: 2px; margin-bottom: 13px; }
    .standards-line strong { font-size: 12px; }
    .button { min-width: 92px; height: 34px; padding: 0 18px; font-size: 11px; }
    .about-media { width: 100%; }
    .about-media > .about-media-image { height: 230px; border-radius: 0; }
    .products-section { min-height: 0; padding: 46px 0 58px; }
    .home-page .products-section { padding: 28px 0 44px; }
    .product-heading { margin-bottom: 32px; }
    .product-heading h2 { font-size: 25px; }
    .product-heading p { font-size: 10px; line-height: 1.8; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 10px; }
    .product-item { grid-template-rows: auto minmax(42px, auto); font-size: 11px; }
    .product-item img { padding: 11px; }
    .product-item span { align-items: center; padding: 9px 20px 7px; font-size: 11px; line-height: 1.35; }
    .applications-section { min-height: 2044px; padding: 34px 0 20px; }
    .section-heading h2 { font-size: 25px; }
    .section-heading-row { align-items: flex-end; }
    .applications-section .section-heading { margin-bottom: 22px; }
    .application-grid { height: auto; display: grid; grid-template-columns: 1fr; gap: 20px; }
    .application-item { height: 300px; }
    .application-copy { left: 15px; right: 15px; bottom: 18px; }
    .application-copy h3 { font-size: 16px; }
    .application-description { margin-top: 8px; font-size: 13px; }
    .global-section { padding: 40px 0; }
    .global-section > .shell-wide { width: calc(100% - 24px); }
    .global-heading { align-items: flex-start; gap: 16px; padding-bottom: 20px; }
    .global-heading h2 { margin-bottom: 10px; font-size: 25px; }
    .global-heading p { max-width: 320px; font-size: 13px; }
    .global-heading .more-link { margin-top: 5px; font-size: 12px; }
    .global-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 24px; }
    .map-point { width: 18px; height: 18px; }
    .map-point i { inset: 5px; border-width: 1px; }
    .map-hub i { inset: 4px; }
    .map-point b { font-size: 11px; }
    .map-point.label-top-right b, .map-point.label-bottom-right b { left: auto; right: 18px; }
    .map-hub b { right: 0; bottom: 20px; padding: 2px 0; }
    .map-caption { margin-top: 16px; font-size: 11px; }
    .clients-section { min-height: 0; padding: 50px 0 58px; }
    .client-inner { display: block; }
    .client-heading { display: block; margin-bottom: 28px; text-align: center; }
    .client-heading h2 { font-size: 25px; }
    .client-heading > p:last-child { max-width: 340px; margin: 14px auto 0; padding: 0; border-left: 0; font-size: 10px; }
    .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .client-logos img { height: 68px; }
    .certification-showcase { border-top-width: 2px; box-shadow: 0 16px 38px rgba(20, 45, 73, .09); }
    .certification-group { grid-template-columns: 1fr; }
    .certification-group-title {
        min-height: 54px; flex-direction: row; align-items: baseline; justify-content: space-between;
        padding: 17px 18px 15px;
    }
    .iso-certification-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .iso-certification-item {
        min-height: 126px; flex-direction: column; justify-content: center; gap: 10px; padding: 15px 8px;
        text-align: center;
    }
    .iso-certification-item > img { width: 31px; height: 31px; flex-basis: 31px; }
    .iso-certification-item strong { font-size: 12px; }
    .iso-certification-item small { min-height: 25px; font-size: 8px; }
    .classification-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .classification-logo-item { min-height: 88px; padding: 11px 8px 9px; }
    .classification-logo-item:nth-child(n+3) { border-top: 1px solid #e5eaf0; }
    .classification-logo-mark { height: 44px; }
    .classification-logo-mark img { max-height: 40px; }
    .certification-showcase-profile { margin-bottom: 32px; }
    .partners-section { scroll-margin-top: 60px; padding: 46px 0 52px; }
    .partners-heading { margin-bottom: 24px; }
    .partners-heading h2 { font-size: 25px; }
    .partners-carousel { --partners-visible: 1; }
    .partner-item { height: 120px; padding: 20px 18px; }
    .partner-logo { max-width: 300px; height: 80px; }
    .news-section { min-height: 0; padding: 48px 0 58px; }
    .news-section .home-heading { margin-bottom: 24px; }
    .news-section .home-heading h2 { font-size: 25px; }
    .news-heading-description { margin-top: 8px; font-size: 12px; }
    .news-more-link { min-width: 110px; height: 36px; padding: 0 16px; font-size: 12px; }
    .news-grid { grid-template-columns: 1fr; gap: 14px; }
    .news-card { min-height: 0; }
    .news-card-copy { min-height: 176px; padding: 20px 18px 16px; }
    .news-card time { font-size: 11px; }
    .news-card h3 { margin: 15px 0 18px; font-size: 17px; }
    .news-card-category { min-height: 27px; padding: 0 12px; font-size: 11px; }
    .news-card-media { width: calc(100% - 32px); height: 188px; margin: 0 16px 16px; }
    .inner-hero { height: 300px; padding-top: 60px; }
    .inner-hero > img, .inner-hero > picture { top: 60px; height: calc(100% - 60px); }
    .inner-hero-content { padding-bottom: 36px; }
    .inner-hero-content h1 { font-size: 30px; }
    .inner-tabs { min-height: 70px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
    .inner-tabs a { min-width: 112px; padding: 6px 12px; }
    .inner-hero-family-1 > img { object-position: 69% center; }
    .inner-hero-family-5 img { object-position: 74% center; }
    .inner-hero-overlay { background: linear-gradient(180deg, rgba(12,20,27,.5), transparent 42%, rgba(12,20,27,.72)); }
    .about-main-1 .inner-tabs { min-height: 60px; margin-right: 0; width: 100%; padding-left: 12px; border-bottom: 1px solid #d9e0e6; }
    .about-main-1 .inner-tabs a { min-width: 104px; padding: 19px 12px 17px; font-size: 11px; }
    .about-overview { display: flex; flex-direction: column; gap: 34px; padding-top: 50px; padding-bottom: 54px; }
    .about-overview-copy h2, .about-section-heading h2, .about-certification h2 { font-size: 25px; }
    .about-introduction { margin-top: 19px; font-size: 13px; line-height: 1.85; }
    .about-standard-list { margin-top: 25px; }
    .about-standard-list > div { grid-template-columns: 76px minmax(0, 1fr); min-height: 50px; }
    .about-standard-list dt { font-size: 10px; }
    .about-standard-list dd { font-size: 11px; }
    .about-overview-media { width: 100%; }
    .about-overview-media::before { top: -8px; left: -5px; width: 72px; height: 3px; }
    .about-overview-media img { aspect-ratio: 4 / 3; }
    .about-metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-metrics-grid > div { min-height: 116px; padding: 20px 18px; border-bottom: 1px solid #d5dde4; }
    .about-metrics-grid > div:nth-child(odd) { border-left: 1px solid #d5dde4; }
    .about-metrics-grid > div:nth-child(even) { border-right: 1px solid #d5dde4; }
    .about-metrics strong { font-size: 28px; }
    .about-metrics sup { font-size: 9px; }
    .about-metrics span { margin-top: 10px; font-size: 9px; }
    .about-capabilities { padding: 54px 0 60px; }
    .about-capabilities-grid { display: block; }
    .about-capability-list { margin-top: 32px; }
    .about-capability-list li { min-height: 0; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 21px 2px; }
    .about-capability-list h3 { font-size: 16px; }
    .about-capability-list p { font-size: 12px; line-height: 1.75; }
    .about-factory { padding-bottom: 60px; }
    .about-factory .about-section-heading { margin-bottom: 25px; }
    .about-factory-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; }
    .about-factory-main { grid-column: 1 / -1; grid-row: auto; }
    .about-factory-grid figure { aspect-ratio: 4 / 3; }
    .about-factory-grid .about-factory-main { aspect-ratio: 16 / 10; }
    .about-history-band { padding: 54px 0 60px; }
    .about-history-grid { display: block; }
    .about-history-line { grid-template-columns: repeat(7, 76px); margin-top: 38px; padding-bottom: 8px; overflow-x: auto; }
    .about-history-line strong { font-size: 17px; }
    .about-history-line small { font-size: 8px; }
    .about-values { padding-top: 54px; padding-bottom: 60px; }
    .about-values .about-section-heading { margin-bottom: 25px; }
    .about-values-list article { min-height: 0; grid-template-columns: 70px minmax(0, 1fr); gap: 8px 14px; padding: 20px 0; }
    .about-values-list article > span { grid-row: 1 / span 2; align-self: start; padding-top: 3px; font-size: 10px; }
    .about-values-list h3 { font-size: 15px; }
    .about-values-list p { font-size: 11px; line-height: 1.65; }
    .about-certification { padding: 51px 0 58px; }
    .about-certification-inner { display: block; }
    .about-certification-tags { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 26px 0 24px; }
    .about-certification-tags span { min-height: 44px; font-size: 9px; }
    .about-main-1 .about-overview { gap: 26px; padding-top: 42px; padding-bottom: 24px; }
    .about-main-1 .about-overview-copy h2 { margin-bottom: 5px; font-size: 12px; }
    .about-company-name { margin-bottom: 15px; font-size: 23px; }
    .about-main-1 .about-introduction { font-size: 12px; line-height: 1.8; }
    .about-standards { margin-top: 15px; font-size: 10px; }
    .about-main-1 .about-overview-media img { height: auto; aspect-ratio: 4 / 3; }
    .about-main-1 .about-metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .about-main-1 .about-metrics-grid > div { min-height: 104px; padding: 18px 6px; border: 0; }
    .about-main-1 .about-metrics-grid > div + div { padding-left: 14px; border-left: 1px solid #dce2e7; }
    .about-main-1 .about-metrics strong { font-size: 24px; }
    .about-main-1 .about-metrics span { margin-top: 8px; font-size: 8px; }
    .about-showcase { padding-top: 18px; padding-bottom: 48px; }
    .about-plain-heading { margin-bottom: 20px; padding-bottom: 11px; border-bottom-width: 2px; }
    .about-plain-heading h2 { font-size: 20px; }
    .about-showcase-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
    .about-showcase figure, .about-showcase figure:first-child { grid-row: auto; }
    .about-showcase img { height: auto; aspect-ratio: 16 / 10; }
    .about-showcase figcaption { min-height: 42px; font-size: 11px; }
    .about-reference-heading { margin-bottom: 27px; }
    .about-reference-heading h2 { font-size: 23px; }
    .about-culture-reference { padding: 46px 0 52px; }
    .about-culture-panel { min-height: 0; padding: 0; }
    .about-culture-grid { grid-template-columns: 1fr; }
    .about-culture-grid article { min-height: 104px; padding: 20px 18px; border-right: 0; }
    .about-culture-grid h3 { font-size: 15px; }
    .about-culture-grid p { font-size: 10px; line-height: 1.65; }
    .about-history-reference { padding: 44px 0 32px; }
    .about-history-reference > .shell-wide { width: calc(100% - 40px); }
    .about-history-heading { gap: 16px; margin-bottom: 26px; }
    .about-history-heading h2 { font-size: 23px; }
    .about-history-heading > span { font-size: 12px; }
    .about-history-summary { display: block; min-height: 0; padding: 0; }
    .about-history-year { margin-bottom: 18px; font-size: 64px; }
    .about-history-summary h3 { margin-bottom: 10px; font-size: 22px; }
    .about-history-summary p { max-width: none; min-height: 104px; font-size: 14px; }
    .about-history-reference .about-history-line { grid-template-columns: repeat(7, 100px); margin-top: 26px; padding: 8px 0; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: #a4afb7 transparent; }
    .about-history-reference .about-history-node { min-height: 104px; padding-top: 24px; scroll-snap-align: start; }
    .about-history-reference .about-history-node strong { font-size: 21px; }
    .about-history-reference .about-history-node small { font-size: 12px; }
    .about-honors { padding: 48px 0 56px; }
    .about-honor-grid { gap: 16px; }
    .about-honor-grid figure { flex-basis: min(80%, 280px); }
    .about-honor-grid figure > span { height: 300px; padding: 16px; }
    .about-honor-grid figcaption { min-height: 48px; padding: 10px; font-size: 12px; }
    .page-layout { display: block; padding-top: 38px; padding-bottom: 72px; }
    .application-list-layout .case-catalog-grid-8 { grid-template-columns: 1fr; }
    .application-list-page { padding-bottom: 56px; }
    .application-list-page:has(.application-systems) { padding-bottom: 0; }
    .application-systems {
        min-height: 0; margin-top: 48px;
    }
    .application-systems-bg { height: 100%; background-image: linear-gradient(180deg, rgba(239, 247, 249, .96), rgba(230, 242, 245, .84)), url('../assets/images/highs/application-systems-bg-v2.jpg'); background-position: 58% center; }
    .application-systems-scroll { width: calc(100% - 32px); min-height: 0; display: block; padding: 54px 0 48px; }
    .application-systems-heading { margin-bottom: 32px; }
    .application-systems-heading h2 { max-width: 9em; font-size: 30px; }
    .application-system-grid { grid-template-columns: 1fr; }
    .application-system-grid a, .application-system-grid a:nth-child(even) { min-height: 112px; grid-template-columns: 46px minmax(0, 1fr) 18px; gap: 14px; padding: 18px 4px; border-left: 0; }
    .application-system-grid .system-icon { width: 46px; height: 46px; padding: 10px; }
    .application-system-grid strong { font-size: 17px; }
    .application-system-grid .system-description { margin-top: 5px; font-size: 12px; }
    .application-system-grid .system-arrow { width: 18px; height: 18px; }
    .side-nav { position: static; margin-bottom: 34px; }
    .side-nav h2 { font-size: 20px; }
    .side-nav ul { display: flex; flex-wrap: wrap; gap: 6px 14px; }
    .side-nav li { border-bottom: 1px solid var(--line); }
    .side-nav a { border: 0; }
    .product-side-nav { padding: 0; }
    .product-side-nav h2 { margin-bottom: 8px; padding: 0 10px 14px; }
    .product-side-nav .product-side-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
    .product-side-nav .product-side-item { min-width: 0; }
    .product-side-nav .product-side-item > a { padding: 11px 30px 11px 10px; }
    .page-content > h1, .list-heading h1, .article-header h1 { font-size: 25px; }
    .content-list { grid-template-columns: 1fr; gap: 28px; }
    .product-root-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .product-card .list-card-media { height: 240px; }
    .product-root-grid .product-card .list-card-media { height: auto; }
    .list-card-media { height: 220px; }
    .article-meta { gap: 10px 16px; }
    .company-cover { height: auto; aspect-ratio: auto; }
    .product-detail-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }
    .product-detail-summary .article-header { margin-bottom: 22px; }
    .pager { flex-direction: column; gap: 12px; }
    .news-catalog-row { min-height: 112px; grid-template-columns: 106px 48px 1fr; gap: 12px; padding: 13px 0; }
    .news-catalog-row > img { width: 106px; height: 76px; }
    .news-catalog-row time strong { font-size: 23px; }
    .news-catalog-row h2 { margin-bottom: 3px; font-size: 13px; }
    .news-catalog-row p { display: none; }
    .tag-row { grid-template-columns: 48px 1fr; }
    .profile-metrics { min-height: 160px; }
    .profile-metrics strong { font-size: 27px; }
    .profile-metrics span { font-size: 8px; }
    .profile-band { padding: 46px 0 58px; }
    .profile-band > header { margin-bottom: 30px; }
    .profile-band > header h2 { font-size: 25px; }
    .profile-culture-grid { grid-template-columns: 1fr; }
    .profile-culture article { min-height: 130px; padding: 32px 28px; }
    .profile-history { min-height: 390px; }
    .profile-timeline { margin-top: 40px; overflow-x: auto; }
    .profile-timeline span { min-width: 82px; }
    .profile-history-copy { margin-top: 44px; }
    .history-timeline { margin-top: 24px; }
    .history-item { min-height: 118px; grid-template-columns: 72px 28px minmax(0, 1fr); }
    .history-date { padding: 22px 8px 22px 0; }
    .history-date span { font-size: 8px; }
    .history-date strong { margin-top: 6px; font-size: 20px; }
    .history-axis > span { width: 11px; height: 11px; border-width: 2px; }
    .history-entry { padding: 21px 12px 21px 14px; }
    .history-entry h2 { margin-top: 8px; font-size: 16px; }
    .history-entry p { font-size: 13px; line-height: 1.7; }
    .honor-grid { gap: 12px; }
    .honor-grid figure { width: 48%; padding: 10px; }
    .honor-grid img { height: 110px; }
    .contact-form-section { display: block; margin-top: 34px; padding-top: 34px; }
    .contact-form-heading { max-width: none; margin-bottom: 24px; padding-left: 12px; }
    .contact-form-heading h2 { font-size: 23px; }
    .message-page-layout { width: min(calc(100% - 24px), 1100px); }
    .message-page-heading { margin-bottom: 24px; padding-bottom: 14px; }
    .message-page-heading h1 { font-size: 25px; }
    .page-layout-11 .contact-form-section { margin-top: 0; padding-top: 0; }
    .message-form { padding-top: 24px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .form-field-full { grid-column: auto; }
    .form-footer { grid-template-columns: 1fr; gap: 20px; padding: 22px 0 24px; }
    .form-actions { align-items: stretch; padding-top: 0; }
    .message-form .button { width: 100%; }
    .form-status { text-align: left; }
    .contact-lead { font-size: 15px; }
    .contact-details { margin-bottom: 32px; }
    .contact-columns { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .contact-columns .contact-message-title { font-size: 25px; }
    .contact-columns .form-actions { width: 100%; }
    .contact-details h2, .contact-message-title { font-size: 21px; }
    .contact-facts { grid-template-columns: 1fr; margin-top: 22px; }
    .contact-fact { padding: 15px 0; }
    .contact-fact + .contact-fact { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .contact-fact a, .contact-fact strong { font-size: 15px; }
    .search-result { grid-template-columns: 105px 1fr; gap: 14px; }
    .search-result img { width: 105px; height: 76px; }
    .footer-action-inner { min-height: 0; align-items: stretch; flex-direction: column; gap: 20px; padding-top: 30px; padding-bottom: 30px; }
    .footer-backdrop img { object-position: center 58%; }
    .footer-action-copy p { font-size: 10px; }
    .footer-action-copy h2 { max-width: 310px; font-size: 22px; }
    .footer-action-contact { align-items: flex-end; justify-content: space-between; gap: 18px; }
    .footer-phone { min-width: 0; }
    .footer-phone span { font-size: 9px; }
    .footer-phone strong { font-size: 16px; }
    .footer-action-button { min-width: 112px; height: 38px; }
    .footer-main { display: block; padding-top: 38px; padding-bottom: 38px; }
    .footer-brand { width: 158px; }
    .footer-positioning { margin: 10px 0 17px; font-size: 11px; }
    .footer-email { min-height: 36px; display: inline-flex; align-items: center; font-size: 12px; }
    .footer-standards { margin-top: 24px; }
    .footer-standards span { padding-inline: 10px; font-size: 9px; }
    .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.12); }
    .footer-column { min-width: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .footer-column-title { min-height: 48px; display: flex; align-items: center; margin: 0; font-size: 12px; }
    .footer-column ul { display: none; }
    .footer-info-row { grid-template-columns: 1fr; gap: 0; padding-top: 0; padding-bottom: 0; }
    .footer-info-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .footer-info-item h2 { font-size: 11px; }
    .footer-info-item p { font-size: 9px; }
    .footer-bottom { min-height: 82px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; border-top: 0; font-size: 8px; }
}

@media (min-width: 600px) and (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .metrics { height: 129px; }
    .about-section { min-height: 839px; }
    .products-section { min-height: 971px; }
    .clients-section { min-height: 1514px; }
    .news-section { min-height: 1199px; }
}

@media (min-width: 381px) and (max-width: 599px) {
    .products-section { min-height: 972px; }
    .applications-section { min-height: 2045px; }
    .news-section { min-height: 816px; }
}

@media (max-width: 380px) {
    .about-section { min-height: 634px; }
    .products-section { min-height: 971px; }
    .clients-section { min-height: 1209px; }
    .news-section { min-height: 841px; }
    .site-footer { min-height: 1240px; }
}

@media (max-width: 768px) {
    .about-section,
    .products-section,
    .applications-section,
    .global-section,
    .clients-section,
    .news-section,
    .site-footer { min-height: 0; }
}

@media (max-width: 480px) {
    .inner-hero-family-5 { height: 340px; }
    .inner-hero-family-5 img { object-position: center top; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js-enabled .reveal { opacity: 1; transform: none; }
}




/* Product detail reading system */
.product-detail-page { max-width: 1260px; padding-top: 56px; padding-bottom: 96px; }
.product-detail { min-width: 0; }
.product-detail-intro { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 72px; align-items: stretch; margin-bottom: 78px; }
.product-detail-cover { position: relative; display: flex; align-items: center; justify-content: center; min-height: 520px; padding: 28px; background: transparent; border: 0; }
.product-detail-cover::before { content: "PRODUCT VIEW"; position: absolute; top: 18px; left: 20px; color: #71858f; font: 10px/1 Consolas, monospace; letter-spacing: .12em; }
.product-detail-cover img { max-height: 520px; aspect-ratio: 1 / 1; object-fit: contain; }
.product-detail-summary { display: flex; flex-direction: column; justify-content: center; padding: 18px 0; }
.product-detail-kicker, .product-detail-body-label { margin: 0 0 16px; color: var(--brand-blue); font: 700 11px/1.2 Consolas, monospace; letter-spacing: .12em; }
.product-detail-summary .article-header { margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid #dce4e7; }
.product-detail-summary .article-header h1 { max-width: 560px; margin-bottom: 14px; color: #112b3d; font-size: clamp(30px, 4vw, 48px); line-height: 1.18; letter-spacing: -.025em; }
.product-detail-summary .article-meta { color: #60717b; font-size: 14px; line-height: 1.7; }
.product-detail-description { max-width: 560px; margin-bottom: 34px; color: #52606d; font-size: 15px; line-height: 2; }
.product-detail-body-intro { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid #cfdadd; }
.product-detail-body-intro .product-detail-body-label { margin: 0; }
.product-detail-body-intro span { color: #71818a; font-size: 12px; }
.product-detail-body { max-width: 940px; color: #42515a; font-size: 15px; line-height: 2; }
.product-detail-body h2 { margin: 48px 0 18px; padding-left: 14px; border-left: 3px solid var(--brand-blue); color: #173347; font-size: 25px; line-height: 1.35; }
.product-detail-body h3 { margin: 34px 0 12px; color: #173347; font-size: 19px; }
.product-detail-body p { margin: 0 0 18px; }
.product-detail-body img { display: block; width: auto; max-width: 100%; height: auto; margin: 28px auto; }
.product-detail-body table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: 13px; }
.product-detail-body th, .product-detail-body td { padding: 12px 14px; border: 1px solid #d9e2e5; text-align: left; }
.product-detail-body th { color: #173347; background: #eef3f4; font-weight: 700; }
.product-detail-footer { margin-top: 72px; border-top: 1px solid #d8e1e4; }
.product-detail-footer .pager { margin-top: 0; padding-top: 24px; border-top: 0; }
@media (max-width: 768px) {
    .product-detail-page { padding-top: 34px; padding-bottom: 64px; }
    .product-detail-intro { gap: 34px; margin-bottom: 52px; }
    .product-detail-cover { min-height: 300px; padding: 22px; }
    .product-detail-cover img { max-height: 300px; }
    .product-detail-summary { padding: 0; }
    .product-detail-summary .article-header h1 { font-size: 31px; }
    .product-detail-description { font-size: 14px; }
    .product-detail-body-intro { display: block; margin-bottom: 20px; }
    .product-detail-body-intro span { display: block; margin-top: 6px; }
    .product-detail-body { font-size: 14px; line-height: 1.9; }
    .product-detail-body h2 { margin-top: 36px; font-size: 22px; }
    .product-detail-body table { display: block; overflow-x: auto; white-space: nowrap; }
    .product-detail-footer { margin-top: 52px; }
}

.product-inquiry { position: relative; display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 56px; margin-top: 78px; padding: 0; overflow: hidden; background: #102c40; }
.product-inquiry::before { content: "01"; position: absolute; top: 28px; right: 34px; color: rgba(255,255,255,.16); font-size: 72px; font-weight: 700; line-height: 1; }
.product-inquiry-heading { align-self: stretch; padding: 58px 0 58px 52px; }
.product-inquiry-heading .product-detail-body-label { color: #70c8ec; }
.product-inquiry-heading h2 { margin: 0 0 18px; color: #fff; font-size: 34px; line-height: 1.25; }
.product-inquiry-heading > p:last-child { max-width: 280px; margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.9; }
.product-inquiry .message-form { padding-top: 0; border-top: 0; }
.product-inquiry .message-form { align-self: center; margin: 28px 28px 28px 0; padding: 30px; background: #fff; border: 0; }
.product-inquiry .form-field small { margin-top: -2px; }
.product-inquiry .form-footer { margin-top: 24px; padding: 22px 0 0; }
.product-inquiry .form-actions { align-self: end; }
.product-inquiry .message-form .button { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.product-inquiry .message-form .button span:last-child { font-size: 18px; line-height: 1; }
.product-inquiry .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-inquiry .form-field-full { grid-column: 1 / -1; }
.product-inquiry .form-footer { align-items: end; }
@media (max-width: 768px) {
    .product-inquiry { grid-template-columns: 1fr; gap: 0; margin-top: 52px; }
    .product-inquiry::before { top: 18px; right: 18px; font-size: 52px; }
    .product-inquiry-heading { padding: 34px 22px 26px; }
    .product-inquiry-heading h2 { font-size: 25px; }
    .product-inquiry-heading > p:last-child { max-width: 310px; font-size: 13px; }
    .product-inquiry .form-grid { grid-template-columns: 1fr; }
    .product-inquiry .form-field-full { grid-column: auto; }
    .product-inquiry .message-form { margin: 0 12px 12px; padding: 20px 16px; }
    .product-inquiry .form-footer { margin-top: 20px; }
}



/* Responsive refinement: fluid layout and small-screen overflow protection */
:where(.shell, .shell-wide) { min-width: 0; }
:where(.content, .page-content, .article-content, .product-detail-body) { overflow-wrap: anywhere; }
:where(.content, .page-content, .article-content) iframe { width: 100%; max-width: 100%; }
:where(.content, .page-content, .article-content) table { display: block; max-width: 100%; overflow-x: auto; }

@media (max-width: 1199px) {
    :root { --header-height: 78px; }
    .shell { width: min(calc(100% - 48px), var(--shell)); }
    .shell-wide { width: min(calc(100% - 32px), var(--shell-wide)); }
    .brand { flex-basis: 164px; height: 64px; }
    .brand img { width: 164px; }
    .nav-item > a { padding-inline: 10px; font-size: 13px; }
    .nav-item > a::after { left: 50%; bottom: 13px; }
    .submenu { top: 78px; }
}

@media (max-width: 900px) {
    .site-header { height: 68px; }
    .site-header .header-inner { width: calc(100% - 32px); }
    .brand { flex-basis: 150px; height: 56px; }
    .brand img { width: 150px; }
    .primary-nav { position: fixed; inset: 68px 0 0; z-index: 39; height: auto; padding: 10px 16px 28px; overflow-y: auto; background: rgba(255,255,255,.98); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .site-header.menu-active .primary-nav, body.menu-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
    .nav-list { display: block; height: auto; }
    .nav-item { display: block; border-bottom: 1px solid var(--line); }
    .nav-item > a { height: auto; min-height: 48px; padding: 12px 40px 12px 4px; color: var(--ink); }
    .nav-item > a::after { display: none; }
    .submenu { position: static; width: auto; max-width: none; padding: 0 0 8px 18px; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
    .nav-item.is-open .submenu { display: block; }
    .submenu a { padding: 8px 0; white-space: normal; }
    .submenu-toggle { display: block; position: absolute; top: 8px; right: 0; width: 40px; height: 40px; border: 0; background: transparent; }
    .submenu-toggle::before, .submenu-toggle::after { content: ""; position: absolute; left: 12px; top: 19px; width: 14px; height: 1px; background: currentColor; }
    .submenu-toggle::after { transform: rotate(90deg); transition: transform .2s ease; }
    .nav-item.is-open .submenu-toggle::after { transform: none; }
    .language-link { margin-left: auto; }
    .menu-toggle { display: flex; }
}

@media (max-width: 600px) {
    :root { --header-height: 60px; }
    .shell, .shell-wide { width: calc(100% - 32px); }
    .site-header { height: 60px; }
    .site-header .header-inner { width: calc(100% - 24px); }
    .brand, .brand img { width: 132px; }
    .brand { flex-basis: 132px; height: 50px; }
    .language-link { width: 28px; height: 28px; margin-right: 4px; }
    .primary-nav { inset: 60px 0 0; padding-inline: 12px; }
    .hero-content, .banner-content { padding-inline: 0; }
    .section-heading, .global-heading { display: block; }
    .section-heading .more-link, .global-heading .more-link { display: inline-block; margin-top: 12px; }
    .section-heading h2, .global-heading h2 { font-size: clamp(24px, 7vw, 30px); }
    .application-copy { left: 16px; right: 16px; bottom: 18px; }
    .application-copy h3 { font-size: 16px; }
    .footer-action-contact { align-items: stretch; flex-direction: column; }
    .footer-action-button { width: 100%; }
    .back-to-top { right: 12px; bottom: 12px; width: 40px; height: 40px; }
    .back-to-top span { font-size: 20px; }
    .pager { gap: 8px; }
    .pager a { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .contact-form-section, .product-inquiry { margin-inline: 0; }
}

@media (max-width: 380px) {
    .shell, .shell-wide { width: calc(100% - 24px); }
    .brand, .brand img { width: 116px; }
    .brand { flex-basis: 116px; }
    .language-link { display: none; }
    .page-content > h1, .list-heading h1, .article-header h1 { font-size: 22px; }
}

/* News detail reading system */
body:has(.news-detail-page) .inner-hero { height: 448px; }
body:has(.news-detail-page) .inner-hero-content { padding-bottom: 56px; }
.news-detail-page { max-width: 1280px; padding-top: 64px; padding-bottom: 88px; }
.news-article { max-width: 1160px; min-width: 0; margin-inline: auto; }
.news-article-header { max-width: none; padding-bottom: 34px; border-bottom: 1px solid #d8e1e5; }
.news-article-context { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.news-article-context p, .news-article-return { margin: 0; color: #61737e; font: 700 11px/1.2 Consolas, "Courier New", monospace; letter-spacing: .1em; }
.news-article-return { display: inline-flex; align-items: center; gap: 8px; color: #46616f; letter-spacing: .04em; transition: color .2s ease; }
.news-article-return span { color: var(--brand-blue); font-family: Arial, sans-serif; font-size: 16px; line-height: 1; transition: transform .2s var(--ease); }
.news-article-return:hover, .news-article-return:focus-visible { color: var(--brand-blue); }
.news-article-return:hover span, .news-article-return:focus-visible span { transform: translateX(-3px); }
.news-article-header h1 { max-width: 920px; margin: 0; color: #102c3d; font-size: clamp(32px, 3.6vw, 50px); font-weight: 600; line-height: 1.22; letter-spacing: 0; text-wrap: balance; }
.news-article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 23px; color: #73838c; font-size: 12px; line-height: 1.5; }
.news-article-meta > * { display: inline-flex; align-items: center; }
.news-article-meta > * + *::before { content: ""; width: 3px; height: 3px; margin-right: 24px; border-radius: 50%; background: #9bacb5; }
.news-article-layout { padding-top: 44px; }
.news-article-reading { max-width: 940px; min-width: 0; margin-inline: auto; }
.news-article-cover { margin: 0 0 44px; overflow: hidden; background: #eef3f5; }
.news-article-cover img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.news-article-reading .rich-content { max-width: 720px; color: #435560; font-size: 16px; line-height: 2; overflow-wrap: anywhere; }
.news-article-reading .rich-content > :last-child { margin-bottom: 0; }
.news-article-reading .rich-content p { margin: 0 0 22px; }
.news-article-reading .rich-content h2 { margin: 48px 0 18px; padding-left: 14px; border-left: 3px solid var(--brand-blue); color: #16384b; font-size: 25px; font-weight: 600; line-height: 1.4; }
.news-article-reading .rich-content h3 { margin: 34px 0 14px; color: #1c4053; font-size: 19px; line-height: 1.45; }
.news-article-reading .rich-content ul, .news-article-reading .rich-content ol { margin: 0 0 24px; padding-left: 24px; }
.news-article-reading .rich-content ul { list-style: disc; }
.news-article-reading .rich-content ol { list-style: decimal; }
.news-article-reading .rich-content li + li { margin-top: 8px; }
.news-article-reading .rich-content blockquote { margin: 30px 0; padding: 18px 22px; border-left: 3px solid #7db8d5; color: #536976; background: #f1f7f9; }
.news-article-reading .rich-content img { display: block; width: auto; max-width: 100%; height: auto; margin: 34px auto; }
.news-article-reading .rich-content table { width: 100%; margin: 30px 0; border-collapse: collapse; font-size: 14px; }
.news-article-reading .rich-content th { color: #17384b; background: #edf4f6; }
.news-article-reading .rich-content th, .news-article-reading .rich-content td { padding: 12px 14px; border: 1px solid #d9e3e7; }
.news-article-reading .rich-content pre { max-width: 100%; overflow-x: auto; padding: 16px 18px; background: #f1f5f7; }
.news-article-reading .attachment-download { margin-top: 34px; }
.news-pager { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 68px; padding-top: 26px; border-top-color: #d7e2e6; }
.news-pager > span { min-width: 0; display: flex; flex-direction: column; gap: 7px; padding-left: 15px; border-left: 2px solid #dbe7eb; color: #576b76; line-height: 1.65; }
.news-pager > span:last-child { align-items: flex-end; padding-right: 15px; padding-left: 0; border-left: 0; border-right: 2px solid #dbe7eb; text-align: right; }
.news-pager em { color: #7f929b; font: 700 10px/1 Consolas, "Courier New", monospace; font-style: normal; letter-spacing: .1em; }
.news-pager a { color: #224b61; font-size: 14px; line-height: 1.6; transition: color .2s ease; }
.news-pager a:hover, .news-pager a:focus-visible { color: var(--brand-blue); }

@media (max-width: 1199px) {
    body:has(.news-detail-page) .inner-hero { height: 400px; }
    body:has(.news-detail-page) .inner-hero-content { padding-bottom: 48px; }
    .news-article { max-width: none; }
}

@media (max-width: 900px) {
    body:has(.news-detail-page) .inner-hero { height: 280px; }
    body:has(.news-detail-page) .inner-hero-content { padding-bottom: 34px; }
    .news-detail-page { padding-top: 46px; padding-bottom: 72px; }
    .news-article-layout { padding-top: 34px; }
    .news-article-cover { margin-bottom: 38px; }
}

@media (max-width: 600px) {
    body:has(.news-detail-page) .inner-hero { height: 250px; }
    body:has(.news-detail-page) .inner-hero-content { padding-bottom: 30px; }
    .news-detail-page { padding-top: 32px; padding-bottom: 56px; }
    .news-article-header { padding-bottom: 24px; }
    .news-article-context { align-items: flex-start; gap: 12px; margin-bottom: 17px; }
    .news-article-context p { max-width: 130px; padding-top: 2px; text-align: right; font-size: 9px; line-height: 1.45; }
    .news-article-return { font-size: 10px; }
    .news-article-header h1 { font-size: 29px; line-height: 1.3; }
    .news-article-meta { gap: 8px 15px; margin-top: 19px; font-size: 11px; }
    .news-article-meta > * + *::before { margin-right: 15px; }
    .news-article-layout { padding-top: 24px; }
    .news-article-cover { margin-bottom: 27px; }
    .news-article-reading .rich-content { font-size: 15px; line-height: 1.95; }
    .news-article-reading .rich-content p { margin-bottom: 19px; }
    .news-article-reading .rich-content h2 { margin: 35px 0 15px; padding-left: 12px; font-size: 20px; }
    .news-article-reading .rich-content h3 { margin-top: 29px; font-size: 17px; }
    .news-article-reading .rich-content blockquote { margin: 24px 0; padding: 15px 17px; }
    .news-article-reading .rich-content table { display: block; overflow-x: auto; white-space: nowrap; }
    .news-article-reading .rich-content th, .news-article-reading .rich-content td { padding: 10px 12px; }
    .news-pager { grid-template-columns: 1fr; gap: 20px; margin-top: 46px; padding-top: 21px; }
    .news-pager > span, .news-pager > span:last-child { align-items: flex-start; padding: 0 0 0 12px; border-right: 0; border-left: 2px solid #dbe7eb; text-align: left; }
}

/* News index */
.news-index { background: #f4f8fa; }
.news-index-heading > div > p {
    margin: 0 0 10px; color: var(--brand-blue); font: 700 11px/1.3 Consolas, "Courier New", monospace;
}
.news-catalog-more i { flex: 0 0 auto; font-family: Arial, sans-serif; font-size: 17px; font-style: normal; line-height: 1; transition: transform .24s var(--ease); }
.news-catalog-row:hover .news-catalog-more i, .news-catalog-row:focus-visible .news-catalog-more i { transform: translateX(4px); }
.news-catalog-row:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }
.news-index-listing { padding-top: 74px; padding-bottom: 112px; }
.news-index-heading { display: block; margin-bottom: 32px; padding-bottom: 0; border-bottom: 1px solid #cfdde3; }
.news-index-heading h2 { margin: 0; color: #122d3e; font-size: clamp(28px, 2.6vw, 36px); font-weight: 600; line-height: 1.22; }
.news-category-nav { display: flex; align-items: center; gap: 28px; margin-top: 24px; }
.news-category-link { position: relative; display: inline-flex; padding-bottom: 13px; color: #788a94; font-size: 13px; line-height: 1.4; transition: color .2s ease; }
.news-category-link::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--brand-blue); transform: scaleX(0); transform-origin: left center; transition: transform .2s var(--ease); }
.news-category-link:hover, .news-category-link:focus-visible, .news-category-link.is-active { color: var(--brand-blue); }
.news-category-link.is-active { font-weight: 700; }
.news-category-link.is-active::after, .news-category-link:focus-visible::after { transform: scaleX(1); }
.news-index .news-catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-index .news-catalog-row {
    min-height: 0; display: grid; grid-template-columns: 1fr; grid-template-rows: 248px minmax(244px, auto); gap: 0; align-items: stretch; overflow: hidden;
    border: 1px solid #d7e3e8; background: #fff; transform: none;
}
.news-index .news-catalog-media { min-width: 0; min-height: 0; height: 100%; margin: 0; overflow: hidden; background: #dce8ed; }
.news-index .news-catalog-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s var(--ease), filter .35s ease; }
.news-index .news-catalog-copy { min-width: 0; min-height: 0; display: flex; flex-direction: column; padding: 25px 28px 24px; }
.news-index .news-catalog-meta { height: 44px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.news-index .news-catalog-category { color: #1079b0; font-size: 12px; font-weight: 700; line-height: 1.4; }
.news-index .news-catalog-row time { min-width: 82px; display: flex; align-items: baseline; justify-content: flex-end; gap: 6px; color: #78919e; text-align: right; }
.news-index .news-catalog-row time strong { color: var(--brand-blue); font-size: 24px; font-weight: 500; line-height: 1; }
.news-index .news-catalog-row time span { margin: 0; font: 11px/1.2 Consolas, "Courier New", monospace; }
.news-index .news-catalog-row h2 { margin: 25px 0 12px; color: #122c3c; font-size: 21px; font-weight: 600; line-height: 1.45; }
.news-index .news-catalog-row p { margin: 0; color: #63747e; font-size: 13px; line-height: 1.8; }
.news-catalog-more { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: auto; padding-top: 18px; color: var(--brand-blue); font-size: 12px; font-weight: 700; line-height: 1.4; }
.news-index .news-catalog-row:first-child { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); grid-template-rows: 408px; border-color: #d7e3e8; background: #fff; }
.news-index .news-catalog-row:first-child .news-catalog-copy { padding: 36px clamp(30px, 4vw, 52px) 34px; background: #fff; }
.news-index .news-catalog-row:first-child .news-catalog-category { color: #1079b0; }
.news-index .news-catalog-row:first-child time { color: #78919e; }
.news-index .news-catalog-row:first-child time strong { color: var(--brand-blue); }
.news-index .news-catalog-row:first-child h2 { max-width: 470px; margin-top: 42px; color: #122c3c; font-size: clamp(25px, 2.35vw, 34px); line-height: 1.38; }
.news-index .news-catalog-row:first-child p { max-width: 420px; color: #63747e; font-size: 14px; }
.news-index .news-catalog-row:first-child .news-catalog-more { color: var(--brand-blue); }
.news-index .news-catalog-row:hover, .news-index .news-catalog-row:focus-visible { border-color: #82bdd5; box-shadow: 0 16px 34px rgba(27, 67, 87, .12); transform: translateY(-4px); }
.news-index .news-catalog-row:hover .news-catalog-media img, .news-index .news-catalog-row:focus-visible .news-catalog-media img { transform: scale(1.045); }
.news-index .news-catalog-row:hover:not(:first-child) h2, .news-index .news-catalog-row:focus-visible:not(:first-child) h2 { color: var(--brand-blue); }
.news-index .pagination { justify-content: center; margin-top: 48px; }
.news-index .pagination a, .news-index .pagination span { border-color: #cedde3; color: #43606f; background: #fff; }
.news-index .pagination .page-num-current, .news-index .pagination a:hover, .news-index .pagination a:focus-visible { color: #fff; border-color: var(--brand-blue); background: var(--brand-blue); }

@media (max-width: 900px) {
    .news-index .news-catalog-grid { grid-template-columns: 1fr; }
    .news-index .news-catalog-row { grid-template-columns: 235px minmax(0, 1fr); grid-template-rows: 242px; }
    .news-index .news-catalog-row:first-child { grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr); grid-template-rows: 370px; }
    .news-index .news-catalog-row:first-child h2 { margin-top: 33px; }
}

@media (max-width: 600px) {
    .news-index-listing { padding-top: 46px; padding-bottom: 70px; }
    .news-index-heading { margin-bottom: 23px; padding-bottom: 0; }
    .news-category-nav { gap: 22px; margin-top: 19px; overflow-x: auto; }
    .news-category-link { flex: 0 0 auto; padding-bottom: 11px; font-size: 12px; }
    .news-index .news-catalog-grid { gap: 16px; }
    .news-index .news-catalog-row, .news-index .news-catalog-row:first-child { grid-template-columns: 1fr; grid-template-rows: auto; }
    .news-index .news-catalog-media, .news-index .news-catalog-row:first-child .news-catalog-media { height: 215px; }
    .news-index .news-catalog-copy, .news-index .news-catalog-row:first-child .news-catalog-copy { min-height: 228px; padding: 21px 20px 20px; }
    .news-index .news-catalog-row:first-child h2, .news-index .news-catalog-row h2 { margin-top: 25px; font-size: 21px; line-height: 1.45; }
    .news-index .news-catalog-row:first-child p { font-size: 13px; }
    .news-index .news-catalog-row time { min-width: 0; }
    .news-index .news-catalog-row time strong { font-size: 22px; }
    .news-catalog-more { padding-top: 16px; }
    .news-index .pagination { margin-top: 34px; }
}

/* Footer redesign: clear brand and navigation hierarchy. */
.site-footer {
    color: rgba(255,255,255,.76);
    background: #071b2d;
}
.footer-backdrop::after {
    background: linear-gradient(180deg, rgba(7,27,45,.84) 0%, rgba(7,27,45,.76) 58%, rgba(7,27,45,.9) 100%);
}
.footer-backdrop img {
    object-position: center 58%;
    filter: saturate(.78) contrast(1.04);
}
.footer-body { background: rgba(7,27,45,.24); }
.footer-main {
    display: grid;
    grid-template-columns: minmax(245px, .68fr) minmax(0, 1.7fr);
    gap: clamp(48px, 7vw, 120px);
    padding-top: 68px;
    padding-bottom: 58px;
}
.footer-profile { min-width: 0; padding-right: 12px; }
.footer-kicker {
    margin: 0 0 18px;
    color: #65c7ff;
    font: 700 10px/1.2 Consolas, "Courier New", monospace;
    letter-spacing: .16em;
}
.footer-brand { width: 176px; }
.footer-positioning {
    max-width: 230px;
    margin: 14px 0 28px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.7;
}
.footer-contact-list { display: grid; gap: 12px; }
.footer-contact-item {
    display: grid;
    gap: 3px;
    width: fit-content;
    padding-left: 14px;
    border-left: 2px solid rgba(101,199,255,.72);
}
.footer-contact-item span { color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.3; }
.footer-contact-item strong { color: #fff; font-size: 15px; font-weight: 600; line-height: 1.4; }
.footer-contact-item:hover strong, .footer-contact-item:focus-visible strong { color: #65c7ff; }
.footer-nav {
    align-self: start;
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 20px;
    padding-top: 2px;
}
.footer-column { min-width: 0; }
.footer-column-title { margin-bottom: 12px; color: #fff; font-size: 14px; font-weight: 600; line-height: 1.4; }
.footer-column ul { display: grid; gap: 7px; }
.footer-column li { line-height: 1.45; }
.footer-column li a { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover, .footer-column a:focus-visible { color: #65c7ff; }
.footer-bottom {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    align-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.56);
    font-size: 11px;
}
.footer-bottom p { margin: 0; }
.footer-address { line-height: 1.5; }
.footer-address span { margin-right: 10px; color: #fff; font-weight: 600; }
.footer-legal-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 5px 24px; text-align: center; }
.footer-icp { color: inherit; transition: color .2s ease; }
.footer-icp:hover, .footer-icp:focus-visible { color: #fff; }

@media (max-width: 1199px) and (min-width: 769px) {
    .footer-main { grid-template-columns: minmax(220px,.82fr) minmax(0,1.45fr); gap: 42px; }
}

@media (max-width: 768px) {
    .footer-backdrop::after { background: linear-gradient(180deg, rgba(7,27,45,.86) 0%, rgba(7,27,45,.82) 60%, rgba(7,27,45,.94) 100%); }
    .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 48px; padding-bottom: 40px; }
    .footer-profile { padding-right: 0; }
    .footer-brand { width: 158px; }
    .footer-positioning { margin: 11px 0 22px; font-size: 12px; }
    .footer-nav { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; margin-top: 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
    .footer-column { padding: 0 0 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
    .footer-column-title { margin-bottom: 10px; font-size: 12px; }
    .footer-column ul { display: grid; gap: 5px; }
    .footer-column li a { font-size: 11px; }
    .footer-bottom { min-height: 0; grid-template-columns: 1fr; gap: 8px; padding-top: 18px; padding-bottom: 22px; font-size: 10px; }
    .footer-address { display: grid; gap: 3px; }
    .footer-address span { margin-right: 0; }
    .footer-legal-row { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; text-align: left; }
}

@media (max-width: 600px) {
    .footer-main { gap: 32px; padding-top: 40px; }
    .footer-kicker { margin-bottom: 15px; font-size: 9px; }
    .footer-brand { width: 150px; }
    .footer-contact-item strong { font-size: 14px; }
    .footer-nav { gap: 0 18px; }
}
