@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: oklch(0.985 0.004 232);
  --paper-soft: oklch(0.956 0.007 232);
  --paper-warm: oklch(0.970 0.010 62);
  --surface: oklch(0.997 0.002 232);
  --surface-muted: oklch(0.940 0.008 232);
  --ink: oklch(0.210 0.019 245);
  --ink-strong: oklch(0.120 0.017 245);
  --muted: oklch(0.475 0.021 245);
  --soft: oklch(0.645 0.016 245);
  --line: oklch(0.855 0.012 245);
  --line-soft: oklch(0.915 0.007 245);
  --accent: oklch(0.545 0.198 25);
  --accent-deep: oklch(0.430 0.170 25);
  --accent-soft: oklch(0.955 0.038 28);
  --steel: oklch(0.385 0.023 245);
  --on-accent: oklch(0.986 0.004 35);
  --success: oklch(0.510 0.112 145);
  --shadow-soft: 0 28px 80px oklch(0.370 0.025 245 / 0.100);
  --shadow-image: 0 42px 110px oklch(0.280 0.030 245 / 0.160);
  --container: 1440px;
  --page-gutter: 40px;
  --header-height: 72px;
  --radius: 28px;
  --radius-sm: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 8%, oklch(0.965 0.030 36 / 0.520), transparent 30rem),
    linear-gradient(180deg, var(--paper), var(--surface) 52%, var(--paper-soft));
  color: var(--ink);
  font-family: Onest, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, oklch(1 0 0 / 0.720), transparent 24rem),
    linear-gradient(90deg, transparent, oklch(0.900 0.010 245 / 0.240), transparent);
  opacity: 0.76;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid oklch(0.760 0.120 30);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

.container {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-150%);
  transition: transform 220ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-inline: max(calc(var(--page-gutter) / 2), calc((100vw - var(--container)) / 2));
  background: oklch(0.987 0.004 232 / 0.875);
  box-shadow:
    0 1px 0 oklch(0.850 0.012 245 / 0.520),
    0 18px 52px oklch(0.330 0.022 245 / 0.080);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 118px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.brand-text {
  display: grid;
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.02;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a {
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.primary-nav a:hover {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent) !important;
  box-shadow: 0 14px 30px oklch(0.520 0.160 25 / 0.210);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line-soft);
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms var(--ease),
    opacity 180ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 46%, transparent 46%),
    var(--surface);
}

.hero-image {
  position: absolute;
  top: var(--header-height);
  right: 0;
  z-index: -3;
  width: 58%;
  height: calc(100% - var(--header-height));
  object-fit: cover;
  object-position: 56% 48%;
  box-shadow: var(--shadow-image);
}

.hero-shade {
  position: absolute;
  inset: var(--header-height) 0 0 0;
  z-index: -2;
  background:
    linear-gradient(90deg, var(--paper) 0%, oklch(0.985 0.004 232 / 0.970) 38%, oklch(0.985 0.004 232 / 0.560) 55%, transparent 78%),
    linear-gradient(180deg, transparent 58%, var(--paper) 100%);
}

.hero-content {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  min-height: calc(780px - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 56px 0 72px;
}

.brand-line,
.kicker,
.process-tag,
.output-label {
  display: block;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: 4.65rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--steel);
  font-size: 1.14rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 18px 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background-color 240ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 18px 42px oklch(0.520 0.160 25 / 0.235);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-ghost {
  padding-inline: 22px;
  background: oklch(0.990 0.003 232 / 0.760);
  color: var(--ink-strong);
  box-shadow:
    0 0 0 1px oklch(0.820 0.012 245 / 0.720),
    0 16px 40px oklch(0.340 0.020 245 / 0.065);
}

.button-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-right: -6px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.180);
  color: inherit;
  transition: transform 240ms var(--ease);
}

.button:hover .button-icon {
  transform: translateX(3px);
}

.hero-facts {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 54px 0 0;
  padding: 0;
}

.hero-facts dt {
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 700;
  line-height: 1.34;
}

.section,
.selector-band,
.applications {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 104px 0;
}

.selector-band {
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
}

.product-glance {
  background:
    linear-gradient(180deg, var(--surface), var(--paper) 78%);
}

.product-range {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.document-checklist span {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.document-checklist span {
  grid-row: 1 / span 2;
}

.product-range-head {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  max-width: 520px;
}

.product-range-head > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-family-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.family-card {
  position: relative;
  display: grid;
  min-height: 252px;
  padding: 30px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, oklch(1 0 0 / 0.760), transparent 20rem),
    linear-gradient(145deg, var(--paper), oklch(0.958 0.010 232));
  box-shadow:
    inset 0 0 0 1px oklch(0.885 0.010 245 / 0.560),
    0 22px 54px oklch(0.340 0.020 245 / 0.070);
}

.family-card-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: 30px;
  min-height: 324px;
  background:
    radial-gradient(circle at 82% 16%, oklch(0.966 0.030 32 / 0.780), transparent 17rem),
    linear-gradient(145deg, var(--paper), var(--surface));
}

.family-card-with-sheet {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  gap: 28px;
  min-height: 292px;
}

.family-copy {
  align-self: end;
}

.family-process,
.family-meta span {
  display: block;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.family-card h3 {
  margin: 16px 0 14px;
  color: var(--ink-strong);
  font-size: clamp(1.58rem, 2vw, 2.18rem);
  line-height: 1.02;
}

.family-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.family-meta {
  display: inline-grid;
  gap: 7px;
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 14px;
  background: oklch(1 0 0 / 0.660);
}

.family-meta span {
  color: var(--soft);
}

.family-meta strong {
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.25;
}

.family-sheet {
  align-self: stretch;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.family-sheet img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  margin-top: 38px;
  color: var(--accent-deep);
  font-weight: 800;
}

.catalog-link::after {
  content: "→";
  margin-left: 10px;
  transform: translateX(0);
  transition: transform 220ms var(--ease);
}

.catalog-link:hover::after {
  transform: translateX(4px);
}

.section-intro {
  max-width: 650px;
}

.section-intro p:not(.kicker),
.quality-copy > p,
.factory-proof p,
.rfq-aside > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-narrow {
  max-width: 720px;
  margin-bottom: 46px;
}

.selector-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.selector-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 30px;
  background: oklch(0.996 0.002 232 / 0.700);
  box-shadow: var(--shadow-soft);
}

.selector-option {
  min-height: 116px;
  padding: 22px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--ink-strong);
  text-align: left;
  font-weight: 800;
  transition:
    transform 240ms var(--ease),
    background-color 240ms var(--ease),
    color 240ms var(--ease);
}

.selector-option span {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 600;
}

.selector-option:hover {
  transform: translateY(-2px);
  background: var(--paper-soft);
}

.selector-option.is-active {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 18px 36px oklch(0.520 0.150 25 / 0.190);
}

.selector-option.is-active span {
  color: oklch(0.940 0.014 35);
}

.selector-output {
  grid-column: 2;
  margin: 18px 8px 0;
  padding: 18px 8px 0;
}

.selector-output strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 1.52rem;
  line-height: 1.18;
}

.selector-output p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--steel);
}

.facility-showcase {
  background: var(--paper);
}

.facility-layout {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 74px;
  align-items: center;
}

.facility-copy {
  max-width: 500px;
}

.facility-copy h2 {
  max-width: 470px;
}

.facility-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.facility-points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.facility-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.45;
}

.facility-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.facility-media {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.facility-media figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-image);
}

.facility-media .facility-main {
  grid-row: 1 / span 2;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-system {
  background: var(--surface);
}

.product-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.product-tabs {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  display: grid;
  gap: 2px;
  padding-top: 10px;
}

.product-tab {
  position: relative;
  min-height: 54px;
  padding: 12px 10px 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-weight: 800;
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.product-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 220ms var(--ease);
}

.product-tab:hover {
  color: var(--ink-strong);
  transform: translateX(3px);
}

.product-tab.is-active {
  color: var(--accent-deep);
}

.product-tab.is-active::before {
  background: var(--accent);
}

.product-panels {
  min-width: 0;
}

.product-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: stretch;
  min-height: 560px;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 6% 10%, oklch(1 0 0 / 0.840), transparent 22rem),
    linear-gradient(135deg, var(--paper-soft), var(--surface));
  box-shadow: var(--shadow-soft);
}

.product-panel[hidden] {
  display: none;
}

.sheet-preview,
.product-note-panel {
  position: relative;
  min-height: 492px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
}

.sheet-preview img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
}

.product-note-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 12%, oklch(0.968 0.026 31 / 0.740), transparent 17rem),
    linear-gradient(145deg, var(--paper), oklch(0.944 0.010 232));
  box-shadow: inset 0 0 0 1px oklch(0.865 0.012 245 / 0.620);
}

