﻿:root {
  --bg: #ffffff;
  --bg-2: #f6f6f6;
  --panel: #ffffff;
  --panel-soft: #f1f1f1;
  --text: #182027;
  --muted: #5f6970;
  --yellow: #0c2f4a;
  --yellow-soft: #315a76;
  --line: rgba(24,32,39,0.12);
  --shadow: 0 24px 70px rgba(39,44,48,0.12);
  --max: 1500px;
  --font:"Arial", sans-serif
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:where(main[id], section[id]) {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 48%, #ffffff 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, strong, .button, .site-nav { font-family: var(--font); letter-spacing: 0.01em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(32px, 3.35vw, 50px); line-height: 1.08; text-transform: uppercase; }
h2 { font-size: clamp(28px, 2.8vw, 40px); line-height: 1.08; text-transform: uppercase; }
h3 { font-size: clamp(19px, 1.55vw, 24px); line-height: 1.16; }
p { margin-bottom: 0; color: var(--muted); line-height: 1.7; font-size: 16px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shell,
.site-header {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-shell {
  padding-bottom: 28px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(24,32,39,0.1);
  background: rgba(250,249,244,0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand img {
  width: 210px;
  max-width: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: #46515a;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #151b20;
}

.nav-cta {
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--yellow), #173e5b);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(12,47,74,0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(24,32,39,0.14);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--yellow), #173e5b);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(12,47,74,0.28);
}
.button-secondary {
  background: rgba(255,255,255,0.55);
  border-color: rgba(24,32,39,0.14);
  color: var(--text);
}

.section-rfq-button {
  display: block;
  width: 240px;
  min-height: 54px;
  margin: 42px auto 0;
  padding: 15px 22px;
  border: 0;
  background: linear-gradient(135deg, var(--yellow), #173e5b);
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(12,47,74,0.28);
  cursor: pointer;
}

.editorial-copy .section-rfq-button,
.roi-process-copy .section-rfq-button,
.factory-block-copy .section-rfq-button {
  margin: 28px 0 0;
}

.section-rfq-button:hover,
.section-rfq-button:focus-visible {
  background: #173e5b;
}

.floating-rfq {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  padding: 15px 20px;
  border: 0;
  background: linear-gradient(135deg, var(--yellow), #173e5b);
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  cursor: pointer;
}

.rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  padding: 24px 0;
}

.rfq-modal.open {
  display: block;
}

.rfq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,32,39,0.48);
}

.rfq-modal-panel {
  position: relative;
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  padding: 24px 34px;
  border: 1px solid rgba(24,32,39,0.12);
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(39,44,48,0.22);
  overflow-y: auto;
}

.rfq-modal-panel h2 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(23px, 2vw, 32px);
}

.rfq-modal-panel > p:not(.eyebrow) {
  max-width: 760px;
}

.modal-rfq-form textarea {
  min-height: 86px;
}

.modal-rfq-form {
  padding: 20px 24px;
}

.modal-rfq-form label {
  margin-bottom: 12px;
}

.rfq-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24,32,39,0.14);
  background: transparent;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

.hero-panel,
.editorial-split,
.reverse-split,
.catalog-row,
.custom-process,
.factory-block,
.comparison-block,
.trust-faq-wrap,
.rfq-final {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(360px, 1fr);
  gap: 0;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 126px);
  margin: 18px 0 0;
  padding: clamp(72px, 8vh, 110px) max(64px, calc((100vw - var(--max)) / 2 + 64px));
  border: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 34%, rgba(255,255,255,0.36) 58%, rgba(255,255,255,0) 100%),
    url("assets/library/hero-products-background-20260715.webp") right center / cover no-repeat;
  box-shadow: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(760px, 54vw);
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 78%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero-panel::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 650px;
}

.hero-copy h1 {
  max-width: 610px;
  font-size: clamp(32px, 3.05vw, 46px);
}

.lead {
  max-width: 600px;
  font-size: 18px;
}

.hero-points {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #3d4850;
  font-weight: 500;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  display: none;
}

.hero-image-frame.main {
  position: absolute;
  inset: 34px 74px 34px 0;
  overflow: hidden;
  border: 1px solid rgba(24,32,39,0.12);
  background: #f4f4f4;
}

.hero-image-frame.main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
}

.hero-overlay-card {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(24,32,39,0.12);
  background: rgba(255,253,247,0.9);
  box-shadow: 0 18px 44px rgba(39,44,48,0.16);
}

.top-card {
  top: 0;
  right: 0;
}

.side-card {
  right: 0;
  bottom: 72px;
}

