﻿:root {
  --navy-950: #061722;
  --navy-900: #0a2232;
  --navy-800: #103247;
  --navy-700: #17455d;
  --orange: #f26a2e;
  --orange-dark: #d8541c;
  --sand: #f2f0e9;
  --paper: #fbfbf8;
  --white: #ffffff;
  --ink: #14202a;
  --muted: #64727d;
  --line: #dfe4e4;
  --shadow: 0 22px 60px rgba(6, 23, 34, 0.15);
  --container: 1240px;
  --header-height: 78px;
  --font-sans: "Manrope", "IBM Plex Sans Thai", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 8px 14px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topbar { position: relative; z-index: 31; color: #d9e4e9; background: var(--navy-950); font-size: 12px; }
.topbar__inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar p { margin: 0; letter-spacing: .02em; }
.topbar__meta, .topbar__meta > span { display: flex; align-items: center; }
.topbar__meta { gap: 18px; }
.status-dot { width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: #49ce8b; box-shadow: 0 0 0 3px rgba(73,206,139,.12); }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.language-trigger, .header-language { border: 0; background: transparent; cursor: pointer; }
.language-trigger { display: flex; align-items: center; gap: 7px; padding: 0; color: #d9e4e9; }
.language-trigger svg { width: 15px; height: 15px; }
.language-trigger .chevron { width: 12px; }

.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid rgba(10,34,50,.08); background: rgba(251,251,248,.96); backdrop-filter: blur(16px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(6,23,34,.08); }
.header__inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 41px; height: 41px; display: grid; place-items: center; color: var(--orange); background: var(--navy-900); }
.brand__mark svg { width: 28px; height: 28px; stroke-width: 1.7; }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy strong { font-size: 18px; font-weight: 800; letter-spacing: .09em; color: var(--navy-900); }
.brand__copy small { margin-top: 5px; color: #76838c; font-size: 8.5px; font-weight: 700; letter-spacing: .22em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.desktop-nav a { position: relative; padding: 28px 0; color: #3d4b55; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--orange); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header-language { min-width: 42px; padding: 8px; color: #45535d; font-size: 12px; font-weight: 800; }
.header-language svg { width: 13px; margin-left: 3px; vertical-align: -2px; }
.menu-toggle { width: 42px; height: 42px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; background: transparent; }
.menu-toggle span { width: 21px; height: 2px; background: var(--navy-900); transition: transform .2s, opacity .2s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; padding: 0 24px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 8px 0 18px; }
.mobile-menu nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; border-radius: 0; cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button--small { min-height: 42px; padding: 0 17px; }
.button--large { min-height: 56px; padding: 0 28px; }
.button--dark { color: #fff; background: var(--navy-900); }
.button--dark:hover { background: var(--navy-700); }
.button--orange { color: #fff; background: var(--orange); }
.button--orange:hover { background: var(--orange-dark); }
.button--outline { border-color: #c8d0d2; background: transparent; }
.button--outline:hover { border-color: var(--navy-900); background: #fff; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: 13px; font-weight: 700; }
.text-link svg { width: 17px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link--light { color: #fff; }

.hero { position: relative; overflow: hidden; color: #fff; background: var(--navy-900); }
.hero__grid, .cta-section__grid { position: absolute; inset: 0; pointer-events: none; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, #000, transparent 85%); }
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; right: -220px; top: -300px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.018), 0 0 0 220px rgba(255,255,255,.014); }
.hero__inner {
  position: relative;
  z-index: 3;
  min-height: 638px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 70px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__content { position: relative; z-index: 2; max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 23px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 27px; height: 2px; background: var(--orange); }
.eyebrow--light { color: #f69c73; }
.hero h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.hero h1 { max-width: 690px; font-size: clamp(48px, 5.2vw, 76px); }
.hero h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero__lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: #c1d0d8;
  font-size: 17px;
  line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; margin-top: 28px; }
.hero__actions .button--large { min-height: 48px; padding: 0 22px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero__meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.14);
  color: #d7e3e9;
  background: rgba(255,255,255,.04);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 445px;
}
.hero__visual::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  right: 8%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,106,46,.14) 0%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-product {
  position: relative;
  margin: 0;
  width: min(100%, 385px);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-product img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  padding: 22px 22px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f7 100%);
}
.hero-product figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px 16px;
  border-top: 1px solid #e8ecec;
  color: var(--ink);
  background: #fff;
}
.hero-product figcaption small {
  color: #8a969d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-product figcaption strong {
  color: var(--navy-900);
  font-size: 14px;
  letter-spacing: -.02em;
}

.intro-section { padding: 105px 0 85px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; align-items: end; }
h2 { color: var(--navy-900); font-size: clamp(37px, 4vw, 54px); }
.intro-copy { padding-bottom: 4px; }
.intro-copy p { margin: 0 0 25px; color: var(--muted); font-size: 15px; line-height: 1.8; }

.products-section { padding: 78px 0 105px; background: var(--sand); }
.products-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 40px; }
.products-toolbar .eyebrow { margin-bottom: 15px; }
.products-toolbar h2 { font-size: 36px; }
.filter-list { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.filter-list button { min-height: 38px; padding: 0 15px; border: 1px solid #d4d8d6; color: #637079; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }
.filter-list button.active, .filter-list button:hover { border-color: var(--navy-900); color: #fff; background: var(--navy-900); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { overflow: hidden; background: #fff; transition: transform .28s ease, box-shadow .28s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(6,23,34,.11); }
.product-card__image { position: relative; height: 285px; overflow: hidden; background: #e5e7e4; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__badge { position: absolute; top: 15px; left: 15px; padding: 5px 9px; color: var(--navy-900); background: rgba(255,255,255,.91); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(5px); }
.product-card__content { min-height: 195px; display: flex; flex-direction: column; padding: 24px; }
.product-card__code { color: var(--orange-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 10px; color: var(--navy-900); font-size: 19px; line-height: 1.35; letter-spacing: -.02em; }
.product-card p { margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.product-card__spec { color: #78848c; font-size: 9px; font-weight: 700; }
.product-card__view { width: 34px; height: 34px; display: grid; place-items: center; border: 0; color: #fff; background: var(--navy-900); cursor: pointer; transition: background .2s; }
.product-card__view:hover { background: var(--orange); }
.product-card__view svg { width: 15px; }
.catalog-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 23px; padding: 24px 27px; border: 1px solid #d2d7d5; background: rgba(255,255,255,.48); }
.catalog-callout__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--orange); background: #fff; }
.catalog-callout__icon svg { width: 24px; }
.catalog-callout strong, .catalog-callout span { display: block; }
.catalog-callout strong { color: var(--navy-900); font-size: 13px; }
.catalog-callout span { margin-top: 2px; color: var(--muted); font-size: 10px; }

.capabilities-section { color: #fff; background: var(--navy-900); }
.capabilities-grid { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.capabilities-visual { position: relative; height: 530px; }
.capabilities-visual__image { position: absolute; width: 78%; height: 460px; left: 0; bottom: 0; overflow: hidden; }
.capabilities-visual__image img { width: 100%; height: 100%; object-fit: cover; }
.capabilities-visual__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,23,34,.1), rgba(6,23,34,.35)); }
.blueprint-card { position: absolute; width: 300px; right: 0; top: 0; padding: 25px 24px; color: var(--navy-900); background: #fff; box-shadow: var(--shadow); }
.blueprint-card > span { display: block; margin-bottom: 17px; color: var(--orange-dark); font-size: 8.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blueprint-card__line { display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); }
.blueprint-card__line b { color: var(--orange); font-size: 9px; }
.blueprint-card__line i { height: 1px; background: #ccd4d6; }
.blueprint-card__line strong { font-size: 9px; }
.capabilities-content { padding: 75px 0; }
.capabilities-content h2 { color: #fff; }
.capabilities-lead, .capabilities-content > p { max-width: 530px; color: #a8bac4; font-size: 14px; }
.capabilities-content > p { margin: 24px 0 25px; }
.capability-list { margin: 25px 0 32px; border-top: 1px solid rgba(255,255,255,.13); }
.capability-list article { display: grid; grid-template-columns: 40px 1fr; gap: 17px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.capability-list article > span { color: var(--orange); font-size: 9px; font-weight: 800; }
.capability-list h3 { margin: 0 0 4px; font-size: 14px; }
.capability-list p { margin: 0; color: #8fa4b0; font-size: 10.5px; line-height: 1.65; }

.spec-section { padding: 105px 0; }
.spec-header { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; align-items: end; margin-bottom: 50px; }
.spec-header p { margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.spec-grid article { min-height: 218px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); }
.spec-grid article:last-child { border-right: 0; }
.spec-grid svg { width: 26px; height: 26px; margin-bottom: 28px; color: var(--orange); }
.spec-grid span, .spec-grid strong, .spec-grid small { display: block; }
.spec-grid span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.spec-grid strong { margin-top: 7px; color: var(--navy-900); font-size: 19px; }
.spec-grid small { margin-top: auto; color: #849098; font-size: 9px; }
.quality-band { margin-top: 28px; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 150px; color: #fff; background: var(--navy-900); }
.quality-band__copy { display: flex; align-items: center; gap: 25px; padding: 28px 36px; border-right: 1px solid rgba(255,255,255,.14); }
.quality-band__number { color: var(--orange); font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -.06em; }
.quality-band__number span { font-size: 22px; }
.quality-band__copy strong, .quality-band__copy p { display: block; margin: 0; }
.quality-band__copy strong { font-size: 13px; }
.quality-band__copy p { margin-top: 4px; color: #8fa5b0; font-size: 9px; }
.quality-band__items { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; padding: 20px 30px; }
.quality-band__items span { display: flex; flex-direction: column; align-items: center; gap: 9px; color: #b5c5cd; text-align: center; }
.quality-band__items svg { width: 23px; color: #67c995; }
.quality-band__items b { max-width: 100px; font-size: 9px; font-weight: 600; }

.about-section { overflow: hidden; padding: 100px 0; background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 105px; align-items: center; }
.about-copy > p { color: var(--muted); font-size: 13px; line-height: 1.8; }
.about-copy > p:first-of-type { margin-top: 25px; }
.about-details { margin-top: 30px; border-top: 1px solid #d1d6d5; }
.about-details div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid #d1d6d5; }
.about-details span { color: #849098; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.about-details strong { color: var(--navy-900); font-size: 11px; }
.about-visual { position: relative; min-height: 470px; }
.about-visual > img { width: 85%; height: 430px; margin-left: auto; object-fit: cover; }
.about-visual::before { content: ""; position: absolute; width: 220px; height: 220px; left: 0; top: -27px; border: 1px solid #cad1d1; }
.about-visual__panel { position: absolute; left: 0; bottom: 0; width: 245px; padding: 28px; color: #fff; background: var(--navy-900); box-shadow: var(--shadow); }
.about-visual__panel span, .about-visual__panel strong, .about-visual__panel small { display: block; }
.about-visual__panel span { color: #9bb0bb; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-visual__panel strong { margin: 7px 0 3px; color: var(--orange); font-size: 42px; line-height: 1; }
.about-visual__panel small { color: #a7b8c0; font-size: 9px; }

.cta-section { position: relative; overflow: hidden; padding: 78px 0; color: #fff; background: #0d2a3b; }
.cta-section::before { content: ""; position: absolute; width: 400px; height: 400px; right: -100px; top: -230px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012); }
.cta-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-action p { max-width: 470px; margin: 0 0 25px; color: #a9bbc4; font-size: 13px; line-height: 1.75; }

.site-footer { color: #a5b6be; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; padding-top: 62px; padding-bottom: 55px; }
.brand--footer .brand__copy strong { color: #fff; }
.footer-brand p { max-width: 280px; margin: 22px 0 0; font-size: 11px; line-height: 1.8; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 8px; color: #fff; font-size: 11px; }
.footer-links a, .footer-links button, .footer-links span { padding: 0; border: 0; color: #8ea3ad; background: transparent; text-align: left; font-size: 9.5px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--orange); }
.footer-bottom { min-height: 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #728995; font-size: 8.5px; }

.language-popover { position: fixed; z-index: 60; top: 40px; right: max(24px, calc((100vw - var(--container))/2)); width: 230px; padding: 8px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.language-popover[hidden] { display: none; }
.language-popover button { width: 100%; display: grid; grid-template-columns: 36px 1fr 18px; align-items: center; gap: 8px; padding: 10px; border: 0; background: transparent; cursor: pointer; text-align: left; }
.language-popover button:hover { background: var(--sand); }
.language-popover button > span { color: var(--orange-dark); font-size: 10px; font-weight: 800; }
.language-popover button b { font-size: 12px; }
.language-popover button svg { width: 16px; opacity: 0; color: #4db77e; }
.language-popover button.active svg { opacity: 1; }

.modal { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 28px; }
.modal.active { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,13,20,.76); backdrop-filter: blur(7px); }
.modal__close { position: absolute; z-index: 3; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--navy-900); background: rgba(255,255,255,.94); cursor: pointer; }
.modal__close svg { width: 18px; }
.product-modal__dialog { position: relative; z-index: 2; width: min(100%, 1050px); max-height: calc(100vh - 56px); overflow: auto; background: #fff; box-shadow: var(--shadow); }
.product-modal__top { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 420px; }
.product-modal__image { min-height: 420px; background: #e8eae6; }
.product-modal__image img { width: 100%; height: 100%; object-fit: cover; }
.product-modal__summary { padding: 48px 48px 38px; }
.product-modal__summary .eyebrow { margin-bottom: 17px; }
.product-modal__summary h2 { padding-right: 25px; font-size: 35px; }
.product-modal__summary > p { color: var(--muted); font-size: 12px; }
.product-modal__chips { display: flex; gap: 7px; flex-wrap: wrap; margin: 22px 0; }
.product-modal__chips span { padding: 6px 9px; color: var(--navy-900); background: var(--sand); font-size: 8px; font-weight: 700; }
.product-modal__body { display: grid; grid-template-columns: .95fr 1.05fr; gap: 55px; padding: 38px 48px 48px; border-top: 1px solid var(--line); }
.product-modal__body h3 { margin: 0 0 15px; color: var(--navy-900); font-size: 14px; }
.product-modal__body ul { margin: 0; padding: 0; list-style: none; }
.product-modal__body li { position: relative; margin: 8px 0; padding-left: 16px; color: var(--muted); font-size: 10.5px; }
.product-modal__body li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--orange); }
.modal-spec-table { width: 100%; border-collapse: collapse; }
.modal-spec-table th, .modal-spec-table td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 9.5px; text-align: left; vertical-align: top; }
.modal-spec-table th { width: 42%; color: #839098; font-weight: 500; }
.modal-spec-table td { color: var(--navy-900); font-weight: 700; }

.inquiry-modal__dialog { position: relative; z-index: 2; width: min(100%, 760px); max-height: calc(100vh - 56px); overflow: auto; padding: 46px 52px; background: #fff; box-shadow: var(--shadow); }
.inquiry-modal__intro h2 { font-size: 36px; }
.inquiry-modal__intro > p { margin: 12px 0 25px; color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; color: var(--navy-900); font-size: 9px; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #d5dcde; border-radius: 0; outline: 0; padding: 11px 12px; color: var(--ink); background: #fff; font-size: 11px; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.form-grid input, .form-grid select { height: 42px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,46,.1); }
.form-span { grid-column: 1 / -1; }
.form-consent { display: flex; align-items: flex-start; gap: 8px; margin: 15px 0; color: var(--muted); font-size: 9px; }
.form-consent input { accent-color: var(--orange); }
.form-note { margin: 9px 0 0; color: #8a969d; font-size: 8px; text-align: center; }
.inquiry-result { padding: 25px 0 5px; text-align: center; }
.inquiry-result[hidden] { display: none; }
.result-icon { width: 55px; height: 55px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 50%; color: #fff; background: #42b779; }
.result-icon svg { width: 25px; }
.inquiry-result h3 { margin: 0; color: var(--navy-900); font-size: 23px; }
.inquiry-result > p { max-width: 500px; margin: 10px auto 17px; color: var(--muted); font-size: 10px; }
.inquiry-result textarea { width: 100%; height: 185px; padding: 15px; border: 1px solid var(--line); background: #f7f8f6; color: #4b5962; font: 10px/1.6 monospace; resize: none; }
.result-actions { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 30px; padding: 11px 18px; color: #fff; background: var(--navy-950); box-shadow: var(--shadow); font-size: 10px; opacity: 0; pointer-events: none; transform: translate(-50%, 15px); transition: opacity .2s, transform .2s; }
.toast.active { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .15s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .hero__inner { grid-template-columns: 1fr 430px; gap: 35px; }
  .hero-product { width: min(100%, 340px); }
  .intro-grid, .spec-header { gap: 70px; }
  .capabilities-grid { gap: 55px; }
  .about-grid { gap: 65px; }
}

@media (max-width: 900px) {
  .topbar p, .topbar__meta > span:first-child, .topbar__divider { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .desktop-nav, .header__actions > .button, .header-language { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.active { display: block; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 75px;
    padding-bottom: 45px;
    gap: 35px;
    min-height: 0;
    justify-items: start;
  }
  .hero__visual {
    width: min(100%, 560px);
    min-height: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .hero__content { max-width: 720px; }
  .hero h1 { max-width: none; }
  .hero-product { width: min(100%, 385px); }
  .intro-grid, .spec-header, .about-grid, .cta-inner { grid-template-columns: 1fr; gap: 35px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: 1fr; padding-top: 80px; }
  .capabilities-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .capabilities-content { padding-top: 0; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid article:nth-child(2) { border-right: 0; }
  .spec-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .quality-band { grid-template-columns: 1fr; }
  .quality-band__copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .about-copy { max-width: 680px; }
  .about-visual { max-width: 620px; width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  :root { --header-height: 68px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__mark svg { width: 24px; }
  .brand__copy strong { font-size: 16px; }
  .hero__inner { min-height: 0; padding-top: 58px; padding-bottom: 40px; gap: 28px; }
  .hero h1 { max-width: none; font-size: 43px; }
  .hero__lead { font-size: 14px; margin-top: 16px; }
  .hero__actions { margin-top: 22px; }
  .hero__actions .button { width: auto; min-height: 48px; }
  .hero__meta { margin-top: 22px; gap: 8px; }
  .hero__meta span { min-height: 30px; padding: 0 10px; font-size: 9.5px; }
  .hero__visual { width: min(100%, 100%); min-height: 0; }
  .hero-product { width: min(100%, 320px); margin: 0 auto; }
  .hero-product img { height: 280px; padding: 16px 16px 6px; }
  .hero-product figcaption { padding: 12px 14px 14px; }
  .intro-section, .spec-section, .about-section { padding: 75px 0; }
  .intro-grid { gap: 30px; }
  h2 { font-size: 37px; }
  .products-section { padding: 65px 0 75px; }
  .products-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-list { justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__image { height: 320px; }
  .catalog-callout { grid-template-columns: auto 1fr; }
  .catalog-callout .button { grid-column: 1 / -1; }
  .capabilities-grid { padding-top: 65px; gap: 35px; }
  .capabilities-visual { height: 410px; }
  .capabilities-visual__image { width: 88%; height: 355px; }
  .blueprint-card { width: 245px; padding: 18px; }
  .spec-header { gap: 25px; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-grid article:last-child { border-bottom: 0; }
  .quality-band__copy { align-items: flex-start; flex-direction: column; gap: 12px; }
  .quality-band__items { grid-template-columns: 1fr; gap: 25px; padding: 30px; }
  .about-visual { min-height: 390px; }
  .about-visual > img { height: 350px; }
  .about-visual__panel { width: 210px; }
  .cta-section { padding: 65px 0; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding: 15px 0; }
  .modal { padding: 0; align-items: stretch; }
  .product-modal__dialog, .inquiry-modal__dialog { max-height: 100vh; width: 100%; }
  .product-modal__top { grid-template-columns: 1fr; }
  .product-modal__image { min-height: 310px; height: 310px; }
  .product-modal__summary { padding: 32px 24px; }
  .product-modal__summary h2 { font-size: 29px; }
  .product-modal__body { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px; }
  .inquiry-modal__dialog { padding: 40px 22px 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .language-popover { top: 43px; right: 16px; }
}

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

.about-line-link { display: inline-block; margin-top: 6px; padding: 4px 10px; border: 1px solid var(--orange); color: var(--orange-dark); font-size: 11px; font-weight: 700; letter-spacing: .08em; transition: background .2s, color .2s; }
.about-line-link:hover { background: var(--orange); color: #fff; }
.about-details small { display: block; margin-top: 4px; font-size: 12px; font-weight: 400; color: var(--muted); }


.product-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.product-modal__hint { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.5; }


.inquiry-file { display: flex; flex-direction: column; gap: 6px; }
.inquiry-file input[type="file"] { padding: 8px 10px; background: #f2f0e9; border: 1px dashed #64727d; font-size: 12px; color: #14202a; cursor: pointer; }
.inquiry-file small { color: #64727d; font-size: 11px; }
.inquiry-result__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.inquiry-result__actions .button { flex: 1; min-width: 140px; }
.button.line-send { background: #06C755; color: #fff; border-color: #06C755; }
.button.line-send:hover { background: #04a544; border-color: #04a544; transform: translateY(-2px); }
.button.line-send svg { stroke: #fff; width: 18px; height: 18px; }
.inquiry-result__hint { font-size: 12px; color: #64727d; margin: 8px 0 4px; line-height: 1.5; }


/* Legacy studio image helpers (kept for any remaining dark-frame media) */
.product-card__image--studio,
.product-modal__image--studio,
.capabilities-visual__image--studio,
.about-visual--studio > img {
  background: #0b1c28;
}
.product-card__image--studio img,
.product-modal__image--studio img {
  object-fit: contain;
  padding: 18px;
  background: radial-gradient(circle at 50% 42%, #163347 0%, #0b1c28 70%);
}
.capabilities-visual__image--studio img {
  object-fit: contain;
  padding: 24px;
  background: radial-gradient(circle at 40% 40%, #163347 0%, #0a2232 75%);
}
.about-visual--studio > img {
  object-fit: contain;
  padding: 20px;
  background: radial-gradient(circle at 50% 40%, #163347 0%, #0b1c28 75%);
}

/* Trust strip */
.trust-strip {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.trust-strip__item:last-child { border-right: 0; }
.trust-strip__item strong {
  color: var(--navy-900);
  font-size: 13px;
  letter-spacing: -.01em;
}
.trust-strip__item span {
  color: var(--muted);
  font-size: 10px;
}

/* Why section */
.why-section {
  padding: 100px 0 90px;
  background: var(--paper);
}
.why-header {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}
.why-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-grid article {
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,23,34,.08);
}
.why-grid article > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.why-grid h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 16px;
  letter-spacing: -.02em;
}
.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.markets-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  color: #fff;
  background: var(--navy-900);
}
.markets-band__copy {
  padding: 34px 36px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.markets-band__copy .eyebrow { margin-bottom: 14px; }
.markets-band__copy h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.25;
}
.markets-band__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 28px 32px;
}
.markets-band__list span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  color: #d5e2e8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255,255,255,.03);
}

.about-line-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
}
.about-line-link:hover { text-decoration: underline; }

.inquiry-file small {
  display: block;
  margin-top: 4px;
  color: #8a969d;
  font-size: 8.5px;
  font-weight: 500;
}
.inquiry-result__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.line-send {
  color: #fff;
  background: #06c755;
  border-color: #06c755;
}
.line-send:hover { background: #05b34c; border-color: #05b34c; }
.inquiry-result h4 {
  margin: 18px 0 6px;
  color: var(--navy-900);
  font-size: 12px;
}
.inquiry-result__hint {
  margin: 0 auto 12px !important;
}

@media (max-width: 1100px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__item:nth-child(2) { border-right: 0; }
  .trust-strip__item:nth-child(1),
  .trust-strip__item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why-header { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .markets-band { grid-template-columns: 1fr; }
  .markets-band__copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 720px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__item:last-child { border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 72px 0 64px; }
  .markets-band__list { padding: 22px; }
}


/* Brand polish adjustments */
.about-details div { grid-template-columns: 140px 1fr; }
.quality-band__number { font-size: 48px; letter-spacing: .04em; }
.capabilities-visual__image--studio::after { background: linear-gradient(135deg, rgba(6,23,34,.05), rgba(6,23,34,.28)); }
.product-card__image--studio { height: 300px; }
.desktop-nav { gap: clamp(16px, 2.2vw, 34px); }
.desktop-nav a { font-size: 12.5px; }
.hero__grid { z-index: 2; }
.about-visual > img {
  object-fit: cover;
  background: #0b1c28;
}
.capabilities-visual__image img {
  object-fit: cover;
}

/* White / transparent product packshots */
.product-card__image--white,
.product-modal__image--white {
  background: #ffffff;
}
.product-card__image--white img,
.product-modal__image--white img {
  object-fit: contain;
  padding: 22px 18px 10px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
}
.product-card__image--white {
  height: 300px;
  border-bottom: 1px solid #eef1f1;
}
.product-modal__image--white {
  background: #fff;
}
.product-modal__image--white img {
  padding: 36px;
  background: #fff;
}
.product-card__badge {
  box-shadow: 0 6px 18px rgba(6,23,34,.08);
}


/* Certificates / credentials */
.certs {
  margin-top: 42px;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}
.certs__header {
  max-width: 720px;
  margin-bottom: 28px;
}
.certs__header .eyebrow { margin-bottom: 14px; }
.certs__header h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.03em;
  line-height: 1.2;
}
.certs__header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.certs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cert-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cert-card:hover {
  transform: translateY(-3px);
  border-color: #cfd6d7;
  box-shadow: 0 16px 40px rgba(6,23,34,.08);
}
.cert-card__frame {
  background: #f4f5f3;
  border-right: 1px solid var(--line);
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 12px;
}
.cert-card__frame img {
  width: 100%;
  height: 166px;
  object-fit: contain;
  object-position: center top;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6,23,34,.08);
}
.cert-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 24px;
}
.cert-card__meta strong {
  color: var(--navy-900);
  font-size: 16px;
  letter-spacing: -.02em;
}
.cert-card__meta span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.cert-card__meta small {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.certs__note {
  margin: 16px 0 0;
  color: #8a969d;
  font-size: 11px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .certs__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cert-card { grid-template-columns: 1fr; }
  .cert-card__frame {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cert-card__frame img { height: 200px; }
}


.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}
.about-highlights span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #d5dbdb;
  color: var(--navy-900);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.about-copy > p {
  font-size: 13px;
  line-height: 1.75;
}
