:root {
  --orange: #f15f22;
  --orange-dark: #b94713;
  --ink: #18212b;
  --muted: #65727f;
  --line: #dfe5ea;
  --soft: #f4f6f6;
  --steel: #1b2a36;
  --charcoal: #101820;
  --teal: #1f6b68;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(24, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f8;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #334252;
  font-size: 14px;
  font-weight: 650;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
}

.main-nav .nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.is-open > .nav-link {
  color: var(--orange);
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-item:hover .nav-caret,
.nav-item.is-open .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 26;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.85fr);
  width: min(1040px, calc(100vw - 88px));
  min-height: 300px;
  color: var(--white);
  background:
    linear-gradient(135deg, #f15f22 0%, #c84d10 48%, #8f320a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 42px rgba(143, 50, 10, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-list {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 30px clamp(26px, 4vw, 52px);
}

.mega-list a {
  position: relative;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.mega-list a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  vertical-align: 2px;
}

.mega-list a:hover {
  color: #ffe6d6;
}

.mega-feature {
  padding: 30px clamp(26px, 4vw, 52px);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.mega-feature img {
  width: min(100%, 360px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 22px;
}

.mega-feature h3 {
  color: var(--white);
  font-size: 18px;
}

.mega-feature p {
  max-width: 420px;
  color: #ffe6d6;
}

.mega-feature a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  color: #9d390d;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.mega-feature a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.compact-menu {
  min-height: 300px;
}

.language-switcher {
  position: relative;
  justify-self: end;
  font-size: 14px;
  font-weight: 650;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #263544;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 158px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(24, 33, 43, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  color: #263544;
  border-radius: 4px;
}

.language-menu a:hover {
  color: var(--orange-dark);
  background: #fff3ec;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.header-cta,
.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-weight: 750;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

main > section {
  padding: clamp(42px, 5.6vw, 78px) clamp(18px, 4vw, 56px);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(88vh - 72px);
  padding-top: clamp(96px, 10vw, 136px);
  color: var(--white);
  background: #111a22 url("assets/filter-plate-evidence/hero-ght2500-production.webp") center / cover no-repeat;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(1.08) contrast(1.05) brightness(1.08);
  transition: opacity 600ms ease;
}

.hero.is-video-ready .hero-video {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 25, 34, 0.72) 0%, rgba(15, 25, 34, 0.48) 42%, rgba(15, 25, 34, 0.14) 100%),
    linear-gradient(0deg, rgba(15, 25, 34, 0.54) 0%, rgba(15, 25, 34, 0.08) 42%, rgba(15, 25, 34, 0) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  width: min(46vw, 640px);
  height: 7px;
  background: var(--orange);
}

.hero-copy,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc09b;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: #f2f8ff;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.lead {
  max-width: 760px;
  color: #edf4fa;
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin: 52px 0 0;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(17, 26, 34, 0.58);
  backdrop-filter: blur(5px);
  border-top: 3px solid var(--orange);
}

.hero-stats dt {
  color: #ffc09b;
  font-size: 16px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 760;
}

.button.secondary.dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(16, 17, 17, 0.46), rgba(16, 17, 17, 0.1));
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.home-page .brand {
  min-width: 210px;
}

.home-page .brand-mark {
  display: none;
}

.home-page .brand strong {
  color: var(--orange);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .main-nav {
  position: relative;
  width: min(520px, 42vw);
  justify-self: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
}

.home-page .nav-link {
  min-height: 34px;
  padding: 0;
}

.home-page .language-switcher button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .header-cta {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
}

.home-page .hero {
  min-height: 100vh;
  padding-top: clamp(128px, 15vh, 180px);
  padding-bottom: clamp(44px, 7vw, 82px);
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 20, 20, 0.28) 0%, rgba(19, 20, 20, 0.24) 48%, rgba(19, 20, 20, 0.38) 100%),
    linear-gradient(0deg, rgba(10, 12, 13, 0.52) 0%, rgba(10, 12, 13, 0.12) 42%, rgba(10, 12, 13, 0.26) 100%);
}

.home-page .hero-copy {
  max-width: min(820px, 72vw);
  margin-left: clamp(28px, 15vw, 260px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.home-page .hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.home-page h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 380;
  line-height: 1.08;
}

.home-page .lead {
  position: relative;
  max-width: 760px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 360;
  line-height: 1.5;
}

.home-page .lead::before {
  content: "+";
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.home-page .hero-actions {
  align-items: center;
  margin-top: 20px;
  padding-left: 28px;
}

.home-page .button.primary {
  min-height: 46px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 760;
}

.home-page .button.secondary.dark {
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.home-page .hero-stats {
  width: min(720px, 68vw);
  margin-top: clamp(46px, 8vh, 90px);
  margin-left: clamp(28px, 15vw, 260px);
  background: transparent;
}

.home-page .hero-stats div {
  min-height: 74px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(3px);
}

.home-page .hero-stats dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
}

.home-page .hero-stats dd {
  color: #ffffff;
  font-size: 13px;
  font-weight: 560;
}

.home-page .hero::after {
  right: clamp(24px, 4vw, 64px);
  width: min(27vw, 420px);
  height: 5px;
}

.home-page .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 26, 34, 0.08);
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled .brand small {
  color: var(--muted);
}

.home-page .site-header.is-scrolled .main-nav {
  color: #334252;
  border-top-color: rgba(27, 42, 54, 0.24);
  border-bottom-color: rgba(27, 42, 54, 0.24);
}

.home-page .site-header.is-scrolled .language-switcher button {
  color: #263544;
  background: #ffffff;
  border-color: var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.positioning,
.deep-page,
.knowledge,
.sitemap {
  background: var(--soft);
}

.positioning {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.2) 0%, rgba(241, 95, 34, 0) 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
    var(--charcoal);
}

.positioning .eyebrow {
  color: #ffb384;
}

.positioning h2,
.positioning h3 {
  color: var(--white);
}

.positioning .role-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.positioning .role-grid p {
  color: #d7e2e9;
}

.positioning .role-icon {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffb384;
  border: 1px solid rgba(255, 179, 132, 0.5);
  border-radius: 50%;
}

.products {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f1f4f4 100%);
}

.role-grid,
.capability-list,
.article-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-grid article,
.capability-list article,
.article-grid article,
.sitemap-grid div,
.product-card,
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.role-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--orange);
  font-weight: 850;
}

.role-grid p,
.product-card p,
.capability-list p,
.case-card p,
.article-grid p,
.sitemap-grid p,
.about p,
.quote p {
  color: var(--muted);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 338px;
  padding: 18px;
  border-top: 4px solid transparent;
}

.product-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 18px 42px rgba(24, 33, 43, 0.1);
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.5;
}

.product-card img {
  width: calc(100% + 36px);
  height: auto;
  aspect-ratio: 16 / 10;
  margin: -18px -18px 18px;
  object-fit: cover;
  object-position: center;
  background: var(--steel);
}

.product-card.featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.82fr 1fr;
  gap: 26px;
  padding: 0;
}

.product-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.product-card.featured div {
  padding: 28px 28px 28px 0;
}

.product-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.product-card li {
  margin-bottom: 8px;
}

.product-card.quiet {
  background: #fbfcfc;
  border-top-color: rgba(241, 95, 34, 0.42);
}

.cloth-swatch,
.flocculant-visual {
  height: auto;
  aspect-ratio: 16 / 10;
  margin: -18px -18px 18px;
}

.cloth-swatch {
  background:
    repeating-linear-gradient(90deg, rgba(31, 107, 104, 0.18) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(0deg, rgba(24, 33, 43, 0.12) 0 6px, transparent 6px 12px),
    #eef5f4;
}

.flocculant-visual {
  background:
    radial-gradient(circle at 28% 34%, rgba(242, 106, 33, 0.42) 0 7px, transparent 8px),
    radial-gradient(circle at 58% 62%, rgba(31, 107, 104, 0.34) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 26%, rgba(34, 49, 63, 0.22) 0 5px, transparent 6px),
    #f6f1eb;
}

.home-machine-carousel {
  margin-top: 36px;
}

.home-machine-carousel .site-visit-stage {
  height: clamp(430px, 41vw, 600px);
  margin-inline: 0;
  background: #ffffff;
}

.home-machine-carousel .site-visit-slide {
  top: 0;
  display: none;
  height: 100%;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transform: none;
}

.home-machine-carousel .site-visit-slide.is-prev {
  display: none;
}

.home-machine-carousel .site-visit-slide.is-active,
.home-machine-carousel .site-visit-slide.is-next {
  display: block;
  width: 50%;
  height: 100%;
  opacity: 1;
  filter: none;
  transform: none;
}

.home-machine-carousel .site-visit-slide.is-active {
  left: 0;
  z-index: 2;
  padding: clamp(28px, 4vw, 54px);
}

.home-machine-carousel .site-visit-slide.is-next {
  right: 0;
  z-index: 1;
}

.home-machine-carousel .site-visit-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.home-machine-carousel .site-visit-slide.is-active img {
  top: 24%;
  right: 4%;
  bottom: 16%;
  left: 4%;
  width: 92%;
  height: 58%;
}

.home-machine-carousel .site-visit-slide.is-next img {
  object-fit: cover;
}

.home-machine-carousel .site-visit-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 101, 157, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.home-machine-carousel .site-visit-slide.is-next::after {
  opacity: 1;
}

.home-machine-carousel .site-visit-slide.is-next:hover::after {
  background: rgba(241, 95, 34, 0.66);
}

.home-machine-carousel figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--ink);
}

.home-machine-carousel figcaption span {
  order: 1;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-machine-carousel figcaption strong {
  order: 2;
  max-width: 560px;
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.home-machine-carousel figcaption p {
  order: 3;
  max-width: 560px;
  margin-top: 14px;
  color: #536676;
  font-size: 16px;
  line-height: 1.55;
}

.home-machine-carousel figcaption a {
  order: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: auto;
  color: var(--ink);
  font-weight: 900;
}

.home-machine-carousel figcaption a::before {
  content: "↗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 24px;
  transition: transform 0.22s ease, background 0.22s ease;
}

.home-machine-carousel .site-visit-slide.is-next figcaption {
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  color: #ffffff;
}

.home-machine-carousel .site-visit-slide.is-next figcaption span,
.home-machine-carousel .site-visit-slide.is-next figcaption p {
  display: none;
}

.home-machine-carousel .site-visit-slide.is-next figcaption strong {
  color: #ffffff;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.home-machine-carousel .site-visit-slide.is-next figcaption a {
  margin-top: 26px;
  color: #ffffff;
}

.home-machine-carousel .site-visit-slide:hover img {
  transform: scale(1.035);
}

.home-machine-carousel .site-visit-slide:hover figcaption a::before {
  background: #ff7a35;
  transform: translate(3px, -3px);
}

.home-machine-carousel .site-visit-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: var(--orange);
  border: 3px solid #ffffff;
  box-shadow: 0 16px 34px rgba(24, 33, 43, 0.2);
}

.home-machine-carousel .site-visit-arrow.prev {
  left: 18px;
}

.home-machine-carousel .site-visit-arrow.next {
  right: 18px;
}

.home-machine-carousel .site-visit-dots button.is-active {
  background: var(--orange);
}

.product-center-label {
  max-width: 760px;
  margin: 42px auto 20px;
  text-align: center;
}

.product-center-label h3 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
}

.product-center-label p {
  max-width: 720px;
  margin: 10px auto 0;
  color: #526676;
  font-size: 15px;
  line-height: 1.65;
}

.product-center-carousel .site-visit-stage {
  height: clamp(430px, 36vw, 560px);
  background: transparent;
}

.product-center-carousel .site-visit-slide.is-active,
.product-center-carousel .site-visit-slide.is-next {
  width: calc(50% - 12px);
  background: #ffffff;
}

.product-center-carousel .site-visit-slide.is-active {
  left: 0;
  padding: 0;
}

.product-center-carousel .site-visit-slide.is-next {
  right: 0;
}

.product-center-carousel.is-sliding .site-visit-slide.is-active {
  animation: productSlideInLeft 0.68s cubic-bezier(0.22, 0.78, 0.24, 1) both;
}

.product-center-carousel.is-sliding .site-visit-slide.is-next {
  animation: productPreviewInLeft 0.68s cubic-bezier(0.22, 0.78, 0.24, 1) both;
}