.side-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  background: rgba(12,47,74,0.14);
  color: var(--yellow);
  font-family: var(--font);
  font-size: 18px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
  padding-bottom: 56px;
}

.metrics-strip div {
  padding: 18px 0;
  border-top: 1px solid rgba(24,32,39,0.12);
}

.metrics-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #1e272e;
  font-size: 22px;
}

.impact-band {
  background: #0c2f4a;
  color: #ffffff;
}

.impact-band-inner {
  padding-top: 42px;
  padding-bottom: 42px;
}

.impact-band p {
  max-width: 1220px;
  color: #ffffff;
  font-family: var(--font);
  font-size: clamp(26px, 2.05vw, 34px);
  line-height: 1.16;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.editorial-split,
.reverse-split,
.factory-block,
.rfq-final {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: center;
}

.editorial-media,
.reverse-visual-main,
.factory-carousel {
  overflow: hidden;
  background: #f4f4f4;
}

.editorial-media {
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.editorial-media img,
.reverse-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-media img {
  display: block;
  object-position: center center;
}

.editorial-list,
.mini-feature-grid,
.comparison-list,
.faq-items {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.editorial-list div,
.mini-feature-grid article,
.comparison-list div,
.faq-items article {
  padding-top: 16px;
  border-top: 1px solid rgba(24,32,39,0.12);
}

.editorial-list strong,
.mini-feature-grid h3,
.comparison-list strong {
  display: block;
  margin-bottom: 8px;
  color: #1e272e;
}

.reverse-split {
  grid-template-columns: 1fr 1fr;
}

.product-showcase {
  display: grid;
  gap: 34px;
  align-items: start;
}

.product-showcase-head {
  padding-top: 10px;
}

.product-showcase-head h2 {
  max-width: 860px;
}

.product-showcase-head p:not(.eyebrow) {
  max-width: 760px;
}

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

.product-poster {
  position: relative;
  display: grid;
  grid-column: span 6;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.85fr);
  gap: 22px;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(24,32,39,0.1);
  background: #ffffff;
  color: var(--text);
  isolation: isolate;
}

.product-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(12,47,74,0.18), transparent);
}

.product-poster::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(24,32,39,0.08);
  pointer-events: none;
}

.poster-warm { background: linear-gradient(135deg, #ffffff, #f7f7f7); }
.poster-cool { background: linear-gradient(135deg, #ffffff, #f5f5f5); }
.poster-soft { background: linear-gradient(135deg, #ffffff, #f8f8f8); }
.poster-steel { background: linear-gradient(135deg, #ffffff, #f3f3f3); }

.product-poster-wide {
  grid-column: span 4;
  min-height: 390px;
}

.product-poster.product-poster-wide .poster-media {
  width: 100%;
}

.product-poster:nth-child(n + 3) {
  grid-column: span 4;
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 390px;
}

.poster-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: none;
  padding: 0;
  border-top: 0;
}

.poster-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-copy h3 {
  margin-bottom: 12px;
  color: #1a232a;
  font-size: clamp(20px, 1.35vw, 24px);
  min-height: 58px;
  text-transform: uppercase;
}

.poster-copy p {
  color: #5f6970;
  font-size: 14px;
  line-height: 1.55;
}

.poster-media {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
  width: 100%;
  height: 260px;
  margin: 0;
  overflow: visible;
}

.poster-product {
  width: auto;
  max-width: 82%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(39,44,48,0.18));
}

.product-poster:nth-child(n + 3) .poster-media {
  order: -1;
  height: 230px;
}

.product-poster:nth-child(n + 3) .poster-product {
  max-height: 185px;
}

.poster-brand-mark,
.poster-iso-mark {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  object-fit: contain;
  filter: none;
}

.poster-brand-mark {
  top: 12px;
  left: 14px;
  width: 42px;
}

.poster-iso-mark {
  right: 14px;
  bottom: 12px;
  width: 54px;
}

.reverse-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  min-height: 540px;
}

.product-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f4f2ec;
}

.product-shot-large {
  grid-row: span 2;
}

.product-shot img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
}

.product-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(20,21,22,0.84);
  color: var(--yellow);
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reverse-visual-main {
  min-height: 540px;
  background: #f4f2ec;
}

.reverse-visual-main img {
  object-fit: contain;
  padding: 24px;
}

.reverse-visual-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 540px;
}

.reverse-visual-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 18px;
  object-fit: contain;
  background: #f4f2ec;
}

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

.catalog-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.catalog-card {
  padding: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24,32,39,0.1);
  min-height: 220px;
}

.catalog-card.emphasis {
  background: linear-gradient(180deg, rgba(12,47,74,0.12), rgba(255,255,255,0.45));
}

