:root {
  --blue: #0053a4;
  --blue-deep: #00498f;
  --yellow: #ffd300;
  --ink: #0a315b;
  --soft: #f3f4f5;
  --shell: 1440px;
  --home-header-height: clamp(86px, 11vh, 122px);
  --media-ratio: 4 / 3;
  --body-copy-size: clamp(14px, .84vw, 16px);
  --body-copy-line: 1.58;
  font-family: "Montserrat", Arial, sans-serif;
  color: #111820;
  background: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: var(--home-header-height); }
body { margin: 0; min-width: 320px; min-height: 100vh; -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.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; }
.shell { width: min(var(--shell), calc(100% - 80px)); margin-inline: auto; }

.hero {
  width: 100%;
  height: 100svh;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: var(--home-header-height) minmax(0, 1fr);
  color: #fff;
  background: #090a0c;
  background-position: center;
}
.hero::before { content: ""; grid-row: 1; }
.hero-slides { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.hero-slide { position: absolute; inset: 0; background-position: inherit; background-size: cover; background-repeat: no-repeat; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.site-header { width: 100%; height: var(--home-header-height); padding: 0 max(40px, calc((100vw - var(--shell))/2)); background: rgba(5,5,5,.88); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; position: fixed; inset: 0 0 auto; z-index: 100; }
.brand-mark { width: 120px; margin-left: -32px; display: grid; place-items: center; flex: 0 0 120px; }
.brand-mark img { width: 120px; height: 92px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 36px; font-size: 18px; font-weight: 500; }
.main-nav > a, .nav-direct-link > a, .nav-dropdown > a { text-decoration: none; padding-block: 43px; transition: color .2s; }
.main-nav > a:hover, .main-nav > a:focus-visible, .nav-direct-link > a:hover, .nav-direct-link > a:focus-visible, .nav-dropdown:hover > a, .nav-dropdown:focus-within > a {
  color: var(--yellow);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.language-switcher { position: relative; flex: 0 0 auto; color: #fff; }
.language-switcher-toggle { width: 47px; height: 47px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #e31936; font-size: 14px; line-height: 1; font-weight: 700; cursor: pointer; transition: color .2s, background .2s, box-shadow .2s; }
.language-switcher-toggle:hover, .language-switcher-toggle:focus-visible, .language-switcher-toggle[aria-expanded="true"] { color: #082f5d; background: var(--yellow); }
.language-switcher-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.language-switcher-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 250px; max-height: min(430px, 70vh); padding: 8px; overflow-y: auto; overscroll-behavior: contain; color: #173d65; background: #fff; border: 1px solid #e1e5e9; box-shadow: 0 16px 38px rgba(0,0,0,.28); }
.language-switcher-menu[hidden] { display: none; }
.language-switcher-menu a { min-height: 40px; padding: 8px 10px; display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; gap: 9px; color: #173d65; font-size: 13px; line-height: 1.25; text-decoration: none; }
.language-switcher-menu a:hover, .language-switcher-menu a:focus-visible { color: var(--blue); background: #f1f4f7; outline: none; }
.language-switcher-menu a.current { color: var(--blue); background: #fff4bf; font-weight: 700; }
.language-switcher-code { font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.mobile-language-switcher { display: none; }
.nav-search { position: relative; }
.nav-search-toggle { width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; display: grid; place-items: center; color: #fff; background: transparent; cursor: pointer; font-size: 24px; }
.nav-search-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.nav-search-toggle:hover, .nav-search-toggle[aria-expanded="true"] { color: var(--yellow); }
.nav-search-panel { position: absolute; top: 49px; right: -44px; width: 380px; padding: 20px; color: #0d2e51; background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.26); }
.nav-search-panel label { display: block; margin-bottom: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.nav-search-panel > div { display: grid; grid-template-columns: 1fr 48px; }
.nav-search-panel input { width: 100%; min-width: 0; height: 46px; padding: 0 14px; border: 1px solid #d7dadd; outline: 0; font-size: 12px; }
.nav-search-panel input:focus { border-color: var(--yellow); }
.nav-search-panel button { border: 0; display: grid; place-items: center; color: var(--blue); background: var(--yellow); cursor: pointer; font-size: 20px; }
.nav-search-panel p { margin: 10px 0 0; color: #66717c; font-size: 10px; line-height: 1.45; }
.nav-direct-link { display: contents; }
.nav-dropdown { position: relative; }
.nav-submenu-toggle { display: none; }
.product-menu { --notch-base: 33px; --notch-step: 32px; --notch-size: 7px; --notch-y: var(--notch-base); position: absolute; top: calc(50% + clamp(43px, 5.5vh, 61px)); left: 0; width: 286px; padding: 17px 19px; background: var(--yellow); color: #093e76; box-shadow: 0 14px 32px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, visibility .2s, transform .2s; }
.product-menu.has-current, .product-menu:has(> a:is(:hover, :focus-visible)) { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--notch-y) + var(--notch-size)), var(--notch-size) var(--notch-y), 0 calc(var(--notch-y) - var(--notch-size))); }
.nav-dropdown:hover .product-menu, .nav-dropdown:focus-within .product-menu { opacity: 1; visibility: visible; transform: none; }
.product-menu a { display: block; font-size: 17px; line-height: 1.2; font-weight: 500; text-decoration: none; padding: 6px 0; }
.product-menu a:hover, .product-menu a:focus { color: var(--blue); text-decoration-line: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.product-menu:has(> a:nth-child(2).current) { --notch-y: calc(var(--notch-base) + var(--notch-step)); }
.product-menu:has(> a:nth-child(3).current) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(4).current) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(5).current) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(6).current) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(7).current) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:is(:hover, :focus-visible)) { --notch-y: var(--notch-base); }
.product-menu:has(> a:nth-child(2):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step)); }
.product-menu:has(> a:nth-child(3):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(4):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(5):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(6):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.product-menu:has(> a:nth-child(7):is(:hover, :focus-visible)) { --notch-y: calc(var(--notch-base) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step) + var(--notch-step)); }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 30px; }
.hero-content { width: min(var(--shell), calc(100% - 80px)); height: 100%; min-height: 0; position: relative; z-index: 2; grid-row: 2; display: block; padding-top: clamp(68px, 8.7vh, 112px); padding-bottom: 64px; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; width: fit-content; }
.hero h1 { margin: 0; max-width: 820px; font-size: clamp(52px, 4.2vw, 80px); line-height: 1.03; font-weight: 500; letter-spacing: -.045em; text-shadow: 0 2px 24px rgba(0,0,0,.42); }
.hero-title-muted { color: rgba(255,255,255,.62); }
.hero-cta { min-height: 60px; width: fit-content; margin-top: 42px; padding: 0 18px; border: 1px solid var(--yellow); border-radius: 6px; display: inline-flex; align-items: center; gap: 9px; color: var(--yellow); background: rgba(0,0,0,.12); font: inherit; font-size: 19px; font-weight: 500; line-height: 1; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.hero-cta svg { width: 19px; height: 19px; }
.hero-cta:hover { color: #101820; background: var(--yellow); transform: translateY(-2px); }
.hero-carousel-controls { position: absolute; z-index: 3; left: 50%; bottom: 32px; display: flex; align-items: center; gap: 14px; transform: translateX(-50%); }
.hero-carousel-arrow { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.68); border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.22); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.hero-carousel-arrow:hover, .hero-carousel-arrow:focus-visible { color: #111820; border-color: var(--yellow); background: var(--yellow); }
.hero-carousel-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-carousel-dots { display: flex; align-items: center; gap: 9px; }
.hero-carousel-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.hero-carousel-dots button.active { border-color: var(--yellow); background: var(--yellow); transform: scale(1.2); }

.arrow-button { width: fit-content; display: inline-flex; align-items: center; gap: 9px; min-height: 38px; padding: 7px 14px 7px 9px; text-decoration: none; text-transform: uppercase; font: inherit; font-size: 11px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.arrow-button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,40,90,.14); }
.arrow-button.outline { border: 1px solid #e2c500; color: var(--blue); background: #fff; }
.hero .arrow-button.outline, .hero .arrow-button.solid { border-color: var(--yellow); }
.arrow-button.solid { border: 1px solid var(--yellow); background: var(--yellow); color: var(--blue); }
.arrow-icon { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--blue); font-size: 13px; }

.featured-product { background: #f6f6f6; overflow: hidden; }
.featured-inner { width: 100%; max-width: none; margin-inline: 0; min-height: 740px; display: grid; grid-template-columns: 52fr 48fr; align-items: center; position: relative; }
.featured-inner::before { content: ""; position: absolute; left: calc(26% + clamp(13px, 1vw, 20px)); top: -160px; width: min(1040px, 58vw); aspect-ratio: 1; background: url("../images/application-watermark.png") center / contain no-repeat; opacity: .055; pointer-events: none; transform: translateX(-50%); z-index: 0; }
.featured-visual, .featured-copy { position: relative; z-index: 1; }
.featured-visual { display: grid; place-items: center; height: 660px; transform: translateY(-50px); }
.featured-visual img { width: 650px; height: 650px; object-fit: contain; object-position: center; clip-path: inset(10px); transform: translate(-14px, 36px); }
.featured-copy { padding-left: 14px; transform: translateY(-2px); }
.eyebrow { margin: 0 0 10px !important; color: #87929d !important; text-transform: uppercase; font-size: 11px !important; letter-spacing: .12em; font-weight: 700; }
.featured-copy h2 { max-width: 520px; color: var(--blue); font-size: 60px; line-height: 1.02; margin: 0 0 54px; letter-spacing: -.035em; }
.featured-copy .product-type { display: block; width: fit-content; color: #111; font-size: 20px; line-height: 1.25; font-weight: 600; margin: 0 0 44px; text-decoration-line: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.featured-copy .product-type:hover, .featured-copy .product-type:focus-visible { color: var(--blue); }
.featured-copy p { color: #20262d; font-size: 16px; line-height: 1.52; max-width: 500px; }
.button-row { display: flex; gap: 12px; margin-top: 34px; }
.featured-copy .arrow-button { min-height: 48px; padding: 9px 16px 9px 10px; text-transform: none; font-size: 14px; }
.featured-copy .button-row { margin-top: 100px; }
.mobile-product-title { display: none; }
.product-strip { --thumb-size: 100%; display: flex; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; scrollbar-width: none; touch-action: pan-y; cursor: grab; user-select: none; background: #fff; border-top: 1px solid #d7dadd; border-bottom: 1px solid #d7dadd; }
.product-strip::-webkit-scrollbar { display: none; }
.product-strip[data-dragging="true"] { cursor: grabbing; scroll-snap-type: none; }
.product-strip > button { position: relative; flex: 0 0 clamp(230px, 15vw, 288px); height: auto; aspect-ratio: 1; padding: 0; border: 0; box-shadow: inset -1px 0 #d7dadd; display: grid; place-items: center; overflow: hidden; color: inherit; background: #fff; cursor: inherit; scroll-snap-align: start; text-decoration: none; -webkit-user-drag: none; }
.product-strip > button::after { content: ""; position: absolute; left: 5.5%; top: 5.5%; width: 5.5%; height: 5.5%; border-radius: 50%; background: transparent; z-index: 2; }
.product-strip > button.active::after { background: var(--yellow); }
.product-thumb-media { width: calc(100% - 32px); height: calc(100% - 32px); display: grid; place-items: center; overflow: hidden; pointer-events: none; transition: transform .22s ease; }
.product-strip img { width: min(var(--thumb-size), 100%); height: min(var(--thumb-size), 100%); max-width: none; object-fit: contain; object-position: center; clip-path: inset(3px); transform: scale(var(--thumb-scale, 1)) scale(1.08); transform-origin: center; pointer-events: none; }
.product-strip > button:hover .product-thumb-media { transform: scale(1.025); }
.product-strip > button:focus-visible { outline: 3px solid var(--blue); outline-offset: -4px; z-index: 3; }

.benefits { padding-block: 86px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit-card { min-height: 330px; padding: 30px 26px; text-align: center; border-radius: 22px; outline: 0; background: #f4f4f4; box-shadow: 0 8px 24px rgba(2,25,49,.035); position: relative; transition: background-color .22s ease; }
.benefit-card::after { content: ""; position: absolute; right: 12px; top: 12px; width: 25px; height: 25px; border-right: 3px solid var(--yellow); border-top: 3px solid var(--yellow); border-radius: 0 9px 0 0; transition: border-color .22s ease; }
.benefit-card:hover, .benefit-card:focus-visible { background: var(--yellow); }
.benefit-card:hover::after, .benefit-card:focus-visible::after { border-color: var(--blue); }
.benefit-icon { margin: 0 auto 18px; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--blue); font-size: 36px; transition: background-color .22s ease, color .22s ease; }
.benefit-card:hover .benefit-icon, .benefit-card:focus-visible .benefit-icon { background: var(--blue); color: #fff; }
.benefit-card h3 { color: var(--blue); font-size: 19px; margin: 0; }
.benefit-rule { display: block; height: 1px; background: var(--blue); margin: 26px 0 22px; opacity: .8; }
.benefit-card p { font-size: var(--body-copy-size); line-height: var(--body-copy-line); margin: 0; color: #3f474e; }

.precision { background: var(--yellow); padding: 84px 0 0; color: var(--blue); }
.precision-main { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.factory-media { position: relative; width: 100%; height: auto; aspect-ratio: 16 / 9; overflow: hidden; background: #07121e; box-shadow: 0 16px 28px rgba(0,40,80,.12); }
.factory-video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }
.factory-media video { border: 0; }
.precision-copy h2 { margin: 0 0 40px; font-size: 48px; line-height: .95; text-transform: uppercase; letter-spacing: -.045em; }
.precision-copy p { max-width: 500px; font-size: var(--body-copy-size); line-height: var(--body-copy-line); font-weight: 500; }
.stats { --stat-shape-height: clamp(82px, 5vw, 98px); position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); justify-content: center; margin-top: 78px; padding: 0 12.5% 54px; }
.stats::before { content: ""; position: absolute; left: 0; right: 0; top: calc(var(--stat-shape-height) / 2); height: 1px; background: rgba(0,83,164,.52); }
.stats > div { min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.stat-frame { position: relative; width: 100%; height: var(--stat-shape-height); display: grid; place-items: center; color: var(--blue); background: rgba(0,83,164,.58); clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%); }
.stat-frame::before { content: ""; position: absolute; inset: 1px; background: var(--yellow); clip-path: inherit; }
.stat-frame strong { position: relative; z-index: 1; font-size: clamp(40px, 2.7vw, 52px); line-height: 1; font-weight: 600; letter-spacing: -.04em; }
.stat-label { margin-top: 13px; font-size: 14px; line-height: 1.25; font-weight: 400; }

.services-band { display: grid; grid-template-columns: 40.5% 59.5%; grid-template-rows: minmax(0, 1fr); height: clamp(520px, 35vw, 680px); overflow: hidden; background: var(--blue); color: #fff; }
.service-copy { min-height: 0; padding: 58px 45px 58px 12.5vw; position: relative; z-index: 2; overflow: visible; }
.service-copy .benefit-icon { margin: 0 0 18px; }
.service-copy h2 { margin: 0 0 18px; color: var(--yellow); font-size: 28px; line-height: 1.12; }
.service-copy p { max-width: 320px; font-size: var(--body-copy-size); line-height: var(--body-copy-line); }
.service-copy .service-inquiry-button { margin-top: 24px; border-radius: 3px; font-size: 12px; text-transform: none; }
.service-copy .service-inquiry-button .arrow-icon { width: 20px; height: 20px; color: #fff; background: var(--blue); }
.service-word { position: absolute; left: 12.5vw; bottom: 0; z-index: 5; color: rgba(255,255,255,.26); font-size: clamp(94px, 9.5vw, 182px); line-height: .82; font-weight: 600; letter-spacing: 0; white-space: nowrap; pointer-events: none; }
.service-gallery { position: relative; z-index: 1; display: flex; min-width: 0; min-height: 0; height: 100%; background: #061a2e; }
.service-panel { position: relative; flex: 0 0 72px; min-width: 0; height: 100%; padding: 0; border: 0; border-left: 1px solid rgba(255,255,255,.4); overflow: hidden; background: #061a2e; cursor: pointer; transition: flex-grow .48s cubic-bezier(.22,.61,.36,1), flex-basis .48s cubic-bezier(.22,.61,.36,1); }
.service-panel.active { flex: 1 1 0; }
.service-panel img { width: 100%; height: 100%; display: block; object-fit: cover; filter: brightness(.78); transform: scale(1.03); transition: filter .35s, transform .55s cubic-bezier(.22,.61,.36,1); }
.service-panel.active img { filter: brightness(1); transform: scale(1); }
.service-label { position: absolute; top: 0; right: 10px; z-index: 1; padding-top: 18px; color: #fff; font-size: 12px; line-height: 1.15; font-weight: 600; letter-spacing: .02em; writing-mode: vertical-rl; text-orientation: mixed; text-shadow: 0 1px 5px rgba(0,0,0,.55); white-space: nowrap; }
.service-panel-mobile-copy { display: none; }
.service-panel:focus-visible { outline: 4px solid var(--yellow); outline-offset: -4px; }

.applications { padding-block: 64px 76px; position: relative; overflow: hidden; background: #fff; }
.applications-inner { position: relative; isolation: isolate; }
.applications-inner > h2, .application-tabs, .application-panel { position: relative; z-index: 1; }
.application-watermark { position: absolute; z-index: 0; top: -180px; right: -340px; width: min(1680px, 115vw); max-width: none; opacity: .05; pointer-events: none; user-select: none; }
.applications h2 { color: var(--blue); font-size: 46px; line-height: 1.02; margin: 0 0 34px; letter-spacing: -.04em; }
.application-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 58px; border-top: 1px solid #cdd5dd; border-left: 1px solid #cdd5dd; }
.application-tabs button { min-width: 0; min-height: 48px; border: 0; border-right: 1px solid #cdd5dd; border-bottom: 1px solid #cdd5dd; background: transparent; padding: 9px 12px; color: var(--blue); font-size: 13px; line-height: 1.25; cursor: pointer; }
.application-tabs button.active { background: var(--yellow); font-weight: 700; }
.application-tabs button:focus-visible { position: relative; z-index: 1; outline: 2px solid var(--blue); outline-offset: -2px; }
.application-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.application-copy { min-width: 0; padding-top: 50px; }
.application-copy h3 { margin: 0 0 26px; color: var(--blue); font-size: 27px; line-height: 1.22; }
.application-copy p { max-width: 440px; font-size: clamp(15px, .9vw, 17px); line-height: var(--body-copy-line); }
.application-copy .arrow-button { min-height: 36px; margin-top: 22px; gap: 7px; padding: 6px 12px 6px 8px; border-color: var(--blue); border-radius: 3px; color: #fff; background: var(--blue); text-transform: none; font-size: 11px; font-weight: 500; }
.application-copy .arrow-button .arrow-icon { width: 18px; height: 18px; color: var(--blue); background: #fff; font-size: 11px; }
.application-media { width: 100%; aspect-ratio: var(--media-ratio); overflow: hidden; background: #eef0f2; }
.application-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; animation: imageFade .35s ease; }
@keyframes imageFade { from { opacity: .35; transform: translateY(4px); } }

.news-section { padding: 84px 0 92px; border-top: 1px solid #dde1e5; }
.news-section h2 { margin: 0 0 50px; text-align: center; color: var(--blue); font-size: 42px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 42px; }
.news-card-link { display: block; color: inherit; text-decoration: none; }
.news-card-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 8px; }
.news-media { width: 100%; aspect-ratio: var(--media-ratio); margin-bottom: 22px; overflow: hidden; background: #eef1f4; }
.news-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .3s ease; }
.news-card time { color: #687684; font-size: 11px; }
.news-card h3 { overflow: hidden; margin: 9px 0 16px; color: var(--blue); font-size: 19px; line-height: 1.25; white-space: nowrap; text-overflow: ellipsis; }
.news-card-link:hover h3,
.news-card-link:focus-visible h3 { text-decoration-line: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.news-card p {
  height: 3.16em;
  margin: 0 0 24px;
  display: -webkit-box;
  overflow: hidden;
  color: #3b434b;
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-card .arrow-button { text-transform: none; font-size: 12px; transition: background .2s, border-color .2s; }
.news-card .arrow-button.outline:hover,
.news-card .arrow-button.outline:focus-visible { background: var(--yellow); border-color: var(--yellow); transform: none; box-shadow: none; }

.contact-section { background: #f0f1f3; padding: 95px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.contact-intro h2 { color: var(--blue); font-size: 45px; line-height: 1.1; margin: 0 0 34px; letter-spacing: -.04em; }
.contact-intro > p { max-width: 590px; font-size: var(--body-copy-size); line-height: var(--body-copy-line); color: #3d4650; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
.contact-cards > div, .contact-cards > a { min-height: 75px; display: flex; gap: 14px; align-items: center; justify-content: center; padding: 14px; border: 1px solid var(--yellow); background: #fff; text-decoration: none; color: var(--blue); }
.contact-cards > a { background: var(--yellow); }
.contact-cards > a.whatsapp-card { background: #fff; }
.contact-cards svg { font-size: 29px; flex: 0 0 auto; }
.contact-cards span { min-width: 0; font-size: 14px; line-height: 1.35; overflow-wrap: anywhere; }
.contact-cards b { display: block; font-size: 14px; line-height: 1.2; }
.contact-form { background: #fff; padding: 38px; box-shadow: 0 15px 35px rgba(0,41,78,.06); }
.contact-form h3 { margin: 0 0 8px; color: var(--blue); font-size: 22px; text-transform: uppercase; }
.contact-form > p { margin: 0; font-size: var(--body-copy-size); line-height: var(--body-copy-line); color: #49545e; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid transparent; outline: 0; background: #f2f3f4; padding: 15px; font-size: 13px; line-height: 1.4; transition: border-color .2s, background .2s; }
.contact-form > input { margin-top: 14px; }
.contact-form textarea { min-height: 95px; resize: vertical; margin-top: 14px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); background: #fff; }
.contact-form button { margin-top: 14px; width: 100%; border: 0; background: var(--yellow); color: var(--blue); padding: 10px; display: flex; justify-content: center; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.contact-form .success { color: #167447; margin: 10px 0 0; }

.certifications { background: var(--yellow); }
.certifications .shell { min-height: 124px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cert-contact, .certification-group { display: flex; align-items: center; }
.cert-contact { gap: 18px; color: var(--blue); }
.cert-contact a { display: inline-flex; align-items: center; gap: 7px; color: inherit; font-size: 14px; line-height: 1; font-weight: 600; text-decoration: none; white-space: nowrap; }
.cert-contact a:hover, .cert-contact a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.cert-contact svg { width: 18px; height: 18px; flex: 0 0 18px; }
.certification-group { gap: 27px; margin-left: auto; }
.certifications h3 { margin: 0; color: var(--blue); font-size: 15px; line-height: 1.2; white-space: nowrap; }
.cert-logos { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.cert-logos img { height: 64px; width: auto; object-fit: contain; }
.footer { background: var(--blue); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1.05fr .7fr; gap: 48px; padding-block: 58px 70px; position: relative; }
.footer-brand { grid-row: 1 / 3; border-right: 1px solid rgba(255,255,255,.45); }
.footer-brand img { width: 294px; height: 75px; object-fit: contain; object-position: left center; filter: brightness(1.06) saturate(1.09) contrast(1.02); transform: translateX(-7px); }
.footer-brand h3 { margin: 30px 0 0; font-size: 19px; line-height: 1.5; }
.footer h4 { margin: 0 0 18px; color: #ffe000; text-transform: uppercase; font-size: 17px; }
.footer a { display: block; text-decoration: none; font-size: 14px; line-height: 1.75; color: #fff; }
.footer-contact { grid-column: 2 / 5; }
.footer-contact p { display: flex; align-items: flex-start; gap: 9px; margin: 7px 0; font-size: 14px; line-height: 1.5; }
.footer-contact svg { color: var(--yellow); flex: 0 0 auto; }
.copyright { min-height: 42px; background: #f4f4f4; color: #174a7b; font-size: 9px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 10px 24px; }
.copyright a { color: #174a7b; text-decoration: underline; }

@media (min-width: 901px) and (max-width: 1200px) {
  :root { --home-header-height: 86px; }
  .hero { grid-template-rows: 86px minmax(0, 1fr); }
  .site-header { height: 86px; }
  .brand-mark { width: 86px; margin-left: -12px; flex-basis: 86px; }
  .brand-mark img { width: 86px; height: 66px; }
  .main-nav { gap: 16px; font-size: 12px; }
  .main-nav > a, .nav-direct-link > a, .nav-dropdown > a { padding-block: 32px; }
  .language-switcher-toggle { width: 34px; height: 34px; font-size: 10px; }
  .nav-search-toggle { width: 36px; height: 36px; font-size: 18px; }
  .product-menu { --notch-base: 24px; --notch-step: 24px; --notch-size: 6px; top: calc(50% + 43px); width: 210px; padding: 12px 14px; }
  .product-menu a { font-size: 12px; padding: 5px 0; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { max-width: 650px; font-size: clamp(50px, 5.4vw, 64px); }
  .hero-cta { min-height: 48px; padding-inline: 14px; font-size: 15px; }
}

@media (max-width: 900px) {
  :root { --home-header-height: 86px; }
  .shell { width: min(100% - 36px, 720px); }
  .hero { grid-template-rows: 86px minmax(0, 1fr); }
  .site-header { height: 86px; padding-inline: 18px; }
  .brand-mark { width: 86px; margin-left: -12px; flex-basis: 86px; }
  .brand-mark img { width: 86px; height: 66px; }
  .menu-toggle { display: grid; place-items: center; flex: 0 0 auto; cursor: pointer; }
  .main-nav { position: absolute; left: 0; right: 0; top: 86px; max-height: calc(100svh - 86px); padding: 18px 24px 24px; flex-direction: column; align-items: flex-start; gap: 0; overflow-y: auto; overscroll-behavior: contain; background: rgba(5,5,5,.98); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: .25s; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a, .nav-direct-link > a, .nav-dropdown > a { display: block; padding: 10px 0; }
  .nav-direct-link, .nav-dropdown { width: 100%; }
  .nav-dropdown { display: grid; grid-template-columns: minmax(0, 1fr) 44px; align-items: center; }
  .nav-dropdown > a { grid-column: 1; grid-row: 1; }
  .nav-submenu-toggle { width: 44px; height: 44px; padding: 0; border: 0; grid-column: 2; grid-row: 1; display: grid; place-items: center; color: #fff; background: transparent; cursor: pointer; }
  .nav-submenu-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
  .nav-dropdown.mobile-expanded .nav-submenu-toggle { color: var(--yellow); }
  .nav-dropdown.mobile-expanded .nav-submenu-toggle svg { transform: rotate(180deg); }
  .nav-dropdown .product-menu { position: static; width: 100%; max-height: 0; margin: 0; padding: 0 0 0 18px; grid-column: 1 / -1; grid-row: 2; display: block; overflow: hidden; color: var(--blue); background: var(--yellow); box-shadow: none; clip-path: none; opacity: 0; visibility: hidden; transform: none; transition: max-height .32s ease, padding .32s ease, opacity .2s ease, visibility .2s ease; }
  .nav-dropdown.mobile-expanded .product-menu { max-height: 420px; padding-top: 7px; padding-bottom: 10px; opacity: 1; visibility: visible; }
  .nav-dropdown:not(.mobile-expanded) .product-menu { opacity: 0; visibility: hidden; }
  .main-nav .product-menu a { padding: 7px 12px; color: var(--blue); font-size: 14px; line-height: 1.4; }
  .main-nav .product-menu a:hover, .main-nav .product-menu a:focus-visible { color: #082f5d; }
  .main-nav .desktop-language-switcher { display: none; }
  .mobile-language-switcher { margin: 0 14px 0 auto; display: block; flex: 0 0 38px; }
  .mobile-language-switcher .language-switcher-toggle { width: 38px; height: 38px; font-size: 12px; }
  .mobile-language-switcher .language-switcher-menu { right: -52px; width: min(280px, calc(100vw - 36px)); max-height: min(430px, calc(100svh - 110px)); }
  .nav-search { width: 100%; }
  .nav-search-toggle { width: 100%; min-height: 42px; border: 0; border-radius: 0; display: flex; justify-content: flex-start; gap: 10px; font-size: 18px; }
  .nav-search-toggle span { position: static; width: auto; height: auto; overflow: visible; clip: auto; font-size: 12px; }
  .nav-search-panel { position: static; width: 100%; margin: 2px 0 10px; box-shadow: none; }
  .hero { height: 100svh; min-height: 0; background-position: 63% center; }
  .hero-content { width: min(100% - 36px, 720px); min-height: 0; padding-block: 50px; }
  .hero h1 { max-width: 620px; font-size: clamp(39px, 7vw, 58px); }
  .featured-inner { width: min(100% - 36px, 720px); margin-inline: auto; grid-template-columns: 1fr; padding-block: 35px 70px; }
  .featured-visual { height: 430px; }
  .featured-visual img { width: 400px; height: 400px; transform: none; }
  .featured-visual, .featured-copy { transform: none; }
  .featured-copy { padding-left: 0; }
  .featured-inner::before { left: calc(50% + 18px); top: -80px; transform: translateX(-50%); }
  .featured-copy .button-row { margin-top: 42px; }
  .product-strip { --thumb-size: 100%; }
  .product-strip > button { flex-basis: 205px; height: auto; }
  .benefits { grid-template-columns: repeat(2,1fr); }
  .precision-main { grid-template-columns: 1fr; }
  .precision-copy { grid-row: 1; }
  .stats { --stat-shape-height: 72px; grid-template-columns: repeat(4, 1fr); padding-inline: 0; }
  .stat-frame strong { font-size: clamp(28px, 4vw, 36px); }
  .stat-label { font-size: 11px; }
  .services-band { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto; height: auto; }
  .service-copy { padding-inline: calc((100vw - min(100% - 36px, 720px))/2); overflow: hidden; }
  .service-gallery { width: 100%; max-width: 100%; height: clamp(440px, 65vw, 560px); }
  .application-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .application-panel { gap: 38px; }
  .application-copy { padding-top: 22px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-row: span 2; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (min-width: 901px) {
  .certifications { position: fixed; z-index: 40; right: 0; bottom: 0; left: 0; box-shadow: 0 -8px 24px rgba(0, 40, 80, .12); }
  .certifications.is-docked { position: relative; right: auto; bottom: auto; left: auto; }
  .certifications .shell { min-height: 83px; }
  .cert-logos { gap: 15px; }
  .cert-logos img { height: 43px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 30px, 480px); }
  .hero { height: 100svh; min-height: 0; background-position: 56% center; }
  .hero::after { content: ""; position: absolute; inset: 86px 0 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08)); }
  .hero { position: relative; }
  .hero-content { position: relative; z-index: 1; display: flex; align-items: center; padding-block: 0; }
  .hero h1 { font-size: 39px; }
  .hero-cta { margin-top: 28px; }
  .featured-product { padding-top: 58px; background: #fff; }
  .featured-inner { display: none; }
  .mobile-product-title { display: block; margin: 0 auto 28px; color: var(--blue); font-size: 39px; line-height: 1.05; letter-spacing: -.03em; }
  .product-strip { --thumb-size: 100%; }
  .product-strip > button { flex-basis: min(62vw, 238px); height: auto; }
  .product-strip > button::after { display: none; }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding-block: 55px; }
  .benefit-card { min-height: 330px; padding: 24px 14px; border-radius: 18px; }
  .benefit-card::after { right: 10px; top: 10px; width: 21px; height: 21px; }
  .benefit-icon { width: 56px; height: 56px; margin-bottom: 14px; font-size: 31px; }
  .benefit-card h3 { font-size: 16px; line-height: 1.25; }
  .benefit-rule { margin: 20px 0 18px; }
  .benefit-card p { font-size: 14px; line-height: 1.5; }
  .precision { padding-top: 60px; }
  .precision-main { gap: 42px; }
  .factory-media { height: auto; }
  .precision-copy h2 { font-size: 40px; }
  .stats { --stat-shape-height: 78px; grid-template-columns: repeat(2,1fr); row-gap: 32px; margin-top: 48px; padding-bottom: 40px; }
  .stats::before { display: none; }
  .stat-frame strong { font-size: 30px; }
  .stat-label { max-width: 150px; min-height: 28px; margin-top: 9px; }
  .services-band { display: block; height: auto; background: #061a2e; }
  .service-copy { display: none; }
  .service-gallery { height: auto; flex-direction: column; }
  .service-panel {
    width: 100%;
    height: 66px;
    flex: none;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.42);
    transition: height .48s cubic-bezier(.22,.61,.36,1);
  }
  .service-panel.active { height: clamp(300px, 82vw, 360px); flex: none; }
  .service-label {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 66px;
    padding: 0 56px 0 20px;
    display: flex;
    align-items: center;
    font-size: 13px;
    writing-mode: horizontal-tb;
    text-align: left;
  }
  .service-panel::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    color: var(--yellow);
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
  }
  .service-panel.active::after { content: "−"; }
  .service-panel img { position: absolute; inset: 0; }
  .service-panel.active img { filter: brightness(.52); }
  .service-panel-mobile-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .26s ease .12s, transform .34s ease .1s;
    pointer-events: none;
  }
  .service-panel.active .service-panel-mobile-copy { opacity: 1; transform: none; }
  .service-panel-mobile-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--yellow); font-size: 25px; }
  .service-panel-mobile-copy strong { margin-top: 15px; color: var(--yellow); font-size: 23px; line-height: 1.12; }
  .service-panel-mobile-copy > span:last-child { max-width: 325px; margin-top: 12px; font-size: 14px; line-height: 1.52; }
  .applications { padding-block: 65px; }
  .applications h2 { font-size: 39px; }
  .application-watermark { top: -42px; right: -220px; width: 760px; opacity: .045; }
  .application-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-panel { grid-template-columns: 1fr; }
  .application-media { grid-row: 1; }
  .news-section { padding-block: 65px; }
  .news-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-section { padding-block: 65px; }
  .contact-intro h2 { font-size: 39px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .certifications .shell { flex-direction: column; align-items: flex-start; padding-block: 30px; }
  .cert-contact { width: 100%; flex-wrap: wrap; gap: 12px 18px; }
  .certification-group { width: 100%; margin-left: 0; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cert-logos { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .cert-logos img { height: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / 3; grid-row: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 35px; }
  .footer-contact { grid-column: 1 / 3; }
  .copyright { flex-direction: column; gap: 5px; text-align: center; }
}
