:root {
  --navy: #062746;
  --deep: #031a31;
  --blue: #0b63a8;
  --orange: #ff6b21;
  --muted: #687789;
  --line: #dce5ee;
  --soft: #f4f7fa;
  --white: #fff;
  --shadow: 0 18px 45px rgba(5, 28, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #102235;
  background: #fff;
}

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

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

.topbar {
  height: 42px;
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: center;
  background: var(--deep);
  color: #d7e3ee;
  font-size: 14px;
}

.topbar select {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
}

.brand small {
  color: var(--orange);
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  font-weight: 700;
}

nav a {
  color: #20364e;
}

.products-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.products-nav button {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.mega {
  position: absolute;
  z-index: 80;
  top: 100%;
  left: 50%;
  width: min(1120px, 88vw);
  padding: 28px;
  transform: translate(-43%, 14px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 30px;
  background: #fff;
  border-top: 4px solid var(--orange);
  box-shadow: 0 18px 50px rgba(7, 31, 61, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.products-nav:hover .mega,
.products-nav:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-43%, 0);
}

.mega-title {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.mega-model {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.mega-model:hover,
.mega-title:hover {
  color: var(--orange);
}

.quote-btn,
.hero-actions a,
.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font-weight: 800;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 4px;
}

.hero {
  min-height: 500px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero.fixed-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.hero-contain img {
  object-fit: contain;
  object-position: center;
  background: #072844;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 26, 49, 0.92), rgba(3, 26, 49, 0.62), rgba(3, 26, 49, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 88vw);
  margin-left: 6vw;
  color: white;
}

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

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

h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: #dce7f2;
  max-width: 760px;
}

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

.hero-actions .secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--orange);
}

.stats {
  width: min(86vw, 1320px);
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  box-shadow: var(--shadow);
}

.stats div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  font-size: 26px;
  color: var(--blue);
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.company-strip {
  padding: 0 0 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.company-strip div {
  min-height: 132px;
  padding: 28px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--soft);
}

.company-strip div:last-child {
  border-right: 1px solid var(--line);
}

.company-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.company-strip strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.section {
  width: min(86vw, 1320px);
  margin: 0 auto;
  padding: 76px 0;
}

.intro,
.section-head.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.section-head.tight {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.12;
  color: #102235;
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.product-card,
.blog-grid article {
  border: 1px solid var(--line);
  background: white;
}

.product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
}

.product-card > div:not(.product-card-media) {
  padding: 24px;
}

.product-card-media {
  display: grid;
  gap: 8px;
  padding: 0;
  background: #f7f9fb;
}

.product-card-media .product-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
}

.product-card-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 10px 10px;
}

.product-card-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.product-card span,
.workflow strong,
.blog-grid span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-card h3,
.workflow h3,
.blog-grid h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 10px 0;
}

.dark {
  width: 100%;
  max-width: none;
  padding: 76px 7vw;
  background: var(--deep);
  color: white;
}

.dark .section-head,
.dark .workflow,
.dark .wide-proof {
  width: min(100%, 1320px);
  margin-left: auto;
  margin-right: auto;
}

.dark h2,
.dark h3 {
  color: white;
}

.dark p {
  color: #c5d4e2;
}

.project-support {
  width: min(86vw, 1320px);
  max-width: 1320px;
  padding: 64px 0;
  background: #fff;
  color: #102235;
}

.project-support .workflow div {
  background: var(--soft);
  border: 1px solid var(--line);
}

.project-support .workflow h3 {
  color: var(--navy);
}

.project-support .wide-proof img {
  border: 1px solid var(--line);
  background: #f7f9fb;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.workflow div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wide-proof {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 24px;
  margin-top: 28px;
}

.wide-proof img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  background: white;
}

figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.proof-large {
  grid-template-columns: repeat(3, 1fr);
}

.proof-large figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
}

figcaption {
  padding: 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.factory {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0;
  background: var(--deep);
}

.factory-image {
  background: #fff;
  padding: 56px 0 56px 6vw;
}

.factory-image img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: white;
}

.factory-copy {
  padding: 70px 7vw 70px 60px;
  color: white;
}