.catalog-card.steel {
  background: linear-gradient(180deg, rgba(111,135,151,0.14), rgba(255,255,255,0.03));
}

.catalog-card span,
.faq-items span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background: rgba(12,47,74,0.14);
  color: var(--yellow);
  font-family: var(--font);
  font-size: 18px;
}

.roi-process-copy {
  max-width: 920px;
  margin-bottom: 30px;
}

.custom-process {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.custom-process .roi-process-copy {
  max-width: 520px;
  margin-bottom: 0;
}

.custom-process .roi-process-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: #5f6970;
}

.process-steps {
  display: grid;
}

.process-steps article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(24,32,39,0.12);
}

.process-steps article:first-child {
  border-top: 1px solid rgba(24,32,39,0.12);
}

.process-steps span {
  color: var(--yellow);
  font-family: var(--font);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.process-steps h3 {
  margin-bottom: 10px;
  color: #1e272e;
  font-size: clamp(18px, 1.25vw, 24px);
  text-transform: uppercase;
}

.process-steps p {
  max-width: 760px;
  color: #5f6970;
}

.roi-form,
.roi-result,
.rfq-form,
.modal-rfq-form,
.trust-column,
.faq-column {
  padding: 24px;
  border: 1px solid rgba(24,32,39,0.1);
  background: rgba(255,255,255,0.72);
}

.roi-form label,
.rfq-form label,
.modal-rfq-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  color: #25313a;
  font-size: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(24,32,39,0.14);
  background: #fffdf8;
  color: var(--text);
  font: inherit;
}

textarea { resize: vertical; min-height: 136px; }
.roi-result h3 { margin-bottom: 10px; font-size: clamp(34px, 3.5vw, 50px); }

.factory-block {
  align-items: start;
}

.factory-block-visuals {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
  min-height: 540px;
}

.factory-carousel {
  position: relative;
  min-height: 540px;
}

.factory-track {
  position: absolute;
  inset: 0;
}

.factory-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.factory-slide.active {
  opacity: 1;
  transform: scale(1);
}

.factory-carousel-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255,253,247,0.86);
  backdrop-filter: blur(10px);
}

.factory-carousel-caption span {
  color: var(--yellow);
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.factory-carousel-caption strong {
  color: #1e272e;
  font-size: 20px;
}

.factory-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  min-height: 540px;
}

.factory-thumb {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(24,32,39,0.1);
  background: #e1e6e4;
  cursor: pointer;
  overflow: hidden;
}

.factory-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.factory-thumb.active::after {
  border-color: var(--yellow);
}

.factory-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.factory-thumb.active img,
.factory-thumb:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.section-heading-narrow {
  max-width: 880px;
  margin-bottom: 44px;
}

.section-heading-narrow p:not(.eyebrow) {
  max-width: 760px;
}

.why-table {
  display: grid;
  border-top: 1px solid rgba(24,32,39,0.14);
}

.why-row {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 1.45fr;
  gap: 34px;
  align-items: start;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(24,32,39,0.12);
}

.why-head {
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(12,47,74,0.12), rgba(255,255,255,0.5));
}

.why-head span {
  color: var(--yellow);
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-row strong {
  color: #1e272e;
  font-size: 22px;
}

.why-row p {
  color: #5f6970;
}

.why-row p:last-child {
  color: #25313a;
}

.trust-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-gallery-wrap {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.trust-viewport { overflow: hidden; }
.trust-track { display: flex; gap: 22px; transition: transform 0.35s ease; }
.trust-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  padding: 12px;
  border: 1px solid rgba(24,32,39,0.08);
  background: #ffffff;
  overflow: hidden;
}
.trust-slide img {
  width: 100%;
  aspect-ratio: 4 / 5.9;
  object-fit: contain;
  background: #ffffff;
}
.trust-controls { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.trust-arrow,
.trust-dot { border: 0; cursor: pointer; }
.trust-arrow {
  width: 52px;
  height: 52px;
  background: rgba(24,32,39,0.08);
  color: var(--text);
  font-size: 32px;
}
.trust-dots { display: flex; gap: 10px; }
.trust-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(24,32,39,0.18);
}
.trust-dot.active { background: var(--yellow); }

.faq-items {
  margin-top: 20px;
}

.faq-items article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
}

.rfq-copy {
  max-width: 520px;
}

.rfq-note {
  margin-top: 18px;
  color: #38444c;
}