.product-note-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 26% 22%, oklch(0.935 0.026 226 / 0.55), transparent 12rem),
    radial-gradient(circle at 88% 76%, oklch(0.945 0.038 55 / 0.48), transparent 11rem);
  opacity: 0.5;
  pointer-events: none;
}

.product-note-panel span,
.product-note-panel strong,
.product-note-panel p {
  position: relative;
  z-index: 1;
}

.product-note-panel span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-note-panel strong {
  color: var(--ink-strong);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.product-note-panel p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
}

.product-copy {
  align-self: center;
  padding-right: 12px;
}

.product-copy h3 {
  margin-bottom: 18px;
  font-size: 2.22rem;
  line-height: 1.04;
}

.product-copy p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.04rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  min-height: 116px;
  padding: 18px;
  border-radius: 20px;
  background: oklch(0.985 0.004 232 / 0.760);
}

.spec-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list strong {
  display: block;
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.28;
}

.matching {
  background: var(--paper);
}

.match-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 44px;
}

.match-flow article {
  position: relative;
  min-height: 172px;
  padding-top: 12px;
}

.match-flow span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.match-flow p {
  margin: 0;
  color: var(--muted);
}

.applications {
  padding-top: 104px;
  background: var(--surface);
  overflow: hidden;
}

.applications > .section-intro {
  margin-inline: auto;
  text-align: center;
}

.application-rail {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.72fr);
  gap: 10px;
  margin: 48px auto 0;
}

.app-strip {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: var(--surface-muted);
  color: var(--on-accent);
  text-align: left;
  box-shadow: var(--shadow-image);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.app-strip:hover,
.app-strip.is-active {
  transform: translateY(-4px);
  box-shadow: 0 52px 120px oklch(0.260 0.030 245 / 0.190);
}

.app-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.app-strip:hover img,
.app-strip.is-active img {
  transform: scale(1.035);
}

.app-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, oklch(0.150 0.018 245 / 0.760)),
    linear-gradient(90deg, oklch(0.130 0.018 245 / 0.430), transparent 78%);
}

.app-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.app-copy strong {
  font-size: 1.36rem;
  line-height: 1.12;
  font-weight: 800;
}

.app-copy small {
  max-width: 430px;
  color: oklch(0.900 0.008 245);
  font-size: 0.94rem;
  line-height: 1.48;
  font-weight: 600;
}

.quality {
  background: var(--paper);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.quality-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-image);
}

.quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-copy h2 {
  max-width: 720px;
}

.quality-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 44px;
  margin-top: 38px;
}

.quality-matrix div {
  min-height: 112px;
}

.quality-matrix span {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quality-matrix strong {
  color: var(--ink-strong);
  font-size: 1.1rem;
  line-height: 1.2;
}

.documents {
  background:
    radial-gradient(circle at 86% 18%, oklch(0.960 0.024 28 / 0.340), transparent 25rem),
    var(--surface);
}

.documents-layout {
  display: grid;
  gap: 42px;
}

.documents-copy {
  max-width: 820px;
}

.documents-copy h2 {
  max-width: 720px;
}

.documents-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.document-statement {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: inset 3px 0 0 var(--accent);
}

.document-statement span {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.document-statement strong {
  color: var(--accent-deep);
  font-size: 0.98rem;
  line-height: 1.22;
}

.document-panel {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  padding: 38px 46px;
  border-radius: 18px;
  background:
    linear-gradient(150deg, oklch(0.998 0.002 232), oklch(0.962 0.006 232)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.document-preview {
  position: relative;
  min-height: 430px;
}

.document-preview img {
  position: absolute;
  width: 100%;
  max-width: 58%;
  height: 328px;
  object-fit: contain;
  padding: 14px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 16px 34px oklch(0.330 0.022 245 / 0.070);
}

.document-preview img:first-child {
  left: 0;
  top: 36px;
}

.document-preview img:last-child {
  right: 0;
  top: 92px;
}

.document-checklist {
  display: grid;
  gap: 0;
}

.document-checklist article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  min-height: 0;
  padding: 22px 0;
  background: transparent;
  box-shadow: 0 1px 0 var(--line-soft);
}

.document-checklist article:last-child {
  box-shadow: none;
}

.document-checklist strong {
  grid-column: 2;
  display: block;
  margin: 10px 0 8px;
  color: var(--ink-strong);
  font-size: 1.12rem;
  line-height: 1.2;
}

.document-checklist p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.factory-proof {
  padding-top: 46px;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 62px;
  align-items: center;
}

.proof-grid > div {
  max-width: 480px;
}

.proof-photo {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-image);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 78px;
  align-items: start;
}

.faq-list {
  display: grid;
}

details {
  background: transparent;
  box-shadow: 0 -1px 0 var(--line-soft) inset;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 22px 0;
  color: var(--ink-strong);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--accent-deep);
  transition:
    transform 220ms var(--ease),
    background-color 220ms var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent-soft);
}

details p {
  max-width: 720px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.rfq {
  padding-bottom: 132px;
  background:
    radial-gradient(circle at 76% 20%, oklch(0.956 0.040 30 / 0.520), transparent 28rem),
    var(--paper-soft);
}

.rfq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: start;
}

.rfq-aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.rfq-notes {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.rfq-address-card {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 96, 156, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(6, 43, 76, 0.08);
}

.rfq-address-card span {
  display: block;
  margin-bottom: 8px;
  color: #0b74bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rfq-address-card strong {
  display: block;
  color: #062b4c;
  font-size: 14px;
  line-height: 1.65;
  word-break: break-all;
}

.rfq-notes li {
  color: var(--steel);
  font-weight: 700;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 34px;
  border-radius: 36px;
  background: oklch(0.996 0.002 232 / 0.760);
  box-shadow: var(--shadow-soft);
}

.field {
  display: grid;
  gap: 9px;
}

.field-wide,
.form-actions,
.rfq-summary {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition:
    box-shadow 200ms var(--ease),
    background-color 200ms var(--ease);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--surface);
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 0 0 4px oklch(0.820 0.105 28 / 0.220);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 0 0 4px oklch(0.820 0.105 28 / 0.180);
}

input[type="file"] {
  min-height: 56px;
  padding: 12px;
}

input[type="file"]::file-selector-button {
  margin-right: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink-strong);
  color: var(--on-accent);
  padding: 9px 14px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 8px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--accent-deep);
}

.form-status.is-success {
  color: var(--success);
}

