:root {
  --ink: #172029;
  --muted: #66727f;
  --line: #dce3ea;
  --surface: #f6f8fa;
  --white: #ffffff;
  --blue: #0673b8;
  --blue-dark: #02568b;
  --steel: #d7dde3;
  --gold: #b88637;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(23, 32, 41, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 142px;
  height: auto;
  filter: invert(1);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 28px;
  color: #26313b;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown > a {
  padding: 28px 0;
}

.site-nav a:hover,
.nav-dropdown > a:hover {
  color: var(--blue);
}

.site-nav a.nav-contact {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: 44px;
  padding: 0 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}

.site-nav a.nav-contact:hover,
.site-nav a.nav-contact[aria-current="page"] {
  color: var(--white);
  background: var(--blue-dark);
}

.nav-item.active[aria-current="page"]:not(.nav-contact) > a {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-caret {
  font-size: 10px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  display: grid;
  min-width: 270px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
}

.dropdown-panel a:hover {
  color: var(--blue);
  background: var(--surface);
}

.dropdown-panel small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.header-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: #26313b;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(23, 32, 41, 0.06);
}

.header-language:hover {
  color: var(--blue);
  border-color: rgba(6, 115, 184, 0.28);
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 22px;
  padding: 0 6px;
  color: var(--white);
  background: #7c8b98;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 20, 27, 0.88) 0%, rgba(11, 20, 27, 0.66) 43%, rgba(11, 20, 27, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 20, 27, 0.26), rgba(11, 20, 27, 0.26));
}

.hero-content {
  width: min(1180px, calc(100% - 112px));
  margin: auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 15, 24, 0.55);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  margin-bottom: 6px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section,