@keyframes productSlideInLeft {
  from {
    opacity: 0.5;
    transform: translateX(58%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes productPreviewInLeft {
  from {
    opacity: 0.42;
    transform: translateX(42%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-center-carousel .site-visit-slide img,
.product-center-carousel .site-visit-slide.is-active img,
.product-center-carousel .site-visit-slide.is-next img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  transform: none;
}

.product-center-carousel .site-visit-slide.is-next img {
  object-fit: cover;
}

.product-center-carousel .site-visit-slide::after {
  background: rgba(15, 66, 123, 0.72);
  opacity: 0;
  transition: opacity 0.24s ease, background 0.24s ease;
}

.product-center-carousel .site-visit-slide:hover::after {
  opacity: 1;
}

.product-center-carousel .site-visit-slide:hover {
  box-shadow: 0 20px 44px rgba(24, 33, 43, 0.14);
}

.product-center-carousel figcaption,
.product-center-carousel .site-visit-slide.is-next figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding: clamp(24px, 4vw, 48px);
  color: #ffffff;
  text-align: left;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-center-carousel .site-visit-slide:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.product-center-carousel figcaption span,
.product-center-carousel .site-visit-slide.is-next figcaption span {
  display: block;
  color: #ffd3bd;
}

.product-center-carousel figcaption strong,
.product-center-carousel .site-visit-slide.is-next figcaption strong {
  max-width: 480px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 46px);
  text-shadow: none;
}

.product-center-carousel figcaption p,
.product-center-carousel .site-visit-slide.is-next figcaption p {
  display: block;
  max-width: 480px;
  color: #edf5fa;
}

.product-center-carousel figcaption a,
.product-center-carousel .site-visit-slide.is-next figcaption a {
  margin-top: 24px;
  color: #ffffff;
}

.home-machine-carousel.product-center-carousel .site-visit-stage {
  --machine-gap: 18px;
  height: clamp(430px, 36vw, 560px);
  overflow: hidden;
  background: #ffffff;
}

.home-machine-carousel.product-center-carousel .site-visit-track {
  display: flex;
  gap: var(--machine-gap);
  height: 100%;
  transition: transform 0.92s cubic-bezier(0.22, 0.78, 0.2, 1);
  will-change: transform;
}

.home-machine-carousel.product-center-carousel .site-visit-track.no-transition {
  transition: none;
}

.home-machine-carousel.product-center-carousel .site-visit-slide,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-prev,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-active,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-next {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  flex: 0 0 calc(50% - 9px);
  width: auto;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  opacity: 1;
  transform: none;
}

.home-machine-carousel.product-center-carousel .site-visit-slide img,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-active img,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-next img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  transform: none;
}

.home-machine-carousel.product-center-carousel .site-visit-slide::after {
  background: rgba(241, 95, 34, 0.82);
  opacity: 0;
}

.home-machine-carousel.product-center-carousel .site-visit-slide.is-next::after {
  opacity: 0;
}

.home-machine-carousel.product-center-carousel .site-visit-slide:hover::after {
  opacity: 1;
}

.home-machine-carousel.product-center-carousel figcaption,
.home-machine-carousel.product-center-carousel .site-visit-slide.is-next figcaption {
  background: linear-gradient(90deg, rgba(241, 95, 34, 0.9), rgba(241, 95, 34, 0.58));
}

.home-plate-grid {
  --plate-gap: 18px;
  --plate-gap-half: 9px;
  --plate-gap-total: 306px;
  overflow: hidden;
  margin-top: 26px;
  padding: 0 0 12px;
}

.home-plate-track {
  display: flex;
  gap: var(--plate-gap);
  width: calc(450% + var(--plate-gap));
  animation: homePlateSlide 30s linear infinite;
  will-change: transform;
}

.home-plate-grid:hover .home-plate-track {
  animation-play-state: paused;
}

@keyframes homePlateSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--plate-gap-half)), 0, 0);
  }
}

.home-plate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - var(--plate-gap-total)) / 18);
  overflow: hidden;
  background: #f4f7f8;
  box-shadow: 0 14px 28px rgba(19, 33, 47, 0.08);
}

.home-plate-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  height: auto;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.home-plate-card strong {
  position: static;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 16px;
  color: #ffffff;
  background: var(--orange);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.home-plate-card span {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: #ffffff;
  background: rgba(241, 95, 34, 0.76);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.home-plate-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.home-plate-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.support-product-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.support-product-strip a {
  padding: 11px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.support-product-strip a:hover {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.page-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.page-map div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.page-map strong,
.page-map span {
  display: block;
}

.page-map span {
  margin-top: 18px;
  color: var(--muted);
}

.oem {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.16) 0%, rgba(241, 95, 34, 0) 34%),
    var(--steel);
}

.oem-copy {
  position: relative;
  padding-left: 20px;
}

.oem-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 118px;
  background: var(--orange);
}

.oem .eyebrow {
  color: #ffc09b;
}

.oem h2 {
  max-width: 620px;
  color: #f7fbff;
}

.oem p {
  color: #d6dee5;
}

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

.capability-list article {
  position: relative;
  min-height: 158px;
  padding: 26px 26px 24px;
  color: var(--ink);
  background: #ffffff;
  border-top: 4px solid var(--orange);
  box-shadow: 0 18px 34px rgba(5, 12, 18, 0.16);
}

.capability-list article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.capability-list article h3 {
  color: var(--ink);
}

.oem .capability-list article p {
  color: #4f6170;
}

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

.industry-grid a {
  min-height: 178px;
  padding: 24px;
  background: var(--white);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.industry-grid a:hover {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.94), rgba(181, 67, 14, 0.96));
  transform: translateY(-2px);
}

.industry-grid span,
.industry-grid small {
  display: block;
}

.industry-grid span {
  margin-bottom: 44px;
  font-size: 19px;
  font-weight: 800;
}

.industry-grid small {
  color: var(--muted);
}

.industry-grid a:hover small {
  color: #ffe8da;
}

.application-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #eef3f4 52%, #eef3f4 100%);
}

.application-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.application-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 760px;
  color: #526676;
  font-size: 18px;
}

.application-hero img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.application-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-sidebar h3 {
  margin-bottom: 14px;
  font-size: 17px;
}

.application-sidebar a {
  display: block;
  padding: 10px 0;
  color: #526676;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.application-sidebar a:hover {
  color: var(--orange);
}

.application-article {
  display: grid;
  gap: 24px;
}

.application-article section {
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-article h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.application-article p,
.application-article li {
  color: #526676;
}

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

.seo-topic-grid article {
  padding: 20px;
  background: var(--soft);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.application-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.application-table div {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.application-table div:last-child {
  border-bottom: 0;
}

.application-table strong {
  color: var(--orange-dark);
}

.related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--orange-dark);
  background: #fff2ea;
  border: 1px solid #ffd6c1;
  border-radius: 999px;
  font-weight: 850;
}

.related-strip a:hover {
  color: #ffffff;
  background: var(--orange);
}

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

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

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

.case-card h3 {
  min-height: 54px;
}

.home-projects {
  background: #ffffff;
}

.home-project-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.home-project-head h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-project-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #566879;
  font-size: 17px;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #243545;
  font-size: 15px;
  font-weight: 760;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--orange);
}

.home-project-slider {
  position: relative;
}

.home-project-viewport {
  overflow: hidden;
  margin-right: 70px;
}

.home-project-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-project-card {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
  padding-right: 32px;
  color: #243545;
  border-right: 1px solid #d6dde3;
}

.home-project-card img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  height: auto;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.home-project-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.home-project-card h3 {
  max-width: 420px;
  margin: 8px 0 22px;
  color: #263746;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 430;
  line-height: 1.18;
  letter-spacing: 0;
}

.home-project-card > p:not(.card-kicker) {
  max-width: 420px;
  margin: 0 0 24px;
  color: #4f6070;
  font-size: 15px;
  line-height: 1.86;
}

.home-project-card > span {
  display: inline-flex;
  align-items: center;
  color: #263746;
  font-size: 16px;
  font-weight: 650;
  transition: color 0.22s ease, transform 0.22s ease;
}

.home-project-card:hover > span {
  color: var(--orange);
  transform: translateX(4px);
}

.home-project-arrow {
  position: absolute;
  top: 104px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #2c3a47;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.home-project-arrow:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.home-project-arrow.prev {
  left: -66px;
}

.home-project-arrow.next {
  right: 0;
}

.home-project-arrow.prev:hover {
  transform: translateX(-2px);
}

.home-project-arrow:disabled {
  opacity: 0.24;
  pointer-events: none;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.projects-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: center;
  background: #ffffff;
}

.projects-hero h1 {
  max-width: 820px;
}

.projects-hero p {
  max-width: 760px;
}

.projects-hero figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.projects-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.project-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.project-hero-tags span {
  padding: 8px 13px;
  color: var(--orange-dark);
  background: #fff2eb;
  border: 1px solid #ffd4c0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.project-index {
  background: #f7f8f8;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(24, 33, 43, 0.08);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.project-meta span {
  padding: 6px 10px;
  color: #496174;
  background: #f0f4f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.project-meta .project-date {
  color: var(--orange-dark);
  background: #fff2eb;
  border-color: #ffd4c0;
}

.project-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.project-card p {
  margin: 0;
  color: #586c7d;
  font-size: 16px;
}

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

.project-facts div {
  min-height: 120px;
  padding: 16px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-facts strong,
.project-facts span {
  display: block;
}

.project-facts strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.project-facts span {
  color: #5c7080;
  font-size: 14px;
}

.project-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange-dark);
  font-weight: 850;
}

.anchor-target {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.project-list-hero {
  padding-top: 78px;
  padding-bottom: 54px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.68)),
    url("assets/site-visits/visit-customer-plate-check.jpg") center / cover;
  color: #ffffff;
}

.project-list-hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 6vw, 78px);
}

.project-list-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.project-catalog {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  background: #ffffff;
}

.project-sidebar {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-sidebar h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.project-sidebar a {
  display: block;
  padding: 11px 0;
  color: #425568;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.project-sidebar a:hover {
  color: var(--orange-dark);
}

.project-list-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.project-list-heading h2 {
  margin: 0;
}

.project-list-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

.project-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 33, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-list-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms ease;
}

.project-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 95, 34, 0.55);
  box-shadow: 0 24px 46px rgba(24, 33, 43, 0.16);
}

.project-list-card:hover::before {
  transform: scaleY(1);
}

.project-list-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.project-list-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.project-list-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 246px;
  padding: 20px 22px 22px;
}

.project-list-card .project-date {
  display: inline-flex;
  width: fit-content;
  color: #607689;
  font-size: 13px;
  font-weight: 800;
}

.project-list-card h3 {
  margin: 10px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.project-list-card p {
  margin: 0;
  color: #5a6e7d;
  font-size: 15px;
  line-height: 1.55;
}

.project-list-card em {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 15px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 4px;
  font-style: normal;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.project-list-card:hover em {
  background: var(--orange-dark);
  transform: translateX(4px);
}

.project-detail-hero {
  padding-top: 76px;
  padding-bottom: 48px;
  background: #ffffff;
}

.project-detail-hero h1 {
  max-width: 920px;
}

.project-detail-hero p {
  max-width: 780px;
  color: var(--muted);
}

.project-detail-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  background: #f7f8f8;
}

.project-detail-nav {
  position: sticky;
  top: 92px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-detail-nav a {
  display: block;
  padding: 10px 0;
  color: #46596b;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.project-detail-nav a:first-child {
  color: var(--orange-dark);
  border-top: 0;
}

.project-detail-list {
  display: grid;
  gap: 38px;
}

.project-detail-block {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(24, 33, 43, 0.08);
  scroll-margin-top: 94px;
}

.project-detail-block > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-detail-block > div {
  padding: 30px;
}

.project-detail-block h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.project-detail-block p {
  color: #566a7a;
}

.project-summary {
  max-width: 900px;
  font-size: 18px;
}

.project-detail-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.project-detail-facts div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.project-detail-facts dt {
  color: var(--ink);
  font-weight: 900;
}

.project-detail-facts dd {
  margin: 0;
  color: #5d7080;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.case-story-grid section {
  min-height: 190px;
  padding: 20px;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-story-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.case-story-grid p {
  margin: 0;
  font-size: 15px;
}

.case-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.case-photo-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.case-result-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: #3d5365;
  background: #fff6f1;
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

.case-result-note strong {
  color: var(--ink);
}

.case-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: center;
  background: #ffffff;
}

.case-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #6a7a88;
  font-size: 14px;
  font-weight: 750;
}

.case-breadcrumb a {
  color: var(--orange-dark);
}

.case-page-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 5vw, 74px);
}

.case-page-hero p {
  max-width: 760px;
  color: #526676;
  font-size: 18px;
}

.case-page-hero img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 36px;
  align-items: start;
  background: #f7f8f8;
}

.case-main {
  display: grid;
  gap: 28px;
}

.case-section {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(24, 33, 43, 0.07);
}

.case-section h2 {
  margin-top: 0;
  font-size: clamp(30px, 3vw, 46px);
}

.case-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.case-section p {
  color: #566a7a;
}

.case-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.case-side-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 33, 43, 0.08);
}

.case-side-card h2,
.case-side-card h3 {
  margin-top: 0;
}

.case-side-card a {
  display: block;
  padding: 9px 0;
  color: var(--orange-dark);
  font-weight: 850;
}

.case-fact-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.case-fact-table div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.case-fact-table div:first-child {
  border-top: 0;
}

.case-fact-table dt,
.case-fact-table dd {
  margin: 0;
  padding: 15px 18px;
}

.case-fact-table dt {
  color: var(--ink);
  background: #f3f6f7;
  font-weight: 900;
}

.case-fact-table dd {
  color: #5d7080;
  background: #ffffff;
}

.case-step-list {
  display: grid;
  gap: 16px;
  counter-reset: solution;
}

.case-step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-step::before {
  counter-increment: solution;
  content: counter(solution, decimal-leading-zero);
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 950;
}

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

.case-equipment-grid article,
.case-related-grid a {
  padding: 20px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-equipment-grid strong,
.case-related-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.case-result {
  background: #111b24;
  color: #ffffff;
}

.case-result p,
.case-result li {
  color: rgba(255, 255, 255, 0.76);
}

.case-result ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.case-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.case-gallery img:first-child {
  grid-row: span 2;
  height: 534px;
}

.article-case-page {
  background: #f5f6f6;
}

.case-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.66fr);
  gap: 38px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 38px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f8 100%);
  border-bottom: 1px solid var(--line);
}

.case-article-hero h1 {
  max-width: 800px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0;
}

.article-deck {
  max-width: 720px;
  color: #465b6d;
  font-size: 18px;
  line-height: 1.72;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.article-meta span {
  padding: 7px 10px;
  color: #31475a;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.case-article-hero figure {
  margin: 0;
  align-self: stretch;
}

.case-article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(24, 33, 43, 0.12);
}

.case-article-hero figcaption,
.article-photo-grid figcaption {
  margin-top: 8px;
  color: #738392;
  font-size: 13px;
}

.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: #f5f6f6;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.article-sidebar-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 33, 43, 0.08);
}

.article-sidebar-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
}

.article-sidebar-card a {
  display: block;
  padding: 8px 0;
  color: #405467;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.article-sidebar-card a:hover {
  color: var(--orange-dark);
}

.article-sidebar-card.muted {
  background: #fff6f1;
  border-color: #ffd4c0;
}

.article-sidebar-card p {
  margin: 0 0 12px;
  color: #5d7080;
  font-size: 14px;
}

