:root {
  --ink-950: #06172b;
  --ink-900: #0b2138;
  --ink-800: #102b46;
  --ink-700: #284761;
  --blue-700: #155dc0;
  --blue-600: #1f75e8;
  --blue-100: #e8f2fb;
  --slate-600: #607487;
  --slate-500: #7b8da0;
  --line: #d7e2ec;
  --surface: #f5f8fb;
  --white: #fff;
  --content-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 16px 44px rgb(6 23 43 / 0.08);
  --shadow-soft: 0 8px 24px rgb(6 23 43 / 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink-950); background: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 3px; }
.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; z-index: 100; top: 12px; left: 12px; padding: 8px 12px; color: var(--white); background: var(--ink-950); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--content-width), calc(100% - 64px)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 80; background: var(--white); box-shadow: 0 10px 4px rgb(0 0 0 / .18); transition: background-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease; }
.site-header.is-scrolled { background: rgb(255 255 255 / .7); box-shadow: 0 8px 24px rgb(6 23 43 / .14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(var(--content-width), calc(100% - 64px)); min-height: 78px; margin-inline: auto; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 10px; color: #0c2948; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.brand-mark { display: block; width: 70px; height: 48px; overflow: visible; flex: 0 0 70px; background: transparent; }
.brand-mark img { display: block; width: 100%; max-width: 100%; height: 100%; object-fit: contain; transform: none; }
.brand-name { font-size: 24px; font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; gap: clamp(18px, 2.2vw, 42px); }
.nav-link { position: relative; padding: 31px 0 24px; color: #111; font-size: 14px; font-weight: 600; white-space: nowrap; }
.nav-link::after { position: absolute; right: 0; bottom: 11px; left: 0; height: 2px; border-radius: 999px; background: var(--blue-600); content: ""; opacity: 0; transform: scaleX(.3); transition: opacity .18s ease, transform .18s ease; }
.nav-link:hover::after, .nav-link.is-active::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; align-items: center; flex: 0 0 auto; gap: 10px; }
.quote-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 22px; color: var(--white); background: var(--blue-600); border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; line-height: 1.1; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.quote-button:hover { background: var(--blue-700); transform: translateY(-2px); }
.quote-button--header { min-height: 27px; padding: 7px 13px; font-size: 12px; }
.menu-toggle { display: none; border: 0; background: transparent; }
.mobile-menu { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; color: var(--white); background: var(--blue-600); border: 1px solid var(--blue-600); border-radius: 999px; font-size: .87rem; font-weight: 700; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-2px); }
.button-small { min-height: 38px; padding: 0 16px; color: var(--white) !important; }
.button-ghost { color: var(--ink-950); background: transparent; border-color: var(--line); }
.button-ghost:hover { color: var(--blue-700); background: var(--blue-100); border-color: var(--blue-100); }
.button-light { color: var(--ink-950); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; border-color: rgb(255 255 255 / .6); }
.home-hero .button-ghost, .page-hero .button-ghost { color: var(--white); border-color: rgb(255 255 255 / .48); }
.home-hero .button-ghost:hover, .page-hero .button-ghost:hover { color: var(--ink-950); background: var(--white); border-color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-size: .88rem; font-weight: 700; }
.text-link:hover { color: var(--blue-600); }
.muted-label { color: var(--slate-600); font-size: .87rem; }

.hero { position: relative; overflow: hidden; }
.home-hero { min-height: 660px; color: var(--white); background: var(--ink-950); }
.home-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 76% 46%, rgb(31 117 232 / .28), transparent 38%), linear-gradient(115deg, transparent 0 48%, rgb(31 117 232 / .08) 48% 50%, transparent 50%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 660px; gap: 60px; }
.hero-copy { max-width: 620px; padding: 78px 0; }
.eyebrow { margin: 0 0 16px; color: var(--blue-700); font-size: .73rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-light { color: #84bfff; }
h1, h2, h3, p { margin-top: 0; }

/* Scroll reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); will-change: opacity, transform; }
.reveal[data-reveal-kind="text"] { transform: translateY(22px); }
.reveal[data-reveal-kind="card"] { transform: translateY(30px) scale(.985); transition-duration: .76s; }
.reveal[data-reveal-kind="image"] { transform: translateY(28px) scale(.985); transition-duration: .82s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 5.6rem); }
h2 { margin-bottom: 22px; font-size: calc(clamp(2.1rem, 4vw, 3.55rem) - 10px); }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
.hero-lead { max-width: 560px; color: rgb(255 255 255 / .76); font-size: 1.08rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 38px; color: rgb(255 255 255 / .68); font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 6px; height: 6px; content: ""; background: #70b1ff; border-radius: 50%; }
.hero-visual { position: relative; min-height: 470px; border: 1px solid rgb(255 255 255 / .14); border-radius: var(--radius-lg); overflow: hidden; background: rgb(255 255 255 / .06); }
.hero-visual img { width: 100%; height: 100%; min-height: 470px; object-fit: contain; }
.section { padding: 112px 0; }
.section-light { background: var(--white); }
.section-surface { background: var(--surface); }
.section-dark { color: var(--white); background: var(--ink-950); }
.section-accent { color: var(--white); background: var(--blue-600); }
.section-heading { max-width: 660px; }
.section-heading p:not(.eyebrow) { color: var(--slate-600); }
.section-dark .section-heading p:not(.eyebrow) { color: rgb(255 255 255 / .7); }
.section-heading-wide { max-width: 760px; margin-bottom: 52px; }
#range-title, #compare-title, #choose-title { font-size: clamp(calc(2.1rem - 4px), calc(4vw - 4px), calc(3.55rem - 4px)); white-space: nowrap; }
#mission-title, #capability-title, #coverage-title, #service-title { font-size: clamp(calc(2.1rem - 4px), calc(4vw - 4px), calc(3.55rem - 4px)); }
#about-cta-title { font-size: clamp(calc(2.1rem - 15px), calc(4vw - 15px), calc(3.55rem - 15px)); }
#news-list-title, #news-cta-title { font-size: clamp(calc(2.1rem - 4px), calc(4vw - 4px), calc(3.55rem - 4px)); }
#contact-request-title { font-size: clamp(calc(2.1rem - 10px), calc(4vw - 10px), calc(3.55rem - 10px)); }
#contact-products-title { font-size: clamp(calc(2.1rem - 8px), calc(4vw - 8px), calc(3.55rem - 8px)); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.four-up, .feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.feature-number { display: block; margin-bottom: 54px; color: var(--blue-600); font-size: .76rem; font-weight: 800; letter-spacing: .08em; }
.feature-card p { margin-bottom: 0; color: var(--slate-600); font-size: .9rem; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }
.product-card-image { aspect-ratio: 1 / 1; overflow: hidden; background: #edf3f8; }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 22px; }
.product-card-body p:not(.card-kicker) { min-height: 50px; margin-bottom: 20px; color: var(--slate-600); font-size: .88rem; }
.product-card-body .text-link { margin-top: auto; }
.card-kicker { margin-bottom: 10px; color: var(--blue-700); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact-list { display: grid; gap: 7px; width: 100%; margin: 8px 0 18px; color: var(--slate-500); font-size: .76rem; }
.fact-list span { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 7px; }
.fact-list strong { color: var(--ink-700); font-weight: 700; text-align: right; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.tag-list span { padding: 7px 10px; color: var(--ink-700); background: var(--blue-100); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.narrow-content { max-width: 840px; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.honor-overview-layout { display: grid; gap: 44px; }
.honor-overview-heading { max-width: none; }
.honor-overview-heading h2 { max-width: none; }
.honor-overview-columns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); align-items: start; gap: 72px; }
.honor-overview-list { max-width: 720px; }
.honor-overview-list > p { margin-bottom: 0; color: var(--slate-600); }
.honor-overview-columns .about-highlight { margin-top: 0; }
.image-stack { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius-lg); background: #dce9f3; }
.image-stack img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.image-caption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; gap: 3px; padding: 15px 17px; color: var(--white); background: rgb(6 23 43 / .84); border-radius: var(--radius-sm); font-size: .8rem; }
.image-caption span { color: rgb(255 255 255 / .68); }
.application-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.application-card { min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: background .2s ease, color .2s ease, transform .2s ease; }
.application-card:hover { color: var(--white); background: var(--ink-950); transform: translateY(-3px); }
.application-card > span { display: block; margin-bottom: 58px; color: var(--blue-600); font-size: .78rem; font-weight: 800; }
.application-card:hover > span { color: #7db8ff; }
.application-card p { margin-bottom: 0; color: var(--slate-600); font-size: .86rem; }
.application-card:hover p { color: rgb(255 255 255 / .68); }
.application-card-accent { color: var(--white); background: var(--blue-600); border-color: var(--blue-600); }
.application-card-accent p { color: rgb(255 255 255 / .75); }
.quality-home-layout { grid-template-columns: .32fr 1fr; }
.quality-mark { display: grid; align-content: center; justify-items: center; width: 210px; height: 210px; color: var(--blue-600); border: 1px solid var(--blue-600); border-radius: 50%; font-weight: 800; }
.quality-mark span:first-child { font-size: 6.5rem; line-height: .8; }
.quality-mark span:last-child { font-size: .75rem; letter-spacing: .15em; }
.news-teaser-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.news-teaser { min-height: 240px; padding: 26px; border-top: 2px solid var(--blue-600); background: var(--surface); }
.news-teaser p:last-child { color: var(--slate-600); font-size: .9rem; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-row h2 { margin-bottom: 0; }
.site-footer { color: rgb(255 255 255 / .75); background: var(--ink-950); }
.footer-grid { display: grid; grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); padding: 64px 0 54px; }
.brand-footer { align-items: center; gap: 10px; width: max-content; max-width: 100%; padding: 8px 14px 8px 10px; color: #0c2948; background: var(--white); border-radius: 10px; }
.brand-footer .brand-mark { width: 70px; height: 48px; overflow: visible; flex: 0 0 70px; background: transparent; }
.brand-footer .brand-mark img { display: block; width: 100%; max-width: 100%; height: 100%; object-fit: contain; transform: none; }
.brand-footer .brand-name { display: block; color: #0c2948; font-size: 20px; font-weight: 700; line-height: 1; }
.footer-grid p:not(.footer-label) { max-width: 310px; margin-top: 22px; color: rgb(255 255 255 / .56); font-size: .88rem; }
.footer-grid a, .footer-grid span { display: block; margin: 0 0 12px; color: rgb(255 255 255 / .68); font-size: .87rem; }
.footer-explore { display: flex; flex-wrap: wrap; align-content: flex-start; column-gap: 18px; }
.footer-explore .footer-label { flex: 0 0 100%; }
.footer-explore > a { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-grid a.brand-footer, .footer-grid a.brand-footer:hover { display: inline-flex; margin: 0; color: #0c2948; font-size: inherit; }
.footer-grid .brand-footer .brand-mark { margin: 0; color: inherit; font-size: inherit; }
.footer-grid--inner { align-items: start; }
.footer-brand-column { max-width: 320px; }
.footer-grid--inner .footer-brand-column > p { margin: 20px 0 0; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column .footer-label { margin-bottom: 6px; }
.footer-column > a, .footer-column > span { margin: 0; transition: color .18s ease, transform .18s ease; }
.footer-column > a:hover, .footer-column > a:focus-visible { transform: translateX(3px); }
.footer-column--contact > a:first-of-type { color: #9ecbff; font-weight: 700; }
.site-tools { position: fixed; z-index: 40; right: clamp(12px, 2vw, 28px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.site-tools-social { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 8px; border: 1px solid #d8e4f0; border-radius: 14px; background: rgb(255 255 255 / .96); box-shadow: 0 12px 28px rgb(6 23 43 / .2); }
.site-tool-social { position: relative; display: grid; width: 40px; height: 40px; overflow: visible; place-items: center; color: var(--blue-700); border-radius: 10px; font-size: 9px; font-weight: 800; letter-spacing: -.08em; line-height: 1; text-decoration: none; transition: transform .18s ease; }
.site-tool-social:hover { transform: scale(1.15); }
.site-tool-social-icon { display: grid; width: 100%; height: 100%; place-items: center; border-radius: inherit; background: #eef7ff; }
.site-tool-social-icon svg { display: block; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-tool-social-icon-image { display: block; width: 28px; height: 28px; object-fit: contain; }
.site-tool-social--whatsapp .site-tool-social-icon { background: var(--white); border: 1px solid #d7eee2; }
.site-tool-social--email .site-tool-social-icon { color: var(--white); background: var(--blue-600); }
.site-tool-social--mobile .site-tool-social-icon { color: var(--white); background: #eab308; }
.site-tool-social-info { position: absolute; right: calc(100% + 10px); top: 50%; z-index: 2; min-width: 0; width: max-content; max-width: min(250px, calc(100vw - 88px)); padding: 8px 10px; border: 1px solid #d8e4f0; border-radius: 9px; background: rgb(255 255 255 / .98); box-shadow: 0 10px 24px rgb(6 23 43 / .18); text-align: left; white-space: nowrap; opacity: 0; visibility: hidden; pointer-events: none; transform: translate(6px, -50%); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.site-tool-social-info--whatsapp { width: 116px; padding: 8px; text-align: center; }
.site-tool-social-info--whatsapp .site-tool-social-qr { display: block; width: 96px; height: 96px; margin: 7px auto 0; object-fit: contain; border: 1px solid var(--line); background: var(--white); }
.site-tool-social:hover .site-tool-social-info, .site-tool-social:focus-visible .site-tool-social-info, .site-tool-social:focus-within .site-tool-social-info { opacity: 1; visibility: visible; transform: translate(0, -50%); }
.site-tool-social-label, .site-tool-social-value { display: block; }
.site-tool-social-label { color: var(--ink-950); font-size: 10px; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.site-tool-social-value { margin-top: 3px; color: var(--slate-600); font-size: 11px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.site-tool-top { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: var(--blue-600); box-shadow: 0 10px 24px rgb(31 117 232 / .35); font-size: 22px; line-height: 1; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, background-color .18s ease; }
.site-tool-top:hover { background: var(--blue-700); }
.site-tools.is-scrolled .site-tool-top { opacity: 1; pointer-events: auto; transform: none; }
@media (prefers-reduced-motion: reduce) { .site-tool-social, .site-tool-top { transition: none; } }
.footer-label { margin: 0 0 18px; color: var(--white) !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 24px; border-top: 1px solid rgb(255 255 255 / .14); color: rgb(255 255 255 / .42); font-size: .72rem; }
.footer-support { margin-left: auto; }

/* Inner-page components */
.page-hero { padding: 70px 0 64px; color: var(--white); background: var(--ink-950); }
.page-hero--applications { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--applications::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/figma/application-main.png") center / cover no-repeat; opacity: .32; transform: scale(1.02); }
.page-hero--applications::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .98) 0%, rgb(6 23 43 / .92) 46%, rgb(6 23 43 / .66) 100%); }
.page-hero--applications > .container { position: relative; z-index: 1; }
.page-hero--contact { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--contact::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/figma/application-demo.png") 68% 52% / cover no-repeat; opacity: .34; transform: scale(1.02); }
.page-hero--contact::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .99) 0%, rgb(6 23 43 / .94) 43%, rgb(6 23 43 / .72) 100%); }
.page-hero--contact > .container { position: relative; z-index: 1; }
.page-hero--news { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--news::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/figma/application-demo.png") 68% 48% / cover no-repeat; opacity: .5; transform: scale(1.02); }
.page-hero--news::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .84) 0%, rgb(6 23 43 / .62) 46%, rgb(6 23 43 / .28) 100%); }
.page-hero--news > .container { position: relative; z-index: 1; }
.page-hero--news { padding: 70px 0 64px; }
.page-hero--news .page-hero-grid { row-gap: 20px; }
.page-hero--news h1 { margin-bottom: 0; }
.page-hero--news .page-hero-aside { margin-top: 0; }
.page-hero--about { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--about::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/company/exhibition-01.png") 68% 48% / cover no-repeat; opacity: .58; transform: scale(1.02); }
.page-hero--about::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .8) 0%, rgb(6 23 43 / .6) 43%, rgb(6 23 43 / .24) 100%); }
.page-hero--about > .container { position: relative; z-index: 1; }
.page-hero--factory { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--factory::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/company/production-01.jpg") 62% center / cover no-repeat; opacity: .42; transform: scale(1.02); }
.page-hero--factory::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .92) 0%, rgb(6 23 43 / .72) 48%, rgb(6 23 43 / .35) 100%); }
.page-hero--factory > .container { position: relative; z-index: 1; }
.page-hero--honor { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--honor::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/honor/honor-hero.png") center center / cover no-repeat; opacity: .42; transform: scale(1.02); }
.page-hero--honor::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .94) 0%, rgb(6 23 43 / .78) 46%, rgb(6 23 43 / .44) 100%); }
.page-hero--honor > .container { position: relative; z-index: 1; }
.page-hero--products { position: relative; isolation: isolate; overflow: hidden; background-color: var(--ink-950); background-image: url("assets/products/products-hero.png?v=20260824-1327"); background-position: 68% center; background-size: cover; background-repeat: no-repeat; }
.page-hero--products::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/products/products-hero.png?v=20260824-1327") 68% center / cover no-repeat; opacity: .72; transform: scale(1.02); }
.page-hero--products::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .78) 0%, rgb(6 23 43 / .5) 46%, rgb(6 23 43 / .16) 100%); }
.page-hero--products > .container { position: relative; z-index: 1; }
.product-list-intro { padding-bottom: 26px; }
.section#product-range { padding: 56px 0; }
.product-list-intro-heading { max-width: none; margin-bottom: 52px; }
.product-list-intro-heading > p:last-child { max-width: 1120px; }
.product-list-intro-heading #product-intro-title { font-size: calc(clamp(2.1rem, 4vw, 3.55rem) - 14px); }
.product-intro-title-line { display: flex; align-items: center; gap: 18px; }
.product-intro-title-line > span:last-child { min-width: 0; letter-spacing: 1px; }
.product-intro-icon { display: grid; flex: 0 0 46px; width: 46px; height: 46px; margin-top: 0; padding: 9px; place-items: center; border: 1px solid rgb(31 117 232 / .3); border-radius: 50%; background: rgb(31 117 232 / .08); }
.product-intro-icon img { width: 100%; height: 100%; object-fit: contain; }
.product-solution-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 36px; }
.product-solution-card { min-height: 174px; padding: 24px; border-top: 2px solid var(--blue-600); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 0 0 var(--radius-md) var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.product-solution-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.product-solution-card p { margin-bottom: 0; color: var(--slate-600); font-size: .9rem; }
@media (min-width: 1025px) {
  .page-hero--about .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--about .page-hero-meta { grid-area: meta; }
  .page-hero--about h1 { grid-area: title; max-width: none !important; white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  .page-hero--about .page-hero-body { grid-area: body; }
  .page-hero--about .page-hero-aside { grid-area: aside; }
  .page-hero--factory .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--factory .page-hero-meta { grid-area: meta; }
  .page-hero--factory h1 { grid-area: title; max-width: 980px !important; white-space: normal; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  .page-hero--factory .page-hero-body { grid-area: body; }
  .page-hero--factory .page-hero-aside { grid-area: aside; }
  .page-hero--applications .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--applications .page-hero-meta { grid-area: meta; }
  .page-hero--applications h1 { grid-area: title; max-width: none !important; white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  .page-hero--applications .page-hero-body { grid-area: body; }
  .page-hero--applications .page-hero-aside { grid-area: aside; }
	.page-hero--honor .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
	.page-hero--honor .page-hero-meta { grid-area: meta; }
	.page-hero--honor h1 { grid-area: title; max-width: none !important; white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
	.page-hero--honor .page-hero-body { grid-area: body; }
	.page-hero--honor .page-hero-aside { grid-area: aside; }
  .page-hero--contact .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--contact .page-hero-meta { grid-area: meta; }
  .page-hero--contact h1 { grid-area: title; max-width: none !important; white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  .page-hero--contact .page-hero-body { grid-area: body; }
  .page-hero--contact .page-hero-aside { grid-area: aside; }
  .page-hero--news .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--news .page-hero-meta { grid-area: meta; }
  .page-hero--news h1 { grid-area: title; max-width: none !important; white-space: nowrap; }
  .page-hero--news .page-hero-body { grid-area: body; }
  .page-hero--news .page-hero-aside { grid-area: aside; }
  #capability-title, #coverage-title { white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  #application-title { white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
  #news-list-title { white-space: nowrap; font-size: clamp(2rem, 3vw, 3rem) !important; letter-spacing: -.05em; }
}
.page-hero-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: end; column-gap: 60px; row-gap: 20px; }
.page-hero h1 { max-width: 800px; margin-bottom: 20px; font-size: calc(clamp(calc(2.8rem - 25px), calc(6vw - 25px), calc(5rem - 25px)) - 4px); white-space: nowrap; }
.page-hero .page-hero-meta + h1 { margin-bottom: 0; }
.page-hero-meta .eyebrow { margin-bottom: 0; }
.page-hero p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: rgb(255 255 255 / .72); font-size: 1.05rem; }
.page-hero-aside { width: 340px; max-width: 100%; padding: 14px 16px; margin-top: 24px; border: 1px solid rgb(255 255 255 / .18); border-radius: var(--radius-md); text-align: center; }
.page-hero-aside strong { display: block; margin-bottom: 10px; color: var(--white); font-size: 1.1rem; white-space: nowrap; }
.page-hero-aside span { display: block; color: rgb(255 255 255 / .6); font-size: .85rem; }
.product-detail .page-hero h1 { max-width: 760px; white-space: normal; }
.hero-product-figure { position: relative; height: 390px; min-height: 390px; margin: 0; overflow: hidden; border: 1px solid rgb(255 255 255 / .18); border-radius: var(--radius-lg); background: rgb(255 255 255 / .96); }
.product-hero-carousel-track { position: absolute; inset: 0; overflow: hidden; }
.product-hero-carousel-slide { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .52s ease, transform .7s ease, visibility .52s ease; }
.product-hero-carousel-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); }
.product-hero-carousel-slide img { width: 100%; height: 100%; min-height: 390px; object-fit: contain; mix-blend-mode: multiply; }
.product-hero-carousel-controls { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 2; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.product-hero-carousel-arrow { display: grid; width: 34px; height: 34px; padding: 0; place-items: center; color: var(--white); background: rgb(6 23 43 / .78); border: 1px solid rgb(255 255 255 / .46); border-radius: 50%; font-size: 1.05rem; line-height: 1; pointer-events: auto; transition: background-color .2s ease, transform .2s ease; }
.product-hero-carousel-arrow:hover { background: var(--blue-600); transform: translateY(-2px); }
.product-hero-carousel-dots { display: flex; align-items: center; gap: 7px; padding: 7px 11px; background: rgb(6 23 43 / .72); border: 1px solid rgb(255 255 255 / .24); border-radius: 999px; pointer-events: auto; }
.product-hero-carousel-dot { width: 7px; height: 7px; padding: 0; background: rgb(255 255 255 / .45); border: 1px solid transparent; border-radius: 50%; transition: background-color .2s ease, transform .2s ease; }
.product-hero-carousel-dot.is-active { background: var(--white); transform: scale(1.35); }
.product-type-line { margin-bottom: 14px !important; color: #84bfff !important; font-size: .78rem !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--slate-500); font-size: .78rem; }
.breadcrumbs a:hover { color: var(--blue-600); }
.breadcrumbs span:last-child { color: var(--ink-700); }
.page-hero .breadcrumbs { color: rgb(255 255 255 / .46); }
.page-hero .breadcrumbs span:last-child { color: rgb(255 255 255 / .78); }
.page-title-band { padding: 44px 0 0; }
.page-title-band h1 { margin-bottom: 14px; }
.page-title-band p { max-width: 720px; color: var(--slate-600); }
.product-overview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.overview-card { display: grid; grid-template-columns: .78fr 1fr; min-height: 320px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); cursor: pointer; transition: border-color .32s ease, box-shadow .42s ease, transform .42s cubic-bezier(.16, 1, .3, 1); }
.overview-card:hover { border-color: rgb(31 117 232 / .34); box-shadow: 0 18px 42px rgb(6 23 43 / .14); transform: translateY(-7px); }
.overview-card-image { overflow: hidden; background: #edf3f8; }
.overview-card-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .72s cubic-bezier(.16, 1, .3, 1); }
.overview-card:hover .overview-card-image img { transform: scale(1.08); }
.overview-card-body { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; }
.overview-card-body p:not(.card-kicker) { color: var(--slate-600); font-size: .9rem; }
.overview-card-body .button { margin-top: auto; min-height: 42px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.fact { min-height: 120px; padding: 22px; border-right: 1px solid var(--line); background: var(--white); }
.fact:last-child { border-right: 0; }
.fact-label { margin-bottom: 9px; color: var(--slate-500); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fact-value { margin: 0; font-size: 1.04rem; font-weight: 700; line-height: 1.25; }
.product-detail > .product-facts-section { padding: 22px 0 24px; }
.product-detail > .product-facts-section .fact { min-height: 72px; padding: 12px 18px; }
.selection-grid, .feature-block-grid, .industry-grid, .cert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.selection-card, .feature-block, .industry-card, .cert-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.selection-card p, .feature-block p, .industry-card p, .cert-card p { margin-bottom: 0; color: var(--slate-600); font-size: .9rem; }
.feature-block { min-height: 200px; }
.about-bullet-list { display: grid; gap: 8px; margin: 18px 0 0; padding-left: 18px; color: var(--slate-600); font-size: .9rem; }
.application-bullet-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.about-bullet-list li::marker { color: var(--blue-600); }
.section-dark .section-heading .about-bullet-list { color: rgb(255 255 255 / .7); }
.selection-card .about-bullet-list { margin-top: 12px; margin-bottom: 0; }
.about-highlight { margin-top: 32px; padding: 26px 30px; border-left: 3px solid var(--blue-600); background: var(--blue-100); }
.about-highlight p:not(.eyebrow) { max-width: 880px; margin-bottom: 0; color: var(--slate-600); }
.about-highlight .about-bullet-list { margin-bottom: 0; }
.about-highlight .text-link { margin-top: 14px; }
.feature-block .feature-number { margin-bottom: 38px; }
#overview-title { font-size: calc(clamp(2.1rem, 4vw, 3.55rem) - 14px); }
.company-image-grid { margin-top: 32px; }
#about-page-slide-2 > img { border: 2px solid rgb(31 117 232 / .58); }
.industry-card .feature-number { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; min-height: 26px; margin: 0 0 20px; padding: 5px 9px; color: var(--blue-700); border: 1px solid rgb(31 117 232 / .22); border-radius: 999px; background: var(--blue-100); font-size: .7rem; letter-spacing: .12em; line-height: 1; font-variant-numeric: tabular-nums; }
#applications .about-highlight { min-height: 270px; padding: 34px 42% 34px 30px; border-radius: 0 var(--radius-md) var(--radius-md) 0; background-color: var(--blue-100); background-image: linear-gradient(90deg, rgb(232 242 251 / .98) 0%, rgb(232 242 251 / .92) 32%, rgb(232 242 251 / .68) 54%, rgb(232 242 251 / .16) 82%, rgb(232 242 251 / 0) 100%), url("assets/company/service-hero.png"); background-position: center, 68% center; background-size: cover, cover; background-repeat: no-repeat; box-shadow: var(--shadow-soft); }
.detail-figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.detail-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.detail-figure figcaption { padding: 12px 15px; color: var(--slate-600); font-size: .78rem; }
.about-single-line-heading { max-width: none; }
.single-line-heading { max-width: none; }
.about-carousel { position: relative; isolation: isolate; height: 420px; }
.about-carousel-track, .about-carousel-slide { position: absolute; inset: 0; }
.about-carousel-track { overflow: hidden; }
.about-carousel-slide { opacity: 0; visibility: hidden; transform: scale(1.03); transition: opacity .52s ease, transform .9s ease, visibility .52s ease; }
.about-carousel-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); }
.about-carousel-slide > img { display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.about-carousel-caption { position: absolute; z-index: 2; right: 20px; bottom: 38px; left: 20px; display: flex; flex-direction: column; gap: 4px; color: var(--white); }
.about-carousel-caption strong { font-size: 1rem; line-height: 1.2; }
.about-carousel-caption span { color: rgb(255 255 255 / .68); font-size: .72rem; line-height: 1.3; }
.about-carousel-dots { position: absolute; z-index: 3; right: 0; bottom: 16px; left: 0; display: flex; justify-content: center; gap: 8px; }
.about-carousel-dot { width: 8px; height: 8px; padding: 0; border: 1px solid rgb(255 255 255 / .82); border-radius: 50%; background: transparent; cursor: pointer; transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.about-carousel-dot.is-active { border-color: var(--blue-600); background: var(--blue-600); box-shadow: 0 0 0 2px rgb(31 117 232 / .24); }
.about-carousel-dot:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-grid .detail-figure:first-child { grid-column: span 2; }
.gallery-grid .detail-figure:first-child img { aspect-ratio: 16 / 9; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }
.spec-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--white); table-layout: fixed; }
.spec-table th, .spec-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: break-word; }
.spec-table thead th { color: var(--ink-700); background: var(--surface); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.spec-table tbody th[scope="row"] { width: 18%; color: var(--ink-700); background: var(--surface); font-size: .92rem; }
.spec-table thead th:nth-child(1) { width: 18%; }
.spec-table thead th:nth-child(2) { width: 16%; }
.spec-table thead th:nth-child(3) { width: 14%; }
.spec-table thead th:nth-child(4) { width: 18%; }
.spec-table thead th:nth-child(5) { width: 34%; }
.spec-table td { color: var(--slate-600); font-size: .92rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.product-documentation { padding: 72px 0; border-top: 1px solid var(--line); }
.product-documentation .section-heading-wide { margin-bottom: 34px; }
.product-document-content { max-width: 1080px; margin: 0 auto; padding: 34px 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.product-document-content h2 { max-width: 900px; margin: 38px 0 16px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-950); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.2; }
.product-document-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.product-document-content h3 { margin: 24px 0 10px; color: var(--ink-950); font-size: clamp(1.04rem, 1.7vw, 1.28rem); line-height: 1.3; }
.product-document-content p { margin-bottom: 14px; color: var(--ink-700); font-size: .95rem; line-height: 1.68; }
.product-document-content p:last-child { margin-bottom: 0; }
.product-doc-table-wrap, .product-content-table-wrap { overflow-x: auto; margin: 26px 0 34px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.product-doc-table, .product-content-table { width: 100%; min-width: 600px; border-collapse: collapse; background: var(--white); }
.product-doc-table th, .product-doc-table td, .product-content-table th, .product-content-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--slate-600); text-align: left; vertical-align: top; line-height: 1.55; }
.product-doc-table thead th, .product-content-table thead th { color: var(--ink-700); background: var(--surface); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.product-doc-table tbody tr:last-child td, .product-content-table tbody tr:last-child td { border-bottom: 0; }
.product-doc-table tbody td:first-child, .product-content-table tbody td:first-child { width: 34%; color: var(--ink-700); font-weight: 700; }
.product-doc-table thead th, .product-content-table thead th, .product-content-table th { color: var(--white); background: var(--ink-800); }
.product-doc-table tbody tr:nth-child(even) td, .product-content-table tbody tr:nth-child(even) td { background: #f1f6fb; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 21px 0; color: var(--ink-950); background: transparent; border: 0; text-align: left; font-weight: 700; }
.accordion-trigger::after { content: "+"; color: var(--blue-600); font-size: 1.4rem; font-weight: 400; }
.accordion-trigger[aria-expanded="true"]::after { content: "−"; }
.accordion-panel { max-width: 760px; padding: 0 36px 22px 0; color: var(--slate-600); font-size: .92rem; }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.related-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.related-card p { margin-bottom: 0; color: var(--slate-600); font-size: .82rem; }
.quote-banner { padding: 44px; color: var(--white); background: var(--blue-600); border-radius: var(--radius-lg); }
.product-quote-section { position: relative; isolation: isolate; overflow: hidden; padding: 56px 0; }
.product-quote-section > .container { position: relative; z-index: 2; }
.product-quote-section .quote-banner { padding: 22px 0; background: transparent; border-radius: 0; }
.product-cta-particles { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; }
.product-cta-particles span { position: absolute; top: var(--particle-top); left: var(--particle-left); width: var(--particle-size, 5px); height: var(--particle-size, 5px); border-radius: 50%; background: #dceeff; box-shadow: 0 0 16px rgb(220 238 255 / .72); opacity: .42; animation: product-cta-particle-float var(--particle-duration, 10s) ease-in-out var(--particle-delay, 0s) infinite; will-change: transform, opacity; }
.product-cta-particles span:nth-child(1) { --particle-top: 16%; --particle-left: 7%; --particle-size: 4px; --particle-duration: 8s; --particle-delay: -2s; }
.product-cta-particles span:nth-child(2) { --particle-top: 72%; --particle-left: 15%; --particle-size: 7px; --particle-duration: 11s; --particle-delay: -6s; }
.product-cta-particles span:nth-child(3) { --particle-top: 30%; --particle-left: 26%; --particle-size: 5px; --particle-duration: 9s; --particle-delay: -4s; }
.product-cta-particles span:nth-child(4) { --particle-top: 82%; --particle-left: 38%; --particle-size: 3px; --particle-duration: 12s; --particle-delay: -8s; }
.product-cta-particles span:nth-child(5) { --particle-top: 20%; --particle-left: 49%; --particle-size: 6px; --particle-duration: 10s; --particle-delay: -3s; }
.product-cta-particles span:nth-child(6) { --particle-top: 64%; --particle-left: 58%; --particle-size: 4px; --particle-duration: 8.5s; --particle-delay: -5s; }
.product-cta-particles span:nth-child(7) { --particle-top: 12%; --particle-left: 66%; --particle-size: 5px; --particle-duration: 13s; --particle-delay: -9s; }
.product-cta-particles span:nth-child(8) { --particle-top: 78%; --particle-left: 74%; --particle-size: 7px; --particle-duration: 10.5s; --particle-delay: -1s; }
.product-cta-particles span:nth-child(9) { --particle-top: 42%; --particle-left: 82%; --particle-size: 4px; --particle-duration: 9.5s; --particle-delay: -7s; }
.product-cta-particles span:nth-child(10) { --particle-top: 18%; --particle-left: 91%; --particle-size: 6px; --particle-duration: 12s; --particle-delay: -4s; }
.product-cta-particles span:nth-child(11) { --particle-top: 74%; --particle-left: 95%; --particle-size: 3px; --particle-duration: 8.5s; --particle-delay: -2s; }
.product-cta-particles span:nth-child(12) { --particle-top: 52%; --particle-left: 42%; --particle-size: 4px; --particle-duration: 11.5s; --particle-delay: -6s; }
@keyframes product-cta-particle-float {
  0%, 100% { opacity: .2; transform: translate3d(-5px, 8px, 0) scale(.8); }
  50% { opacity: .78; transform: translate3d(10px, -16px, 0) scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .product-cta-particles span { animation: none; opacity: .42; }
}
.quote-banner h2 { margin-bottom: 12px; }
.quote-banner p { max-width: 620px; margin-bottom: 24px; color: rgb(255 255 255 / .75); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: process; }
.process-step { position: relative; min-height: 180px; padding: 26px; border-top: 2px solid var(--blue-600); background: var(--surface); counter-increment: process; }
.process-step::before { display: block; margin-bottom: 38px; color: var(--blue-600); content: "0" counter(process); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.process-step p { margin-bottom: 0; color: var(--slate-600); font-size: .88rem; }
.image-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.image-grid .detail-figure img { aspect-ratio: 4 / 3; object-fit: cover; }
.cert-card { display: flex; flex-direction: column; padding: 14px; }
.cert-card--text { min-height: 220px; padding: 26px; }
.cert-card--text h3 { margin-bottom: 12px; }
.cert-card--text .card-kicker { margin-bottom: 14px; }
.cert-card img { width: 100%; height: 270px; object-fit: contain; background: var(--surface); }
.cert-card figcaption { padding: 14px 4px 5px; font-weight: 700; }
.cert-card p { padding: 0 4px 5px; }
.honor-grid .cert-card { padding: 18px; }
.honor-card { position: relative; overflow: hidden; transition: transform .7s cubic-bezier(.16, 1, .3, 1), box-shadow .7s cubic-bezier(.16, 1, .3, 1); }
.honor-card-media { position: relative; z-index: 2; height: 340px; overflow: hidden; background: var(--surface); transition: height .85s cubic-bezier(.16, 1, .3, 1), margin-bottom .85s cubic-bezier(.16, 1, .3, 1); }
.honor-card-media > img { width: 100%; height: 100%; object-fit: contain; transform: translateY(0) scale(1); transform-origin: 50% 0%; transition: transform .85s cubic-bezier(.16, 1, .3, 1); }
.honor-card-overlay { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; display: flex; min-height: 20%; flex-direction: column; justify-content: center; padding: 14px 16px 16px; color: var(--white); background: rgb(6 23 43 / .9); opacity: 0; transform: translateY(105%); transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .72s cubic-bezier(.16, 1, .3, 1); }
.honor-card-overlay .card-kicker { margin: 0 0 6px; padding: 0; color: #9ecbff; }
.honor-card-overlay h3 { margin: 0; color: var(--white); font-size: 1.12rem; line-height: 1.16; }
.honor-card-content { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; }
.honor-card h3 { margin: 0 4px 12px; font-size: 1.12rem; }
.honor-card .card-kicker { margin: 14px 4px 8px; }
.honor-card-content > .card-kicker, .honor-card-content > h3 { transition: opacity .5s ease, transform .5s ease; }
.honor-meta { display: grid; gap: 8px; margin: auto 4px 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--slate-600); font-size: .76rem; }
.honor-meta div { display: grid; grid-template-columns: 58px 1fr; gap: 10px; }
.honor-meta dt { color: var(--ink-700); font-weight: 700; }
.honor-meta dd { margin: 0; overflow-wrap: anywhere; }
.honor-card:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); }
.honor-card:hover .honor-card-media { height: 410px; margin-bottom: -70px; }
.honor-card:hover .honor-card-media > img { transform: translateY(8px) scale(1.08); }
.honor-card:hover .honor-card-overlay { opacity: 1; transform: translateY(0); }
.honor-card:hover .honor-card-content > .card-kicker, .honor-card:hover .honor-card-content > h3 { opacity: 0; transform: translateY(8px); }
.honor-cta { position: relative; isolation: isolate; overflow: hidden; }
.honor-cta > .container { position: relative; z-index: 2; }
.honor-cta-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.honor-cta-particles span { position: absolute; top: var(--particle-top); left: var(--particle-left); width: var(--particle-size, 5px); height: var(--particle-size, 5px); border-radius: 50%; background: #c8e8ff; box-shadow: 0 0 14px rgb(200 232 255 / .76); opacity: .5; animation: honor-particle-float var(--particle-duration, 9s) ease-in-out var(--particle-delay, 0s) infinite; will-change: transform, opacity; }
.honor-cta-particles span:nth-child(1) { --particle-top: 18%; --particle-left: 8%; --particle-size: 4px; --particle-duration: 8s; --particle-delay: -2s; }
.honor-cta-particles span:nth-child(2) { --particle-top: 68%; --particle-left: 17%; --particle-size: 7px; --particle-duration: 11s; --particle-delay: -6s; }
.honor-cta-particles span:nth-child(3) { --particle-top: 32%; --particle-left: 27%; --particle-size: 5px; --particle-duration: 9s; --particle-delay: -4s; }
.honor-cta-particles span:nth-child(4) { --particle-top: 78%; --particle-left: 36%; --particle-size: 3px; --particle-duration: 12s; --particle-delay: -8s; }
.honor-cta-particles span:nth-child(5) { --particle-top: 25%; --particle-left: 48%; --particle-size: 6px; --particle-duration: 10s; --particle-delay: -3s; }
.honor-cta-particles span:nth-child(6) { --particle-top: 62%; --particle-left: 57%; --particle-size: 4px; --particle-duration: 8.5s; --particle-delay: -5s; }
.honor-cta-particles span:nth-child(7) { --particle-top: 12%; --particle-left: 66%; --particle-size: 5px; --particle-duration: 13s; --particle-delay: -9s; }
.honor-cta-particles span:nth-child(8) { --particle-top: 82%; --particle-left: 72%; --particle-size: 7px; --particle-duration: 10.5s; --particle-delay: -1s; }
.honor-cta-particles span:nth-child(9) { --particle-top: 42%; --particle-left: 82%; --particle-size: 4px; --particle-duration: 9.5s; --particle-delay: -7s; }
.honor-cta-particles span:nth-child(10) { --particle-top: 18%; --particle-left: 91%; --particle-size: 6px; --particle-duration: 12s; --particle-delay: -4s; }
.honor-cta-particles span:nth-child(11) { --particle-top: 74%; --particle-left: 94%; --particle-size: 3px; --particle-duration: 8.5s; --particle-delay: -2s; }
.honor-cta-particles span:nth-child(12) { --particle-top: 50%; --particle-left: 42%; --particle-size: 4px; --particle-duration: 11.5s; --particle-delay: -6s; }
@keyframes honor-particle-float {
  0%, 100% { opacity: .24; transform: translate3d(-4px, 8px, 0) scale(.8); }
  50% { opacity: .86; transform: translate3d(9px, -16px, 0) scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .honor-card:hover { transform: none; }
  .honor-card:hover .honor-card-media { height: 410px; margin-bottom: -70px; }
  .honor-card:hover .honor-card-media > img { transform: none; }
  .honor-cta-particles span { animation: none; opacity: .55; }
}
.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 72px; }
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form-section { display: grid; gap: 32px; }
.form-card--wide { width: 100%; }
.form-grid--simple { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.form-grid--simple .field-span-2 { grid-column: span 2; }
.form-grid--simple .field-full { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--ink-700); font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; color: var(--ink-950); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--slate-600); font-size: .76rem; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.form-actions .form-status { flex: 1 1 280px; margin: 0; }
.form-status { margin: 18px 0 0; padding: 13px 15px; color: #145c35; background: #e9f7ef; border-radius: var(--radius-sm); font-size: .86rem; }
.contact-notes { display: grid; gap: 20px; }
.contact-note { padding: 20px; border-left: 2px solid var(--blue-600); background: var(--surface); }
.contact-note p { margin: 0; color: var(--slate-600); font-size: .86rem; }
.news-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.news-list-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.news-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.news-list-media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.news-list-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-list-card:hover .news-list-media img { transform: scale(1.04); }
.news-list-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px; }
.news-list-body h2 { margin-bottom: 14px; font-size: calc(1.38rem - 2px); }
.news-list-body > p:not(.card-kicker):not(.news-meta) { margin-bottom: 20px; color: var(--slate-600); font-size: .88rem; }
.news-list-body .text-link { margin-top: auto; }
.news-meta { margin: -4px 0 13px; color: var(--slate-500); font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; align-items: start; gap: 72px; }
.news-article { min-width: 0; max-width: 840px; }
.news-article-figure { margin: 0 0 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.news-article-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.news-article-figure figcaption { padding: 12px 16px; color: var(--slate-600); font-size: .78rem; }
.news-article-body { max-width: 760px; }
.news-article-body p { margin-bottom: 20px; color: var(--ink-700); font-size: 1rem; line-height: 1.8; }
.news-article-body .article-lede { color: var(--ink-950); font-size: 1.2rem; font-weight: 600; line-height: 1.65; }
.article-aside { position: sticky; top: 104px; display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.article-aside h2 { margin-bottom: 2px; font-size: 1.45rem; }
.article-aside p:not(.eyebrow) { margin-bottom: 8px; color: var(--slate-600); font-size: .88rem; }
.article-aside .button { margin-top: 8px; }
.news-detail-meta { margin: -8px 0 18px !important; color: rgb(255 255 255 / .56) !important; font-size: .8rem !important; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.page-hero--news.news-detail-hero > .container { max-width: var(--content-width); }
.page-hero--news.news-detail-hero h1 { max-width: 980px !important; margin-bottom: 20px; white-space: normal; }
.page-hero--news.news-detail-hero > .container > p:not(.eyebrow):not(.news-detail-meta) { max-width: 760px; }
.related-news .section-heading { margin-bottom: 0; }

/* WordPress content seeded from the supplied product documents. */
.standard-page-content, .product-copy { max-width: 820px; }
.standard-page-content h2, .product-copy h2 { margin: 42px 0 16px; }
.standard-page-content h3, .product-copy h3 { margin: 30px 0 12px; color: var(--ink-950); }
.standard-page-content p, .product-copy p { color: var(--ink-700); line-height: 1.8; }
.product-copy > h2:first-child, .standard-page-content > h2:first-child { margin-top: 0; }
.product-content-table-wrap { max-width: 100%; margin: 30px 0 38px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.product-content-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.product-content-table th, .product-content-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.product-content-table th { color: var(--white); background: var(--ink-800); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.product-content-table td { color: var(--slate-600); font-size: .92rem; }
.product-content-table tr:last-child td { border-bottom: 0; }
.products-fixed-grid .product-list-card { min-height: 100%; }
.products-fixed-grid .product-list-card .news-list-media { aspect-ratio: 4 / 3; }
.products-fixed-grid .product-list-card .news-list-media img { object-fit: contain; padding: 18px; mix-blend-mode: multiply; }
.products-fixed-grid .product-list-card .news-list-body h2 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.news-meta--unconfirmed { color: var(--slate-500); font-weight: 600; letter-spacing: .02em; text-transform: none; }
.cert-card img { object-fit: contain; }

@media (max-width: 1024px) {
  .container { width: min(var(--content-width), calc(100% - 40px)); }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; width: 42px; height: 42px; padding: 9px; border: 1px solid #d9e4ef; border-radius: 6px; flex-direction: column; justify-content: center; gap: 5px; background: var(--white); cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; height: 2px; border-radius: 99px; background: var(--ink-950); transition: transform .18s ease, opacity .18s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: grid; max-height: 0; overflow: hidden; padding: 0 24px; background: var(--white); opacity: 0; visibility: hidden; transition: max-height .18s ease, opacity .18s ease, padding .18s ease; }
  .mobile-menu.is-open { max-height: 600px; padding: 8px 24px 22px; opacity: 1; visibility: visible; }
  .mobile-menu > a:not(.quote-button) { padding: 11px 0; border-bottom: 1px solid #e7eef5; font-size: 14px; font-weight: 600; }
  .mobile-menu .quote-button { margin-top: 16px; }
  .hero-grid, .page-hero-grid { gap: 20px; }
  .four-up, .feature-grid, .product-grid, .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .selection-grid, .feature-block-grid, .industry-grid, .cert-grid, .image-grid, .news-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-bullet-list { grid-template-columns: 1fr; }
  .article-layout { gap: 40px; }
  .form-grid--simple { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; padding: 56px 0 46px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { width: min(var(--content-width), calc(100% - 32px)); }
  .header-inner { width: min(calc(100% - 36px), var(--content-width)); }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 58px; height: 40px; flex-basis: 58px; }
  .brand-mark img { width: 100%; height: 100%; transform: none; }
  .brand-footer .brand-mark { width: 58px; height: 40px; flex-basis: 58px; }
  .brand-name { font-size: 20px; }
  .site-tools { right: 12px; top: 50%; transform: translateY(-50%); bottom: auto; }
  .site-tools-social { gap: 8px; padding: 9px 7px; }
  .site-tool-social-info { min-width: 0; max-width: min(230px, calc(100vw - 78px)); }
  .site-tool-top { width: 36px; height: 36px; font-size: 20px; }
  .section { padding: 76px 0; }
  .home-hero, .hero-grid { min-height: auto; }
  .hero-grid, .split-layout, .form-layout, .honor-overview-columns { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr .78fr; align-items: end; }
  .hero-copy { padding: 76px 0 20px; }
  .hero-visual { min-height: 320px; }
  .hero-visual img { min-height: 320px; }
  .hero-product-figure { height: 320px; min-height: 320px; }
  .product-hero-carousel-slide img { min-height: 320px; }
  .product-hero-carousel-controls { right: 12px; bottom: 12px; left: 12px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .split-heading, .cta-row { align-items: flex-start; flex-direction: column; }
  .four-up, .feature-grid, .product-grid, .application-grid, .selection-grid, .feature-block-grid, .industry-grid, .cert-grid, .image-grid, .news-teaser-grid, .process-grid, .related-grid, .product-overview-grid, .news-list-grid, .article-layout { grid-template-columns: 1fr; }
  .split-heading { margin-bottom: 34px; }
  .feature-card { min-height: 0; }
  .feature-number { margin-bottom: 34px; }
  .product-solution-list { grid-template-columns: 1fr; }
  .overview-card { grid-template-columns: 1fr; }
  .overview-card-image { min-height: 220px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .page-hero { padding: 70px 0 64px; }
  .page-hero--applications::before { background-position: 64% center; opacity: .24; }
  .page-hero--applications::after { background: linear-gradient(90deg, rgb(6 23 43 / .98) 0%, rgb(6 23 43 / .84) 100%); }
  .page-hero--contact::before { background-position: 62% center; opacity: .26; }
  .page-hero--contact::after { background: linear-gradient(90deg, rgb(6 23 43 / .99) 0%, rgb(6 23 43 / .86) 100%); }
  .page-hero--news::before { background-position: 62% center; opacity: .4; }
  .page-hero--news::after { background: linear-gradient(90deg, rgb(6 23 43 / .88) 0%, rgb(6 23 43 / .66) 100%); }
  .page-hero--about::before { background-position: 62% center; opacity: .46; }
  .page-hero--about::after { background: linear-gradient(90deg, rgb(6 23 43 / .84) 0%, rgb(6 23 43 / .48) 100%); }
  .page-hero--about .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--factory::before { background-position: 58% center; opacity: .34; }
  .page-hero--factory::after { background: linear-gradient(90deg, rgb(6 23 43 / .9) 0%, rgb(6 23 43 / .56) 100%); }
  .page-hero--factory .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--honor::before { background-position: 72% center; background-size: cover; opacity: .3; }
  .page-hero--honor::after { background: linear-gradient(90deg, rgb(6 23 43 / .94) 0%, rgb(6 23 43 / .72) 100%); }
  .page-hero--honor .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--products { background-position: 70% center; }
  .page-hero--products::before { background-position: 70% center; opacity: .7; }
  .page-hero--products::after { background: linear-gradient(90deg, rgb(6 23 43 / .84) 0%, rgb(6 23 43 / .48) 100%); }
  .product-intro-title-line { gap: 12px; }
  .product-intro-icon { flex-basis: 36px; width: 36px; height: 36px; margin-top: 0; padding: 7px; }
  .page-hero--applications .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--contact .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--news .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero-grid { gap: 20px; }
  .page-hero h1 { font-size: clamp(calc(1.5rem - 4px), calc(7vw - 10px), calc(4rem - 25px)); white-space: nowrap; }
  .page-hero--news.news-detail-hero h1 { max-width: 100%; white-space: normal; }
  .page-hero--about h1 { white-space: normal; }
  .page-hero--factory h1 { white-space: normal; }
  .page-hero--honor h1 { white-space: normal; }
  #overview-title { font-size: clamp(1.85rem, 8vw, 2.75rem); }
  .company-image-grid { margin-top: 24px; }
  .about-carousel { height: 360px; }
  #applications .about-highlight { min-height: 0; padding: 30px 24px; background-image: linear-gradient(90deg, rgb(232 242 251 / .98) 0%, rgb(232 242 251 / .9) 48%, rgb(232 242 251 / .64) 100%), url("assets/company/service-hero.png"); background-position: center, 72% center; }
  .page-title-band { padding-top: 28px; }
  .image-stack, .image-stack img { min-height: 330px; }
  .quality-home-layout { justify-items: start; }
  .quality-mark { width: 160px; height: 160px; }
  .quality-mark span:first-child { font-size: 5rem; }
  .gallery-grid .detail-figure:first-child { grid-column: auto; }
  .gallery-grid .detail-figure:first-child img { aspect-ratio: 4 / 3; }
  .product-detail > .product-facts-section { padding: 18px 0 20px; }
  .product-detail > .product-facts-section .fact { min-height: 68px; padding: 11px 16px; }
  .product-documentation { padding: 56px 0; }
  .product-document-content { padding: 28px 22px; }
  .product-doc-table, .product-content-table { min-width: 540px; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--simple { grid-template-columns: 1fr; }
  .form-grid--simple .field-span-2, .form-grid--simple .field-full { grid-column: auto; }
  .field-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 44px 0 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .product-quote-section { padding: 38px 0; }
  .product-quote-section .quote-banner { padding: 15px 0; }
  .quote-banner { padding: 30px 24px; }
  .article-aside { position: static; }
  .news-list-body { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Solutions, Service, Cooperation and Video Center pages. */
.page-hero--solutions, .page-hero--video, .page-hero--service, .page-hero--cooperation { position: relative; isolation: isolate; overflow: hidden; }
.page-hero--solutions::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/solutions/robotic-welding-camera-monitoring.jpg") 68% center / cover no-repeat; opacity: .34; transform: scale(1.02); }
.page-hero--video::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/solutions/robotic-welding-camera-monitoring.jpg") 68% center / cover no-repeat; opacity: .5; transform: scale(1.02); }
.page-hero--service::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/company/service-hero.png") 68% center / cover no-repeat; opacity: .78; transform: scale(1.02); }
.page-hero--cooperation::before { position: absolute; inset: 0; z-index: 0; content: ""; background: url("assets/solutions/welding-camera-equipment-integration.jpg") 68% center / cover no-repeat; opacity: .34; transform: scale(1.02); }
.page-hero--solutions::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .98) 0%, rgb(6 23 43 / .86) 46%, rgb(6 23 43 / .52) 100%); }
.page-hero--service::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .62) 0%, rgb(6 23 43 / .34) 46%, rgb(6 23 43 / .12) 100%); }
.page-hero--video::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .84) 0%, rgb(6 23 43 / .62) 46%, rgb(6 23 43 / .28) 100%); }
.page-hero--cooperation::after { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(90deg, rgb(6 23 43 / .98) 0%, rgb(6 23 43 / .86) 46%, rgb(6 23 43 / .52) 100%); }
.page-hero--solutions > .container, .page-hero--video > .container, .page-hero--service > .container, .page-hero--cooperation > .container { position: relative; z-index: 1; }
.page-hero--video { padding: 70px 0 64px; }
.page-hero--video .page-hero-grid { row-gap: 20px; }
.page-hero--video h1 { margin-bottom: 0; }
.page-hero--video .page-hero-aside { margin-top: 0; }
.page-hero--video .button-row { margin-top: 22px; }
.video-cta .button { flex: 0 0 auto; white-space: nowrap; }
.solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.solution-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); transition: box-shadow .2s ease, transform .2s ease; }
.solution-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.solution-card-media { aspect-ratio: 16 / 9; margin: 0; overflow: hidden; background: #dce9f3; }
.solution-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.solution-card:hover .solution-card-media img { transform: scale(1.035); }
.solution-card-content { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.solution-card-content h3 { margin-bottom: 14px; font-size: clamp(1.35rem, 2.1vw, 1.8rem); }
.solution-card-content > p:not(.card-kicker) { color: var(--slate-600); font-size: .92rem; }
.solution-applications { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.solution-applications strong { color: var(--ink-700); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.solution-applications ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 0; padding: 0; list-style: none; }
.solution-applications li { padding: 6px 9px; color: var(--ink-700); background: var(--blue-100); border-radius: 999px; font-size: .75rem; line-height: 1.25; }
.video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; padding: 0; }
.video-frame { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-950); }
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-frame--portrait video { object-fit: contain; }
.video-card-content { display: flex; flex: 1; flex-direction: column; padding: 24px 26px 26px; }
.video-card-content h3 { margin-bottom: 12px; font-size: 1.4rem; }
.video-card-content p:not(.card-kicker) { margin-bottom: 0; color: var(--slate-600); font-size: .9rem; }
.video-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-link-card { display: flex; flex-direction: column; min-height: 230px; }
.video-link-card .text-link { margin-top: auto; }

@media (min-width: 1025px) {
  .page-hero--solutions .page-hero-grid, .page-hero--video .page-hero-grid, .page-hero--service .page-hero-grid, .page-hero--cooperation .page-hero-grid { grid-template-areas: "meta meta" "title title" "body aside"; }
  .page-hero--solutions .page-hero-meta, .page-hero--video .page-hero-meta, .page-hero--service .page-hero-meta, .page-hero--cooperation .page-hero-meta { grid-area: meta; }
  .page-hero--solutions h1, .page-hero--video h1, .page-hero--service h1, .page-hero--cooperation h1 { grid-area: title; max-width: none !important; white-space: nowrap; }
  .page-hero--solutions .page-hero-body, .page-hero--video .page-hero-body, .page-hero--service .page-hero-body, .page-hero--cooperation .page-hero-body { grid-area: body; }
  .page-hero--solutions .page-hero-aside, .page-hero--video .page-hero-aside, .page-hero--service .page-hero-aside, .page-hero--cooperation .page-hero-aside { grid-area: aside; }
}

@media (max-width: 1024px) {
  .solution-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .page-hero--solutions::before, .page-hero--cooperation::before { background-position: 64% center; opacity: .26; }
  .page-hero--service::before { background-position: 64% center; opacity: .58; }
  .page-hero--video::before { background-position: 64% center; opacity: .4; }
  .page-hero--solutions::after, .page-hero--cooperation::after { background: linear-gradient(90deg, rgb(6 23 43 / .98) 0%, rgb(6 23 43 / .84) 100%); }
  .page-hero--service::after { background: linear-gradient(90deg, rgb(6 23 43 / .72) 0%, rgb(6 23 43 / .48) 100%); }
  .page-hero--video::after { background: linear-gradient(90deg, rgb(6 23 43 / .88) 0%, rgb(6 23 43 / .66) 100%); }
.page-hero--solutions .page-hero-grid, .page-hero--video .page-hero-grid, .page-hero--service .page-hero-grid, .page-hero--cooperation .page-hero-grid { grid-template-areas: "meta" "title" "body" "aside"; }
  .page-hero--solutions h1, .page-hero--video h1, .page-hero--service h1, .page-hero--cooperation h1 { white-space: normal; }
  .solution-grid, .video-grid, .video-links-grid { grid-template-columns: 1fr; }
  .solution-card-content { padding: 22px; }
}

/* Contact page refinements. */
.page-hero--contact {
  padding: 70px 0 64px;
}
.page-hero--contact::before {
  background: url("assets/company/factory-office.jpg") 72% center / cover no-repeat;
  opacity: .56;
}
.page-hero--contact::after {
  background: linear-gradient(90deg, rgb(6 23 43 / .84) 0%, rgb(6 23 43 / .6) 46%, rgb(6 23 43 / .22) 100%);
}
.page-hero--contact .page-hero-grid {
  gap: 20px 40px;
}
.page-hero--contact .breadcrumbs {
  margin-bottom: 20px;
}
.page-hero--contact h1 {
  max-width: 1040px !important;
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  white-space: normal;
}
.page-hero--contact .page-hero-body p {
  max-width: 720px;
}
.page-hero--contact .page-hero-aside {
  align-self: end;
  margin-top: 0;
}

.contact-information {
  padding: 84px 0 88px;
}
.contact-information .section-heading-wide {
  max-width: 900px;
  margin-bottom: 34px;
}
.contact-information-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-information-card {
  min-height: 206px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .24s ease, transform .24s ease, border-color .24s ease;
}
.contact-information-card:hover {
  border-color: rgb(31 117 232 / .35);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.contact-information-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid rgb(31 117 232 / .28);
  border-radius: 50%;
  background: var(--blue-100);
  font-size: 1.1rem;
  font-weight: 800;
}
.contact-information-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.38rem);
}
.contact-information-card h3 a:hover {
  color: var(--blue-600);
}
.contact-information-card > p:last-child {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: .88rem;
}
.contact-information-card > p:last-child a {
  color: var(--blue-700);
  font-weight: 700;
}
.contact-information-card > p:last-child a:hover {
  color: var(--blue-600);
}
.contact-information-card--whatsapp {
  min-height: 100%;
}
.contact-whatsapp-qr {
  margin: 0;
}
.contact-whatsapp-qr img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}
.contact-whatsapp-qr figcaption {
  max-width: 230px;
  margin-top: 10px;
  color: var(--slate-600);
  font-size: .88rem;
  line-height: 1.5;
}
.contact-request-section {
  padding: 84px 0 96px;
}
.contact-request-section .contact-form-section {
  gap: 28px;
}
.contact-request-section .section-heading-wide {
  max-width: 900px;
  margin-bottom: 0;
}
.contact-request-section .section-heading-wide h2 {
  max-width: 760px;
}
.contact-request-section .section-heading-wide > p:last-child {
  max-width: 820px;
}
.contact-request-section .form-card {
  margin-top: 0;
}
.contact-products-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #eef7ff 0%, #f8fbff 56%, #e8f2fb 100%);
}
.contact-products-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 12% 20%, rgb(31 117 232 / .1), transparent 30%), radial-gradient(circle at 86% 78%, rgb(31 117 232 / .08), transparent 32%);
}
.contact-products-particles {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .82;
}
.contact-products-cta > .container {
  position: relative;
  z-index: 1;
}
.contact-products-cta .eyebrow {
  color: var(--blue-700);
}
.contact-products-cta h2 {
  color: var(--ink-950);
}

@media (max-width: 1024px) {
  .contact-information-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-hero--contact {
    padding: 70px 0 64px;
  }
  .page-hero--contact::before {
    background-position: 70% center;
    opacity: .46;
  }
  .page-hero--contact::after {
    background: linear-gradient(90deg, rgb(6 23 43 / .86) 0%, rgb(6 23 43 / .6) 100%);
  }
  .page-hero--contact .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero--contact h1 {
    font-size: clamp(2.15rem, 10vw, 3.15rem) !important;
  }
  .contact-information,
  .contact-request-section {
    padding: 68px 0 76px;
  }
  .contact-information-grid {
    grid-template-columns: 1fr;
  }
  .contact-information-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overview-card:hover {
    transform: none;
  }
  .overview-card:hover .overview-card-image img {
    transform: none;
  }
}
