:root {
  --green: #06a957;
  --green-deep: #087740;
  --green-ink: #0c4f31;
  --green-soft: #eaf8f0;
  --green-wash: #f3fbf6;
  --orange: #f58200;
  --orange-deep: #984900;
  --orange-soft: #fff1df;
  --ink: #14231b;
  --muted: #40534a;
  --soft-muted: #64756d;
  --line: #dce9e2;
  --page: #f6faf8;
  --white: #ffffff;
  --shadow: 0 8px 18px rgba(10, 88, 52, 0.10);
  --focus: 0 0 0 3px rgba(245, 130, 0, 0.28);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 76px;
  --content-width: 1180px;
  --wide-content-width: 1320px;
  --z-header: 40;
  --z-backdrop: 35;
  --z-drawer: 60;
  --z-dropdown: 70;
  --z-modal: 90;
  font-family: Avenir Next, Avenir, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 3px;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: calc(var(--z-modal) + 10);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green-ink);
  font-weight: 800;
  transform: translateY(calc(-100% - 20px));
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus-visible {
  outline-color: var(--orange);
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  min-height: var(--header-height);
  padding: 8px clamp(18px, 3.5vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(6, 169, 87, 0.10);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(142px, 12vw, 164px);
}

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

.header-panel {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  min-width: 0;
}

.nav-toggle,
.nav-backdrop,
.subnav-toggle {
  display: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 18px);
  min-width: 0;
  color: #26342e;
  font-size: 14px;
  white-space: nowrap;
}

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

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 18px;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  transition: color 180ms var(--ease-out);
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 850;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: var(--z-dropdown);
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(14, 139, 78, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(10, 88, 52, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

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

.sub-menu a {
  min-height: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: inherit;
}

.sub-menu a:hover {
  color: var(--green);
  background: rgba(14, 139, 78, 0.08);
}

.sub-menu a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.language-picker {
  position: relative;
  z-index: var(--z-dropdown);
}

.lang-toggle,
.nav-cta,
.primary-btn,
.secondary-btn,
form button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.lang-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--green-deep);
  background: var(--green-soft);
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.lang-chevron {
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.language-picker.is-open .lang-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 150px;
  padding: 6px;
  border: 1px solid rgba(14, 139, 78, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(10, 88, 52, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[data-active="true"] {
  color: var(--green-deep);
  background: rgba(14, 139, 78, 0.09);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  color: var(--white);
  background: var(--green-deep);
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out);
}

.lang-toggle:hover {
  background: #d9f1e4;
}

.nav-cta:hover,
.primary-btn:hover,
form button:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

button:disabled,
button[aria-disabled="true"],
a[aria-disabled="true"] {
  opacity: 0.56;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.hero {
  position: relative;
  display: block;
  aspect-ratio: 8 / 3;
  min-height: 0;
  overflow: hidden;
  background: #a6e4e8;
}

.hero::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms var(--ease-out);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -5% 0 36%;
  height: 46%;
  background:
    linear-gradient(95deg, rgba(255,255,255,0.52), transparent 24%),
    repeating-linear-gradient(92deg, rgba(16, 131, 88, 0.22) 0 2px, transparent 2px 18px);
  clip-path: polygon(9% 100%, 30% 0, 100% 0, 100% 100%);
  opacity: 0.56;
  transform: perspective(900px) rotateX(64deg);
  transform-origin: bottom;
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 123, 83, 0.34), transparent);
  box-shadow: 0 -18px 60px rgba(255, 255, 255, 0.6);
  display: none;
}

.green-energy-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: none;
}

.green-energy-field::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27%;
  height: 110px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.34)),
    radial-gradient(ellipse at 50% 100%, rgba(38, 121, 94, 0.18), transparent 62%);
}

.green-energy-field::after {
  content: "";
  position: absolute;
  right: clamp(42px, 8vw, 128px);
  top: clamp(54px, 8vw, 112px);
  width: min(260px, 18vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0 8%, rgba(196,255,226,0.55) 22%, transparent 68%);
  filter: blur(1px);
  opacity: 0.86;
}

.green-energy-field {
  background:
    linear-gradient(100deg, transparent 0 45%, rgba(255,255,255,0.34) 52%, transparent 61%),
    radial-gradient(circle at 9% 22%, rgba(9, 119, 76, 0.10), transparent 14%);
}

.green-energy-field span {
  display: none;
}

.green-energy-field::before {
  animation: fieldDrift 9s var(--ease-out) infinite;
}

.green-energy-field::after {
  animation: solarGlow 5.5s var(--ease-out) infinite;
}

.hero-product {
  position: absolute;
  right: max(20px, calc((100vw - 1320px) / 2));
  bottom: clamp(84px, 9vw, 132px);
  width: min(300px, 22vw);
  height: min(560px, 42vw);
  perspective: none;
  filter:
    drop-shadow(0 20px 28px rgba(14, 75, 54, 0.18))
    drop-shadow(0 0 26px rgba(94, 230, 170, 0.24));
  animation: productFloat 6.5s var(--ease-out) infinite;
  display: none;
}

.hero-product > .module-shell {
  display: block;
  position: absolute;
  height: min(520px, 39vw);
  width: auto;
  transform-origin: center;
  will-change: transform;
}

.module-shell {
  position: absolute;
  transform-style: flat;
  will-change: transform;
}

.module-shell img {
  display: block;
  height: min(520px, 39vw);
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.module-shell::before,
.module-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.module-shell::before {
  z-index: 1;
  top: 8px;
  right: -13px;
  bottom: -14px;
  width: 22px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(90deg, #eef2f2 0%, #b9c1c4 28%, #69757a 58%, #d8dddd 100%);
  transform: skewY(39deg);
  opacity: 0.95;
}

.module-shell::after {
  z-index: 1;
  left: 10px;
  right: -12px;
  bottom: -19px;
  height: 22px;
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, #f2f4f4 0%, #aeb8bb 45%, #6c777c 100%);
  transform: skewX(40deg);
  opacity: 0.9;
}

.single-module-stage .module-single {
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: rotateZ(1.5deg);
  animation: singlePanel 7.2s var(--ease-out) infinite;
}

.single-module-stage .module-single::before,
.single-module-stage .module-single::after {
  display: none;
}

.shine {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(246px, 18.5vw);
  height: min(518px, 39vw);
  overflow: hidden;
  border-radius: 6px;
  pointer-events: none;
  transform: rotateZ(1.5deg);
  transform-origin: center;
}

.shine::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 44%;
  height: 140%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: lightSweep 4.8s ease-in-out infinite;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: clamp(18px, 2.6vw, 42px);
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1320px) / 2));
  color: #ffffff;
  text-shadow:
    0 1px 2px rgba(0, 32, 25, 0.82),
    0 8px 28px rgba(0, 32, 25, 0.48);
  transform: none;
}

.hero-copy-product {
  top: clamp(36px, 4.2vw, 72px);
  bottom: auto;
}

.hero-slide-scale .hero-copy {
  bottom: clamp(24px, 3vw, 48px);
  width: min(640px, calc(100% - 40px));
}

.hero-slide-scale .hero-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
}