.article-main {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.article-card {
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(24, 33, 43, 0.07);
}

.article-card h2 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.article-card p {
  max-width: 820px;
  color: #526676;
  font-size: 17px;
  line-height: 1.78;
}

.article-lede {
  font-size: 19px;
}

.article-facts {
  display: grid;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.article-facts div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.article-facts div:first-child {
  border-top: 0;
}

.article-facts dt,
.article-facts dd {
  margin: 0;
  padding: 15px 18px;
}

.article-facts dt {
  color: var(--ink);
  background: #f3f6f7;
  font-weight: 900;
}

.article-facts dd {
  color: #5d7080;
}

.article-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: articleStep;
}

.article-steps li {
  position: relative;
  padding: 18px 18px 18px 76px;
  color: #526676;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.62;
}

.article-steps li::before {
  counter-increment: articleStep;
  content: counter(articleStep, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
}

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

.article-equipment li {
  padding: 20px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-equipment strong,
.article-equipment span {
  display: block;
}

.article-equipment strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.article-equipment span {
  color: #5d7080;
}

.article-result {
  background: #111b24;
  color: #ffffff;
}

.article-result p,
.article-result li {
  color: rgba(255, 255, 255, 0.78);
}

.article-result ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

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

.article-photo-grid figure {
  margin: 0;
}

.article-photo-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-faq {
  display: grid;
  gap: 12px;
}

.article-faq details {
  padding: 18px 20px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.article-faq p {
  margin-bottom: 0;
  font-size: 16px;
}

.simple-project-page {
  background: #ffffff;
}

.project-story {
  background: #ffffff;
}

.project-story-hero {
  padding-top: 70px;
  padding-bottom: 34px;
  background: #ffffff;
}

.project-story-hero h1 {
  max-width: 980px;
  margin: 22px 0 18px;
  color: #18222d;
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

.project-story-hero > p:not(.eyebrow) {
  max-width: 780px;
  color: #536575;
  font-size: 20px;
  line-height: 1.68;
}

.project-story-lead {
  margin: 0;
  padding: 0 44px 24px;
  background: #ffffff;
}

.project-story-lead img {
  display: block;
  width: 100%;
  height: min(620px, 58vw);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.project-story-lead figcaption,
.story-inline-photo figcaption,
.story-wide-photo figcaption,
.story-photo-row figcaption {
  margin-top: 9px;
  color: #7a8792;
  font-size: 13px;
  line-height: 1.5;
}

.project-story-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 860px);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding-top: 42px;
  background: #ffffff;
}

.project-story-summary {
  position: sticky;
  top: 92px;
  padding-top: 8px;
  border-top: 3px solid var(--orange);
}

.project-story-summary strong {
  display: block;
  margin-bottom: 18px;
  color: #18222d;
  font-size: 18px;
}

.project-story-summary dl {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
}

.project-story-summary dt,
.project-story-summary dd {
  margin: 0;
}

.project-story-summary dt {
  margin-bottom: 4px;
  color: #9b4a27;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-story-summary dd {
  color: #455867;
  font-size: 15px;
  line-height: 1.55;
}

.project-story-summary a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.project-story-content {
  max-width: 860px;
}

.project-story-content h2 {
  margin: 54px 0 16px;
  color: #18222d;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.14;
  letter-spacing: 0;
}

.project-story-content h2:first-child {
  margin-top: 0;
}

.project-story-content p,
.project-story-content li {
  color: #3f5162;
  font-size: 18px;
  line-height: 1.84;
}

.story-lede {
  margin-top: 0;
  color: #253747;
  font-size: 22px;
  line-height: 1.72;
}

.story-inline-photo,
.story-wide-photo {
  margin: 34px 0;
}

.story-inline-photo img,
.story-wide-photo img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.story-check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.story-check-list li::marker {
  color: var(--orange);
}

.story-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
}

.story-photo-row figure {
  margin: 0;
}

.story-photo-row img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.story-next-links {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.story-next-links h2 {
  margin-top: 0;
}

.story-next-links a {
  display: block;
  padding: 14px 0;
  color: #263746;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}

.story-next-links a:hover {
  color: var(--orange);
}

.technical-case-page {
  background: #ffffff;
}

.technical-case {
  background: #ffffff;
}

.technical-case-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  min-height: 350px;
  padding: 0 44px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 252, 0.95) 48%, rgba(27, 80, 121, 0.98) 48%, rgba(27, 80, 121, 0.98) 100%),
    radial-gradient(circle at 14% 42%, rgba(31, 91, 138, 0.12), transparent 34%);
  border-top: 4px solid #1b5a8b;
}

.technical-case-head::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 4px;
  background: #f45a24;
}

.technical-case-copy {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4.8vw, 56px) 0 clamp(34px, 4vw, 48px);
}

.technical-case-head h1 {
  max-width: 660px;
  margin: 24px 0 28px;
  color: #17222d;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
}

.technical-case-facts {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
}

.technical-case-facts div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 0;
  border: 0;
}

.technical-case-facts div:first-child {
  border-left: 0;
}

.technical-case-facts dt,
.technical-case-facts dd {
  margin: 0;
}

.technical-case-facts dt {
  color: #17222d;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: none;
}

.technical-case-facts dd {
  color: #17222d;
  font-size: 16px;
  line-height: 1.45;
}

.technical-case-hero-image {
  margin: 0;
  padding: 0 44px 38px;
}

.technical-case-head .technical-case-hero-image {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin: 0;
  padding: 0;
}

.technical-case-head .technical-case-hero-image::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 0;
  width: 86px;
  height: 104px;
  border-left: 18px solid #1b5a8b;
  border-bottom: 18px solid #1b5a8b;
  border-bottom-left-radius: 72px;
  pointer-events: none;
  z-index: 2;
}

.technical-case-hero-image img {
  display: block;
  width: 100%;
  height: min(620px, 55vw);
  object-fit: cover;
  object-position: center;
}

.technical-case-head .technical-case-hero-image img {
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: 50% 58%;
}

.technical-case-hero-image figcaption,
.technical-case-image figcaption,
.technical-photo-row figcaption {
  max-width: 960px;
  margin-top: 8px;
  color: #75838f;
  font-size: 13px;
  line-height: 1.5;
}

.technical-case-head .technical-case-hero-image figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.technical-case-body {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(270px, 330px);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 44px;
  padding-left: 44px;
  padding-top: 20px;
}

.technical-case-main h2 {
  margin: 52px 0 16px;
  color: #18222d;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: 0;
}

.technical-case-main h2:first-child {
  margin-top: 0;
}

.technical-case-main p,
.technical-case-main li,
.technical-case-table td {
  color: #405363;
  font-size: 17px;
  line-height: 1.82;
}

.technical-case-table {
  width: 100%;
  margin: 26px 0 36px;
  border-collapse: collapse;
  border-top: 1px solid #d7dde2;
  border-bottom: 1px solid #d7dde2;
}

.technical-case-table th,
.technical-case-table td {
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #e3e8ec;
}

.technical-case-table tr:first-child th,
.technical-case-table tr:first-child td {
  border-top: 0;
}

.technical-case-table th {
  width: 230px;
  padding-right: 26px;
  color: #1c2b38;
  font-size: 15px;
  font-weight: 850;
}

.technical-case-image {
  margin: 34px 0 40px;
}

.technical-case-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.technical-feature-list,
.technical-step-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 36px;
  padding-left: 22px;
}

.technical-feature-list li::marker,
.technical-step-list li::marker {
  color: var(--orange);
}

.technical-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.technical-photo-row figure {
  margin: 0;
}

.technical-photo-row img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-evidence-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin: 30px 0 42px;
}

.product-evidence-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 34, 45, 0.07);
}

.product-evidence-gallery figure:first-child {
  grid-row: span 2;
}

.product-evidence-gallery img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-evidence-gallery figure:first-child img {
  height: 100%;
  min-height: 474px;
}

.product-evidence-gallery figcaption {
  min-height: 76px;
  padding: 13px 15px 15px;
  color: #405363;
  font-size: 13px;
  line-height: 1.45;
  background: #ffffff;
}

.product-evidence-gallery figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

.product-article-page .technical-case-head {
  grid-template-columns: minmax(0, 560px) minmax(340px, 500px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 52px);
  min-height: 0;
  padding: clamp(34px, 3.8vw, 52px) clamp(28px, 4vw, 54px);
  background: linear-gradient(90deg, #f7f9fa 0%, #ffffff 48%, #eef4f7 100%);
}

.product-article-page .technical-case-copy {
  padding: 0;
}

.product-article-page .technical-case-head h1 {
  max-width: 560px;
  margin: 20px 0 24px;
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.02;
}

.product-article-page .technical-case-head .technical-case-hero-image {
  align-self: center;
  max-width: 500px;
  width: 100%;
  justify-self: start;
}

.product-article-page .technical-case-head .technical-case-hero-image::before {
  display: none;
}

.product-article-page .technical-case-head .technical-case-hero-image img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(23, 34, 45, 0.12);
}

.product-article-page .technical-case-main h2 {
  scroll-margin-top: 96px;
}

.product-article-page .advantages-table-figure img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #e2e8ee;
}

@media (max-width: 980px) {
  .product-evidence-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-evidence-gallery figure:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .product-evidence-gallery figure:first-child img {
    min-height: 0;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .product-evidence-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-evidence-gallery figure:first-child {
    grid-column: auto;
  }

  .product-evidence-gallery img,
  .product-evidence-gallery figure:first-child img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

.matrix-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 38px;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
  background: #ffffff;
}

.scope-matrix {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.scope-matrix th,
.scope-matrix td {
  padding: 15px 18px;
  border-top: 1px solid #e6edf3;
  color: #405363;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.scope-matrix thead th {
  border-top: 0;
  background: #fff2eb;
  color: #a94118;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.scope-matrix tbody td:first-child {
  color: #17222d;
  font-weight: 800;
}

.technical-case-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 26px;
  padding-top: 4px;
}

.technical-case-side > div {
  padding-top: 22px;
  border-top: 2px solid #d7dde2;
}

.technical-case-side > div:first-child {
  border-top-color: var(--orange);
}

.technical-case-side h2 {
  margin: 0 0 14px;
  color: #18222d;
  font-size: 22px;
  font-weight: 620;
}

.technical-case-side p,
.technical-case-side li {
  color: #536575;
  font-size: 15px;
  line-height: 1.65;
}

.technical-case-side ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.technical-case-side a {
  display: block;
  padding: 9px 0;
  color: #253747;
  border-bottom: 1px solid #e3e8ec;
  font-weight: 720;
}

.technical-case-side a:hover {
  color: var(--orange);
}

.technical-case-side div:nth-child(2) a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: #ffffff;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
}

.article-grid article {
  overflow: hidden;
  min-height: 280px;
}

.article-grid article img,
.article-grid .article-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.article-grid article > div:not(.article-visual) {
  padding: 24px 26px 28px;
}

.article-grid p {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.about,
.quote {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-tags span {
  padding: 9px 12px;
  color: var(--teal);
  background: #e8f3f1;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
}

.sitemap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sitemap-grid div {
  padding: 24px;
}

.quote {
  color: var(--white);
  background: #111a22;
}

.quote .eyebrow {
  color: #ffc09b;
}

.quote p {
  color: #d6dee5;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #344454;
  font-size: 13px;
  font-weight: 750;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.site-footer {
  padding: 56px clamp(18px, 4vw, 56px) 24px;
  color: #dce5ec;
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.14), rgba(241, 95, 34, 0) 38%),
    #0d141b;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo {
  color: var(--white);
}

.footer-logo small {
  color: #aebbc5;
}

.footer-intro p {
  max-width: 720px;
  margin: 0;
  color: #b8c5cf;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.social-links span {
  margin-right: 4px;
  color: #dce5ec;
  font-size: 13px;
  font-weight: 750;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.linkedin {
  background: #0a66c2;
}

.social-link.whatsapp {
  background: #25d366;
}

.whatsapp-number {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: #dff8e8;
  background: rgba(37, 211, 102, 0.13);
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.whatsapp-number:hover {
  color: var(--white);
  background: rgba(37, 211, 102, 0.22);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0;
}

.footer-nav h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-nav a {
  display: block;
  margin-bottom: 9px;
  color: #b8c5cf;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #ffb384;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: #8f9eaa;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

.inner-hero,
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(68px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.12), rgba(241, 95, 34, 0) 36%),
    #f7f8f8;
}

.inner-hero h1,
.detail-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 66px);
}

.inner-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 820px;
  color: #4f6170;
  font-size: 18px;
}

.products-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 540px;
  color: var(--white);
  background: #17120f;
}

.products-hero::before,
.products-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.products-hero::before {
  z-index: -2;
  background: url("assets/products-hero-dofil-orange.webp") center right / cover no-repeat;
}

.products-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 14, 12, 0.9) 0%, rgba(17, 14, 12, 0.76) 37%, rgba(17, 14, 12, 0.35) 68%, rgba(17, 14, 12, 0.04) 100%),
    linear-gradient(0deg, rgba(241, 95, 34, 0.2), rgba(241, 95, 34, 0));
}

.products-hero > div {
  max-width: 820px;
}

.products-hero h1 {
  color: var(--white);
}

.products-hero .eyebrow {
  color: #ffb184;
}

.products-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 28px;
}

.hero-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff4ed;
  background: rgba(241, 95, 34, 0.24);
  border: 1px solid rgba(255, 177, 132, 0.5);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.size-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
  margin-top: 24px;
}

.size-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--orange-dark);
  background: #fff3ec;
  border: 1px solid #ffd1bd;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.detail-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, #eff3f4 54%, #eff3f4 100%);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.filter-press-hero {
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.12fr);
  gap: clamp(24px, 3vw, 46px);
  min-height: min(680px, calc(100vh - 72px));
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 45%, #eef3f4 45%, #eef3f4 100%);
}

.filter-press-hero > div {
  max-width: 690px;
}