.split-section,
.contact-section,
.factory-band,
.metrics {
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.intro p,
.section-heading p,
.factory-band p,
.contact-copy p,
.copy-panel p {
  color: var(--muted);
  font-size: 17px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metrics article {
  min-height: 160px;
  padding: 28px;
  background: var(--surface);
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.home-about-overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.home-about-copy {
  display: grid;
  gap: 20px;
}

.home-about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.home-about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-about-points span {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  font-weight: 900;
}

.home-about-copy .button {
  width: fit-content;
}

.home-about-video-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.home-about-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 430px;
  object-fit: cover;
  background: var(--ink);
}

.video-placeholder-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 74px;
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 48px);
  padding: 18px 20px;
  color: var(--white);
  background: rgba(16, 24, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.video-placeholder-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-placeholder-note strong {
  font-size: 20px;
}

.video-placeholder-note small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.home-about-video-frame figcaption {
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(23, 32, 41, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.product-card p {
  min-height: 74px;
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--blue);
  font-weight: 900;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 20, 27, 0.88) 0%, rgba(11, 20, 27, 0.68) 48%, rgba(11, 20, 27, 0.26) 100%);
}

.page-hero-content {
  width: min(1180px, calc(100% - 112px));
  margin: auto;
  color: var(--white);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

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

.category-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(23, 32, 41, 0.07);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.category-card p {
  color: var(--muted);
}

.category-card .button {
  justify-self: start;
}

.product-browser {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 38px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 102px;
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-heading h2 {
  margin: 0;
  font-size: 20px;
}

.filter-heading a,
.filter-reset {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-reset {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-group {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.filter-group a,
.filter-button,
.filter-group span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 36px;
  padding: 8px 0;
  color: #344454;
  font-weight: 800;
}

.filter-button {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.filter-group a:hover,
.filter-button:hover,
.filter-button.is-active {
  color: var(--blue);
}

.filter-button:focus-visible,
.filter-reset:focus-visible {
  outline: 2px solid rgba(6, 115, 184, 0.55);
  outline-offset: 2px;
}

.filter-button.is-active::before {
  content: "";
  width: 8px;
  height: 8px;
  align-self: center;
  border-radius: 50%;
  background: var(--blue);
}

.filter-group a span,
.filter-button span {
  display: inline;
  min-height: auto;
  padding: 0;
  color: var(--muted);
}

.muted-filter span {
  color: var(--muted);
  font-size: 14px;
}

.catalog-main {
  min-width: 0;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.catalog-search input {
  min-height: 54px;
  border: 0;
  border-radius: 0;
}

.catalog-search .button {
  min-height: 54px;
  border-radius: 0;
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.72fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-heading h2 {
  margin-bottom: 0;
}

.catalog-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.catalog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(23, 32, 41, 0.07);
}

.catalog-card[hidden] {
  display: none;
}

.legacy-products-page {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 32px;
}

.legacy-category-menu {
  border: 1px solid #eceff2;
  background: #fafafa;
}

.legacy-filter {
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 0 32px;
  border: 0;
  border-bottom: 1px solid #eceff2;
  color: #33383d;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.legacy-filter:hover,
.legacy-filter.is-active {
  color: var(--blue);
  background: var(--white);
  box-shadow: inset -4px 0 0 var(--blue);
}

.legacy-filter.is-all {
  font-size: 17px;
}

.legacy-subcategory {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 28px 0 38px;
  border-bottom: 1px solid #eceff2;
  color: #606b75;
  background: var(--white);
  font-size: 15px;
}

.legacy-subcategory::before {
  content: ">";
  margin-right: 10px;
  color: #76818c;
}

.legacy-products-main {
  min-width: 0;
}

.legacy-section-title {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.legacy-section-title h2 {
  margin: 0;
  font-size: 28px;
}

.legacy-count {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.legacy-product-grid.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 36px;
}

.legacy-product-grid .catalog-card {
  display: grid;
  gap: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legacy-product-grid .catalog-image-link {
  display: block;
  border: 1px solid #e6eaee;
  background: var(--white);
}

.legacy-product-grid .catalog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
}

.legacy-product-grid .catalog-card-body {
  padding: 0;
  text-align: center;
}

.legacy-product-grid .catalog-category,
.legacy-product-grid .catalog-card p,
.legacy-product-grid .catalog-meta,
.legacy-product-grid .catalog-actions {
  display: none;
}

.legacy-product-grid h3 {
  max-width: 280px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.22;
}

.legacy-product-grid h3 a {
  color: #252a30;
}

.legacy-product-grid h3 a:hover {
  color: var(--blue);
}

.catalog-card img {
  width: 100%;
  /*aspect-ratio: 1 / 0.86;*/
  object-fit: initial;
  /*background: var(--surface);*/
}

.catalog-image-link {
  display: block;
  overflow: hidden;
}

.catalog-image-link img {
  transition: transform 180ms ease;
}

.catalog-card:hover .catalog-image-link img {
  transform: scale(1.03);
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.catalog-category {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.catalog-card h3 a:hover {
  color: var(--blue);
}

.catalog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #405060;
  background: var(--surface);
  font-size: 11px;
  font-weight: 900;
}

.catalog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.catalog-actions .button {
  min-height: 38px;
  padding: 0 14px;
}

.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;
}

.compact-hero {
  min-height: 360px;
}

.product-detail-page {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-gallery > img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.detail-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-thumb-row button {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 115, 184, 0.12), rgba(184, 134, 55, 0.12)),
    var(--surface);
}

.detail-content {
  padding: 6px 0;
}

.detail-content > p {
  color: var(--muted);
  font-size: 17px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.detail-specs div {
  min-height: 96px;
  padding: 18px;
  background: var(--surface);
}

.detail-specs dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.content-split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-intro,
.factory-overview,
.downloads-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.team-list {
  display: grid;
  gap: 34px;
}

.team-profile,
.flow-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 32, 41, 0.08);
}

.team-profile.is-reversed .team-photo,
.flow-item.is-reversed figure {
  order: 2;
}

.team-photo,
.flow-item figure {
  display: grid;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.team-photo img,
.flow-item img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.team-photo figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-copy,
.flow-item > div {
  display: grid;
  align-content: center;
  padding: 18px 8px;
}

.team-copy p:not(.eyebrow),
.flow-item p:not(.eyebrow),
.downloads-intro p,
.factory-overview p,
.team-intro p {
  color: var(--muted);
  font-size: 17px;
}

.team-copy ul,
.flow-item ul {
  margin-top: 20px;
}

.production-flow {
  display: grid;
  gap: 34px;
  padding-top: 24px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
}

.download-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 32, 41, 0.08);
}

.download-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.download-card h3 {
  margin: 0;
  font-size: 22px;
}

.download-card p {
  margin: 0;
  color: var(--muted);
}

.download-card .button {
  align-self: end;
  width: fit-content;
}

.download-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto 96px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.download-note p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.legacy-section-heading {
  position: relative;
  padding: 58px 0 20px;
}

.legacy-section-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 32px;
}

.legacy-section-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 12px;
  background: var(--blue);
}

.legacy-bg-word {
  position: absolute;
  left: 0;
  top: 28px;
  color: rgba(23, 32, 41, 0.035);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.legacy-download-page {
  padding-top: 36px;
}

.legacy-download-intro {
  margin-bottom: 74px;
  text-align: center;
}

.legacy-download-intro h2 {
  margin-bottom: 8px;
  color: #424950;
  font-size: 38px;
  font-weight: 500;
}

.legacy-download-intro p {
  color: var(--muted);
  font-size: 14px;
}

.legacy-download-item {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 84px;
  align-items: center;
}

.legacy-download-image {
  display: block;
  overflow: hidden;
  background: var(--surface);
}

.legacy-download-image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.legacy-download-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.legacy-download-copy h3 {
  margin: 0;
  color: #4a5058;
  font-size: 27px;
}

.legacy-download-copy p,
.legacy-download-copy time {
  color: #7a838c;
  font-size: 16px;
}

.legacy-download-copy .button {
  width: fit-content;
}

.legacy-contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  padding-top: 28px;
  padding-bottom: 96px;
}

.legacy-contact-card,
.legacy-contact-visual {
  margin: 0;
  padding: 64px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(23, 32, 41, 0.08);
}

.legacy-contact-logo {
  width: 210px;
  margin-bottom: 34px;
}

.legacy-contact-card h2 {
  max-width: 440px;
  margin-bottom: 24px;
  color: #545b63;
  font-size: 29px;
  line-height: 1.18;
}

.legacy-contact-card dl {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legacy-contact-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}

.legacy-contact-card dt {
  color: #555d65;
  font-weight: 900;
}

.legacy-contact-card dd {
  margin: 0;
  color: #555d65;
}

.legacy-contact-card dd a {
  color: #555d65;
}

.legacy-contact-card .contact-actions {
  margin-top: 32px;
}

.legacy-contact-visual {
  display: grid;
  align-content: center;
  padding: 18px;
}

.legacy-contact-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-form-retained {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

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

.feature-card,
.spec-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card strong,
.spec-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-card span,
.spec-card span {
  color: var(--muted);
  font-size: 14px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.product-detail-layout img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto 96px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  padding: 18px 0 96px;
}

.panel {
  overflow: hidden;
  border-radius: var(--radius);
}

.copy-panel {
  padding: 56px;
  background: var(--ink);
  color: var(--white);
}

.copy-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.service-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.quality {
  border-top: 1px solid var(--line);
}

.quality-showcase {
  padding-bottom: 96px;
}

.quality-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.quality-visual {
  display: grid;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.quality-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.quality-visual figcaption {
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quality-cards article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 41, 0.08);
}

.quality-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.quality-cards h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.quality-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process li {
  position: relative;
  min-height: 210px;
  padding: 56px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: process;
}

.process li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 10px;
}

.process span {
  color: var(--muted);
  font-size: 14px;
}

.factory-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
  padding: 76px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef3f6 0%, #ffffff 100%);
  border: 1px solid var(--line);
}

.factory-band ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factory-band li {
  padding: 17px 18px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 41, 0.07);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
  padding: 100px 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #384450;
  font-size: 13px;
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

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

.site-footer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, #101820 0%, #153852 100%);
  border-top: 4px solid var(--blue);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.85fr 0.85fr;
  gap: 58px;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  padding: 58px 0 46px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  padding: 20px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 22px;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-cta,
  .header-language {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 22px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a.nav-contact {
    justify-content: center;
    margin-top: 12px;
    padding: 0 18px;
    border-bottom: 0;
  }

  .site-header.nav-open .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .site-header.nav-open .nav-dropdown > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .dropdown-panel {
    position: static;
    min-width: 0;
    padding: 6px 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.nav-open .dropdown-panel a {
    min-height: 34px;
    padding: 8px 0;
    border-bottom: 0;
    color: var(--muted);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content,
  .page-hero-content,
  .section,
  .split-section,
  .contact-section,
  .factory-band,
  .metrics,
  .cta-band {
    width: min(100% - 36px, 720px);
  }

  .intro,
  .home-about-overview,
  .split-section,
  .content-split,
  .team-intro,
  .factory-overview,
  .downloads-intro,
  .quality-layout,
  .team-profile,
  .flow-item,
  .legacy-products-page,
  .legacy-download-item,
  .legacy-contact-page,
  .product-detail-layout,
  .product-detail-page,
  .product-browser,
  .factory-band,
  .contact-section,
  .download-note,
  .cta-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .metrics,
  .product-grid,
  .category-grid,
  .catalog-grid,
  .feature-grid,
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-panel {
    position: static;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
  }

  .download-grid,
  .quality-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .legacy-contact-card,
  .legacy-contact-visual {
    padding: 34px;
  }

  .team-profile.is-reversed .team-photo,
  .flow-item.is-reversed figure {
    order: 0;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .factory-band,
  .copy-panel,
  .team-profile,
  .flow-item {
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    width: min(100% - 44px, 720px);
    padding: 48px 0 38px;
  }

  .footer-bottom {
    width: min(100% - 44px, 720px);
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 120px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 56px 0;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .trust-strip,
  .metrics,
  .home-about-points,
  .product-grid,
  .category-grid,
  .catalog-grid,
  .feature-grid,
  .spec-grid,
  .download-grid,
  .quality-cards,
  .service-list,
  .process,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .legacy-category-menu {
    position: static;
  }

  .legacy-filter,
  .legacy-subcategory {
    min-height: 52px;
    padding-left: 20px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .section {
    padding: 68px 0;
  }

  .catalog-search {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-bottom: 68px;
  }

  .visual-panel img {
    min-height: 330px;
  }

  .quality-visual img,
  .team-photo img,
  .flow-item img,
  .home-about-video-frame video,
  .legacy-contact-visual img {
    min-height: 300px;
  }

  .factory-band {
    padding: 28px;
  }

  .team-profile,
  .flow-item,
  .download-card,
  .download-note,
  .legacy-contact-card,
  .legacy-contact-visual {
    padding: 24px;
  }

  .legacy-section-heading {
    padding-top: 42px;
  }

  .legacy-bg-word {
    top: 22px;
    font-size: 64px;
  }

  .legacy-download-intro {
    margin-bottom: 42px;
    text-align: left;
  }

  .legacy-download-intro h2 {
    font-size: 31px;
  }

  .legacy-contact-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-section {
    padding: 76px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 32px;
  }

  .footer-logo img {
    width: 190px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    display: grid;
    padding-bottom: 24px;
  }
}