.rfq-summary {
  margin: 0;
  padding: 20px;
  overflow: auto;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  white-space: pre-wrap;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.site-footer {
  padding: 38px 0;
  background: var(--paper);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-grid strong {
  color: var(--ink-strong);
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink-strong);
  color: var(--on-accent);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
  box-shadow: 0 18px 42px oklch(0.520 0.160 25 / 0.235);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.64rem;
  }

  .primary-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .selector-grid,
  .product-range,
  .facility-layout,
  .product-layout,
  .documents-layout,
  .quality-grid,
  .proof-grid,
  .faq-grid,
  .rfq-grid {
    grid-template-columns: 1fr;
  }

  .product-range {
    gap: 42px;
  }

  .product-range-head {
    position: static;
    max-width: 720px;
  }

  .product-family-map {
    grid-template-columns: 1fr;
  }

  .facility-media {
    grid-template-rows: 240px 240px;
  }

  .selector-output {
    grid-column: auto;
  }

  .product-tabs,
  .rfq-aside {
    position: static;
  }

  .product-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .product-tab {
    min-height: 48px;
    padding: 12px;
    border-radius: 999px;
    background: var(--paper-soft);
    text-align: center;
  }

  .product-tab::before {
    display: none;
  }

  .product-tab.is-active {
    background: var(--accent-soft);
  }

  .product-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .match-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-strip {
    min-height: 390px;
  }

  .quality-media,
  .proof-photo {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .hero-content,
  .application-rail {
    width: auto;
    margin-inline: 18px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: oklch(0.990 0.004 232 / 0.955);
    box-shadow: 0 24px 60px oklch(0.330 0.024 245 / 0.100);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease);
  }

  .primary-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    background: var(--paper);
  }

  .hero-image {
    top: var(--header-height);
    width: 100%;
    height: 52%;
    opacity: 0.42;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, oklch(0.985 0.004 232 / 0.930), oklch(0.985 0.004 232 / 0.680) 42%, var(--paper) 86%),
      linear-gradient(90deg, oklch(0.985 0.004 232 / 0.780), transparent);
  }

  .hero-content {
    min-height: auto;
    padding: 126px 0 76px;
  }

  h1 {
    font-size: 3.24rem;
  }

  h2 {
    font-size: 2.24rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-facts {
    display: none;
  }

  .section,
  .selector-band,
  .applications {
    padding: 84px 0;
  }

  .selector-grid,
  .selector-options,
  .product-range,
  .facility-layout,
  .facility-media,
  .product-panel,
  .match-flow,
  .application-rail,
  .documents-layout,
  .document-panel,
  .quality-matrix,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .product-range-head {
    order: 1;
  }

  .product-family-map {
    order: 2;
  }

  .family-card-large,
  .family-card-with-sheet {
    grid-template-columns: 1fr;
  }

  .facility-media {
    grid-template-rows: 320px 260px 260px;
  }

  .facility-media .facility-main {
    grid-row: auto;
  }

  .document-preview img {
    height: 280px;
  }

  .document-checklist article {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .product-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-panel {
    min-height: 0;
    padding: 22px;
    border-radius: 30px;
  }

  .sheet-preview,
  .product-note-panel {
    min-height: 360px;
  }

  .product-copy {
    padding-right: 0;
  }

  .product-copy h3 {
    font-size: 1.86rem;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .app-strip {
    min-height: 320px;
  }

  .quality-media,
  .facility-media figure,
  .proof-photo {
    min-height: 360px;
  }

  .field-wide,
  .form-actions,
  .rfq-summary {
    grid-column: auto;
  }

  .footer-grid {
    display: grid;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content,
  .application-rail {
    margin-inline: 14px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-text span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.68rem;
  }

  h2 {
    font-size: 1.92rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .footer-cta {
    width: 100%;
  }

  .selector-options {
    padding: 6px;
    border-radius: 24px;
  }

  .selector-option {
    min-height: 104px;
    padding: 18px;
  }

  .family-card,
  .family-sheet,
  .document-panel {
    border-radius: 18px;
  }

  .product-family-map {
    gap: 12px;
  }

  .family-card {
    min-height: auto;
    padding: 20px;
  }

  .family-sheet {
    min-height: 220px;
  }

  .facility-media {
    grid-template-rows: 260px 220px 220px;
  }

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

  .product-panel,
  .rfq-form {
    padding: 16px;
  }

  .sheet-preview,
  .product-note-panel,
  .quality-media,
  .facility-media figure,
  .document-panel,
  .proof-photo,
  .app-strip {
    border-radius: 22px;
  }

  .document-preview {
    position: static;
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .document-preview img {
    position: static;
    max-width: none;
    height: 210px;
    padding: 10px;
    border-radius: 12px;
  }

  .document-checklist {
    grid-template-columns: 1fr;
  }

  .document-checklist article {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
    border-radius: 12px;
    background: oklch(0.985 0.004 232 / 0.760);
    box-shadow: none;
  }

  .document-checklist span,
  .document-checklist strong,
  .document-checklist p {
    grid-column: auto;
    grid-row: auto;
  }

  .sheet-preview img {
    padding: 16px;
  }

  .rfq {
    padding-bottom: 104px;
  }
}

/* Industrial reference refinement layer */

:root {
  --paper: #ffffff;
  --paper-soft: #eef5fa;
  --paper-warm: #f7fafc;
  --surface: #ffffff;
  --surface-muted: #e6f0f7;
  --ink: #142333;
  --ink-strong: #062b4c;
  --muted: #607286;
  --soft: #7e9bb2;
  --line: #dbe4ec;
  --line-soft: #e6eef5;
  --accent: #ff9b35;
  --accent-deep: #0866b6;
  --accent-soft: #e9f4fc;
  --steel: #385267;
  --on-accent: #ffffff;
  --success: #11863a;
  --navy: #062b4c;
  --navy-2: #0a3d69;
  --blue: #0866b6;
  --cyan: #2eb7df;
  --shadow-soft: 0 10px 32px rgba(12, 43, 74, 0.06);
  --shadow-image: 0 18px 50px rgba(12, 43, 74, 0.12);
  --container: 1440px;
  --page-gutter: 40px;
  --header-height: 82px;
  --radius: 22px;
  --radius-sm: 12px;
}

body {
  background: var(--white, #fff);
  color: var(--ink);
}

body::before {
  display: none;
}

.container {
  width: min(calc(100% - var(--page-gutter)), var(--container));
}

.topbar {
  background: #03233d;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar-grid {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(203, 220, 232, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 35px rgba(0, 38, 70, 0.09);
}

.brand-mark {
  width: 112px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.brand-mark img {
  width: auto;
  height: 60px;
  max-width: 112px;
  object-fit: contain;
}

.brand-text {
  color: var(--navy);
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--blue);
}

.primary-nav {
  gap: 24px;
  color: #31485c;
  font-size: 14px;
}

.primary-nav a {
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s ease;
}

.primary-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.primary-nav a:hover {
  color: var(--blue);
  transform: none;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(8, 102, 182, 0.22);
}

.nav-cta:hover {
  background: #07599f;
  color: #fff;
}

.hero {
  min-height: 735px;
  padding-top: 0;
  background: var(--navy);
  color: #fff;
}

.hero-image {
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  object-position: 62% 45%;
  box-shadow: none;
  filter: saturate(0.98) contrast(1.06);
}

.hero-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 49, 0.86) 0%, rgba(5, 44, 77, 0.74) 38%, rgba(7, 51, 88, 0.32) 68%, rgba(7, 51, 88, 0.14) 100%),
    linear-gradient(180deg, rgba(3, 27, 49, 0.04), rgba(3, 27, 49, 0.22));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 26%, rgba(115, 207, 240, 0.2), transparent 34%),
    radial-gradient(circle at 86% 36%, rgba(255, 155, 53, 0.12), transparent 28%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-content {
  min-height: 735px;
  display: block;
  padding: 84px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: center;
}

.hero-copy-block {
  max-width: 820px;
  padding-bottom: 96px;
}

.brand-line {
  color: #73cff0;
  margin-bottom: 16px;
  letter-spacing: 0.11em;
}

.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}

h1 {
  max-width: 760px;
  font-size: clamp(43px, 5.5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.048em;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h3 {
  color: var(--navy);
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.68;
}

.button {
  min-height: 50px;
  border-radius: 8px;
  padding: 13px 20px;
}

.button-primary {
  background: var(--accent);
  color: #1e2a35;
  box-shadow: 0 10px 26px rgba(255, 155, 53, 0.24);
}

.button-primary:hover {
  background: #ffab58;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  width: min(100%, 650px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-facts div {
  display: grid;
  gap: 6px;
}

.hero-facts dt {
  margin: 0;
  color: #73cff0;
}

.hero-facts dd {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 90px 25px 20px 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 177, 222, 0.25), transparent 68%);
}

.hero-sheet-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 241, 248, 0.93));
  box-shadow: 0 28px 60px rgba(0, 18, 35, 0.28);
}

.hero-sheet-card img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
}

.hero-sheet-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
}

.hero-sheet-card figcaption strong {
  font-size: 15px;
}

.hero-sheet-card figcaption span {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.hero-sheet-card-main {
  width: 66%;
  aspect-ratio: 0.9;
  left: 0;
  top: 8px;
  transform: rotate(-2deg);
}

.hero-sheet-card-side {
  width: 47%;
  aspect-ratio: 0.78;
  right: 0;
  bottom: 8px;
  transform: rotate(3deg);
}

.hero-badge {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  border: 7px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--accent);
  color: #1a2e40;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 20, 40, 0.28);
}

.hero-badge strong {
  font-size: 42px;
  line-height: 1;
}

.hero-badge span {
  max-width: 82px;
  margin-inline: auto;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-quick-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.8fr auto;
  gap: 18px;
  align-items: center;
  margin-top: -8px;
  padding: 22px 24px;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 -10px 35px rgba(0, 20, 40, 0.15);
}

.hero-quick-form div {
  display: grid;
  gap: 4px;
}

.hero-quick-form strong {
  color: var(--navy);
  font-size: 17px;
}

.hero-quick-form span {
  color: var(--muted);
  font-size: 13px;
}

.hero-quick-form .button {
  white-space: nowrap;
}

.section,
.selector-band,
.applications {
  padding: 106px 0;
}

.product-glance {
  padding-top: 134px;
  background: var(--paper-soft);
}

.kicker,
.process-tag,
.output-label,
.family-process,
.family-meta span,
.spec-list span,
.match-flow span,
.quality-matrix span,
.document-checklist span,
.document-statement span {
  color: var(--blue);
  letter-spacing: 0.1em;
}

.section-intro p:not(.kicker),
.product-range-head > p:not(.kicker),
.quality-copy > p,
.factory-proof p,
.rfq-aside > p,
.documents-copy > p,
.facility-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.product-range {
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  gap: 58px;
}

.product-range-head {
  top: calc(var(--header-height) + 36px);
}

.product-family-map {
  gap: 24px;
}