.factory-copy h2 {
  color: white;
}

.factory-copy p,
.factory-copy li {
  color: #cbd8e4;
  font-size: 18px;
  line-height: 1.65;
}

.factory-copy li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.factory-clean {
  width: min(86vw, 1320px);
  max-width: 1320px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  padding: 64px 0;
  background: #fff;
}

.factory-clean .factory-image {
  padding: 0;
  background: #fff;
}

.factory-clean .factory-image img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.factory-clean .factory-copy {
  padding: 30px;
  color: #102235;
  background: var(--soft);
  border: 1px solid var(--line);
}

.factory-clean .factory-copy h2 {
  color: var(--navy);
  font-size: clamp(24px, 2vw, 30px);
}

.factory-clean .factory-copy p,
.factory-clean .factory-copy li {
  color: #44566a;
  font-size: 15px;
  line-height: 1.58;
}

.factory-clean .factory-copy li {
  border-bottom: 1px solid var(--line);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 40px;
  align-items: center;
}

.quality-grid img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.checklist {
  padding: 42px;
  background: var(--soft);
}

.checklist li,
.faq p {
  font-size: 18px;
  line-height: 1.7;
  color: #44566a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.blog-grid article {
  padding: 26px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.blog-category-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.blog-category-grid span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-category-grid h3 {
  margin: 10px 0 8px;
  color: var(--navy);
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.contact {
  margin-top: 40px;
  padding: 54px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  background: var(--navy);
  color: white;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #062746;
  opacity: 0.42;
}

.factory-hero img,
.contact-hero img {
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
}

.case-hero img {
  object-position: center;
}

.product-hero img,
.blog-hero img {
  object-fit: cover;
  object-position: center;
}

.page-hero div {
  position: relative;
  width: min(720px, 88vw);
  margin-left: 7vw;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.product-list {
  display: grid;
  gap: 28px;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 44px;
  align-items: center;
}

.product-detail > img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #f7f9fb;
  border: 1px solid var(--line);
}

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

.detail-gallery > img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #f7f9fb;
  border: 1px solid var(--line);
}

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

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.detail-thumbs img.active {
  border-color: var(--orange);
}

.dark-lead {
  color: #44566a;
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.spec-table div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.spec-table strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.spec-table span {
  color: #44566a;
}

.product-list article {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  scroll-margin-top: 120px;
}

.product-list article:nth-child(even) {
  background: var(--soft);
}

.product-list article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f9fb;
  border: 1px solid var(--line);
}

.product-list ul {
  columns: 2;
  padding-left: 18px;
  color: #44566a;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.why-layout > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.why-points {
  display: grid;
  gap: 18px;
}

.why-points article {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.light-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.light-cards div {
  padding: 24px;
  background: #fff;
  color: var(--navy);
}

.light-cards p {
  color: #44566a;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-gallery.proof-square {
  border: 0;
  background: transparent;
}

.proof-gallery.proof-square > a,
.proof-gallery.proof-square > figure,
.proof-square {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.proof-gallery.proof-square img,
.proof-square img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.proof-gallery.proof-square > a > div,
.proof-gallery.proof-square figcaption,
.proof-square figcaption {
  padding: 20px;
}

.proof-square h3,
.proof-gallery.proof-square h3 {
  margin-bottom: 6px;
}

.proof-square p,
.proof-gallery.proof-square p {
  color: #44566a;
}

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

.video-grid article {
  border: 1px solid var(--line);
  background: white;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071f3d;
}

.video-grid article div {
  padding: 22px;
}

.video-grid span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-grid h3 {
  margin: 10px 0 0;
  color: var(--navy);
}

.inline-quote {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 20px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  border-radius: 4px;
}

.factory-detail,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.factory-detail img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-panel {
  align-items: start;
}

.contact-panel > div {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.contact-panel li {
  margin-bottom: 12px;
  color: #44566a;
  font-size: 18px;
  line-height: 1.6;
}

.contact h2 {
  color: white;
}

.contact p {
  color: #c9d8e5;
  max-width: 760px;
}

footer {
  padding: 48px 7vw 120px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: #061a2d;
  color: white;
}

footer p,
footer a {
  color: #b9c8d6;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  display: block;
  padding: 58px 7vw 120px;
  background: var(--deep);
  color: #d7e3ee;
}

.footer-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.85fr;
  gap: 34px;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.site-footer h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: #b8c7d8;
  line-height: 1.65;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin: 0;
  font-size: 13px;
}

.float-actions {
  position: fixed;
  right: 18px;
  top: 52%;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.float-actions a {
  min-width: 138px;
  padding: 16px 18px;
  text-align: center;
  color: white;
  font-weight: 900;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.float-actions a:first-child {
  background: #168b4a;
}

.float-actions a:last-child {
  background: var(--blue);
}

@media (min-width: 901px) {
  .page-hero h1 {
    font-size: clamp(32px, 3.4vw, 48px);
  }

  .product-hero,
  .blog-hero {
    min-height: 310px;
  }

  .factory-detail h2,
  .contact-panel h2 {
    font-size: clamp(28px, 2.8vw, 38px);
  }
}

@media (max-width: 900px) {
  .topbar {
    height: auto;
    padding: 8px 12px;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
  }

  .topbar span:first-child {
    display: none;
  }

  .site-header {
    min-height: 72px;
    padding: 8px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .quote-btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  nav.open {
    display: grid;
    gap: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .products-nav {
    display: grid;
    gap: 0;
  }

  .products-nav > a,
  .products-nav > button {
    display: none;
  }

  .mega {
    position: static;
    width: 100%;
    padding: 0;
    transform: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .mega > div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-title {
    padding: 6px 0;
    margin-bottom: 4px;
    font-size: 17px;
  }

  .mega-model {
    padding: 5px 0;
    font-size: 15px;
  }

  .hero {
    min-height: 380px;
  }

  .hero.fixed-hero > img {
    object-position: center bottom;
  }

  .hero-slide img {
    object-position: center;
  }

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

  h1 {
    font-size: 26px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions a {
    width: 100%;
  }

  .stats,
  .company-strip,
  .product-grid,
  .product-grid.compact,
  .workflow,
  .proof-grid,
  .proof-gallery,
  .blog-grid,
  .blog-category-grid,
  .intro,
  .why-layout,
  .light-cards,
  .section-head.split,
  .quality-grid,
  .video-grid,
  .footer-grid,
  .factory,
  .factory-detail,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
    width: 100%;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .company-strip {
    width: 100%;
    padding: 0;
  }

  .company-strip div,
  .company-strip div:last-child {
    border-right: 0;
    border-left: 0;
    min-height: auto;
    padding: 20px;
  }

  .section {
    width: min(92vw, 1320px);
    padding: 62px 0;
  }

  .intro,
  .section-head.split {
    gap: 18px;
  }

  h2 {
    font-size: 26px;
  }

  .dark {
    padding: 62px 4vw;
  }

  .wide-proof {
    grid-template-columns: 1fr;
  }

  .wide-proof img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .factory-image {
    padding: 0;
  }

  .factory-image img {
    height: auto;
  }

  .factory-copy {
    padding: 28px 22px;
  }

  .factory-clean {
    padding: 44px 0;
    gap: 18px;
  }

  .factory-clean .factory-copy {
    padding: 22px;
  }

  .factory-clean .factory-copy h2 {
    font-size: 23px;
  }

  .contact,
  .product-list article,
  footer {
    display: grid;
  }

  .page-hero {
    min-height: 320px;
  }

  .factory-hero,
  .contact-hero {
    background: #061f39;
  }

  .page-hero div {
    margin: 0 18px;
  }

  .product-list article {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail > img {
    max-height: 360px;
  }

  .detail-gallery > img {
    max-height: 360px;
  }

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

  .proof-large figure img {
    aspect-ratio: 4 / 3;
  }

  .contact-panel > div {
    padding: 24px;
  }

  .product-list ul {
    columns: 1;
  }

  .float-actions {
    top: auto;
    right: 10px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-actions a {
    min-width: 112px;
    padding: 13px 12px;
  }
}