.hero-slide-scale .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero-slide-scale .hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 16px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.52;
}

@media (min-width: 861px) {
  .hero-copy-product h2 {
    font-size: clamp(36px, 3.8vw, 56px);
  }

  .hero-copy-product p:not(.eyebrow) {
    margin-top: 18px;
    font-size: clamp(17px, 1.55vw, 20px);
  }

  .hero-copy-product .hero-actions {
    margin-top: 24px;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

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

.hero h1,
.hero h2,
.section h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title-lines span {
  display: block;
}

.hero p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-controls {
  position: absolute;
  right: max(20px, calc((100vw - 1320px) / 2));
  bottom: clamp(18px, 2.6vw, 42px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  color: var(--white);
  background: rgba(5, 38, 29, 0.68);
}

.hero-controls button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.hero-controls button:hover,
.hero-controls button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.16);
}

.hero-controls button:active {
  transform: translateY(1px);
}

.hero-status {
  min-width: 4.8ch;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

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

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  line-height: 1;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.primary-btn {
  color: var(--white);
  background: var(--green-deep);
}

.secondary-btn {
  color: var(--green-deep);
  border: 1px solid rgba(6, 169, 87, 0.30);
  background: rgba(255, 255, 255, 0.72);
  text-shadow: none;
}

.secondary-btn:hover {
  border-color: var(--green);
  background: var(--white);
  transform: translateY(-1px);
}

@keyframes productFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes singlePanel {
  0%, 100% { transform: rotateZ(1.5deg) translate3d(0, 0, 0); }
  50% { transform: rotateZ(0.8deg) translate3d(-6px, -10px, 0); }
}

@keyframes fieldDrift {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(-24px); opacity: 1; }
}

@keyframes solarGlow {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.08); opacity: 0.96; }
}

@keyframes lightSweep {
  0%, 22% { left: -70%; opacity: 0; }
  38% { opacity: 1; }
  62%, 100% { left: 116%; opacity: 0; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes slowPulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes routeFlow {
  0% {
    stroke-dashoffset: 16;
    opacity: 0.18;
  }
  22% {
    opacity: 0.78;
  }
  82% {
    opacity: 0.78;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.18;
  }
}

@keyframes mapPulse {
  0%, 100% {
    opacity: 0.44;
    transform: scale(0.72);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.45);
  }
}

.section {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0 0;
}

.split,
.section-heading,
.solution-panel,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.06;
  text-wrap: balance;
}

main[data-page="home"] .section-heading {
  align-items: end;
}

main[data-page="home"] .section-heading h2 {
  max-width: 17ch;
  font-size: clamp(38px, 4.15vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

main[data-page="home"] .section-heading p {
  justify-self: end;
  max-width: 54ch;
  margin-bottom: 3px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.68;
}

.lead-stack,
.section-heading p,
.full-range-copy p,
.network-copy p,
.solution-panel p,
.app-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  text-wrap: pretty;
}

.lead-stack,
.section-heading p,
.full-range-copy p,
.network-copy p,
.solution-panel p,
.contact-card p {
  max-width: 70ch;
}

.product-grid,
.datasheet-grid,
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.datasheet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 22px);
}

.datasheet-grid[data-count="1"] {
  grid-template-columns: minmax(280px, 360px);
  justify-content: center;
}

.datasheet-grid[data-count="2"] {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
}

.datasheet-grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(250px, 360px));
  justify-content: center;
}

.products .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
}

.product-card,
.datasheet-card,
.app-grid article,
.solution-list article,
.solution-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.product-card:hover,
.product-card:focus-visible,
.datasheet-card:hover,
.datasheet-card:focus-visible,
.app-grid article:hover,
.app-grid article:focus-within,
.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgba(6, 169, 87, 0.46);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
  transform: translateY(-4px);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 24px;
  height: 100%;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.96)),
    var(--white);
}

.product-series-section .product-card {
  padding: 10px 10px 24px;
}

.product-series-section {
  padding-top: clamp(38px, 4.5vw, 56px);
}

.product-series-section .module-visual {
  margin-bottom: 22px;
}

.product-series-section .product-card p,
.product-series-section .product-card h3,
.product-series-section .product-card span {
  margin-right: 14px;
  margin-left: 14px;
}

.products .product-card p,
.products .product-card h3,
.products .product-card > span,
.products .product-apps {
  margin-right: 14px;
  margin-left: 14px;
}

.module-visual {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  margin-bottom: 22px;
  border-radius: 8px;
  overflow: hidden;
  background: #dbe9e4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.30);
}

.module-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card p,
.product-card span {
  color: var(--muted);
}

.product-card p {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 34px;
}

.product-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.product-apps li {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 760;
}

.product-advantage-band {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: clamp(-64px, -4vw, -44px) 0 0;
  padding: 0 0 clamp(58px, 7vw, 92px);
  background: linear-gradient(180deg, transparent 0 34%, #f7fbf8 34% 100%);
}

.advantage-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.advantage-metrics article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  grid-column: span 2;
  column-gap: 12px;
  row-gap: 10px;
  min-height: clamp(128px, 11vw, 164px);
  padding: clamp(14px, 1.8vw, 20px);
  text-align: left;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(6, 169, 87, 0.13);
  box-shadow: 0 8px 16px rgba(10, 88, 52, 0.08);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.product-advantage-list article:nth-child(n + 4) {
  grid-column: span 3;
}

.advantage-metrics article:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(10, 88, 52, 0.13);
}

.advantage-metrics img {
  align-self: end;
  width: 46px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.advantage-metrics h3 {
  align-self: end;
  margin: 0;
  color: var(--green);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.16;
}

.advantage-metrics span {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.52;
}

.about-metrics-section {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(-58px, -4vw, -36px) auto 0;
  padding: 0 0 clamp(34px, 5vw, 56px);
}

.about-metrics-section .metric-grid {
  margin: 0;
}

.product-assurance-section {
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.assurance-grid article {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 248, 240, 0.88), rgba(255, 255, 255, 0.98));
}

.assurance-grid h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
}

.assurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.assurance-figure {
  margin: clamp(22px, 3vw, 34px) 0 0;
  padding: clamp(14px, 2vw, 20px);
  background: var(--white);
  border-radius: 8px;
}

.transparent-figure {
  padding: 0;
  background: transparent;
}

.assurance-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.certification-upload-figure img {
  width: min(680px, 100%);
  max-height: 360px;
  object-fit: contain;
}

[data-lang-show] {
  display: none;
}

html[lang="zh-CN"] [data-lang-show~="zh"],
html[lang="en"] [data-lang-show~="en"],
html[lang="pt-BR"] [data-lang-show~="pt"] {
  display: block;
}

.assurance-language-panel {
  margin-top: clamp(22px, 3vw, 34px);
}

.certification-figure {
  margin-top: auto;
}

.certification-details {
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(14px, 2vw, 20px);
  background: var(--white);
  border-radius: 8px;
}

.certification-details h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.18;
}

.certification-details p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.35;
}

.certification-details small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.certification-details img {
  display: block;
  width: min(560px, 100%);
  height: auto;
  margin-top: 24px;
}