.rfq-form,
.modal-rfq-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}
.rfq-form .full,
.modal-rfq-form .full,
.modal-rfq-form .button { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; margin: 6px 0 0; font-size: 14px; color: #8a8679; }

.site-footer {
  padding-top: 22px;
  padding-bottom: 28px;
  color: #8f8a7d;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
iframe[src*="translate.google"],
iframe[src*="translate.googleapis"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html body {
  top: 0 !important;
}

@media (max-width: 1180px) {
  .hero-panel,
  .editorial-split,
  .product-showcase,
  .reverse-split,
  .custom-process,
  .factory-block,
  .trust-faq-wrap,
  .rfq-final {
    grid-template-columns: 1fr;
  }

  .catalog-row,
  .mini-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    display: none;
  }

  .hero-image-frame.main {
    inset: 24px 48px 24px 0;
  }

  .editorial-media,
  .reverse-visual,
  .reverse-visual-main,
  .reverse-visual-stack,
  .factory-block-visuals,
  .factory-carousel,
  .factory-thumbs {
    min-height: 460px;
  }

  .trust-slide {
    flex-basis: calc((100% - 22px) / 2);
  }

  .product-poster-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .shell,
  .site-header {
    width: min(calc(100% - 22px), var(--max));
  }

  .brand img { width: 176px; }
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(24,32,39,0.1);
    background: rgba(250,249,244,0.98);
  }
  .site-nav.open { display: flex; }

  .hero-panel,
  .editorial-split,
  .product-showcase,
  .reverse-split,
  .factory-block-visuals,
  .catalog-row,
  .mini-feature-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .editorial-split,
  .product-showcase,
  .reverse-split,
  .catalog-row,
  .custom-process,
  .factory-block,
  .comparison-block,
  .trust-faq-wrap,
  .rfq-final {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero-panel {
    min-height: calc(100svh - 116px);
    padding: 64px 30px 300px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.34) 82%, rgba(255,255,255,0) 100%),
      url("assets/library/hero-products-background-20260715.webp") right bottom / cover no-repeat;
  }

  .hero-panel::before {
    inset: 0 0 auto;
    width: 100%;
    height: 72%;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 78%, rgba(255,255,255,0) 100%);
  }

  .hero-panel::after {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-image-frame.main {
    position: relative;
    grid-column: 1 / -1;
    inset: auto;
    min-height: 360px;
  }

  .hero-overlay-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: 170px;
  }

  .impact-band-inner {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .impact-band p {
    font-size: 24px;
    line-height: 1.18;
  }

  .metrics-strip,
  .custom-process,
  .trust-faq-wrap {
    grid-template-columns: 1fr;
  }

  .custom-process {
    gap: 34px;
  }

  .process-steps article {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .reverse-visual,
  .factory-block-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

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

  .product-poster,
  .product-poster:nth-child(n + 3),
  .product-poster-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  .poster-media {
    order: -1;
    width: 100%;
    height: 220px;
  }

  .poster-brand-mark {
    width: 38px;
  }

  .poster-iso-mark {
    width: 48px;
  }

  .product-shot-large {
    grid-row: auto;
  }

  .product-shot {
    aspect-ratio: 16 / 9;
  }

  .reverse-visual-main,
  .factory-carousel {
    min-height: 340px;
  }

  .reverse-visual-stack,
  .factory-thumbs {
    min-height: auto;
  }

  .reverse-visual-stack img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .factory-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .factory-thumb {
    aspect-ratio: 16 / 10;
  }

  .trust-slide { flex-basis: 100%; }
}

@media (max-width: 640px) {
  h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  h2 { font-size: 28px; }
  p { font-size: 15px; }

  .hero-panel {
    min-height: calc(100svh - 118px);
    padding: 56px 24px 290px;
  }

  .hero-copy {
    width: calc(100vw - 70px);
    max-width: calc(100vw - 70px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-points {
    margin-top: 18px;
    line-height: 1.65;
  }

  .hero-overlay-card,
  .catalog-card,
  .roi-form,
  .roi-result,
  .trust-column,
  .faq-column,
  .rfq-form,
  .modal-rfq-form {
    padding: 20px;
  }

  .hero-actions,
  .button { width: 100%; }

  .hero-visual {
    display: none;
  }

  .hero-image-frame.main {
    min-height: 300px;
  }

  .hero-overlay-card {
    min-height: auto;
  }

  .floating-rfq {
    right: 14px;
    bottom: 14px;
  }

  .modal-rfq-form {
    grid-template-columns: 1fr;
  }

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

  .product-poster {
    min-height: 0;
    padding: 16px;
  }

  .poster-media {
    width: 100%;
    height: 210px;
    margin: 0 0 18px;
  }

  .product-poster.product-poster-wide .poster-media {
    width: 100%;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 18px;
  }

  .why-head {
    display: none;
  }
}