.filter-press-hero h1 {
  max-width: 660px;
  font-size: clamp(38px, 4.15vw, 58px);
  line-height: 1.06;
}

.filter-press-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 650px;
  font-size: 16.5px;
}

.filter-press-hero img {
  align-self: stretch;
  height: 100%;
  min-height: clamp(480px, 43vw, 640px);
  aspect-ratio: auto;
  border-radius: 0;
  object-position: center;
  box-shadow: 0 22px 48px rgba(24, 33, 43, 0.12);
}

.filter-press-hero .hero-proof-list {
  max-width: 560px;
  margin-top: 20px;
}

.filter-press-hero .hero-proof-list span {
  min-height: 34px;
  color: var(--orange-dark);
  background: #fff3ec;
  border-color: #ffd0ba;
  backdrop-filter: none;
}

.filter-cloth-hero {
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 49%, #eff3f4 49%, #eff3f4 100%);
}

.filter-cloth-hero img {
  min-height: clamp(460px, 54vw, 680px);
  aspect-ratio: 5 / 4;
  border-radius: 0;
  object-position: center;
}

.equipment-hero {
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1fr);
  min-height: min(720px, calc(100vh - 72px));
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 47%, #eff3f4 47%, #eff3f4 100%);
}

.equipment-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
}

.equipment-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  font-size: 17px;
}

.equipment-hero img {
  height: 100%;
  min-height: clamp(480px, 44vw, 650px);
  aspect-ratio: 5 / 4;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.customer-system-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  padding: clamp(84px, 9vw, 132px) clamp(24px, 6vw, 88px);
  overflow: hidden;
  color: #ffffff;
  background: #17222b;
}

.customer-system-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 35, 0.88) 0%, rgba(10, 24, 35, 0.73) 43%, rgba(10, 24, 35, 0.28) 72%, rgba(10, 24, 35, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 20, 29, 0.42) 0%, rgba(8, 20, 29, 0.08) 58%, rgba(8, 20, 29, 0.18) 100%);
}

.customer-system-hero > .equipment-hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center 48%;
  box-shadow: none;
}

.customer-system-hero .equipment-hero-copy {
  width: min(790px, 66vw);
  padding: clamp(24px, 3vw, 40px) 0;
}

.customer-system-hero h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.02;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.customer-system-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.customer-system-hero .breadcrumb,
.customer-system-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.customer-system-hero .eyebrow {
  color: #ffc09b;
}

.customer-system-hero .size-strip span {
  color: #ffffff;
  background: rgba(14, 31, 43, 0.58);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(5px);
}

.customer-system-hero .button.secondary {
  color: #ffffff;
  background: rgba(12, 28, 40, 0.42);
  border-color: rgba(255, 255, 255, 0.5);
}

.customer-system-hero .button.secondary:hover {
  background: rgba(12, 28, 40, 0.72);
  border-color: #ffffff;
}

.plate-hero img {
  height: clamp(680px, calc(100vh - 104px), 860px);
  max-height: none;
  aspect-ratio: 4 / 7;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: transparent;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-strip article {
  min-height: 150px;
  padding: 28px;
  background: #ffffff;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 24px;
  line-height: 1.1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 15px;
}

.oem-panel-section {
  padding-top: clamp(18px, 2.2vw, 34px);
  padding-bottom: clamp(46px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.25), rgba(241, 95, 34, 0) 38%),
    #111a20;
}

.oem-panel-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.55fr);
  column-gap: 28px;
  align-items: end;
  max-width: none;
  margin-bottom: 14px;
}

.oem-panel-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.05;
}

.oem-panel-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.section-heading.inverse h2,
.section-heading.inverse p {
  color: var(--white);
}

.section-heading.inverse p:not(.eyebrow) {
  max-width: 520px;
  color: #c8d4dd;
  font-size: 14px;
  line-height: 1.45;
}

.oem-panel-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.22fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: 410px 410px;
  gap: 14px;
}

.oem-panel-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 240px;
  color: var(--white);
  background: #26333b;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.oem-panel-card.featured {
  grid-row: span 2;
}

.oem-panel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.oem-panel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 17, 23, 0.02) 0%, rgba(10, 17, 23, 0.18) 42%, rgba(10, 17, 23, 0.82) 100%),
    linear-gradient(135deg, rgba(241, 95, 34, 0.32), rgba(241, 95, 34, 0) 42%);
}

.oem-panel-card div {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.oem-panel-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffbd93;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.oem-panel-card h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(22px, 1.8vw, 31px);
}

.oem-panel-card p {
  max-width: 560px;
  color: #e1e8ed;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.oem-panel-card:hover img,
.oem-panel-card:focus-visible img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.06);
}

.oem-panel-card:hover div,
.oem-panel-card:focus-visible div,
.oem-panel-card:hover p,
.oem-panel-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.oem-panel-card:focus-visible {
  outline: 3px solid #ffbd93;
  outline-offset: 3px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: #70808e;
  font-size: 14px;
  font-weight: 700;
}

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

.product-listing,
.detail-overview,
.spec-section,
.industry-match,
.factory-process,
.quote-requirements,
.selection-guide {
  background: #ffffff;
}

.listing-intro {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.listing-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.56fr) minmax(0, 1fr);
  overflow: hidden;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 33, 43, 0.08);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.listing-card:hover,
.listing-card:focus-visible {
  border-color: rgba(241, 95, 34, 0.62);
  box-shadow: 0 24px 52px rgba(24, 33, 43, 0.14);
  transform: translateY(-6px);
}

.listing-card:focus-visible {
  outline: 3px solid rgba(241, 95, 34, 0.34);
  outline-offset: 4px;
}

.listing-card img,
.listing-card .listing-visual {
  width: 100%;
  height: 100%;
  min-height: 260px;
  margin: 0;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.listing-card:hover img,
.listing-card:hover .listing-visual,
.listing-card:focus-visible img,
.listing-card:focus-visible .listing-visual {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.listing-card > div:not(.listing-visual) {
  padding: 28px;
}

.listing-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.listing-card p:not(.card-kicker) {
  color: var(--muted);
}

.listing-card .card-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 850;
  transition: transform 180ms ease, color 180ms ease;
}

.listing-card:hover .card-action,
.listing-card:focus-visible .card-action {
  color: var(--orange);
  transform: translateX(4px);
}

.featured-listing {
  border-top: 4px solid var(--orange);
}

.oem-series {
  background: var(--soft);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.series-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 33, 43, 0.08);
}

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

.series-grid h3 {
  margin: 0;
  padding: 14px;
  font-size: 15px;
}

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

.plate-type-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 33, 43, 0.08);
}

.plate-type-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.plate-type-grid article > div {
  padding: 28px;
}

.plate-type-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.plate-type-grid p:not(.card-kicker) {
  color: var(--muted);
}

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

.plate-gallery-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 43, 0.08);
}

.plate-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plate-gallery-grid article > div {
  padding: 22px;
}

.plate-gallery-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.plate-gallery-grid p:not(.card-kicker) {
  color: var(--muted);
}

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

.machine-config-grid article,
.machine-config-card {
  overflow: hidden;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 33, 43, 0.08);
  text-decoration: none;
}

.machine-config-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.machine-config-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 95, 34, 0.55);
  box-shadow: 0 24px 46px rgba(24, 33, 43, 0.14);
}

.machine-config-grid article:first-child {
  grid-row: auto;
}

.machine-config-grid img,
.machine-config-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.machine-config-grid article:first-child img,
.machine-config-card:first-child img {
  height: 250px;
  min-height: 0;
}

.machine-config-grid div,
.machine-config-card div {
  padding: 24px;
}

.machine-config-grid h3,
.machine-config-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.machine-config-grid p:not(.card-kicker),
.machine-config-card p:not(.card-kicker) {
  color: var(--muted);
}

.model-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.model-type-grid .machine-config-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.14 / 1;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(16, 31, 44, 0.1);
}

.model-type-grid .machine-config-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  background: #ffffff;
  border: 0;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.model-type-grid .machine-config-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 0;
  background: transparent;
}

.model-type-grid .machine-config-card h3 {
  margin: 0;
  padding: 14px 16px;
  color: #ffffff;
  background: var(--orange);
  font-size: 18px;
  line-height: 1.18;
  text-shadow: none;
}

.model-type-grid .machine-config-card p:not(.card-kicker) {
  display: none;
}

.model-type-grid .card-kicker {
  display: none;
}

.model-type-grid .card-action {
  display: none;
}

.model-type-grid .machine-config-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(16, 31, 44, 0.22);
}

.model-type-grid .machine-config-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.card-action {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.filter-press-industries {
  background: #ffffff;
}

.filter-press-industries .plate-gallery-grid article {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.filter-press-industries .plate-gallery-grid article:hover {
  box-shadow: 0 18px 40px rgba(24, 33, 43, 0.12);
  transform: translateY(-4px);
}

.real-evidence-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  margin-top: 28px;
}

.evidence-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 43, 0.08);
}

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

.evidence-card.wide img {
  aspect-ratio: 16 / 9;
}

.evidence-card > div {
  padding: 22px;
}

.evidence-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.evidence-card p:not(.card-kicker) {
  color: var(--muted);
}

.factory-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.factory-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #101820;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 33, 43, 0.09);
}

.factory-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.factory-proof-grid article:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.factory-proof-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 14, 18, 0.84), rgba(8, 14, 18, 0.08) 58%);
}

.factory-proof-grid div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 20px;
  color: #ffffff;
}

.factory-proof-grid strong {
  font-size: 20px;
  line-height: 1.15;
}

.factory-proof-grid span {
  color: #d7e2ea;
  font-size: 14px;
  line-height: 1.45;
}

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

.feature-grid article,
.checklist-grid article,
.faq-grid article {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p,
.checklist-grid p,
.faq-grid p {
  color: var(--muted);
}

.spec-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 36px;
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.spec-section .eyebrow {
  color: #ffb384;
}

.spec-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.spec-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: #ffb384;
}

.spec-table span {
  color: #d8e3ea;
}

.industry-grid.compact a {
  min-height: 160px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.process-main {
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 43, 0.08);
}

.process-main img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.process-main figcaption {
  padding: 18px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

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

.process-steps article {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.process-steps article > div {
  padding: 14px 16px 16px;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.application-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.application-proof-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 43, 0.08);
}

.application-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.application-proof-grid article > div {
  padding: 22px;
}

.application-proof-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.application-proof-grid p {
  color: var(--muted);
}

.site-visit-showcase {
  position: relative;
  margin-top: 34px;
  padding-top: 6px;
}

.site-visit-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  padding-left: 22px;
  border-left: 3px solid var(--ink);
}

.site-visit-intro p {
  color: #3d4b56;
  font-size: 17px;
}

.site-visit-stage {
  position: relative;
  overflow: hidden;
  height: clamp(390px, 40vw, 560px);
  margin-inline: calc(clamp(18px, 4vw, 56px) * -1);
}

.site-visit-slide {
  display: none;
  position: absolute;
  top: 50%;
  overflow: hidden;
  margin: 0;
  background: #f2f4f5;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.site-visit-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.site-visit-slide.is-prev,
.site-visit-slide.is-active,
.site-visit-slide.is-next {
  display: block;
}

.site-visit-slide.is-prev {
  left: 4%;
  z-index: 1;
  width: 31%;
  height: 72%;
  opacity: 0.24;
  filter: grayscale(0.12);
  transform: translateY(-50%);
}

.site-visit-slide.is-active {
  left: 50%;
  z-index: 3;
  width: min(52vw, 720px);
  height: 86%;
  opacity: 1;
  box-shadow: 0 22px 46px rgba(24, 33, 43, 0.14);
  transform: translate(-50%, -50%);
}

.site-visit-slide.is-next {
  right: 4%;
  z-index: 1;
  width: 31%;
  height: 72%;
  opacity: 0.24;
  filter: grayscale(0.12);
  transform: translateY(-50%);
}

.site-visit-slide.is-active:hover img {
  transform: scale(1.035);
}

.site-visit-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #52606a;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(24, 33, 43, 0.16);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.site-visit-arrow.prev {
  left: calc(50% - min(26vw, 360px) - 20px);
}

.site-visit-arrow.next {
  right: calc(50% - min(26vw, 360px) - 20px);
}

.site-visit-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.site-visit-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #c8cdd1;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.site-visit-dots button.is-active {
  background: var(--ink);
}

.oem-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.14), rgba(241, 95, 34, 0) 40%),
    #f7f8f8;
}

.oem-detail-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 64px);
}

.oem-detail-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  color: #4f6170;
  font-size: 18px;
}

.oem-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.oem-detail-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.oem-detail-summary article {
  min-height: 138px;
  padding: 28px;
  background: #ffffff;
}

.oem-detail-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 18px;
}

.oem-detail-summary span {
  color: var(--muted);
  line-height: 1.55;
}

.oem-detail-section {
  background: #ffffff;
}

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

.product-article-page .oem-detail-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  background: #ffffff;
}

.product-article-page .oem-detail-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.product-article-page .oem-detail-hero img {
  object-fit: contain;
  background: #f3f6f7;
}

.product-summary-simple article {
  min-height: 112px;
  padding: 22px 24px;
}

.product-article-section {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.product-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.product-copy {
  max-width: 860px;
}

.product-copy h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.08;
}

.product-copy p {
  color: #526676;
  font-size: 17px;
  line-height: 1.7;
}

.plain-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plain-check-list li {
  position: relative;
  padding-left: 20px;
  color: #405466;
  line-height: 1.55;
}

.plain-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.plain-check-list.compact {
  margin: 12px 0 18px;
  gap: 8px;
}

.note-text {
  margin: 0 0 22px;
  color: #6b7a86;
  font-size: 13px;
  line-height: 1.55;
}

.product-side-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: #ffffff;
}

.product-side-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.product-side-card p {
  color: #526676;
}

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

.product-media-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-media-item img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: #eef3f6;
}

.product-media-item div {
  padding: 18px 18px 22px;
}