.full-range {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  padding-top: clamp(68px, 8vw, 104px);
}

.products {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.full-range::before,
.products::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(34px, 6vw, 62px);
  bottom: -34px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 9% 14%, rgba(6, 169, 87, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
}

.products::before {
  top: clamp(46px, 7vw, 78px);
  bottom: -48px;
  background:
    linear-gradient(90deg, rgba(6, 169, 87, 0.07), transparent 42%, rgba(245, 130, 0, 0.06)),
    #ffffff;
}

.full-range-copy p,
.network-copy p,
.section-heading p {
  max-width: 680px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  margin: clamp(30px, 5vw, 52px) 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scenario-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column: span 4;
  align-content: start;
  align-items: end;
  column-gap: 14px;
  row-gap: 8px;
  min-height: 184px;
  padding: clamp(20px, 2.2vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition:
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.scenario-grid article:nth-child(n + 4) {
  grid-column: span 3;
}

.scenario-grid article:hover,
.scenario-grid article:focus-within {
  background: rgba(234, 248, 240, 0.72);
}

.scenario-grid img {
  align-self: end;
  width: 57px;
  height: 57px;
  object-fit: contain;
  margin: 0;
  transition: transform 220ms var(--ease-out);
}

.scenario-grid article:hover img,
.scenario-grid article:focus-within img {
  transform: scale(1.08);
}

.scenario-grid span,
.network-stat span {
  color: var(--green-deep);
  font-weight: 820;
}

.scenario-grid span {
  align-self: end;
  line-height: 1.15;
}

.scenario-grid h3,
.market-columns h3 {
  margin: 2px 0 0;
  font-size: 20px;
}

.scenario-grid h3,
.scenario-grid p {
  grid-column: 1 / -1;
}

.scenario-grid p,
.market-columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.core-advantages {
  width: 100vw;
  margin-top: clamp(34px, 5vw, 56px);
  margin-left: calc(50% - 50vw);
  padding: clamp(38px, 5vw, 60px) max(20px, calc((100vw - 1320px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 169, 87, 0.06), rgba(245, 130, 0, 0.05)),
    var(--white);
}

.core-heading {
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.core-heading h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(6, 169, 87, 0.20);
  border-bottom: 1px solid rgba(6, 169, 87, 0.20);
}

.core-grid article {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 2.6vw, 34px) clamp(16px, 2.5vw, 34px);
  transition:
    background 220ms var(--ease-out);
}

.core-grid article + article {
  border-left: 1px solid rgba(6, 169, 87, 0.20);
}

.core-grid article:hover,
.core-grid article:focus-within {
  background: rgba(255, 255, 255, 0.58);
}

.core-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: transform 220ms var(--ease-out);
}

.core-grid article:hover img,
.core-grid article:focus-within img {
  transform: scale(1.08);
}

.core-grid h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
}

.core-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.project-gallery figure,
.factory-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  transition:
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.project-gallery img,
.factory-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.project-gallery figure:hover,
.factory-grid figure:hover {
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
  transform: translateY(-4px);
}

.project-gallery figure:hover img,
.factory-grid figure:hover img {
  transform: scale(1.035);
}

.about-video-section {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.about-video-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

#company-profile.contact {
  padding-bottom: 50px;
}

.video-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #10251b;
  transition: transform 220ms var(--ease-out);
}

.video-panel:hover,
.video-panel:focus-visible {
  transform: translateY(-4px);
}

.video-panel video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(720px, 72vh);
  object-fit: cover;
}

.certification-section {
  padding-top: clamp(54px, 7vw, 86px);
}

.patent-section {
  padding-top: clamp(42px, 5vw, 68px);
}

.certificate-library {
  margin-top: clamp(28px, 4vw, 44px);
}

.certificate-group {
  overflow: hidden;
  background: transparent;
}

.certificate-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px) clamp(20px, 3.5vw, 42px);
  border-bottom: 1px solid rgba(14, 139, 78, 0.13);
}

.certificate-group-head div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.certificate-group-head span {
  color: var(--orange);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 850;
  line-height: 0.9;
}

.certificate-group-head h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.1;
}

.certificate-group-head p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
}

.certificate-rail {
  display: grid;
  grid-auto-columns: clamp(210px, 18vw, 290px);
  grid-auto-flow: column;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 0 clamp(16px, 3vw, 28px);
  scrollbar-color: rgba(14, 139, 78, 0.45) rgba(14, 139, 78, 0.08);
}

.certificate-rail figure {
  scroll-snap-align: start;
  min-height: 100%;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(14, 139, 78, 0.13);
  border-radius: 8px;
  background: #f7faf8;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.certificate-rail figure:hover {
  border-color: rgba(14, 139, 78, 0.34);
  box-shadow: 0 10px 20px rgba(10, 88, 52, 0.12);
  transform: translateY(-4px);
}

.certificate-rail img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 5px;
  background: var(--white);
  cursor: zoom-in;
}

.certificate-rail figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.media-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(18px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  background: rgba(5, 18, 12, 0.82);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out);
}

.media-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-viewer img {
  display: block;
  max-width: min(1600px, 94vw);
  max-height: 90dvh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  cursor: zoom-out;
}

.media-viewer-close {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.viewer-open {
  overflow: hidden;
}

[data-lightbox] {
  cursor: zoom-in;
  touch-action: pan-x pinch-zoom;
}

[data-lightbox]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -4px;
}

.certification-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: 36px;
}

.certification-showcase article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.certification-showcase article:hover {
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
  transform: translateY(-4px);
}

.certification-showcase article:first-child {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.certification-showcase article:last-child {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
}

.certification-showcase img {
  display: block;
  width: min(760px, 100%);
  height: auto;
}

.certification-showcase h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.16;
}

.certification-showcase p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 24px);
}