.family-card {
  min-height: 300px;
  padding: 0;
  border: 1px solid #e1e9f0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 25px rgba(12, 43, 74, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.family-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-image);
}

.family-card-large,
.family-card-with-sheet {
  grid-template-columns: 43% 57%;
  min-height: 360px;
  gap: 0;
}

.family-card:not(.family-card-large):not(.family-card-with-sheet) {
  align-content: end;
  min-height: 270px;
  padding: 30px;
}

.family-card-large .family-copy,
.family-card-with-sheet .family-copy {
  order: 2;
  align-self: center;
  padding: 32px;
}

.family-sheet {
  align-self: stretch;
  min-height: 100%;
  border-radius: 0;
  background: linear-gradient(155deg, #edf5fa, #fff);
  box-shadow: none;
}

.family-sheet img {
  padding: 28px;
  mix-blend-mode: multiply;
}

.family-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.family-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.family-meta {
  margin-top: 24px;
  padding: 0;
  background: transparent;
}

.family-meta strong {
  color: var(--navy);
}

.catalog-link {
  color: var(--blue);
}

.selector-band {
  background: #fff;
}

.selector-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 62px;
}

.selector-options {
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.selector-option {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
}

.selector-option:hover {
  transform: none;
  background: #fbfdff;
}

.selector-option.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.selector-option.is-active span {
  color: rgba(255, 255, 255, 0.74);
}

.selector-output {
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.selector-output strong {
  color: var(--navy);
}

.facility-showcase {
  background: var(--paper-soft);
}

.facility-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.facility-media {
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 245px);
  gap: 16px;
}

.facility-media figure {
  position: relative;
  border-radius: 18px;
  box-shadow: none;
}

.facility-media figure:hover img {
  transform: scale(1.04);
}

.facility-media img {
  transition: transform 0.45s ease;
}

.facility-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 48px 22px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(2, 22, 39, 0.84));
}

.facility-media figcaption strong {
  font-size: 16px;
}

.facility-media figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.facility-points li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.product-system {
  background: #fff;
}

.product-layout {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 46px;
}

.product-tab {
  min-height: 56px;
  color: #425a70;
}

.product-tab.is-active {
  color: var(--blue);
}

.product-tab.is-active::before {
  background: var(--blue);
}