.product-media-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.product-media-item p {
  color: #526676;
  font-size: 14px;
  line-height: 1.55;
}

.compact-tech-table {
  max-width: 980px;
}

.ffp2512-focus {
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.08), rgba(241, 95, 34, 0) 42%),
    #ffffff;
}

.ffp2512-application {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: #ffffff;
}

.ffp2512-application > div:first-child p:not(.eyebrow) {
  max-width: 680px;
  color: #526676;
  font-size: 17px;
}

.old-source-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.old-source-gallery article {
  background: #ffffff;
}

.old-source-gallery img {
  height: 360px;
  object-fit: contain;
  background: #eef2f4;
}

.old-source-gallery article:nth-child(3) img,
.old-source-gallery article:nth-child(4) img {
  object-fit: cover;
}

.ffp2512-advantages {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #f4f6f6 100%);
}

.advantages-table-figure {
  overflow-x: auto;
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 33, 43, 0.08);
}

.advantages-table-figure img {
  width: 100%;
  min-width: 920px;
  height: auto;
  object-fit: contain;
}

.advantages-table-figure figcaption {
  margin-top: 14px;
  color: #526676;
  font-size: 14px;
  font-weight: 700;
}

.oem-tech-table {
  overflow: hidden;
  max-width: 1120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.oem-tech-table div {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.oem-tech-table div:nth-child(odd) {
  background: #fbfcfc;
}

.oem-tech-table div:last-child {
  border-bottom: 0;
}

.oem-tech-table strong {
  color: var(--orange-dark);
}

.oem-tech-table span {
  color: var(--muted);
  line-height: 1.6;
}

.equipment-param-table {
  overflow: hidden;
  max-width: 1180px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 33, 43, 0.06);
}

.equipment-param-table div {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.equipment-param-table div:nth-child(odd) {
  background: #fbfcfc;
}

.equipment-param-table div:last-child {
  border-bottom: 0;
}

.equipment-param-table strong {
  color: var(--orange-dark);
}

.equipment-param-table span {
  color: #4f6170;
  line-height: 1.65;
}

.equipment-selection {
  align-items: start;
}

.product-detail-showcase {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.22), rgba(241, 95, 34, 0) 38%),
    #111a20;
}

.product-detail-showcase .section-heading h2 {
  color: #ffffff;
}

.product-detail-showcase .section-heading p:not(.eyebrow) {
  color: #c7d5df;
}

.product-detail-showcase .eyebrow {
  color: #ffb184;
}

.product-detail-carousel {
  margin-top: 28px;
}

.product-detail-carousel .site-visit-stage {
  height: clamp(430px, 48vw, 680px);
  margin-inline: 0;
}

.product-detail-carousel .site-visit-slide {
  background: #0d1419;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.product-detail-carousel .site-visit-slide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-carousel .site-visit-slide.is-prev {
  left: 0;
  width: 27%;
  height: 68%;
  opacity: 0.28;
}

.product-detail-carousel .site-visit-slide.is-active {
  width: min(68vw, 980px);
  height: 92%;
}

.product-detail-carousel .site-visit-slide.is-next {
  right: 0;
  width: 27%;
  height: 68%;
  opacity: 0.28;
}

.product-detail-carousel figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 6px;
  padding: 24px 28px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(9, 15, 20, 0.88), rgba(9, 15, 20, 0));
}

.product-detail-carousel figcaption strong {
  font-size: 23px;
  line-height: 1.15;
}

.product-detail-carousel figcaption span {
  max-width: 680px;
  color: #d9e5ec;
  font-size: 15px;
}

.product-detail-carousel .site-visit-arrow {
  color: #ffffff;
  background: rgba(241, 95, 34, 0.92);
}

.product-detail-carousel .site-visit-arrow.prev {
  left: calc(50% - min(34vw, 490px) - 20px);
}

.product-detail-carousel .site-visit-arrow.next {
  right: calc(50% - min(34vw, 490px) - 20px);
}

.product-detail-carousel .site-visit-dots button.is-active {
  background: var(--orange);
}

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

.oem-photo-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 43, 0.08);
}

.oem-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef3f6;
}

.oem-photo-grid h3 {
  margin: 20px 20px 8px;
  font-size: 22px;
}

.oem-photo-grid p {
  margin: 0 20px 24px;
  color: var(--muted);
}

.oem-field-proof {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.18), rgba(241, 95, 34, 0) 42%),
    var(--charcoal);
}

.oem-field-proof .section-heading {
  margin-bottom: 18px;
}

.oem-field-proof .section-heading h2,
.oem-field-proof .section-heading p {
  color: var(--white);
}

.oem-field-proof .section-heading p:not(.eyebrow) {
  color: #c8d4dd;
}

.oem-site-slider {
  margin-top: 18px;
}

.oem-site-slider .site-visit-stage {
  height: clamp(440px, 43vw, 620px);
  margin-inline: 0;
}

.oem-site-slider .site-visit-slide {
  background: #101920;
  border-radius: 8px;
}

.oem-site-slider .site-visit-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 23, 0) 44%, rgba(8, 16, 23, 0.78) 100%);
  pointer-events: none;
}

.oem-site-slider .site-visit-slide.is-prev,
.oem-site-slider .site-visit-slide.is-next {
  width: 27%;
  height: 68%;
  opacity: 0.32;
}

.oem-site-slider .site-visit-slide.is-active {
  width: min(64vw, 840px);
  height: 92%;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.oem-site-slider figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 24px;
  color: var(--white);
}

.oem-site-slider figcaption strong {
  font-size: 24px;
  line-height: 1.1;
}

.oem-site-slider figcaption span {
  max-width: 620px;
  color: #d8e2e8;
}

.oem-site-slider .site-visit-arrow {
  z-index: 8;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: var(--orange);
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  font-size: 42px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.oem-site-slider .site-visit-arrow.prev {
  left: max(18px, calc(50% - min(34vw, 470px)));
}

.oem-site-slider .site-visit-arrow.next {
  right: max(18px, calc(50% - min(34vw, 470px)));
}

.oem-site-slider .site-visit-arrow:hover {
  background: #ff7a35;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.oem-site-slider .site-visit-arrow.prev:hover {
  transform: translate(-4px, -50%);
}

.oem-site-slider .site-visit-arrow.next:hover {
  transform: translate(4px, -50%);
}

.oem-site-slider .site-visit-dots button.is-active {
  background: var(--orange);
}

.oem-detail-body {
  background: var(--charcoal);
  color: var(--white);
}

.inner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 95, 34, 0.2), rgba(241, 95, 34, 0) 42%),
    var(--steel);
}

.inner-cta .eyebrow {
  color: #ffb384;
}

.inner-cta p {
  max-width: 760px;
  color: #d6dee5;
}

@media (max-width: 1100px) {
  .home-page .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

  .home-page .brand-mark {
    display: grid;
  }

  .home-page .brand strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.1;
  }

  .home-page .brand small {
    color: var(--muted);
    letter-spacing: 0;
    text-transform: none;
  }

  .home-page .language-switcher button {
    color: #263544;
    background: #ffffff;
    border-color: var(--line);
  }

  .home-page .hero-copy,
  .home-page .hero-stats {
    width: auto;
    max-width: 760px;
    margin-left: 0;
  }

  .home-page h1 {
    font-size: clamp(38px, 7vw, 58px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .oem,
  .about,
  .quote,
  .inner-hero,
  .detail-hero,
  .oem-detail-hero,
  .spec-section,
  .process-layout,
  .inner-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

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

  .oem-panel-section .section-heading {
    grid-template-columns: 1fr;
  }

  .product-info-layout,
  .product-media-item {
    grid-template-columns: 1fr;
  }

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

  .product-side-card {
    max-width: 640px;
  }

  .oem-panel-section .section-heading h2 {
    max-width: 840px;
  }

  .oem-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .oem-panel-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 380px;
  }

  .product-grid,
  .case-grid,
  .project-facts,
  .industry-grid,
  .application-hero,
  .application-layout,
  .listing-grid,
  .machine-config-grid,
  .factory-proof-grid,
  .oem-detail-summary,
  .oem-photo-grid,
  .plate-type-grid,
  .plate-gallery-grid,
  .real-evidence-grid,
  .application-proof-grid,
  .series-grid,
  .faq-grid,
  .process-steps,
  .sitemap-grid,
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-main img {
    min-height: 420px;
  }

  .machine-config-grid article:first-child {
    grid-row: auto;
  }

  .machine-config-grid article:first-child img {
    min-height: 0;
  }

  .site-visit-stage {
    height: 420px;
    margin-inline: 0;
  }

  .site-visit-slide.is-prev,
  .site-visit-slide.is-next {
    display: none;
  }

  .site-visit-slide.is-active {
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
  }

  .oem-site-slider .site-visit-slide.is-active {
    width: 100%;
    height: 100%;
  }

  .site-visit-arrow.prev {
    left: 18px;
  }

  .site-visit-arrow.next {
    right: 18px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    background: #ffffff;
  }

  .projects-hero,
  .project-card,
  .project-catalog,
  .project-detail-layout,
  .project-detail-block,
  .case-page-hero,
  .case-layout,
  .case-article-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .project-sidebar,
  .project-detail-nav,
  .case-side {
    position: static;
  }

  .article-sidebar {
    position: static;
    order: 2;
  }

  .article-main {
    max-width: none;
  }

  .article-equipment,
  .article-photo-grid {
    grid-template-columns: 1fr;
  }

  .case-page-hero img {
    height: 420px;
  }

  .case-article-hero img {
    height: 420px;
  }

  .case-fact-table div {
    grid-template-columns: 1fr;
  }

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

  .case-equipment-grid,
  .case-related-grid {
    grid-template-columns: 1fr;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery img,
  .case-gallery img:first-child {
    grid-row: auto;
    height: auto;
    aspect-ratio: 16 / 10;
  }

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

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

  .projects-hero img {
    height: 430px;
  }

  .oem-detail-hero {
    background: #ffffff;
  }

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

  .product-card.featured div {
    padding: 28px;
  }

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

  .page-map div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher button {
    min-height: 36px;
    max-width: 104px;
    overflow: hidden;
  }

  main > section {
    padding: 48px 16px;
  }

  h1 {
    font-size: 38px;
  }

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

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

  .oem-panel-card,
  .oem-panel-card.featured {
    grid-column: auto;
    min-height: 320px;
  }

  .oem-panel-card p {
    opacity: 1;
    transform: none;
  }

  .hero-stats,
  .role-grid,
  .capability-list,
  .article-grid,
  .product-media-list,
  .product-grid,
  .case-grid,
  .project-facts,
  .industry-grid,
  .listing-grid,
  .machine-config-grid,
  .factory-proof-grid,
  .plate-type-grid,
  .plate-gallery-grid,
  .real-evidence-grid,
  .application-proof-grid,
  .series-grid,
  .feature-grid,
  .checklist-grid,
  .faq-grid,
  .process-steps,
  .sitemap-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .process-main img {
    min-height: 360px;
  }

  .projects-hero img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .project-card img {
    min-height: 240px;
  }

  .project-card-body {
    padding: 22px;
  }

  .project-list-hero {
    padding-top: 56px;
  }

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

  .project-list-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-list-card div {
    min-height: auto;
  }

  .project-detail-block img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-detail-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-story-grid,
  .case-photo-strip {
    grid-template-columns: 1fr;
  }

  .case-photo-strip img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .case-page-hero img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .case-article-hero img,
  .article-photo-grid img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-detail-carousel .site-visit-stage {
    height: 420px;
  }

  .product-detail-carousel .site-visit-slide.is-prev,
  .product-detail-carousel .site-visit-slide.is-next {
    display: none;
  }

  .product-detail-carousel .site-visit-slide.is-active {
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
  }

  .product-detail-carousel figcaption {
    padding: 18px;
  }

  .product-detail-carousel figcaption strong {
    font-size: 20px;
  }

  .product-detail-carousel .site-visit-arrow.prev {
    left: 16px;
  }

  .product-detail-carousel .site-visit-arrow.next {
    right: 16px;
  }

  .case-step {
    grid-template-columns: 1fr;
  }

  .article-steps li {
    padding-left: 18px;
    padding-top: 68px;
  }

  .filter-press-hero img,
  .filter-cloth-hero img,
  .machine-config-grid img,
  .machine-config-grid article:first-child img {
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-card img,
  .listing-card .listing-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

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

  .oem-detail-summary,
  .oem-photo-grid {
    grid-template-columns: 1fr;
  }

  .oem-tech-table div,
  .equipment-param-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .oem-site-slider .site-visit-stage {
    height: 400px;
  }

  .oem-site-slider figcaption {
    padding: 18px;
  }

  .oem-site-slider figcaption strong {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .industry-grid span {
    margin-bottom: 32px;
  }

  .application-sidebar {
    position: static;
  }

  .application-hero img {
    min-height: 360px;
  }

  .seo-topic-grid {
    grid-template-columns: 1fr;
  }

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

/* Filter press hero: keep the plant image full-bleed instead of inheriting the
   generic two-column product-detail layout. */
html body main > section.detail-hero.equipment-hero.customer-system-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: clamp(650px, calc(100svh - 72px), 750px);
  margin: 0;
  padding: clamp(46px, 6vh, 62px) clamp(28px, 7vw, 108px);
  overflow: hidden;
  color: #ffffff;
  background: #15232d;
}

html body main > section.customer-system-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 21, 31, 0.58) 0%, rgba(7, 21, 31, 0.42) 40%, rgba(7, 21, 31, 0.12) 70%, rgba(7, 21, 31, 0.02) 100%),
    linear-gradient(0deg, rgba(7, 20, 29, 0.14), rgba(7, 20, 29, 0.01) 62%, rgba(7, 20, 29, 0.05));
}

html body main > section.customer-system-hero > img.equipment-hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center 48%;
  box-shadow: none;
}

html body main > section.customer-system-hero > .equipment-hero-copy {
  position: relative;
  z-index: 2;
  width: min(830px, 72vw);
  max-width: 100%;
  margin: 0;
  padding: 0;
}