.certification-showcase span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.network {
  width: 100%;
  max-width: none;
  margin-top: clamp(76px, 9vw, 116px);
  padding: clamp(72px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 58%, #ffffff 100%);
}

.network > .section-heading,
.network-map,
.network-panel {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.network > .section-heading p {
  justify-self: end;
}

.network-map {
  position: relative;
  margin-top: clamp(32px, 5vw, 56px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.network-map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.network-routes {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.network-routes path {
  fill: none;
  stroke: rgba(240, 132, 0, 0.72);
  stroke-width: 0.18;
  stroke-linecap: round;
  stroke-dasharray: 0.9 1.9;
  animation: routeFlow 3.8s linear infinite;
}

.network-routes path:nth-child(2) { animation-delay: 0.12s; }
.network-routes path:nth-child(3) { animation-delay: 0.24s; }
.network-routes path:nth-child(4) { animation-delay: 0.36s; }
.network-routes path:nth-child(5) { animation-delay: 0.48s; }
.network-routes path:nth-child(6) { animation-delay: 0.6s; }
.network-routes path:nth-child(7) { animation-delay: 0.72s; }
.network-routes path:nth-child(8) { animation-delay: 0.84s; }
.network-routes path:nth-child(9) { animation-delay: 0.96s; }
.network-routes path:nth-child(10) { animation-delay: 1.08s; }
.network-routes path:nth-child(11) { animation-delay: 1.2s; }
.network-routes path:nth-child(12) { animation-delay: 1.32s; }
.network-routes path:nth-child(13) { animation-delay: 1.44s; }
.network-routes path:nth-child(14) { animation-delay: 1.56s; }
.network-routes path:nth-child(15) { animation-delay: 1.68s; }
.network-routes path:nth-child(16) { animation-delay: 1.8s; }
.network-routes path:nth-child(17) { animation-delay: 1.92s; }
.network-routes path:nth-child(18) { animation-delay: 2.04s; }
.network-routes path:nth-child(19) { animation-delay: 2.16s; }
.network-routes path:nth-child(20) { animation-delay: 2.28s; }
.network-routes path:nth-child(21) { animation-delay: 2.4s; }

.network-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 4vw, 40px) 0 0;
  border-top: 1px solid var(--line);
}

.network-stat {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: 0;
}

.network-stat strong {
  color: var(--green);
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
}

.market-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.market-columns article {
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.market-columns article:hover,
.market-columns article:focus-within {
  border-color: rgba(6, 169, 87, 0.20);
  background: var(--white);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.08);
  transform: translateY(-4px);
}

.solutions {
  width: 100%;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 72px) clamp(90px, 9vw, 128px);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f3 100%);
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(52, 161, 133, 0.22), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(26, 148, 106, 0.16), transparent 32%),
    linear-gradient(128deg, #0d3b2d 0%, #10251b 58%, #0b3024 100%);
}

.solution-copy {
  position: sticky;
  top: 110px;
}

.solution-panel h2,
.solution-panel p {
  color: var(--white);
}

.solution-panel p {
  color: rgba(255,255,255,0.86);
}

.solution-copy p {
  margin: 22px 0 0;
  max-width: 640px;
}

.solution-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

.recycling-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  background: rgba(255,255,255,0.20);
}

.recycling-flow article {
  padding: 22px;
  background: rgba(255,255,255,0.10);
  transition:
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.recycling-flow article:hover,
.recycling-flow article:focus-within {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.recycling-flow span {
  color: var(--orange);
  font-weight: 900;
}

.recycling-flow h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  color: var(--white);
}

.recycling-flow p {
  margin: 0;
}

.solution-list article,
.solution-card {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.solution-list article:hover,
.solution-list article:focus-within,
.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 8px 14px rgba(0, 12, 9, 0.18);
  transform: translateY(-4px);
}

.solution-list span {
  color: var(--orange);
  font-weight: 850;
}

.solution-list h3,
.app-grid h3 {
  margin: 8px 0 6px;
  overflow-wrap: anywhere;
}

.solution-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (min-width: 1100px) {
  .solution-card p {
    white-space: normal;
  }
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: stretch;
  margin-top: 38px;
}

.project-showcase figure {
  min-height: 100%;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 14px;
}

.project-gallery figure:first-child {
  grid-row: 1 / span 2;
}

.project-gallery img {
  object-position: center;
}

.project-showcase .app-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.project-cases-section {
  width: min(1320px, calc(100% - 40px));
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(6, 169, 87, 0.08), rgba(245, 130, 0, 0.06)),
    var(--white);
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.case-feature figure,
.case-grid img {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.case-feature figure {
  min-height: clamp(360px, 44vw, 560px);
}

.case-feature img,
.case-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.case-feature > div {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 46px);
}

.case-feature span,
.case-grid span {
  color: var(--orange-deep);
  font-weight: 820;
}

.case-feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
}

.case-feature p,
.case-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 4vw, 42px);
}

.case-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.case-grid article:hover,
.case-feature:hover {
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
  transform: translateY(-4px);
}

.case-grid article:hover img,
.case-feature:hover img {
  transform: scale(1.035);
}

.case-grid img {
  height: 260px;
  border-radius: 0;
}

.case-grid div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.case-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.project-carousel-block {
  margin-top: clamp(34px, 5vw, 58px);
}

.carousel-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 0.68fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.carousel-heading span {
  color: var(--orange-deep);
  font-weight: 850;
}

.carousel-heading h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  text-wrap: balance;
}

.carousel-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.project-carousel {
  display: grid;
  grid-auto-columns: clamp(280px, 38vw, 560px);
  grid-auto-flow: column;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 0 22px;
  scrollbar-color: rgba(14, 139, 78, 0.45) rgba(14, 139, 78, 0.08);
}

.project-carousel figure {
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(10, 88, 52, 0.10);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.project-carousel figure:hover {
  box-shadow: 0 14px 28px rgba(10, 88, 52, 0.15);
  transform: translateY(-4px);
}

.project-carousel picture {
  display: block;
}

.project-carousel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.project-carousel figure:hover img {
  transform: scale(1.035);
}

.solution-block {
  width: min(1320px, calc(100% - 40px));
}

.solution-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  width: min(1320px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto clamp(8px, 2vw, 22px);
  padding: clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-journey a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 6px 0;
  color: var(--green-ink);
  font-weight: 800;
  line-height: 1.3;
  transition: color 180ms var(--ease-out);
}

.solution-journey a:last-child {
  justify-content: flex-end;
  text-align: right;
}

.solution-journey a:hover,
.solution-journey a:focus-visible {
  color: var(--green);
}

.journey-step {
  color: var(--orange-deep);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.journey-connector {
  width: clamp(52px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(6, 169, 87, 0.18));
}

.investment-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(32px, 5vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.investment-types article {
  display: grid;
  grid-template-rows: 84px minmax(68px, auto) 1fr;
  gap: 12px;
  justify-items: center;
  align-items: start;
  min-height: 238px;
  padding: clamp(26px, 3.2vw, 38px) clamp(18px, 2.4vw, 30px);
  text-align: center;
  background: transparent;
  border-right: 1px solid var(--line);
  transition:
    background 220ms var(--ease-out);
}

.investment-types article:last-child {
  border-right: 0;
}

.investment-types article:hover,
.investment-types article:focus-within {
  background: var(--green-wash);
}

.investment-types img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  align-self: center;
  transition: transform 220ms var(--ease-out);
}

.investment-types article:hover img,
.investment-types article:focus-within img {
  transform: scale(1.08);
}

.investment-types h3 {
  margin: 6px 0 0;
  color: var(--green);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  align-self: start;
}

.investment-types p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  align-self: start;
}

.recycling-block {
  padding-bottom: clamp(90px, 9vw, 128px);
}

.recycling-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 54px);
}

.recycling-service-list article {
  display: grid;
  grid-template-rows: minmax(220px, auto) 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.recycling-service-list article:hover,
.recycling-service-list article:focus-within {
  border-color: rgba(6, 169, 87, 0.38);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.09);
  transform: translateY(-4px);
}

.recycling-service-list figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
  background: var(--green-soft);
}

.recycling-service-list figure.recycling-diagram {
  padding: 0;
  background: transparent;
}

.recycling-service-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms var(--ease-out);
}

.recycling-service-list article:first-child img {
  object-fit: cover;
}

.recycling-service-list article:hover img {
  transform: scale(1.035);
}

.recycling-service-list .recycling-diagram img {
  object-fit: cover;
}