.product-panel {
  min-height: 540px;
  padding: 0;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.sheet-preview,
.product-note-panel {
  min-height: 540px;
  border-radius: 0;
  background: linear-gradient(155deg, #edf5fa, #fff);
}

.sheet-preview img {
  padding: 34px;
  mix-blend-mode: multiply;
}

.product-note-panel {
  border-right: 1px solid var(--line);
}

.product-note-panel::before {
  opacity: 0.28;
}

.product-note-panel span {
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
}

.product-note-panel strong {
  color: var(--navy);
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  letter-spacing: -0.055em;
}

.product-copy {
  padding: 34px 38px;
}

.product-copy h3 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.product-copy p {
  color: var(--muted);
}

.spec-list {
  gap: 12px;
}

.spec-list li {
  min-height: 112px;
  border-radius: 12px;
  background: #f7fafc;
}

.matching {
  background: var(--paper-soft);
}

.match-flow {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.match-flow article {
  min-height: 190px;
  padding: 28px 24px 30px;
  border-right: 1px solid var(--line);
}

.match-flow article:last-child {
  border-right: 0;
}

.applications {
  background: #fff;
}

.application-rail {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  gap: 12px;
}

.app-strip {
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm, 0 9px 28px rgba(12, 43, 74, 0.09));
}

.app-strip::after {
  background:
    linear-gradient(180deg, transparent 36%, rgba(2, 22, 39, 0.86)),
    linear-gradient(90deg, rgba(2, 22, 39, 0.42), transparent 78%);
}

.quality {
  background: var(--paper-soft);
}

.quality-grid {
  gap: 78px;
}

.quality-media {
  min-height: 620px;
  border-radius: 24px;
  box-shadow: var(--shadow-image);
}

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

.quality-matrix div {
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.documents {
  background: #fff;
}

.document-statement {
  border: 1px solid #cbdce8;
  border-radius: 13px;
  box-shadow: none;
}

.document-statement strong {
  color: var(--blue);
}

.document-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, #fff, #edf5fa);
  box-shadow: var(--shadow-soft);
}

.document-preview img {
  border-radius: 13px;
  box-shadow: 0 9px 28px rgba(12, 43, 74, 0.09);
}

.document-checklist article {
  box-shadow: 0 1px 0 var(--line);
}

.faq {
  background: var(--paper-soft);
}

summary {
  color: var(--navy);
}

summary::after {
  background: #fff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px #adc1d1;
}

details[open] summary::after {
  background: var(--accent-soft);
}

.rfq {
  background: linear-gradient(120deg, #062b4c, #07588e);
  color: #fff;
}

.rfq h2,
.rfq label {
  color: #fff;
}

.rfq-aside > p,
.rfq-notes li {
  color: rgba(255, 255, 255, 0.78);
}

.rfq .kicker {
  color: #73cff0;
}

.rfq-form {
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(0, 16, 30, 0.28);
}

.rfq-form label {
  color: #344e63;
}

input,
select,
textarea {
  border: 1px solid #d3dfe8;
  border-radius: 9px;
  background: #fbfdff;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 102, 182, 0.1);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b32828;
  box-shadow: 0 0 0 3px rgba(179, 40, 40, 0.12);
}

.site-footer {
  background: #031d32;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid strong {
  color: #fff;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-cta,
.mobile-sticky-cta {
  border-radius: 8px;
  background: var(--accent);
  color: #1e2a35;
}

@media (max-width: 1120px) {
  .hero-grid,
  .hero-quick-form,
  .product-range,
  .selector-grid,
  .facility-layout,
  .product-layout,
  .quality-grid,
  .documents-layout,
  .document-panel,
  .faq-grid,
  .rfq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 74px 0 0;
  }

  .hero-copy-block {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-quick-form {
    margin-top: 24px;
    border-radius: 18px 18px 0 0;
  }

  .product-glance {
    padding-top: 104px;
  }

  .product-range-head {
    position: static;
    max-width: 780px;
  }

  .product-family-map {
    grid-template-columns: 1fr;
  }

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

  .sheet-preview,
  .product-note-panel {
    min-height: 380px;
  }

  .product-note-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .match-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-flow article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  .topbar {
    display: none;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 96px;
    height: 54px;
  }

  .brand-mark img {
    height: 50px;
    max-width: 96px;
  }

  .primary-nav {
    top: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
  }

  .primary-nav a {
    opacity: 0;
  }

  .primary-nav.is-open a {
    opacity: 1;
  }

  .nav-cta {
    border-radius: 8px;
  }

  .hero-image {
    height: 100%;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 27, 49, 0.86), rgba(5, 44, 77, 0.68)),
      linear-gradient(90deg, rgba(3, 27, 49, 0.72), rgba(3, 27, 49, 0.28));
  }

  .hero-content {
    width: auto;
    margin-inline: 18px;
    padding: 58px 0 0;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-quick-form {
    margin-inline: -4px;
    padding: 18px;
    border-radius: 16px;
  }

  .section,
  .selector-band,
  .applications {
    padding: 78px 0;
  }

  .product-glance {
    padding-top: 78px;
  }

  .family-card-large,
  .family-card-with-sheet {
    grid-template-columns: 1fr;
  }

  .family-card-large .family-copy,
  .family-card-with-sheet .family-copy {
    order: 1;
    padding: 26px;
  }

  .family-sheet {
    order: 2;
    min-height: 250px;
  }

  .selector-options {
    grid-template-columns: 1fr;
  }

  .facility-media {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 235px 235px;
  }

  .facility-media .facility-main {
    grid-row: auto;
  }

  .application-rail {
    grid-template-columns: 1fr;
  }

  .app-strip {
    min-height: 330px;
  }

  .quality-matrix,
  .match-flow,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .match-flow article,
  .match-flow article:nth-child(2) {
    border-right: 0;
  }

  .document-preview {
    min-height: 330px;
  }

  .document-preview img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content,
  .application-rail {
    width: auto;
    margin-inline: 14px;
  }

  h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .brand-line,
  .kicker {
    letter-spacing: 0.08em;
  }

  .button,
  .footer-cta {
    width: 100%;
  }

  .family-card,
  .product-panel,
  .document-panel,
  .rfq-form {
    border-radius: 18px;
  }

  .family-card:not(.family-card-large):not(.family-card-with-sheet),
  .product-copy,
  .rfq-form,
  .document-panel {
    padding: 20px;
  }

  .sheet-preview,
  .product-note-panel,
  .quality-media {
    min-height: 300px;
  }

  .document-preview {
    min-height: 0;
  }

  .document-preview img {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .hero-quick-form,
  .family-card,
  .product-panel,
  .selector-option,
  .document-panel,
  .rfq-form {
    min-width: 0;
    max-width: 100%;
  }

  .hero-quick-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-quick-form *,
  .family-card *,
  .product-panel *,
  .selector-output *,
  .document-panel *,
  .rfq-form * {
    min-width: 0;
  }

  .hero-quick-form p,
  .hero-quick-form span,
  .hero-quick-form strong,
  .hero-copy,
  .family-card p,
  .family-card strong,
  .product-copy p,
  .product-copy strong,
  .spec-list strong,
  .selector-output p,
  .document-checklist p,
  .document-checklist strong {
    overflow-wrap: anywhere;
  }

  .hero-quick-form .button {
    width: 100%;
    white-space: normal;
  }
}

/* BOBAO framework correction layer */

.section--tight {
  padding: 0;
}

.section--soft {
  background: var(--paper-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 0 44px;
}

.section-heading h2,
.section-intro h2 {
  margin: 0;
}

.section-heading > p:not(.kicker),
.section-heading--split > p,
.section-intro p:not(.kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: 80px;
  align-items: end;
}

.partner-strip {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  border-bottom: 1px solid rgba(191, 211, 226, 0.58);
  background:
    linear-gradient(90deg, rgba(235, 248, 253, 0.92), rgba(255, 255, 255, 0.98) 38%, rgba(240, 247, 252, 0.95));
}

.partner-strip__inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.24fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.partner-strip__copy .kicker {
  margin-bottom: 7px;
}

.partner-strip__copy h2 {
  max-width: 300px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.partner-marquee {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: partner-scroll 34s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  width: 156px;
  height: 72px;
  margin: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(203, 220, 232, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(12, 43, 74, 0.055);
}

.partner-logo img {
  max-width: 118px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.78);
  transition:
    opacity 0.2s var(--ease),
    filter 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.partner-logo:hover img {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.03);
}

@keyframes partner-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }
}

@media (max-width: 760px) {
  .partner-strip {
    padding: 22px 0;
  }

  .partner-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-strip__copy h2 {
    max-width: 100%;
  }

  .partner-logo {
    width: 132px;
    height: 64px;
    border-radius: 15px;
  }

  .partner-logo img {
    max-width: 100px;
    max-height: 40px;
  }
}

.metrics {
  padding: 16px 0;
  background: linear-gradient(180deg, #eaf4f8 0%, #eef7fb 100%);
  box-shadow: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: auto;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 98px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(18, 68, 101, 0.06);
  text-align: left;
}

.metric + .metric {
  border-left: 0;
}

.metric strong {
  color: var(--navy);
  font-size: clamp(27px, 2.4vw, 35px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric span {
  max-width: 170px;
  color: #536b7f;
  font-size: 13px;
  line-height: 1.4;
}

.solutions {
  background: #fff;
}

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

.solution-card {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid #dfe9f1;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.98)),
    #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 25px rgba(12, 43, 74, 0.045);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.solution-card:hover,
.solution-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(8, 102, 182, 0.36);
  box-shadow: 0 18px 48px rgba(12, 43, 74, 0.13);
}

.solution-card.is-active {
  background:
    linear-gradient(135deg, rgba(8, 102, 182, 0.08), transparent 48%),
    #fff;
  box-shadow:
    inset 4px 0 0 var(--blue),
    0 18px 48px rgba(12, 43, 74, 0.13);
}

.solution-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e7f3fb;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.solution-output {
  max-width: 790px;
  margin-top: 30px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
}

.solution-output strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.solution-output p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

.products-overview {
  position: relative;
  overflow: hidden;
}

.products-overview::before {
  content: "ПРОДУКЦИЯ";
  position: absolute;
  top: 32px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  color: rgba(8, 102, 182, 0.055);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.products-overview > .container,
.featured > .container,
.supply-proof > .container {
  position: relative;
  z-index: 1;
}

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

.category-grid--families {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 452px;
  display: grid;
  grid-template-rows: 232px 1fr;
  overflow: hidden;
  border: 1px solid #dfe9f1;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 43, 74, 0.06);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(12, 43, 74, 0.13);
}

.category-card__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(8, 102, 182, 0.11), transparent 32%),
    linear-gradient(145deg, #f7fbfe, #e9f2f8);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  padding: 0;
  filter: none;
  mix-blend-mode: normal;
}

.category-card__body {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 23px 22px 26px;
}

.category-card__body span,
.product-code,
.project-card__label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card__body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.18;
}

.category-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.category-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.category-card__chips li {
  padding: 7px 10px;
  border: 1px solid rgba(8, 102, 182, 0.18);
  border-radius: 999px;
  background: rgba(8, 102, 182, 0.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.category-card__body a,
.featured-product__content a {
  align-self: end;
  width: max-content;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.featured {
  background: #fff;
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.featured-product {
  min-height: 420px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 43, 74, 0.065);
}

.featured-product__media {
  min-height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 155, 53, 0.16), transparent 34%),
    linear-gradient(155deg, #edf5fa, #fff);
}

.featured-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  padding: 0;
  filter: none;
  mix-blend-mode: normal;
}

.featured-product__content {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 32px;
}

.featured-product__content h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.featured-product__content > p:not(.product-code) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.featured-product__content ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.featured-product__content li {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-radius: 10px;
  background: #f3f8fc;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.hero-sheet-card img {
  padding: 0;
  object-fit: cover;
  object-position: center 64%;
  mix-blend-mode: normal;
}

.hero-sheet-card-main img {
  object-position: center 68%;
}

.hero-sheet-card-side img {
  object-position: center 62%;
}

.category-card__image .product-photo--contain,
.featured-product__media .product-photo--contain {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.category-card__image .product-photo--spool,
.featured-product__media .product-photo--spool {
  object-position: center 68%;
}

.category-card__image .product-photo--spool-alt,
.featured-product__media .product-photo--spool-alt {
  object-position: center 70%;
}

.category-card__image .product-photo--spool-close,
.featured-product__media .product-photo--spool-close {
  object-position: center 58%;
}

.category-card__image .product-photo--tig-horizontal,
.featured-product__media .product-photo--tig-horizontal {
  object-fit: cover;
  object-position: 46% 38%;
}

.category-card__image .product-photo--drum,
.featured-product__media .product-photo--drum {
  object-position: center 64%;
}

.category-card__image .product-photo--drum-close,
.featured-product__media .product-photo--drum-close {
  object-position: center 56%;
}

.category-card__image .product-photo--drum-workshop,
.featured-product__media .product-photo--drum-workshop {
  object-position: center 78%;
}

.featured-product__media .supply-photo--warehouse-spools {
  object-position: center 72%;
}

.featured-product__media .supply-photo--inside {
  object-position: center 52%;
}

.featured-product__media .supply-photo--cartons {
  object-position: center 70%;
}

.featured-product__media .supply-photo--workshop-wide {
  object-position: center 76%;
}

.featured-product__media .supply-photo--white-set {
  object-position: center 62%;
}

.featured-product__media .supply-photo--pallet-portrait {
  object-position: center 72%;
}

.supply-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f6fafc 100%);
}

.supply-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.supply-proof-main,
.supply-proof-item {
  overflow: hidden;
  border: 1px solid #dbe7ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 43, 74, 0.08);
}

.supply-proof-main {
  position: relative;
  min-height: 640px;
  margin: 0;
}

.supply-proof-main img,
.supply-proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supply-proof-main figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 8px;
  padding: 34px;
  background: linear-gradient(0deg, rgba(5, 35, 62, 0.86), rgba(5, 35, 62, 0));
  color: #fff;
}

.supply-proof-main figcaption span,
.supply-proof-item span {
  color: #6dcff2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.supply-proof-main figcaption strong {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.supply-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.supply-proof-item {
  min-height: 310px;
  display: grid;
  grid-template-rows: 168px 1fr;
  box-shadow: 0 12px 32px rgba(12, 43, 74, 0.06);
}

.supply-proof-item div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.supply-proof-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.supply-proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.supply-proof .supply-photo--warehouse-spools {
  object-position: center 72%;
}

.supply-proof .supply-photo--inside {
  object-position: center 52%;
}

.supply-proof .supply-photo--cartons {
  object-position: center 70%;
}

.supply-proof .supply-photo--workshop-wide {
  object-position: center 76%;
}

.supply-proof .supply-photo--white-set {
  object-position: center 62%;
}

.supply-proof .supply-photo--pallet-portrait {
  object-position: center 72%;
}

.facility-showcase {
  background:
    linear-gradient(180deg, #fff 0%, #eef5fa 100%);
}

.facility-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.facility-copy h2 {
  margin: 0;
}

.facility-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.facility-points li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-weight: 700;
}

.facility-media {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.facility-media figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-muted);
  box-shadow: 0 12px 34px rgba(12, 43, 74, 0.075);
}

.facility-media .facility-main {
  grid-row: span 2;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects {
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 183, 223, 0.08), transparent 28%),
    #fff;
}

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

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0a314f;
  box-shadow: 0 24px 64px rgba(12, 43, 74, 0.13);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 22, 39, 0.04) 0%, rgba(2, 22, 39, 0.12) 38%, rgba(2, 22, 39, 0.88) 100%),
    linear-gradient(90deg, rgba(2, 22, 39, 0.62), transparent 58%);
  pointer-events: none;
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card__body {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 34px;
}

.project-card h3 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.project-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.project-card__label {
  color: #79d6f2;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.project-card__tags li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.documents {
  background: var(--paper-soft);
}

.documents-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.documents-copy h2 {
  margin: 0;
}

.document-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  overflow: hidden;
}