html body main > section.customer-system-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(42px, 3.7vw, 56px);
  line-height: 1.03;
}

html body main > section.customer-system-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.52;
}

/* Filter plate hero: retain the full workshop image while giving the
   specification-led copy enough contrast on the left. */
html body main > section.filter-plate-system-hero {
  min-height: clamp(610px, calc(100svh - 72px), 720px);
}

html body main > section.filter-plate-system-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 21, 31, 0.78) 0%, rgba(7, 21, 31, 0.62) 38%, rgba(7, 21, 31, 0.2) 68%, rgba(7, 21, 31, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 20, 29, 0.15), rgba(7, 20, 29, 0.02) 62%, rgba(7, 20, 29, 0.07));
}

html body main > section.filter-plate-system-hero > img.equipment-hero-background {
  object-position: center center;
}

html body main > section.filter-plate-system-hero > .equipment-hero-copy {
  width: min(760px, 67vw);
}

/* Filter plate main page: follow the buyer's decision path from range and
   selection through fit confirmation, specifications and production proof. */
.filter-plate-main {
  display: flex;
  flex-direction: column;
}

.filter-plate-main > .filter-plate-system-hero {
  order: 1;
}

.filter-plate-main > .proof-strip {
  order: 2;
}

.filter-plate-main > .plate-range-section {
  order: 3;
}

.filter-plate-main > .plate-choice-section {
  order: 5;
}

.filter-plate-main > .fit-confirmation-section {
  order: 6;
}

.filter-plate-main > .spec-section {
  order: 7;
}

.filter-plate-main > .plate-oem-section {
  order: 4;
}

.filter-plate-main > .factory-process {
  order: 8;
}

.filter-plate-main > .application-section {
  order: 9;
}

.filter-plate-main > .quote-requirements {
  order: 10;
}

.filter-plate-main > .plate-faq-section {
  order: 11;
}

.filter-plate-main > .inner-cta {
  order: 12;
}

html body main.filter-plate-main > section.filter-plate-system-hero {
  min-height: clamp(570px, calc(100svh - 72px), 660px);
}

html body main.filter-plate-main > section.filter-plate-system-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 21, 31, 0.76) 0%, rgba(7, 21, 31, 0.61) 42%, rgba(7, 21, 31, 0.2) 72%, rgba(7, 21, 31, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 20, 29, 0.12), rgba(7, 20, 29, 0.01) 64%, rgba(7, 20, 29, 0.05));
}

.filter-plate-main .proof-strip article {
  min-height: 132px;
  padding: 24px 26px;
}

.filter-plate-main .proof-strip strong {
  font-size: 21px;
}

.filter-plate-main .section-heading.wide {
  max-width: 940px;
}

.filter-plate-main .section-heading h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08;
}

.filter-plate-main .section-heading > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.filter-plate-main .plate-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.filter-plate-main .plate-gallery-grid article {
  box-shadow: 0 10px 28px rgba(24, 33, 43, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-plate-main .plate-gallery-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 95, 34, 0.45);
  box-shadow: 0 18px 36px rgba(24, 33, 43, 0.12);
}

.filter-plate-main .plate-gallery-grid img {
  aspect-ratio: 1.22 / 1;
}

@media (max-width: 1100px) {
  .filter-plate-main .plate-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .filter-plate-main .plate-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.filter-plate-main .plate-choice-section {
  background: #f3f6f7;
}

.filter-plate-main .fit-confirmation-section {
  background: #ffffff;
}

.filter-plate-main .plate-choice-section .feature-grid,
.filter-plate-main .fit-confirmation-section .feature-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-plate-main .plate-choice-section .feature-grid article,
.filter-plate-main .fit-confirmation-section .feature-grid article {
  min-height: 190px;
  padding: 28px 30px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.filter-plate-main .plate-choice-section .feature-grid article:last-child,
.filter-plate-main .fit-confirmation-section .feature-grid article:last-child {
  border-right: 0;
}

.filter-plate-main .plate-choice-section .feature-grid article::before,
.filter-plate-main .fit-confirmation-section .feature-grid article::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--orange);
  content: "";
}

.filter-plate-main .plate-choice-section h3,
.filter-plate-main .fit-confirmation-section h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.filter-plate-main .spec-note {
  max-width: 460px;
  margin-top: 18px;
  color: #cfd9df;
  font-size: 15px;
  line-height: 1.6;
}

.filter-plate-main .plate-oem-section {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(48px, 5.5vw, 76px);
  color: var(--ink);
  background: #f3f6f7;
}

.filter-plate-main .plate-oem-section .section-heading {
  display: block;
  max-width: 940px;
  margin-bottom: 28px;
}

.filter-plate-main .plate-oem-section .section-heading .eyebrow {
  margin-bottom: 10px;
}

.filter-plate-main .plate-oem-section .section-heading h2 {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.08;
}

.filter-plate-main .plate-oem-section .section-heading p:not(.eyebrow) {
  max-width: 830px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.filter-plate-main .plate-oem-section .oem-panel-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 16px;
}

.filter-plate-main .plate-oem-section .oem-panel-card,
.filter-plate-main .plate-oem-section .oem-panel-card.featured {
  display: grid;
  grid-row: auto;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(24, 33, 43, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-plate-main .plate-oem-section .oem-panel-card::after {
  display: none;
}

.filter-plate-main .plate-oem-section .oem-panel-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  transform: none;
  transition: transform 240ms ease;
}

.filter-plate-main .plate-oem-section .oem-panel-card div {
  position: static;
  display: block;
  padding: 20px 18px 22px;
  transform: none;
}

.filter-plate-main .plate-oem-section .oem-panel-card span {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 11px;
}

.filter-plate-main .plate-oem-section .oem-panel-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(20px, 1.5vw, 25px);
}

.filter-plate-main .plate-oem-section .oem-panel-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  opacity: 1;
  transform: none;
}

.filter-plate-main .plate-oem-section .oem-panel-card:hover,
.filter-plate-main .plate-oem-section .oem-panel-card:focus-visible {
  border-color: rgba(241, 95, 34, 0.48);
  box-shadow: 0 18px 36px rgba(24, 33, 43, 0.12);
  transform: translateY(-4px);
}

.filter-plate-main .plate-oem-section .oem-panel-card:hover img,
.filter-plate-main .plate-oem-section .oem-panel-card:focus-visible img {
  filter: none;
  transform: scale(1.025);
}

@media (max-width: 1240px) {
  .filter-plate-main .plate-oem-section .oem-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .filter-plate-main .plate-oem-section .oem-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .filter-plate-main .plate-oem-section .oem-panel-grid {
    grid-template-columns: 1fr;
  }
}

.filter-plate-main .application-section {
  background: #f3f6f7;
}

.filter-plate-main .application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-plate-main .application-grid article {
  min-height: 180px;
  padding: 26px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.filter-plate-main .application-grid article:last-child {
  border-right: 0;
}

.filter-plate-main .application-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.filter-plate-main .site-visit-showcase {
  margin-top: 46px;
}

.filter-plate-main .quote-requirements .checklist-grid article {
  background: #ffffff;
  border-top: 3px solid var(--orange);
  border-radius: 0;
}

.filter-plate-main .plate-faq-section .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-plate-main .plate-faq-section .faq-grid article {
  min-height: 170px;
  background: #ffffff;
  border-radius: 0;
}

@media (max-width: 760px) {
  html body main > section.detail-hero.equipment-hero.customer-system-hero {
    align-items: end;
    min-height: 760px;
    padding: 94px 22px 44px;
  }

  html body main > section.customer-system-hero::after {
    background:
      linear-gradient(0deg, rgba(7, 21, 31, 0.96) 0%, rgba(7, 21, 31, 0.82) 60%, rgba(7, 21, 31, 0.28) 100%),
      linear-gradient(90deg, rgba(7, 21, 31, 0.4), rgba(7, 21, 31, 0.12));
  }

  html body main > section.customer-system-hero > img.equipment-hero-background {
    object-position: 58% center;
  }

  html body main > section.customer-system-hero > .equipment-hero-copy {
    width: 100%;
  }

  html body main > section.customer-system-hero h1 {
    font-size: 39px;
  }

  html body main > section.filter-plate-system-hero {
    min-height: 760px;
  }

  html body main > section.filter-plate-system-hero::after {
    background:
      linear-gradient(0deg, rgba(7, 21, 31, 0.97) 0%, rgba(7, 21, 31, 0.82) 58%, rgba(7, 21, 31, 0.2) 100%),
      linear-gradient(90deg, rgba(7, 21, 31, 0.34), rgba(7, 21, 31, 0.08));
  }

  html body main > section.filter-plate-system-hero > img.equipment-hero-background {
    object-position: 54% center;
  }

  html body main.filter-plate-main > section.filter-plate-system-hero {
    min-height: 780px;
  }

  .filter-plate-main .proof-strip {
    grid-template-columns: 1fr;
  }

  .filter-plate-main .proof-strip article {
    min-height: 0;
  }

  .filter-plate-main .plate-choice-section .feature-grid,
  .filter-plate-main .fit-confirmation-section .feature-grid,
  .filter-plate-main .application-grid,
  .filter-plate-main .plate-faq-section .faq-grid {
    grid-template-columns: 1fr;
  }

  .filter-plate-main .plate-choice-section .feature-grid article,
  .filter-plate-main .fit-confirmation-section .feature-grid article,
  .filter-plate-main .application-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .filter-plate-main .plate-choice-section .feature-grid article:last-child,
  .filter-plate-main .fit-confirmation-section .feature-grid article:last-child,
  .filter-plate-main .application-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .home-machine-carousel .site-visit-stage {
    height: 520px;
  }

  .home-machine-carousel.product-center-carousel .site-visit-stage {
    height: 520px;
  }

  .home-machine-carousel.product-center-carousel .site-visit-slide,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-prev,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-active,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-next {
    flex-basis: 100%;
  }

  .home-machine-carousel .site-visit-slide.is-active {
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px;
    transform: none;
  }

  .home-machine-carousel .site-visit-slide.is-next {
    display: none;
  }

  .home-machine-carousel .site-visit-slide.is-active img {
    top: 25%;
    right: 4%;
    bottom: 18%;
    left: 4%;
    width: 92%;
    height: 56%;
  }

  .product-center-carousel .site-visit-slide.is-active img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .product-center-carousel figcaption {
    justify-content: flex-end;
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, rgba(15, 66, 123, 0) 35%, rgba(15, 66, 123, 0.82) 100%);
  }

  .home-plate-grid {
    --plate-gap: 16px;
    --plate-gap-half: 8px;
    --plate-gap-total: 272px;
  }

  .home-plate-track {
    width: calc(900% + var(--plate-gap));
    animation-duration: 34s;
  }
}

@media (max-width: 700px) {
  .home-machine-carousel {
    margin-top: 24px;
  }

  .home-machine-carousel .site-visit-stage {
    height: 500px;
  }

  .home-machine-carousel.product-center-carousel .site-visit-stage {
    height: 500px;
  }

  .home-machine-carousel figcaption strong {
    font-size: 30px;
  }

  .home-machine-carousel figcaption p {
    font-size: 14px;
  }

  .home-machine-carousel .site-visit-arrow {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .home-machine-carousel .site-visit-arrow.prev {
    left: 18px;
  }

  .home-machine-carousel .site-visit-arrow.next {
    right: 18px;
  }

  .product-center-label {
    margin-top: 30px;
    text-align: left;
  }

  .product-center-label h3 {
    font-size: 30px;
  }

  .home-plate-grid {
    --plate-gap: 14px;
    --plate-gap-half: 7px;
    --plate-gap-total: 238px;
  }

  .home-plate-track {
    width: calc(1800% + var(--plate-gap));
    animation-duration: 38s;
  }

  .home-plate-card span {
    position: static;
    opacity: 1;
    transform: none;
    background: #ffffff;
    color: #526676;
  }
}

@media (max-width: 1100px) {
  .home-project-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-project-viewport {
    margin-right: 0;
  }

  .home-project-track {
    gap: 24px;
  }

  .home-project-card {
    flex-basis: calc((100% - 24px) / 2);
    padding-right: 24px;
  }

  .home-project-arrow {
    top: 92px;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(19, 33, 47, 0.16);
    font-size: 38px;
  }

  .home-project-arrow.prev {
    left: 12px;
  }

  .home-project-arrow.next {
    right: 12px;
  }
}

@media (max-width: 700px) {
  .home-project-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .home-project-head h2 {
    font-size: 34px;
  }

  .home-project-head p:not(.eyebrow) {
    font-size: 15px;
  }

  .home-project-track {
    gap: 18px;
  }

  .home-project-card {
    flex-basis: 100%;
    padding-right: 0;
    border-right: 0;
  }

  .home-project-card img {
    aspect-ratio: 16 / 10;
  }

  .home-project-card h3 {
    font-size: 24px;
  }

  .home-project-arrow {
    top: 86px;
  }
}

@media (max-width: 900px) {
  .project-story-hero,
  .project-story-layout {
    padding-left: 22px;
    padding-right: 22px;
  }

  .project-story-lead {
    padding-left: 22px;
    padding-right: 22px;
  }

  .project-story-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-story-summary {
    position: static;
    order: 2;
  }

  .project-story-content {
    order: 1;
  }

  .project-story-lead img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .story-photo-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .project-story-hero {
    padding-top: 46px;
  }

  .project-story-hero h1 {
    font-size: 40px;
  }

  .project-story-hero > p:not(.eyebrow),
  .project-story-content p,
  .project-story-content li {
    font-size: 16px;
  }

  .story-lede {
    font-size: 18px;
  }

  .story-inline-photo img,
  .story-wide-photo img,
  .story-photo-row img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1100px) {
  .technical-case-head {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 32px 32px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 252, 0.98) 54%, rgba(27, 80, 121, 0.98) 54%, rgba(27, 80, 121, 0.98) 100%),
      radial-gradient(circle at 18% 28%, rgba(31, 91, 138, 0.1), transparent 34%);
  }

  .technical-case-copy {
    padding: 48px 0 34px;
  }

  .technical-case-head .technical-case-facts {
    grid-template-columns: 1fr;
  }

  .technical-case-head .technical-case-facts div,
  .technical-case-head .technical-case-facts div:nth-child(odd),
  .technical-case-head .technical-case-facts div:nth-child(n + 3) {
    border: 0;
  }

  .technical-case-head .technical-case-hero-image {
    min-height: 360px;
  }

  .technical-case-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-case-facts div:nth-child(odd) {
    border-left: 0;
  }

  .technical-case-facts div:nth-child(n + 3) {
    border-top: 1px solid #d7dde2;
  }

  .technical-case-body {
    grid-template-columns: 1fr;
    padding-right: 32px;
    padding-left: 32px;
  }

  .technical-case-side {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .technical-case-head,
  .technical-case-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .technical-case-head {
    padding-top: 46px;
    padding-bottom: 22px;
  }

  .technical-case-head h1 {
    font-size: 34px;
  }

  .technical-case-copy {
    padding: 0 0 26px;
  }

  .technical-case-head .technical-case-facts div,
  .technical-case-head .technical-case-facts div:nth-child(odd),
  .technical-case-head .technical-case-facts div:nth-child(n + 3) {
    display: block;
    border: 0;
  }

  .technical-case-head .technical-case-facts dt {
    margin-bottom: 2px;
  }

  .technical-case-facts,
  .technical-case-side,
  .technical-photo-row {
    grid-template-columns: 1fr;
  }

  .technical-case-facts div,
  .technical-case-facts div:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid #d7dde2;
  }

  .technical-case-facts div:first-child {
    border-top: 0;
  }

  .technical-case-hero-image {
    padding-left: 22px;
    padding-right: 22px;
  }

  .technical-case-head .technical-case-hero-image {
    min-height: 0;
    padding: 0;
  }

  .technical-case-head .technical-case-hero-image::before {
    display: none;
  }

  .technical-case-hero-image img,
  .technical-case-image img,
  .technical-photo-row img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .technical-case-head .technical-case-hero-image img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .technical-case-head .technical-case-hero-image figcaption {
    position: static;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: none;
  }

  .technical-case-table th,
  .technical-case-table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .technical-case-table td {
    padding-top: 0;
  }

  .technical-case-main p,
  .technical-case-main li,
  .technical-case-table td {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .customer-system-hero {
    min-height: 680px;
    padding: 88px clamp(24px, 6vw, 64px) 64px;
    background: #17222b;
  }

  .customer-system-hero .equipment-hero-copy {
    width: min(760px, 100%);
  }
}