.recycling-service-list article > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(20px, 3vw, 30px);
}

.recycling-service-list span,
.recycling-equipment .section-kicker {
  color: var(--green);
  font-weight: 850;
}

.recycling-service-list h3,
.recycling-equipment h3 {
  margin: 10px 0 12px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.14;
}

.recycling-service-list p,
.recycling-equipment p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.recycling-symbol {
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 130, 0, 0.10), transparent 52%),
    var(--orange-soft);
}

.recycling-symbol span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 42px;
  font-weight: 850;
}

.recycling-equipment {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 34px);
  margin-top: clamp(28px, 5vw, 54px);
  padding: clamp(26px, 5vw, 54px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 248, 240, 0.92), rgba(255, 241, 223, 0.58)),
    var(--white);
}

.recycling-equipment-heading {
  max-width: 860px;
}

.recycling-equipment figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eeee;
}

.recycling-equipment img {
  display: block;
  width: 100%;
  height: auto;
}

form input,
form textarea,
form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  min-height: 48px;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form input::placeholder,
form textarea::placeholder {
  color: #52655c;
  opacity: 1;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--green);
  box-shadow: var(--focus);
  outline: 0;
}

form input:focus-visible,
form textarea:focus-visible,
form select:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 2px;
}

form input[aria-invalid="true"],
form textarea[aria-invalid="true"],
form select[aria-invalid="true"],
form input:user-invalid,
form textarea:user-invalid,
form select:user-invalid {
  border-color: #a53d2d;
  box-shadow: 0 0 0 3px rgba(165, 61, 45, 0.14);
}

.datasheet-family-grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.hash-target {
  display: block;
  width: 0;
  height: 0;
}

.no-script-note {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  background: var(--orange-soft);
}

.no-script-note p {
  margin: 0;
}

.no-script-note a {
  color: var(--green-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.datasheet-family-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.datasheet-family-tab {
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(6, 169, 87, 0.26);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    background 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.datasheet-family-tab span,
.datasheet-family-tab strong {
  display: block;
}

.datasheet-family-tab span {
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.12;
}

.datasheet-family-tab strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.datasheet-family-tab:hover,
.datasheet-family-tab[data-active="true"] {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.datasheet-family-tab:hover strong,
.datasheet-family-tab[data-active="true"] strong {
  color: var(--white);
}

.datasheet-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 13px;
  min-height: 340px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.datasheet-card,
.datasheet-card * {
  min-width: 0;
}

.datasheet-card .series {
  color: var(--green);
  font-weight: 850;
}

.datasheet-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
}

.datasheet-power {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.datasheet-product-figure {
  display: grid;
  min-height: 220px;
  margin: 0;
  padding: 6px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 250, 247, 0.96), rgba(255, 255, 255, 0.98));
}

.datasheet-product-figure img {
  display: block;
  width: min(100%, 230px);
  max-height: 208px;
  object-fit: contain;
  transition: transform 220ms var(--ease-out);
}

.datasheet-card:hover .datasheet-product-figure img,
.datasheet-card:focus-visible .datasheet-product-figure img {
  transform: translateY(-3px) scale(1.025);
}

.datasheet-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.14;
  text-align: center;
}

.app-grid article {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(232,246,238,0.86)),
    var(--white);
}

.app-grid span {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact {
  padding-bottom: 100px;
}

.contact-intro {
  display: grid;
  align-content: start;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-direct a:first-child {
  color: var(--green-ink);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 850;
  line-height: 1.1;
}

.contact-direct a:last-child {
  color: var(--muted);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #287fa8;
}

.product-hero,
.solutions-hero,
.downloads-hero,
.about-hero,
.projects-hero,
.contact-hero,
.error-hero {
  display: flex;
  align-items: center;
  min-height: 0;
  height: clamp(420px, 31.48vw, 684px);
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero::after {
  content: none;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

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

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-shadow:
    0 1px 2px rgba(0, 25, 39, 0.92),
    0 4px 14px rgba(0, 25, 39, 0.72),
    0 10px 30px rgba(0, 25, 39, 0.52);
}

.page-hero .eyebrow {
  color: var(--white);
}

.page-hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-shadow: inherit;
  text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 620;
  line-height: 1.65;
  text-shadow: inherit;
}

@media (min-width: 901px) {
  .product-hero .page-hero-inner {
    transform: translateY(-30px);
  }
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
}

.subnav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--white);
  font-weight: 750;
  min-height: 44px;
}

.feature-grid,
.metric-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

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

.metric-grid,
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card,
.metric-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.feature-card:hover,
.metric-card:hover,
.process-card:hover,
.feature-card:focus-within,
.metric-card:focus-within,
.process-card:focus-within {
  border-color: rgba(6, 169, 87, 0.40);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.09);
  transform: translateY(-4px);
}

.feature-card,
.process-card {
  padding: 24px;
}

.metric-card {
  padding: 26px;
}

.feature-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.feature-card p,
.process-card p,
.metric-card span {
  color: var(--muted);
  line-height: 1.65;
}