.document-preview {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 155, 53, 0.12), transparent 30%),
    linear-gradient(155deg, #f8fbfd, #e6f0f7);
}

.document-preview img {
  position: absolute;
  width: 56%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.document-preview img:first-child {
  left: 11%;
  top: 16%;
  transform: rotate(-3deg);
  z-index: 2;
}

.document-preview img:last-child {
  right: 10%;
  bottom: 13%;
  transform: rotate(4deg);
}

.document-checklist {
  display: grid;
  gap: 0;
  padding: 22px;
}

.document-checklist article {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.document-checklist article:last-child {
  border-bottom: 0;
}

.document-checklist strong {
  color: var(--navy);
  font-size: 17px;
}

.document-checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: start;
}

.contact-section,
.rfq {
  background:
    radial-gradient(circle at 12% 12%, rgba(46, 183, 223, 0.16), transparent 34%),
    linear-gradient(120deg, #062b4c, #07588e);
}

@media (max-width: 1120px) {
  .section-heading--split,
  .facility-layout,
  .supply-proof-layout,
  .documents-layout,
  .documents-carousel-layout,
  .faq-grid,
  .rfq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .metrics-grid,
  .solution-grid,
  .category-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-products {
    grid-template-columns: 1fr;
  }

  .featured-product {
    grid-template-columns: 38% 62%;
  }

  .supply-proof-main {
    min-height: 480px;
  }

  .document-panel {
    grid-template-columns: 1fr;
  }

  .document-preview {
    min-height: 380px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading--split {
    display: block;
  }

  .metrics-grid,
  .solution-grid,
  .category-grid,
  .featured-products,
  .supply-proof-list,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    justify-content: flex-start;
  }

  .metric + .metric {
    border-left: 0;
    border-top: 0;
  }

  .solution-card {
    min-height: auto;
    padding: 24px;
  }

  .category-card {
    min-height: 0;
    grid-template-rows: 260px auto;
  }

  .featured-product {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .featured-product__media {
    min-height: 300px;
  }

  .featured-product__content {
    padding: 26px;
  }

  .featured-product__content ul {
    grid-template-columns: 1fr;
  }

  .supply-proof-main {
    min-height: 340px;
  }

  .supply-proof-main figcaption {
    padding: 24px;
  }

  .supply-proof-item {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .facility-media {
    grid-template-columns: 1fr;
    grid-template-rows: 290px 230px 230px;
  }

  .facility-media .facility-main {
    grid-row: auto;
  }

  .project-card {
    min-height: 300px;
  }

  .document-preview {
    min-height: 330px;
  }

  .document-preview img {
    max-height: 255px;
  }
}

@media (max-width: 560px) {
  .products-overview .section-heading h2,
  .featured .section-heading h2,
  .supply-proof .section-heading h2 {
    max-width: 100%;
    font-size: 25.5px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .section-heading > p:not(.kicker),
  .section-heading--split > p,
  .section-intro p:not(.kicker) {
    font-size: 15.5px;
  }

  .products-overview::before {
    display: none;
  }

  .category-card,
  .featured-product,
  .supply-proof-main,
  .supply-proof-item,
  .project-card,
  .document-panel,
  .document-carousel {
    border-radius: 18px;
  }

  .category-card__body,
  .featured-product__content,
  .supply-proof-item div,
  .project-card__body {
    padding: 22px;
  }

  .category-card {
    grid-template-rows: 230px auto;
  }

  .featured-product__media {
    min-height: 260px;
  }

  .supply-proof-main {
    min-height: 300px;
  }

  .supply-proof-main figcaption strong {
    font-size: 24px;
  }

  .document-preview {
    min-height: 270px;
  }

  .document-preview img {
    max-height: 210px;
  }
}

/* BOBAO factory-first refinement layer */
.facility-showcase--lead {
  padding-top: 98px;
  border-top: 1px solid rgba(12, 43, 74, 0.08);
  background:
    radial-gradient(circle at 12% 10%, rgba(46, 183, 223, 0.12), transparent 32%),
    linear-gradient(180deg, #f6fafc 0%, #fff 62%, #eef5fa 100%);
}

.facility-showcase--lead .facility-layout {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
}

.facility-copy > p {
  max-width: 560px;
  color: #536b7f;
  font-size: 17px;
  line-height: 1.72;
}

.facility-points {
  gap: 16px;
}

.facility-points li {
  padding: 15px 0 15px 28px;
  border-top: 1px solid rgba(12, 43, 74, 0.1);
  color: #0a314f;
}

.facility-points li::before {
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff9b35;
  box-shadow: 0 0 0 6px rgba(255, 155, 53, 0.12);
}

.facility-media {
  grid-template-columns: minmax(0, 1.36fr) minmax(260px, 0.78fr);
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: 18px;
}

.facility-media figure {
  position: relative;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(8, 42, 69, 0.13);
}

.facility-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 33, 56, 0.82));
  pointer-events: none;
}

.facility-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 22px;
  color: #fff;
}

.facility-media .facility-main figcaption {
  padding: 30px;
}

.facility-media figcaption strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.facility-media .facility-main figcaption strong {
  font-size: clamp(26px, 2.8vw, 39px);
  letter-spacing: -0.04em;
}

.facility-media figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.facility-media img {
  transition: transform 0.65s ease;
}

.facility-media figure:hover img {
  transform: scale(1.035);
}

.facility-media .facility-main img {
  object-position: 39% center;
}

.facility-media figure:nth-child(2) img {
  object-position: center 58%;
}

.facility-media figure:nth-child(3) img {
  object-position: center 54%;
}

.products-overview {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.documents {
  background:
    radial-gradient(circle at 86% 12%, rgba(46, 183, 223, 0.14), transparent 30%),
    linear-gradient(180deg, #eef6fb 0%, #f8fbfd 100%);
}

.documents-layout {
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: 62px;
}

.document-statement {
  width: fit-content;
  min-width: min(100%, 330px);
  margin-top: 30px;
  padding: 20px 22px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #083a62, #0866b6);
  box-shadow: 0 20px 46px rgba(8, 62, 102, 0.18);
}

.document-statement span,
.document-statement strong {
  color: #fff;
}

.document-statement span {
  color: rgba(255, 255, 255, 0.66);
}

.document-carousel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 253, 0.98));
  box-shadow: 0 28px 70px rgba(12, 43, 74, 0.12);
}

.document-carousel__topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 4px;
}

.document-carousel__topline span {
  color: #6b8293;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-carousel__topline strong {
  color: #0a314f;
  font-size: 15px;
}

.document-carousel__viewport {
  overflow: hidden;
}

.document-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, calc((100% - 40px) / 3));
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.document-carousel__track::-webkit-scrollbar {
  display: none;
}

.document-slide {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 43, 74, 0.09);
}

.document-slide__media {
  height: 430px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, #f7fbfd 0%, #eaf2f7 100%);
}

.document-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(8, 42, 69, 0.12));
}

.document-carousel__controls {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.document-carousel__button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #0a314f;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.document-carousel__button:hover {
  background: #0866b6;
  transform: translateY(-2px);
}

.document-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.document-carousel__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #b8cbd7;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.document-carousel__dot.is-active {
  width: 28px;
  background: #ff9b35;
}

@media (max-width: 1120px) {
  .facility-showcase--lead .facility-layout,
  .documents-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .document-carousel__track {
    grid-auto-columns: minmax(260px, calc((100% - 20px) / 2));
  }
}