@media (max-width: 700px) {
  .customer-system-hero {
    min-height: 760px;
    align-items: end;
    padding: 86px 20px 48px;
  }

  .customer-system-hero::after {
    background:
      linear-gradient(0deg, rgba(8, 21, 31, 0.94) 0%, rgba(8, 21, 31, 0.8) 56%, rgba(8, 21, 31, 0.3) 100%),
      linear-gradient(90deg, rgba(8, 21, 31, 0.45), rgba(8, 21, 31, 0.18));
  }

  .customer-system-hero > .equipment-hero-background {
    object-position: 56% center;
  }

  .customer-system-hero h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  .customer-system-hero p:not(.eyebrow):not(.breadcrumb) {
    font-size: 16px;
    line-height: 1.55;
  }

  .customer-system-hero .size-strip {
    gap: 8px;
  }

  .customer-system-hero .size-strip span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }
}

/* Filter press buyer journey: application, evidence and direct-answer content. */
.filter-press-intent {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding: clamp(64px, 7vw, 96px) max(44px, calc((100vw - 1180px) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

#filter-press-intent-title,
#product-details,
#technical-parameters,
#related-filter-press-projects-title,
#quote-checklist,
#filter-press-faq-title {
  scroll-margin-top: 96px;
}

.filter-press-intent .intent-heading {
  position: sticky;
  top: 104px;
}

.filter-press-intent h2,
.related-filter-press-projects h2,
.filter-press-faq h2 {
  max-width: 860px;
  margin: 8px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.filter-press-intent .intent-heading > p:not(.eyebrow),
.related-filter-press-projects .section-heading > p:not(.eyebrow),
.filter-press-faq .faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.filter-press-intent .text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--orange-dark);
  font-weight: 750;
}

.application-path-list {
  border-top: 1px solid var(--ink);
}

.application-path {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: start;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease, color 180ms ease;
}

.application-path:hover,
.application-path:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  color: var(--orange-dark);
  background: #fff8f4;
}