.metric-card strong {
  display: block;
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.timeline-layout {
  margin-top: 40px;
}

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

.history-list article {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-column: span 3;
  gap: 14px;
  min-height: 190px;
  padding: clamp(16px, 1.9vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.history-list article:nth-child(n + 5) {
  grid-column: span 4;
}

.history-list article:hover,
.history-list article:focus-within {
  border-color: rgba(6, 169, 87, 0.36);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.09);
  transform: translateY(-4px);
}

.history-year {
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
}

.history-achievement {
  display: grid;
  gap: 11px;
  align-content: start;
}

.history-achievement strong {
  color: var(--green);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.98;
  word-break: break-word;
}

.history-achievement span {
  color: var(--muted);
  line-height: 1.62;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  align-items: start;
}

.factory-grid figure {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.factory-grid figure:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.factory-grid picture {
  display: block;
  width: 100%;
  height: 100%;
}

.factory-grid figure:nth-child(even) {
  margin-top: 0;
}

.wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 36px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 130, 0, 0.28), transparent 28%),
    linear-gradient(135deg, #0b8d4b, var(--green-deep));
}

.wide-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.wide-panel p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.wide-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wide-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.wide-panel li:hover,
.wide-panel li:focus-within {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.08);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.contact-card form {
  align-content: start;
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  width: 100%;
  padding: clamp(54px, 7vw, 96px) max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(6, 169, 87, 0.17);
  background:
    radial-gradient(circle at 86% 24%, rgba(6, 169, 87, 0.13), transparent 24%),
    linear-gradient(105deg, #f7fcf9 0%, #eaf8f0 100%);
}

.closing-cta > div {
  max-width: 730px;
}

.closing-cta .section-kicker {
  margin: 0 0 12px;
}

.closing-cta h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.closing-cta p:not(.section-kicker) {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.closing-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--green-deep);
  border-radius: 999px;
  color: var(--white);
  background: var(--green-deep);
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.closing-cta-link:hover,
.closing-cta-link:focus-visible {
  background: var(--green);
  transform: translateY(-2px);
}

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

form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 720;
}

form label:has(textarea),
form .form-field-full,
form .form-note,
form .form-status,
form .form-actions {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-note a {
  color: var(--green-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

form button {
  min-height: 48px;
  width: fit-content;
  padding: 14px 22px;
  color: var(--white);
  background: var(--green-deep);
}

form .form-copy {
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  background: var(--white);
}

form .form-copy:hover,
form .form-copy:focus-visible {
  color: var(--white);
  background: var(--green-deep);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"],
.form-status.is-success {
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--green-ink);
  background: var(--green-soft);
  font-weight: 700;
}

.form-status[data-state="error"],
.form-status.is-error {
  padding: 12px 14px;
  border-radius: 6px;
  color: #812f23;
  background: #fff0ed;
  font-weight: 700;
}

dialog {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 56px rgba(0, 24, 14, 0.28);
}

dialog::backdrop {
  background: rgba(5, 18, 12, 0.78);
}

dialog [data-dialog-close] {
  min-width: 44px;
  min-height: 44px;
}

.site-footer {
  padding: clamp(36px, 4vw, 52px) clamp(20px, 5vw, 72px) 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #10251b;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 6px;
  width: min(280px, 64vw);
}

.footer-brand img {
  display: block;
  width: min(208px, 56vw);
  height: auto;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.back-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.back-top:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(300px, 1.45fr) minmax(250px, 1.1fr) minmax(220px, 1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(28px, 3.5vw, 42px) 0;
}

.footer-group {
  min-width: 0;
}

.footer-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  list-style: none;
  cursor: default;
}

.footer-group > summary::-webkit-details-marker {
  display: none;
}

.footer-group-title,
.footer-contact-label {
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.footer-group-panel {
  display: grid;
  gap: 22px;
  margin-top: 13px;
}

.footer-group--catalog .footer-group-panel,
.footer-group--resources .footer-group-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-subheading {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.48;
  transition: color 180ms var(--ease-out);
  overflow-wrap: anywhere;
}

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

.footer-contact {
  font-style: normal;
}

.footer-contact-label {
  margin: 0 0 2px;
}

.footer-contact .footer-phone {
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

/* Decision paths and evidence navigation */
.evidence-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(var(--content-width), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-index a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 10px clamp(18px, 2.4vw, 30px) 10px 0;
  color: var(--green-ink);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.evidence-index a::after {
  content: "→";
  margin-left: 9px;
  color: var(--orange-deep);
  transition: transform 180ms var(--ease-out);
}

.evidence-index a:hover,
.evidence-index a:focus-visible {
  color: var(--green);
}

.evidence-index a:hover::after,
.evidence-index a:focus-visible::after {
  transform: translateX(3px);
}

.product-evidence-index {
  margin-top: clamp(24px, 3vw, 38px);
}

.about-evidence-index {
  margin-top: clamp(30px, 4vw, 50px);
}

body[data-page="about"] #company-profile {
  padding-top: clamp(44px, 5vw, 68px);
}

body[data-page="products"] .product-selector-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body[data-page="products"] .product-choice-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.12fr) minmax(190px, 0.55fr);
  grid-template-areas:
    "media series actions"
    "media power actions"
    "media description actions";
  grid-template-rows: auto auto 1fr;
  gap: 5px clamp(20px, 3vw, 42px);
  align-items: start;
  min-height: 0;
  padding: 12px clamp(14px, 2vw, 24px) 12px 12px;
}

body[data-page="products"] .product-choice-card:focus-within {
  border-color: rgba(6, 169, 87, 0.46);
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
}

body[data-page="products"] .product-choice-card .module-visual {
  grid-area: media;
  align-self: stretch;
  min-height: 178px;
  margin: 0;
}

body[data-page="products"] .product-choice-card > p {
  grid-area: series;
  align-self: end;
  margin: 12px 0 0;
}

body[data-page="products"] .product-choice-card > h3 {
  grid-area: power;
  margin: 0;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1;
}

body[data-page="products"] .product-choice-card > span {
  grid-area: description;
  max-width: 56ch;
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.58;
}

.product-card-actions {
  grid-area: actions;
  display: grid;
  align-self: center;
  gap: 7px;
  min-width: 0;
}

.product-card-actions a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.product-card-actions a:first-child {
  color: var(--white);
  background: var(--green-deep);
}

.product-card-actions a:hover,
.product-card-actions a:focus-visible {
  color: var(--white);
  background: var(--green);
  transform: translateX(3px);
}

.datasheet-context {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}

.datasheet-context-copy > span {
  color: var(--green);
  font-weight: 850;
}

.datasheet-context-copy h2 {
  margin: 6px 0 10px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.datasheet-context-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.datasheet-context-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.datasheet-context-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(6, 169, 87, 0.30);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.datasheet-context-actions a:hover,
.datasheet-context-actions a:focus-visible,
.datasheet-context-actions a.is-primary {
  border-color: var(--green-deep);
  color: var(--white);
  background: var(--green-deep);
}

body[data-page="projects"] .project-cases-section > .section-heading .section-kicker {
  display: none;
}

body[data-page="projects"] .project-carousel-block {
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

body[data-page="projects"] .project-carousel figure {
  border-radius: 4px;
  box-shadow: none;
}

body[data-page="projects"] .project-carousel figure:hover,
body[data-page="projects"] .project-carousel figure:focus-within {
  box-shadow: 0 8px 14px rgba(10, 88, 52, 0.10);
}

@media (min-width: 1081px) {
  body[data-page="solutions"] .recycling-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="solutions"] .recycling-service-list article:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
    grid-template-rows: 1fr;
  }

  body[data-page="solutions"] .recycling-service-list article:first-child figure {
    min-height: 360px;
  }
}

@media (pointer: coarse) and (min-width: 641px) {
  .main-nav > .nav-group > a,
  .sub-menu a,
  .language-menu button,
  .footer-column a,
  .footer-contact a {
    min-width: 44px;
    min-height: 44px;
  }

  .main-nav > .nav-group > a,
  .footer-column a,
  .footer-contact a {
    display: flex;
    align-items: center;
  }

  .main-nav > .nav-group > a {
    padding-right: 6px;
    padding-left: 6px;
  }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .site-header {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    width: 140px;
  }

  .header-panel {
    gap: 10px;
  }

  .main-nav {
    gap: 8px;
    font-size: 13px;
  }

  .lang-toggle {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .nav-cta {
    padding-right: 13px;
    padding-left: 13px;
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    flex-wrap: nowrap;
    min-height: var(--header-height);
    padding: 8px 16px;
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: calc(var(--z-drawer) + 1);
    width: 140px;
  }

  .nav-toggle {
    position: relative;
    z-index: calc(var(--z-drawer) + 2);
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 169, 87, 0.22);
    border-radius: 8px;
    color: var(--green-deep);
    background: var(--white);
    font-size: 0;
    cursor: pointer;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .nav-toggle::before {
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .nav-toggle::after {
    opacity: 0;
  }

  body.nav-open .nav-toggle::before {
    box-shadow: none;
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle::after {
    opacity: 1;
    transform: rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--z-backdrop);
    display: block;
    border: 0;
    background: rgba(5, 24, 16, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--ease-out);
  }

  .header-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-drawer);
    display: flex;
    width: min(370px, calc(100% - 44px));
    min-width: 0;
    padding: calc(var(--header-height) + 10px) 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    color: var(--ink);
    background: var(--white);
    box-shadow: -8px 0 24px rgba(5, 45, 28, 0.16);
    visibility: hidden;
    transform: translateX(102%);
    transition: transform 240ms var(--ease-out), visibility 0s linear 240ms;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .header-panel {
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    overflow: visible;
    font-size: 16px;
    white-space: normal;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-group:not(:has(.sub-menu)) {
    grid-template-columns: 1fr;
  }

  .nav-group::after {
    display: none;
  }

  .main-nav > .nav-group > a {
    min-height: 52px;
    width: 100%;
    padding: 12px 4px;
  }

  .main-nav a[aria-current="page"]::after {
    right: auto;
    bottom: 7px;
    width: 28px;
  }

  .subnav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: var(--green-deep);
    background: transparent;
    cursor: pointer;
  }

  .subnav-toggle::before {
    content: "+";
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    transition: transform 180ms var(--ease-out);
  }

  .nav-group.is-expanded .subnav-toggle::before {
    transform: rotate(45deg);
  }

  .main-nav .nav-group .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 0;
    gap: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 160ms var(--ease-out);
  }

  .main-nav .nav-group:hover .sub-menu,
  .main-nav .nav-group:focus-within .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .main-nav .nav-group.is-expanded .sub-menu,
  .main-nav .nav-group.is-expanded:hover .sub-menu,
  .main-nav .nav-group.is-expanded:focus-within .sub-menu {
    max-height: 520px;
    padding: 2px 10px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sub-menu a {
    min-height: 44px;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
  }

  .header-panel .header-actions {
    width: 100%;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .language-picker {
    flex: 1 1 auto;
  }

  .lang-toggle {
    justify-content: center;
    width: 100%;
  }

  .language-menu {
    top: auto;
    right: 0;
    bottom: calc(100% + 8px);
    left: 0;
    width: 100%;
  }

  .language-menu button {
    min-height: 44px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-group > summary {
    min-height: 36px;
  }

  .hero-copy {
    width: min(480px, calc(100% - 40px));
  }

  .hero-product {
    right: max(20px, calc((100vw - 1320px) / 2));
  }

  .product-grid,
  .datasheet-grid,
  .advantage-metrics,
  .assurance-grid,
  .app-grid,
  .full-range,
  .network,
  .scenario-grid,
  .core-grid,
  .contact-heading,
  .market-columns,
  .recycling-flow,
  .project-showcase,
  .case-feature,
  .project-gallery,
  .case-grid,
  .project-showcase .app-grid,
  .investment-types,
  .recycling-service-list,
  .recycling-service-list article,
  .recycling-equipment,
  .carousel-heading,
  .timeline-layout,
  .factory-grid,
  .feature-grid,
  .metric-grid,
  .process-grid,
  .split,
  .section-heading,
  .solution-panel,
  .contact-card,
  .wide-panel {
    grid-template-columns: 1fr;
  }

  .products .product-grid,
  .datasheet-grid,
  .advantage-metrics,
  .datasheet-family-tabs,
  .investment-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .factory-grid figure,
  .factory-grid figure:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  main[data-page="home"] .section-heading p {
    justify-self: start;
  }

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

  .scenario-grid article,
  .scenario-grid article:nth-child(n + 4) {
    grid-column: span 1;
    min-height: 158px;
  }

  .product-advantage-list article,
  .product-advantage-list article:nth-child(n + 4) {
    grid-column: span 1;
  }

  .product-advantage-band {
    margin-top: -52px;
  }

  .network > .section-heading p {
    justify-self: start;
  }

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

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

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

  .history-list article,
  .history-list article:nth-child(n + 5) {
    grid-column: span 1;
  }

  .factory-grid figure:nth-child(even) {
    margin-top: 0;
  }

  .solution-copy {
    position: static;
  }

  .contact-card form {
    margin-top: 4px;
  }

}

@media (max-width: 860px) {
  .hero {
    aspect-ratio: auto;
    height: clamp(560px, 78svh, 680px);
    min-height: 560px;
  }

  .hero-copy {
    top: auto;
    bottom: 82px;
    padding-top: 0;
  }

  .hero-slide-scale .hero-copy {
    top: auto;
    bottom: 82px;
  }

  .hero-copy-product {
    top: 34px;
    bottom: auto;
  }

  .hero-controls {
    right: 20px;
    bottom: 18px;
  }

  .products .product-grid,
  .datasheet-grid,
  .datasheet-family-tabs,
  .investment-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .datasheet-grid[data-count="2"],
  .datasheet-grid[data-count="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .certification-showcase {
    grid-template-columns: 1fr;
  }

  .hero-product {
    right: 8vw;
    bottom: 34px;
    width: min(260px, 54vw);
    height: min(430px, 76vw);
    animation-name: productFloat;
  }

  .hero-product > .module-shell,
  .module-shell img {
    height: min(410px, 74vw);
  }

  .single-module-stage .module-single {
    right: 0;
  }

  .shine {
    right: 0;
    width: min(194px, 35vw);
    height: min(408px, 74vw);
  }

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

  body[data-page="products"] .product-choice-card {
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
    grid-template-areas:
      "media series"
      "media power"
      "media description"
      "media actions";
  }

  .product-card-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
  }

  .product-card-actions a {
    justify-content: center;
    text-align: center;
  }

  .datasheet-context {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .datasheet-context-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .brand {
    width: 140px;
  }

  .mobile-quick-cta {
    position: relative;
    z-index: calc(var(--z-drawer) + 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 44px;
    margin-left: auto;
    padding: 8px 12px;
    border: 1px solid rgba(6, 169, 87, 0.28);
    border-radius: 999px;
    color: var(--green-deep);
    background: var(--green-soft);
    font-size: 13px;
    font-weight: 780;
    transition: color 180ms var(--ease-out), background 180ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .mobile-quick-cta:hover,
  .mobile-quick-cta:focus-visible {
    color: var(--white);
    background: var(--green-deep);
  }

  body.nav-open .mobile-quick-cta {
    opacity: 0;
    pointer-events: none;
  }

  .header-panel .header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .header-panel .language-picker {
    width: 100%;
  }

  .header-panel .nav-cta {
    flex: none;
    width: 100%;
    min-height: 48px;
    white-space: nowrap;
    text-align: center;
  }

  .hero {
    height: clamp(560px, 72svh, 620px);
    min-height: 560px;
  }

  .hero-copy {
    top: 30px;
    bottom: auto;
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 0;
    transform: none;
  }

  .hero-copy-product {
    top: 28px;
    bottom: auto;
  }

  .hero-slide-scale .hero-bg-image {
    object-fit: cover;
    object-position: 50% 52%;
  }

  .hero-slide-scale .hero-copy {
    top: auto;
    bottom: 70px;
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero-slide-scale .hero-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hero-slide-scale .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.04;
  }

  .hero-slide-scale .hero-copy p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.06;
  }

  .hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-controls {
    right: 16px;
    bottom: 14px;
  }

  .hero-product {
    left: 50%;
    bottom: 30px;
    width: min(246px, 70vw);
    height: min(360px, 86vw);
    transform: translateX(-50%);
    animation-name: productFloatMobile;
  }

  .hero-product > .module-shell,
  .module-shell img {
    height: min(340px, 82vw);
  }

  .shine {
    width: min(160px, 39vw);
    height: min(338px, 82vw);
  }

  .download-tools {
    flex-direction: column;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .footer-group {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-group > summary {
    min-height: 44px;
    cursor: pointer;
  }

  .footer-group > summary::after {
    content: "+";
    color: rgba(255, 255, 255, 0.72);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
  }

  .footer-group[open] > summary::after {
    content: "−";
  }

  .footer-group-panel,
  .footer-group--catalog .footer-group-panel,
  .footer-group--resources .footer-group-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 8px;
  }

  .footer-subheading {
    margin-top: 4px;
  }

  .footer-contact {
    grid-column: auto;
    gap: 10px;
    padding-top: 8px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-column a,
  .footer-contact a,
  .footer-contact span {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .scenario-grid article,
  .network-panel,
  .recycling-flow article {
    padding: 22px;
  }

  .project-gallery {
    grid-template-rows: none;
  }

  .project-gallery figure:first-child {
    grid-row: auto;
  }

  .case-feature figure {
    min-height: 300px;
  }

  .case-grid img {
    height: 240px;
  }

  .investment-types,
  .recycling-service-list,
  .recycling-service-list article,
  .recycling-equipment {
    grid-template-columns: 1fr;
  }

  .recycling-service-list figure,
  .recycling-symbol {
    min-height: 220px;
  }

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

  body[data-page="products"] .product-choice-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "series"
      "power"
      "description"
      "actions";
    gap: 5px;
    padding: 10px 10px 16px;
  }

  body[data-page="products"] .product-choice-card .module-visual {
    min-height: 0;
    margin-bottom: 12px;
  }

  body[data-page="products"] .product-choice-card > p,
  body[data-page="products"] .product-choice-card > h3,
  body[data-page="products"] .product-choice-card > span,
  body[data-page="products"] .product-choice-card .product-card-actions {
    margin-right: 12px;
    margin-left: 12px;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .product-card-actions a {
    justify-content: flex-start;
    text-align: left;
  }

  .evidence-index {
    width: min(var(--content-width), calc(100% - 32px));
  }

  .evidence-index a {
    flex: 1 1 100%;
    justify-content: space-between;
    min-height: 48px;
    padding-right: 0;
    border-bottom: 1px solid rgba(220, 233, 226, 0.70);
  }

  .evidence-index a:last-child {
    border-bottom: 0;
  }

  .datasheet-context-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .datasheet-context-actions a {
    justify-content: center;
  }

  .datasheet-grid,
  .datasheet-grid[data-count] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .datasheet-family-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-padding-inline: 1px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .datasheet-family-tab {
    flex: 0 0 156px;
    min-height: 68px;
    scroll-snap-align: start;
  }

  .advantage-metrics {
    grid-template-columns: 1fr;
  }

  .product-advantage-band {
    margin-top: -34px;
  }

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

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

  .scenario-grid article,
  .scenario-grid article:nth-child(n + 4) {
    min-height: 150px;
  }

  .history-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .factory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .factory-grid figure,
  .factory-grid figure:nth-last-child(-n + 2) {
    grid-column: auto;
  }

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

  .page-hero {
    padding: 44px 20px 40px;
  }

  .product-hero,
  .solutions-hero,
  .downloads-hero,
  .about-hero,
  .projects-hero,
  .contact-hero,
  .error-hero {
    align-items: flex-start;
    height: clamp(620px, 165vw, 700px);
    min-height: 620px;
  }

  .page-hero-inner {
    width: 100%;
    margin: 0 auto;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .page-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .solution-panel,
  .wide-panel,
  .contact-card {
    padding: 24px 20px;
  }

  .certificate-group-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .certificate-group-head p {
    max-width: 100%;
    text-align: left;
  }

  form {
    grid-template-columns: 1fr;
  }

  form label,
  form label:has(textarea),
  form .form-field-full,
  form .form-note,
  form .form-status,
  form .form-actions {
    grid-column: 1;
  }

  .form-actions {
    display: grid;
  }

  form button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  body[data-page="404"] .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  body[data-page="404"] .brand {
    width: 132px;
  }

  body[data-page="404"] .header-actions {
    gap: 4px;
    min-width: 0;
    font-size: 13px;
  }

  body[data-page="404"] .header-actions > a:not(.nav-cta) {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 2px;
  }

  body[data-page="404"] .nav-cta {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section,
  .full-range,
  .products,
  .project-cases-section,
  .solution-block,
  .subnav,
  .advantage-metrics,
  .about-metrics-section {
    width: min(var(--content-width), calc(100% - 32px));
  }

  .site-footer,
  .network,
  .solutions {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }

  .product-card {
    min-height: 0;
  }

  .project-carousel {
    grid-auto-columns: min(86vw, 300px);
  }

  .certificate-group-head div {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .certificate-group-head span {
    font-size: 46px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

@media (max-width: 1100px) {
  .scenario-grid article:nth-child(n + 4) {
    grid-column: span 1;
  }

  .core-grid article + article {
    border-top: 1px solid rgba(6, 169, 87, 0.20);
    border-left: 0;
  }

  .contact-card form {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .solution-journey {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-journey a,
  .solution-journey a:last-child {
    justify-content: flex-start;
    text-align: left;
  }

  .journey-connector {
    width: 1px;
    height: 28px;
    margin-left: 11px;
    background: linear-gradient(180deg, var(--green), rgba(6, 169, 87, 0.18));
  }

  .investment-types article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .investment-types article:last-child {
    border-bottom: 0;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .closing-cta-link {
    width: 100%;
  }
}

@keyframes productFloatMobile {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-9px); }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #263c31;
    --soft-muted: #3d5147;
    --line: #a8bcb1;
  }

  .site-header,
  .sub-menu,
  .language-menu,
  .header-panel {
    background: var(--white);
  }

  .page-hero-inner,
  .hero-copy {
    text-shadow:
      0 1px 2px rgba(0, 20, 14, 1),
      0 5px 16px rgba(0, 20, 14, 0.92);
  }

  .product-card,
  .datasheet-card,
  .feature-card,
  .metric-card,
  .process-card,
  .case-grid article,
  .contact-card {
    border-color: var(--line);
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid Highlight;
  }

  .nav-toggle,
  .subnav-toggle,
  .lang-toggle,
  .nav-cta,
  .primary-btn,
  .secondary-btn,
  .hero-controls,
  .hero-controls button,
  form button,
  .back-top {
    border: 1px solid ButtonText;
  }

  .header-panel,
  .language-menu,
  .sub-menu,
  dialog {
    border: 1px solid CanvasText;
  }

  .nav-backdrop,
  dialog::backdrop {
    background: Canvas;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slide,
  .header-panel,
  .nav-backdrop,
  .sub-menu {
    transition: none !important;
  }
}