@media (max-width: 760px) {
  .facility-showcase--lead {
    padding-top: 78px;
  }

  .facility-media {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 250px 250px;
  }

  .document-carousel {
    padding: 16px;
    border-radius: 22px;
  }

  .document-carousel__track {
    grid-auto-columns: minmax(250px, 86%);
  }

  .document-slide__media {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .facility-media {
    grid-template-rows: 280px 220px 220px;
  }

  .facility-media figcaption,
  .facility-media .facility-main figcaption {
    padding: 20px;
  }

  .document-statement {
    width: 100%;
  }

  .document-carousel__track {
    grid-auto-columns: 100%;
  }

  .document-slide__media {
    height: 330px;
  }
}

/* BOBAO delivery section - final editorial rebuild */
.supply-proof {
  padding: 128px 0 150px;
  background:
    radial-gradient(circle at 12% 16%, rgba(46, 183, 223, 0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f2f8fb 54%, #fff 100%);
}

.supply-proof > .container {
  max-width: var(--container);
}

.supply-editorial {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(600px, auto) auto;
  align-items: center;
}

.supply-editorial::before {
  content: "DELIVERY";
  position: absolute;
  right: 0;
  top: -92px;
  color: rgba(8, 102, 182, 0.052);
  font-size: clamp(86px, 13vw, 178px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.085em;
  pointer-events: none;
}

.supply-editorial__copy {
  position: relative;
  z-index: 6;
  grid-column: 1 / span 5;
  grid-row: 1;
  max-width: 510px;
  padding: 44px 42px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 253, 0.98));
  box-shadow:
    0 34px 90px rgba(7, 45, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.supply-editorial__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  bottom: 44px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9b35, #0a83c5);
}

.supply-editorial__copy .kicker {
  margin-bottom: 18px;
}

.supply-editorial__copy h2 {
  margin: 0;
  color: #073252;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.supply-editorial__copy > p {
  margin: 22px 0 0;
  color: #5d7486;
  font-size: 16px;
  line-height: 1.74;
}

.supply-editorial__facts {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
}

.supply-editorial__facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  box-shadow: inset 0 1px 0 rgba(12, 43, 74, 0.1);
}

.supply-editorial__facts dt {
  color: #0a83c5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.supply-editorial__facts dd {
  margin: 0;
  color: #123a58;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.supply-editorial__cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: #073252;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  transition:
    transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.supply-editorial__cta span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ff9b35;
  color: #073252;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.supply-editorial__cta:hover {
  background: #0a4f83;
  transform: translateY(-2px);
}

.supply-editorial__cta:hover span {
  transform: translateX(3px);
}

.supply-editorial__image {
  position: relative;
  z-index: 1;
  grid-column: 4 / -1;
  grid-row: 1;
  height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #e8f1f6;
  box-shadow: 0 38px 100px rgba(7, 45, 76, 0.18);
}

.supply-editorial__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 35, 59, 0.22), transparent 34%),
    linear-gradient(180deg, transparent 56%, rgba(4, 35, 59, 0.86));
  pointer-events: none;
}

.supply-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.015);
}

.supply-editorial__image figcaption {
  position: absolute;
  left: 38%;
  right: 42px;
  bottom: 38px;
  z-index: 2;
  display: grid;
  gap: 9px;
  color: #fff;
}

.supply-editorial__image figcaption span {
  color: #7bd7f5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supply-editorial__image figcaption strong {
  max-width: 600px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.supply-rail {
  position: relative;
  z-index: 4;
  grid-column: 3 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 28px 74px rgba(7, 45, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.supply-rail__item {
  min-width: 0;
  display: grid;
  grid-template-rows: 132px auto;
  gap: 14px;
  padding: 0;
}

.supply-rail__item img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 20px;
  background: #eef5f9;
}

.supply-rail__item .supply-photo--white-set {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.supply-rail__item div {
  display: grid;
  gap: 5px;
  padding: 0 6px 6px;
}

.supply-rail__item span {
  color: #0a83c5;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.supply-rail__item h3 {
  margin: 0;
  color: #073252;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

@media (max-width: 1180px) {
  .supply-editorial {
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .supply-editorial__copy {
    grid-column: 1 / span 6;
  }

  .supply-editorial__image {
    grid-column: 5 / -1;
    height: 600px;
  }

  .supply-rail {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .supply-proof {
    padding: 86px 0 96px;
  }

  .supply-editorial {
    display: grid;
    grid-template-columns: 1fr;
  }

  .supply-editorial::before {
    display: none;
  }

  .supply-editorial__copy,
  .supply-editorial__image,
  .supply-rail {
    grid-column: 1;
    grid-row: auto;
  }

  .supply-editorial__copy {
    max-width: none;
    padding: 34px 28px;
  }

  .supply-editorial__image {
    height: 440px;
    border-radius: 28px;
  }

  .supply-editorial__image figcaption {
    left: 26px;
    right: 26px;
    bottom: 26px;
  }

  .supply-rail {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .supply-rail__item {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 15px;
  }

  .supply-rail__item img {
    width: 112px;
    height: 84px;
    border-radius: 16px;
  }

  .supply-rail__item div {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .supply-proof {
    padding: 74px 0 84px;
  }

  .supply-editorial__copy {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .supply-editorial__copy h2 {
    font-size: 32px;
  }

  .supply-editorial__facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .supply-editorial__image {
    height: 330px;
    border-radius: 24px;
  }

  .supply-editorial__image figcaption strong {
    font-size: 24px;
  }

  .supply-rail__item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .supply-rail__item img {
    width: 96px;
    height: 76px;
  }
}

/* Contact conversion layer */

.brand {
  gap: 0;
}

.contact-dock {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 58;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-dock__trigger {
  order: 2;
  min-height: 48px;
  width: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #074b7c, #062b4c);
  color: #fff;
  box-shadow:
    0 18px 42px rgba(3, 31, 52, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  transform: none;
  pointer-events: auto;
}

.contact-dock__panel {
  order: 1;
  width: 318px;
  padding: 10px;
  border: 1px solid rgba(173, 193, 209, 0.52);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(6, 43, 76, 0.17);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition:
    opacity 0.22s var(--ease),
    visibility 0.22s var(--ease),
    transform 0.22s var(--ease);
  pointer-events: none;
}

.contact-dock:hover .contact-dock__panel,
.contact-dock:focus-within .contact-dock__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.contact-dock__row {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #062b4c;
  text-align: left;
}

.contact-dock__row + .contact-dock__row {
  margin-top: 4px;
}

.contact-dock__row span {
  color: #0b74bd;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-dock__row strong {
  color: inherit;
  font-size: 13px;
  line-height: 1.25;
}

.contact-dock__row--address strong {
  font-size: 12px;
  line-height: 1.55;
  word-break: break-all;
}

.contact-dock__row--primary {
  background: linear-gradient(135deg, #062b4c, #0b6fb3);
  color: #fff;
}

.contact-dock__row--primary span {
  color: #76d7f2;
}

.contact-dock__row:not(.contact-dock__row--primary):hover {
  background: #eef6fb;
}

body.is-contact-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(46, 183, 223, 0.18), transparent 34rem),
    rgba(2, 21, 36, 0.62);
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.contact-modal__panel {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  padding: 36px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 253, 0.98));
  color: #102f49;
  box-shadow: 0 36px 100px rgba(0, 20, 38, 0.34);
  opacity: 0;
  outline: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.contact-modal.is-open .contact-modal__backdrop,
.contact-modal.is-open .contact-modal__panel {
  opacity: 1;
}

.contact-modal.is-open .contact-modal__panel {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #eaf3f8;
  color: #062b4c;
  font-size: 24px;
  line-height: 1;
}

.contact-modal h2 {
  max-width: 460px;
  margin: 8px 0 14px;
  color: #062b4c;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact-modal p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: #526b7f;
  font-size: 16px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-form textarea {
  min-height: 112px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}

.contact-form__secondary {
  color: #0b6fb3;
  font-size: 13px;
  font-weight: 900;
}

.contact-form .form-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: #526b7f;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form .form-status.is-error {
  color: #b32828;
}

.contact-form .form-status.is-success {
  color: #11863a;
}

.contact-modal__footnote {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #dce8f0;
}

.contact-modal__footnote span {
  color: #0b74bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-modal__footnote strong {
  color: #526b7f;
  font-size: 13px;
  line-height: 1.45;
}

.contact-modal__details {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-modal__details div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #dce8f0;
}

.contact-modal__details div:last-child {
  border-bottom: 1px solid #dce8f0;
}

.contact-modal__details span {
  color: #0b74bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-modal__details strong {
  color: #062b4c;
  font-size: 15px;
  line-height: 1.45;
}

.contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-modal .button-ghost {
  background: #fff;
  color: #062b4c;
  box-shadow: inset 0 0 0 1px #cbdce8;
}

@media (max-width: 1180px) {
  .contact-dock {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-modal {
    align-items: end;
    padding: 12px;
  }

  .contact-modal__panel {
    width: 100%;
    padding: 32px 22px 24px;
    border-radius: 24px;
  }

  .contact-modal h2 {
    font-size: 30px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    display: grid;
  }

  .contact-modal__details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-modal__actions,
  .contact-form__actions {
    display: grid;
  }
}

/* Compact factory-strength module */

.facility-showcase--lead {
  padding: 76px 0 84px;
}

.facility-showcase--lead .facility-layout {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: 52px;
  align-items: center;
}

.facility-showcase--lead .facility-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.facility-showcase--lead .facility-copy > p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.68;
}

.facility-showcase--lead .facility-points {
  gap: 0;
  margin-top: 24px;
}

.facility-showcase--lead .facility-points li {
  padding: 12px 0 12px 26px;
  font-size: 15px;
  line-height: 1.42;
}

.facility-showcase--lead .facility-points li::before {
  top: 18px;
  width: 8px;
  height: 8px;
}

.facility-showcase--lead .facility-media {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 0.72fr));
  grid-template-rows: repeat(2, 210px);
  gap: 14px;
}

.facility-showcase--lead .facility-media .facility-main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.facility-showcase--lead .facility-media figure {
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(8, 42, 69, 0.11);
}

.facility-showcase--lead .facility-media figcaption {
  gap: 3px;
  padding: 18px;
}

.facility-showcase--lead .facility-media .facility-main figcaption {
  padding: 24px;
}

.facility-showcase--lead .facility-media figcaption strong {
  font-size: 16px;
  line-height: 1.12;
}

.facility-showcase--lead .facility-media .facility-main figcaption strong {
  font-size: clamp(24px, 2.1vw, 32px);
}

.facility-showcase--lead .facility-media figcaption span {
  font-size: 12px;
  line-height: 1.35;
}

.facility-showcase--lead .facility-media .facility-main img {
  object-position: center center;
}

.facility-showcase--lead .facility-media figure:nth-child(2) img {
  object-position: center center;
}

.facility-showcase--lead .facility-media figure:nth-child(3) img {
  object-position: center center;
}

.facility-showcase--lead .facility-media figure:nth-child(4) img {
  object-position: center 64%;
}

.facility-showcase--lead .facility-media figure:nth-child(5) img {
  object-position: center 48%;
}

@media (max-width: 1120px) {
  .facility-showcase--lead .facility-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .facility-showcase--lead .facility-copy {
    max-width: 760px;
  }

  .facility-showcase--lead .facility-copy h2,
  .facility-showcase--lead .facility-copy > p {
    max-width: 760px;
  }

  .facility-showcase--lead .facility-media {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 300px 170px;
  }

  .facility-showcase--lead .facility-media .facility-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .facility-showcase--lead {
    padding: 62px 0 70px;
  }

  .facility-showcase--lead .facility-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 160px 160px;
  }

  .facility-showcase--lead .facility-media .facility-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 560px) {
  .facility-showcase--lead .facility-copy h2 {
    font-size: 31px;
  }

  .facility-showcase--lead .facility-media {
    grid-template-rows: 230px 145px 145px;
    gap: 10px;
  }

  .facility-showcase--lead .facility-media figcaption,
  .facility-showcase--lead .facility-media .facility-main figcaption {
    padding: 14px;
  }

  .facility-showcase--lead .facility-media figcaption strong {
    font-size: 14px;
  }

  .facility-showcase--lead .facility-media figcaption span {
    display: none;
  }
}

/* BOBAO client-document correction layer */

.hero-quick-form {
  grid-template-columns: minmax(260px, 1.18fr) repeat(3, minmax(120px, 0.46fr)) auto;
}

.metrics-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.metric {
  gap: 12px;
  padding-inline: 18px;
}

.metric strong {
  font-size: clamp(25px, 2.1vw, 32px);
}

.metric span {
  max-width: 150px;
}

.category-card {
  min-height: 492px;
}

.category-card__image .product-photo--spool,
.category-card__image .product-photo--tig-horizontal {
  width: 92%;
  height: 92%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.category-card__image .product-photo--tig-horizontal {
  width: 96%;
  height: 86%;
}

.material-selector {
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 183, 223, 0.09), transparent 30%),
    #fff;
}

.material-selector-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 26px;
  align-items: stretch;
}

.base-material-card,
.selection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 220, 232, 0.86);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 253, 0.98));
  box-shadow: 0 20px 54px rgba(12, 43, 74, 0.08);
}

.base-material-card {
  padding: 34px;
}

.selection-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 155, 53, 0.16), transparent 30%),
    linear-gradient(145deg, #073252, #0866a8);
  color: #fff;
}