.application-path .path-index {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.application-path strong,
.application-path small {
  display: block;
}

.application-path strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.application-path small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.application-path .path-arrow {
  color: var(--orange);
  font-size: 22px;
  transition: transform 180ms ease;
}

.application-path:hover .path-arrow,
.application-path:focus-visible .path-arrow {
  transform: translateX(4px);
}

.related-filter-press-projects {
  padding: clamp(64px, 7vw, 96px) max(44px, calc((100vw - 1180px) / 2));
  background: var(--white);
  border-top: 1px solid var(--line);
}

.related-filter-press-projects .section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.related-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.related-project-grid > a {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.related-project-grid > a:first-child {
  padding-left: 0;
}

.related-project-grid > a:last-child {
  padding-right: 0;
  border-right: 0;
}

.related-project-grid > a:hover,
.related-project-grid > a:focus-visible {
  background: #f8fafb;
}

.related-project-grid figure {
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  overflow: hidden;
  background: var(--soft);
}

.related-project-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.related-project-grid > a:hover img,
.related-project-grid > a:focus-visible img {
  transform: scale(1.035);
}

.related-project-grid .project-type {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-project-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.related-project-grid h3 + p {
  min-height: 72px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.related-project-grid a > span {
  color: var(--orange-dark);
  font-weight: 750;
}

.filter-press-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(64px, 7vw, 96px) max(44px, calc((100vw - 1180px) / 2));
  background: #eef2f3;
}

.filter-press-faq .faq-heading {
  align-self: start;
}

.filter-press-faq .faq-list {
  border-top: 1px solid var(--ink);
}

.filter-press-faq details {
  border-bottom: 1px solid #cfd8dd;
}

.filter-press-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.filter-press-faq summary::-webkit-details-marker {
  display: none;
}

.filter-press-faq summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.filter-press-faq details[open] summary::after {
  content: "\2212";
}

.filter-press-faq details p {
  max-width: 760px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 980px) {
  .filter-press-intent,
  .filter-press-faq {
    grid-template-columns: 1fr;
  }

  .filter-press-intent .intent-heading {
    position: static;
  }

  .related-project-grid {
    grid-template-columns: 1fr;
  }

  .related-project-grid > a,
  .related-project-grid > a:first-child,
  .related-project-grid > a:last-child {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    column-gap: 28px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .related-project-grid figure {
    grid-row: 1 / span 5;
    margin: 0;
  }

  .related-project-grid h3 + p {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .filter-press-intent,
  .related-filter-press-projects,
  .filter-press-faq {
    padding-right: 20px;
    padding-left: 20px;
  }

  .filter-press-intent h2,
  .related-filter-press-projects h2,
  .filter-press-faq h2 {
    font-size: 34px;
  }

  .application-path {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    gap: 10px;
  }

  .related-project-grid > a,
  .related-project-grid > a:first-child,
  .related-project-grid > a:last-child {
    display: block;
  }

  .related-project-grid figure {
    margin-bottom: 20px;
  }
}


/* Filter cloth full-bleed hero */
html body main > section.filter-cloth-system-hero {
  min-height: clamp(650px, calc(100svh - 72px), 760px);
}

html body main > section.filter-cloth-system-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 21, 31, 0.04) 0%, rgba(7, 21, 31, 0.12) 38%, rgba(7, 21, 31, 0.72) 72%, rgba(7, 21, 31, 0.9) 100%),
    linear-gradient(0deg, rgba(7, 20, 29, 0.28), rgba(7, 20, 29, 0.02) 58%, rgba(7, 20, 29, 0.08));
}

html body main > section.filter-cloth-system-hero > img.equipment-hero-background {
  object-position: center center;
}

html body main > section.filter-cloth-system-hero > .equipment-hero-copy {
  width: min(700px, 57vw);
  margin-left: auto;
  padding: clamp(26px, 3vw, 40px);
  background: rgba(8, 22, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid var(--orange);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

html body main > section.filter-cloth-system-hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 4vw, 60px);
}

html body main > section.filter-cloth-system-hero .hero-proof-list {
  max-width: 680px;
  margin-top: 22px;
}

html body main > section.filter-cloth-system-hero .hero-proof-list span {
  min-height: 34px;
  color: #fff5ef;
  background: rgba(241, 95, 34, 0.26);
  border-color: rgba(255, 184, 143, 0.58);
}

html body main > section.filter-cloth-system-hero .button.secondary {
  color: #ffffff;
  background: rgba(8, 22, 31, 0.5);
  border-color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  html body main > section.filter-cloth-system-hero {
    align-items: end;
    min-height: 760px;
    padding: 100px 24px 42px;
  }

  html body main > section.filter-cloth-system-hero::after {
    background:
      linear-gradient(0deg, rgba(7, 21, 31, 0.96) 0%, rgba(7, 21, 31, 0.78) 55%, rgba(7, 21, 31, 0.16) 100%),
      linear-gradient(90deg, rgba(7, 21, 31, 0.2), rgba(7, 21, 31, 0.04));
  }

  html body main > section.filter-cloth-system-hero > img.equipment-hero-background {
    object-position: 42% center;
  }

  html body main > section.filter-cloth-system-hero > .equipment-hero-copy {
    width: 100%;
    margin: 0;
    padding: 26px;
    background: rgba(8, 22, 31, 0.7);
  }
}

@media (max-width: 560px) {
  html body main > section.filter-cloth-system-hero {
    min-height: 820px;
    padding: 88px 18px 28px;
  }

  html body main > section.filter-cloth-system-hero > .equipment-hero-copy {
    padding: 22px 18px;
  }

  html body main > section.filter-cloth-system-hero h1 {
    font-size: 34px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  html body main > section.filter-cloth-system-hero .hero-proof-list span {
    width: 100%;
  }
}
.footer-email {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffe7d9;
  background: rgba(241, 95, 34, 0.12);
  border: 1px solid rgba(241, 95, 34, 0.58);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.footer-email:hover {
  color: #ffffff;
  background: rgba(241, 95, 34, 0.24);
  border-color: var(--orange);
}
/* WordPress inquiry form feedback */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.quote-form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #53687a;
  font-size: 14px;
  font-weight: 700;
}

.quote-form-status[data-state="success"] { color: #18764d; }
.quote-form-status[data-state="error"] { color: #b53621; }
.quote-form-status[data-state="pending"] { color: #8a4b11; }
.quote-form button:disabled { cursor: wait; opacity: 0.7; }
/* Responsive primary navigation */
.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
.mobile-nav-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .site-header,
  .home-page .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  html body .site-header .main-nav,
  html body.home-page .site-header .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 30;
    display: none;
    width: auto;
    max-height: calc(100vh - 92px);
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(12, 27, 38, 0.2);
    backdrop-filter: blur(16px);
  }

  html body .site-header.mobile-nav-open .main-nav,
  html body.home-page .site-header.mobile-nav-open .main-nav {
    display: flex;
  }

  .site-header .main-nav .nav-item {
    display: block;
  }

  .site-header .main-nav .nav-link {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    justify-content: space-between;
    color: var(--ink);
    border-radius: 9px;
  }

  .site-header .main-nav .nav-link:hover {
    color: var(--orange);
    background: #fff2ea;
  }

  .site-header .main-nav .nav-caret,
  .site-header .main-nav .mega-menu {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .site-header,
  .home-page .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  html body .site-header .main-nav,
  html body.home-page .site-header .main-nav {
    right: 10px;
    left: 10px;
  }
}
/* Mobile equipment carousel clarity */
@media (max-width: 1100px) {
  .home-machine-carousel.product-center-carousel .site-visit-slide::after,
  .home-machine-carousel.product-center-carousel .site-visit-slide:hover::after,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-active::after {
    background: transparent;
    opacity: 0;
  }

  .home-machine-carousel.product-center-carousel figcaption,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-active figcaption,
  .home-machine-carousel.product-center-carousel .site-visit-slide.is-next figcaption {
    background: linear-gradient(
      180deg,
      rgba(7, 21, 31, 0) 26%,
      rgba(7, 21, 31, 0.18) 48%,
      rgba(7, 21, 31, 0.92) 100%
    );
  }
}

/* About DOFIL editorial story */
.about-detail-page {
  background: #f1eee7;
}

.about-story-main {
  overflow: hidden;
}

html body main > section.about-story-hero {
  display: grid;
  grid-template-columns: 72px minmax(320px, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 5vw, 88px);
  min-height: min(920px, calc(100vh - 78px));
  padding: clamp(118px, 10vw, 168px) clamp(28px, 6vw, 104px) clamp(76px, 8vw, 130px);
  background:
    linear-gradient(110deg, rgba(241, 95, 34, 0.055), transparent 34%),
    #f1eee7;
}

.about-story-rail {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  color: #6f7d86;
  border-left: 1px solid rgba(20, 34, 43, 0.24);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-story-rail span:last-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-story-lead {
  position: relative;
  z-index: 1;
}

.about-story-lead h1 {
  max-width: 700px;
  margin: 20px 0 28px;
  color: #15222d;
  font-size: clamp(50px, 5.6vw, 86px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-story-intro {
  max-width: 520px;
  margin: 0;
  color: #425566;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.55;
}

.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  padding-bottom: 7px;
  color: #15222d;
  border-bottom: 1px solid #15222d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-story-link span {
  color: var(--orange);
  font-size: 20px;
}

.about-story-hero-image {
  position: relative;
  margin: 0;
}

.about-story-hero-image::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  pointer-events: none;
}

.about-story-hero-image img {
  display: block;
  width: 100%;
  min-height: 570px;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.about-story-hero-image figcaption,
.about-story-inline-image figcaption {
  margin-top: 13px;
  color: #647480;
  font-size: 12px;
  letter-spacing: 0.02em;
}

html body main > section.about-story-body {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(54px, 8vw, 138px);
  padding: clamp(100px, 11vw, 172px) clamp(28px, 7vw, 120px);
  background: #ffffff;
}

.about-story-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 22px;
  border-top: 2px solid var(--orange);
}

.about-story-aside h2 {
  margin: 16px 0 38px;
  color: #16232e;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.about-story-year {
  color: #71808b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-story-copy > p {
  margin: 0 0 48px;
  color: #334756;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.86;
}

.about-story-copy > p:first-child {
  color: #15222d;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.72;
}

.about-story-industries {
  margin: 76px 0 86px;
  padding: 38px 0 34px;
  border-top: 1px solid #cfd5d8;
  border-bottom: 1px solid #cfd5d8;
}

.about-story-industries h2 {
  max-width: 620px;
  margin: 12px 0 30px;
  color: #15222d;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.about-story-industries ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-story-industries li {
  position: relative;
  padding: 13px 0 13px 19px;
  color: #3e5261;
  border-bottom: 1px solid #e1e5e7;
  font-size: 15px;
  font-weight: 700;
}

.about-story-industries li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.about-story-inline-image {
  margin: 0 0 72px;
}

.about-story-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

html body main > section.about-story-commitment {
  display: flex;
  min-height: 660px;
  padding: clamp(96px, 11vw, 172px) clamp(32px, 10vw, 180px);
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 19, 28, 0.97), rgba(7, 19, 28, 0.72)),
    url("assets/filter-plate-evidence/hero-ght2500-production.webp") center / cover no-repeat;
}

.about-story-commitment .eyebrow {
  color: #ffb28d;
}

.about-story-commitment h2 {
  max-width: 940px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(46px, 6.3vw, 94px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-story-signoff {
  align-self: flex-end;
  margin: 72px 0 0;
  color: #ff7a3e;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

html body main > section.about-story-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(72px, 8vw, 112px) clamp(28px, 8vw, 136px);
  background: #f1eee7;
}

.about-story-contact h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: #15222d;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.about-story-contact .button {
  flex: 0 0 auto;
}

@media (max-width: 1050px) {
  html body main > section.about-story-hero {
    grid-template-columns: 52px minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 30px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .about-story-lead h1 {
    font-size: clamp(46px, 6vw, 68px);
  }
}

@media (max-width: 820px) {
  html body main > section.about-story-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 108px 24px 72px;
  }

  .about-story-rail {
    min-height: auto;
    padding: 0 0 13px;
    flex-direction: row;
    border-top: 1px solid rgba(20, 34, 43, 0.24);
    border-left: 0;
  }

  .about-story-rail span:last-child {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .about-story-lead h1 {
    max-width: 660px;
    font-size: clamp(44px, 11vw, 72px);
  }

  .about-story-hero-image {
    margin-top: 24px;
  }

  .about-story-hero-image img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  html body main > section.about-story-body {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 90px 24px;
  }

  .about-story-aside {
    position: static;
    max-width: 520px;
  }

  html body main > section.about-story-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  html body main > section.about-story-hero {
    padding: 92px 18px 58px;
  }

  .about-story-lead h1 {
    margin-top: 16px;
    font-size: 44px;
    line-height: 1.01;
  }

  .about-story-link {
    margin-top: 30px;
  }

  .about-story-hero-image::before {
    top: -10px;
    right: -10px;
  }

  .about-story-hero-image img {
    aspect-ratio: 4 / 5;
  }

  html body main > section.about-story-body {
    padding: 72px 18px;
  }

  .about-story-copy > p {
    margin-bottom: 38px;
    font-size: 17px;
    line-height: 1.78;
  }

  .about-story-copy > p:first-child {
    font-size: 20px;
    line-height: 1.66;
  }

  .about-story-industries {
    margin: 58px 0 64px;
  }

  .about-story-industries ul {
    grid-template-columns: 1fr;
  }

  html body main > section.about-story-commitment {
    min-height: 620px;
    padding: 80px 18px 54px;
  }

  .about-story-commitment h2 {
    font-size: 43px;
  }

  .about-story-signoff {
    align-self: flex-start;
    line-height: 1.5;
  }

  html body main > section.about-story-contact {
    padding: 66px 18px;
  }
}


/* Contact DOFIL standalone page */
.contact-detail-page {
  background: #edf1f2;
}

.contact-page-main {
  overflow: hidden;
}

html body main > section.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(50px, 8vw, 130px);
  min-height: min(830px, calc(100vh - 78px));
  padding: clamp(128px, 11vw, 178px) clamp(30px, 8vw, 142px) clamp(80px, 9vw, 136px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 19, 28, 0.97) 0%, rgba(7, 19, 28, 0.91) 48%, rgba(7, 19, 28, 0.66) 100%),
    url("assets/filter-press/evidence/factory-assembly-filter-press-line.webp") center / cover no-repeat;
}

.contact-hero::after {
  content: "CONTACT";
  position: absolute;
  right: -0.04em;
  bottom: -0.19em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.contact-hero-copy,
.contact-direct {
  position: relative;
  z-index: 1;
}

.contact-hero .eyebrow {
  color: #ffb18b;
}

.contact-hero h1 {
  max-width: 800px;
  margin: 20px 0 30px;
  color: #ffffff;
  font-size: clamp(54px, 6.3vw, 96px);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: #cbd5dc;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.7;
}

.contact-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding-bottom: 8px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.contact-scroll-link span {
  color: #ff7a3e;
  font-size: 20px;
}

.contact-direct {
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.contact-direct-label {
  margin: 18px 0 12px;
  color: #9eacb6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-method {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 0.2s ease, background 0.2s ease;
}

.contact-method:hover {
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-method > span {
  color: #ff7a3e;
  font-size: 12px;
  font-weight: 850;
}

.contact-method div {
  display: grid;
  gap: 6px;
}

.contact-method small {
  color: #9eacb6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: clamp(17px, 1.4vw, 22px);
  overflow-wrap: anywhere;
}

.contact-method b {
  color: #ff7a3e;
  font-size: 20px;
  font-weight: 500;
}

html body main > section.contact-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: start;
  gap: clamp(54px, 9vw, 150px);
  padding: clamp(100px, 11vw, 174px) clamp(30px, 9vw, 154px);
  background: #edf1f2;
}

.contact-inquiry-intro h2 {
  max-width: 680px;
  margin: 16px 0 28px;
  color: #15222d;
  font-size: clamp(40px, 4.6vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.contact-inquiry-intro > p:not(.eyebrow) {
  max-width: 650px;
  color: #536776;
  font-size: 17px;
  line-height: 1.72;
}

.contact-checklist {
  margin-top: 48px;
  border-top: 1px solid #bac5ca;
}

.contact-checklist div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-bottom: 1px solid #cbd3d7;
}

.contact-checklist span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.contact-checklist p {
  margin: 0;
  color: #263946;
  font-size: 15px;
  font-weight: 750;
}

.contact-file-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
  font-size: 14px !important;
}

.contact-form.quote-form {
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 0;
  box-shadow: 0 28px 70px rgba(10, 30, 42, 0.12);
}

.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7dee1;
}

.contact-form-heading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-heading strong {
  color: #15222d;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.contact-form textarea {
  width: 100%;
  min-height: 170px;
  padding: 13px 14px;
  resize: vertical;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  line-height: 1.5;
}

.contact-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(241, 95, 34, 0.28);
  border-color: var(--orange);
}

.contact-form button {
  min-height: 52px;
  margin-top: 4px;
}

.contact-form-assurance {
  margin: 0;
  color: #687b88;
  font-size: 12px;
  line-height: 1.55;
}

html body main > section.contact-review-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 132px);
  padding: clamp(94px, 10vw, 152px) clamp(30px, 9vw, 154px);
  color: #ffffff;
  background: #111a22;
}

.contact-review-heading h2 {
  max-width: 520px;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.contact-review-heading .eyebrow {
  color: #ffb18b;
}

.contact-review-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-review-steps article {
  display: grid;
  grid-template-columns: 46px minmax(150px, 0.72fr) minmax(200px, 1.28fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-review-steps span {
  color: #ff7a3e;
  font-size: 12px;
  font-weight: 850;
}

.contact-review-steps h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
}

.contact-review-steps p {
  margin: 0;
  color: #aebbc4;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  html body main > section.contact-hero,
  html body main > section.contact-inquiry,
  html body main > section.contact-review-process {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    width: min(100%, 650px);
  }

  html body main > section.contact-inquiry,
  html body main > section.contact-review-process {
    gap: 64px;
  }
}

@media (max-width: 620px) {
  html body main > section.contact-hero {
    min-height: 0;
    padding: 108px 18px 62px;
  }

  .contact-hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .contact-method {
    min-height: 86px;
  }

  .contact-method strong {
    font-size: 16px;
  }

  html body main > section.contact-inquiry,
  html body main > section.contact-review-process {
    padding: 78px 18px;
  }

  .contact-inquiry-intro h2,
  .contact-review-heading h2 {
    font-size: 40px;
  }

  .contact-form.quote-form {
    padding: 26px 20px;
  }

  .contact-review-steps article {
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
  }

  .contact-review-steps p {
    grid-column: 2;
  }
}


/* Compact editorial layout for product articles on phones. */
@media (max-width: 700px) {
  .product-article-page .technical-case-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 18px 22px;
    background: linear-gradient(180deg, #f5f8fa 0%, #ffffff 100%);
    border-top-width: 3px;
  }

  .product-article-page .technical-case-head::after {
    width: 92px;
    height: 3px;
  }

  .product-article-page .technical-case-copy {
    width: 100%;
    padding: 0;
  }

  .product-article-page .case-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 7px;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .product-article-page .technical-case-head h1 {
    margin: 14px 0 20px;
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .product-article-page .technical-case-head .technical-case-facts {
    gap: 0;
    overflow: hidden;
    border: 1px solid #dfe6eb;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
  }

  .product-article-page .technical-case-head .technical-case-facts div,
  .product-article-page .technical-case-head .technical-case-facts div:nth-child(odd),
  .product-article-page .technical-case-head .technical-case-facts div:nth-child(n + 3) {
    display: grid;
    gap: 3px;
    padding: 11px 13px 12px;
    border-top: 1px solid #e5eaee;
  }

  .product-article-page .technical-case-head .technical-case-facts div:first-child {
    border-top: 0;
  }

  .product-article-page .technical-case-head .technical-case-facts dt {
    margin: 0;
    color: #b9471c;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }

  .product-article-page .technical-case-head .technical-case-facts dd {
    font-size: 14px;
    line-height: 1.48;
  }

  .product-article-page .technical-case-head .technical-case-hero-image {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .product-article-page .technical-case-head .technical-case-hero-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-position: center;
    box-shadow: 0 12px 28px rgba(23, 34, 45, 0.12);
  }

  .product-article-page .technical-case-head .technical-case-hero-image figcaption {
    position: static;
    margin: 8px 1px 0;
    color: #6a7985;
    font-size: 12px;
    line-height: 1.5;
  }

  .product-article-page .technical-case-body {
    gap: 38px;
    padding: 30px 18px 0;
  }

  .product-article-page .technical-case-main h2 {
    margin: 40px 0 12px;
    font-size: clamp(23px, 6.6vw, 28px);
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -0.018em;
  }

  .product-article-page .technical-case-main h2:first-child {
    margin-top: 0;
  }

  .product-article-page .technical-case-main h3 {
    margin: 26px 0 8px;
    color: #1c2b38;
    font-size: 19px;
    line-height: 1.3;
  }

  .product-article-page .technical-case-main p,
  .product-article-page .technical-case-main li,
  .product-article-page .technical-case-table td {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .product-article-page .technical-case-main p {
    margin: 0 0 15px;
  }

  .product-article-page .product-evidence-gallery {
    gap: 14px;
    margin: 22px 0 34px;
  }

  .product-article-page .product-evidence-gallery figure {
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(23, 34, 45, 0.07);
  }

  .product-article-page .product-evidence-gallery figcaption {
    min-height: 0;
    padding: 11px 12px 13px;
    font-size: 12px;
  }

  .product-article-page .technical-case-table {
    display: block;
    margin: 20px 0 32px;
    border: 0;
  }

  .product-article-page .technical-case-table tbody {
    display: grid;
    gap: 9px;
  }

  .product-article-page .technical-case-table tr {
    display: block;
    padding: 12px 13px 13px;
    border: 1px solid #e0e6eb;
    border-radius: 8px;
    background: #f8fafb;
  }

  .product-article-page .technical-case-table th,
  .product-article-page .technical-case-table td,
  .product-article-page .technical-case-table tr:first-child th,
  .product-article-page .technical-case-table tr:first-child td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }

  .product-article-page .technical-case-table th {
    margin-bottom: 4px;
    color: #b9471c;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.025em;
  }

  .product-article-page .technical-feature-list,
  .product-article-page .technical-step-list {
    gap: 12px;
    margin: 17px 0 31px;
    padding-left: 20px;
  }

  .product-article-page .technical-case-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 -18px;
    padding: 24px 18px 30px;
    background: #f3f6f8;
  }

  .product-article-page .technical-case-side > div {
    padding: 18px;
    border: 1px solid #dfe6eb;
    border-radius: 9px;
    background: #ffffff;
  }

  .product-article-page .technical-case-side > div:first-child {
    border-top: 3px solid var(--orange);
  }

  .product-article-page .technical-case-side h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .product-article-page .technical-case-side p,
  .product-article-page .technical-case-side li {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-article-page .technical-case-side div:nth-child(2) a {
    display: flex;
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 6px;
  }
}