.material-selector__label {
  color: #0a83c5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-card .material-selector__label {
  color: #78daf7;
}

.base-material-card h3,
.selection-card h3 {
  margin: 8px 0 0;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.selection-card h3 {
  color: #fff;
}

.base-material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.base-material-list article {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(238, 246, 251, 0.82);
}

.base-material-list strong {
  display: block;
  color: #073252;
  font-size: 18px;
  line-height: 1.2;
}

.base-material-list p {
  margin: 10px 0 0;
  color: #536b7f;
  font-size: 14px;
  line-height: 1.58;
}

.selection-card__rows {
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.selection-card__rows div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.selection-card__rows div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.selection-card__rows span {
  color: #78daf7;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.selection-card__rows strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.selection-card .button {
  width: max-content;
  margin-top: 6px;
}

.supply-rail__item .supply-photo--pallet-new {
  object-position: center 58%;
}

.supply-rail__item .supply-photo--wrapped-new {
  object-position: center 60%;
}

.document-slide {
  position: relative;
  z-index: 1;
}

.document-slide__media img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.document-slide:hover {
  z-index: 4;
}

.document-slide:hover .document-slide__media img,
.document-slide:focus-within .document-slide__media img {
  transform: scale(1.1);
  filter: drop-shadow(0 22px 28px rgba(8, 42, 69, 0.18));
  cursor: zoom-in;
}

.project-card:first-child img {
  object-position: center 54%;
}

.rfq-form label span,
.contact-form label span {
  color: #ff9b35;
}

.contact-dock {
  right: 18px;
  gap: 10px;
}

.contact-dock__trigger {
  width: auto;
  min-height: 48px;
  border-radius: 999px;
}

.contact-dock__panel {
  width: 300px;
}

@media (max-width: 1280px) {
  .hero-quick-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quick-form .button {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .material-selector-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .base-material-list {
    grid-template-columns: 1fr;
  }

  .selection-card__rows div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .selection-card .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-quick-form,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .base-material-card,
  .selection-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* Contact Form 7 integration */
.rfq-form--cf7,
.contact-form--cf7 {
  display: block;
}

.rfq-form--cf7 .wpcf7-form,
.contact-form--cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form--cf7 .wpcf7-form {
  gap: 16px;
}

.rfq-form--cf7 .wpcf7-form > p,
.contact-form--cf7 .wpcf7-form > p {
  display: contents;
  margin: 0;
}

.rfq-form--cf7 .wpcf7-form-control-wrap,
.contact-form--cf7 .wpcf7-form-control-wrap {
  display: block;
}

.rfq-form--cf7 .field-message textarea,
.rfq-form--cf7 .field--message textarea,
.contact-form--cf7 .field-message textarea,
.contact-form--cf7 .field--message textarea {
  min-height: 180px;
}

.rfq-form--cf7 .field-whatsapp,
.rfq-form--cf7 .field--whatsapp,
.rfq-form--cf7 .field-message,
.rfq-form--cf7 .field--message,
.contact-form--cf7 .field-whatsapp,
.contact-form--cf7 .field--whatsapp,
.contact-form--cf7 .field-message,
.contact-form--cf7 .field--message,
.rfq-form--cf7 .form-actions,
.contact-form--cf7 .form-actions,
.rfq-form--cf7 .wpcf7-response-output,
.contact-form--cf7 .wpcf7-response-output {
  grid-column: 1 / -1;
}

.rfq-form--cf7 .wpcf7-submit,
.contact-form--cf7 .wpcf7-submit {
  border: 0;
  width: auto;
  min-height: 52px;
}

.rfq-form--cf7 .wpcf7-spinner,
.contact-form--cf7 .wpcf7-spinner {
  align-self: center;
  margin: 0 0 0 12px;
}

.rfq-form--cf7 .wpcf7-not-valid,
.contact-form--cf7 .wpcf7-not-valid {
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 0 0 4px oklch(0.820 0.105 28 / 0.180);
}

.rfq-form--cf7 .wpcf7-not-valid-tip,
.contact-form--cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.rfq-form--cf7 .wpcf7-response-output,
.contact-form--cf7 .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .rfq-form--cf7 .wpcf7-form,
  .contact-form--cf7 .wpcf7-form {
    grid-template-columns: 1fr;
  }
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
