﻿@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("../fonts/HarmonyOS Sans SC.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("../fonts/HarmonyOS_Sans_SC_Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "DIN-BOLD";
  src: url("../fonts/din-bold.otf") format("opentype"), local("DIN-BOLD"), local("DIN Bold");
  font-weight: 700;
}

@font-face {
  font-family: "DIN-Medium";
  src: url("../fonts/DIN-Medium.otf") format("opentype"), local("DIN Medium");
  font-weight: 500;
}

:root {
  --green: #009e4d;
  --green-dark: #008541;
  --mint: #eefaf5;
  --text: #111;
  --muted: #5f6265;
  --line: #ececec;
  --footer: #2f2f2f;
  --yellow: #f7aa08;
  --container: min(1720px, calc(100vw - 128px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "HarmonyOS Sans SC", Arial, sans-serif;
  background: #fff;
}

.home-stack {
  position: relative;
  overflow: visible;
}

.home-pin-stage {
  position: relative;
}

.home-pin-layer {
  position: sticky;
  top: var(--home-pin-top, 0);
  z-index: 1;
  background: #fff;
}

.home-cover-layer {
  position: relative;
  z-index: 2;
  background: #fff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  height: 84px;
  background: #fff;
  border-bottom: 1px solid #ededed;
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px 1fr 120px;
  align-items: center;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(56px, 6vw, 150px);
  height: 100%;
  font-size: 16px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: color 0.2s ease;
}

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

.language {
  position: relative;
  justify-self: end;
}

.language-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-button img {
  width: 21.5px;
  height: 21.5px;
}

.language-button .language-arrow {
  width: 13.32px;
  height: 7.656px;
  filter: brightness(0);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 106px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 10%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

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

.language-menu a {
  display: block;
  padding: 10px 18px;
}

.language-menu a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 776px;
  overflow: hidden;
}

.hero-track,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
}

.hero-placeholder {
  background: #111;
}

.hero-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 28%, rgb(255 255 255 / 12%), transparent 24%),
    linear-gradient(90deg, rgb(255 255 255 / 5%), transparent 48%);
}

.hero-green {
  background: #009843;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(100px, calc((100vw - 1720px) / 2));
  top: 158px;
  width: 940px;
}

.hero-copy h1 {
  margin: 0 0 30px;
  font-size: 54px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-slide-green-text .hero-copy h1,
.hero-slide-green-text .hero-copy h1 span,
.hero-slide-green-text .hero-copy p {
  color: #009D4C;
}

.hero-copy p {
  width: 820px;
  margin: 0;
  color: #252525;
  font-size: 16px;
  line-height: 1.72;
}

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

.btn {
  min-width: 150px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 4px;
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transform-origin: center;
  will-change: transform;
}

.btn:hover {
  transform: scale(1.05);
}

.hero-actions .btn {
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hero-actions .btn:hover {
  transform: scale(1.05) !important;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-light {
  background: #fff;
  color: #171717;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 29px;
  z-index: 2;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: url("../images/home/slider-dot.svg") center / contain no-repeat;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.slider-dots button.active {
  background-image: url("../images/home/slider-dot-active.svg");
}

.slider-dots button:hover {
  transform: scale(1.05);
}

.section {
  padding: 84px 0;
}

h2 {
  margin: 0 0 58px;
  text-align: center;
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

.products-section {
  min-height: 878px;
  padding: 84px 0 76px;
}

.product-carousel {
  overflow: hidden;
}

.product-track {
  --open-card-width: 980px;
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.45s ease;
}

.product-track.is-switching {
  transition: none;
}

.product-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  height: 540px;
  padding: 42px 34px 0;
  background: #effaf5;
  overflow: hidden;
  z-index: 1;
  border: 1px solid transparent;
  transition: flex-basis 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card:nth-child(n + 5) {
  display: none;
}

.product-track.is-hovering .product-card:not(.is-hovered) {
  flex-basis: calc((100% - var(--open-card-width) - 60px) / 3);
}

.product-card.is-hovered,
.product-track.is-hovering .product-card.is-hovered {
  flex-basis: var(--open-card-width);
  z-index: 5;
  padding: 0;
  background: #fff;
  border-color: #d8f0e5;
  box-shadow: none;
  transform: none;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 540px;
  background: #effaf5;
  opacity: 0;
  transition: opacity 0.25s ease, height 0.25s ease;
}

.product-card.is-hovered::before {
  height: 300px;
  opacity: 1;
}

.product-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.product-card.is-hovered .product-icon {
  width: 64px;
  height: 64px;
  margin: 42px 0 32px 42px;
}

.product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-size: 24px;
  transform-origin: left center;
  transition: margin 0.3s ease, font-size 0.3s ease, color .25s ease, transform .25s ease;
}

.product-card.is-hovered h3 {
  margin-left: 42px;
  font-size: 30px;
}

.product-card p {
  position: relative;
  z-index: 2;
  max-width: 330px;
  min-height: 56px;
  margin: 0;
  color: #303338;
  font-size: 15px;
  line-height: 1.55;
  transition: margin 0.3s ease, max-width 0.3s ease, font-size 0.3s ease;
}

.product-card.is-hovered p {
  max-width: 640px;
  margin-left: 42px;
  font-size: 18px;
  line-height: 1.3;
}

.product-image {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -10px;
  width: min(96%, 430px);
  transform-origin: center bottom;
  transition: transform 0.45s ease;
}

.product-card.is-hovered .product-image {
  z-index: 2;
  right: -22px;
  bottom: 240px;
  top: auto;
  width: 330px;
  transform: none;
}

.product-meta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-height: none;
  height: 168px;
  margin: 0;
  max-width: none;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  border-top: 1px solid #d8f0e5;
  border-bottom: 1px solid #d8f0e5;
  transition: opacity 0.25s ease;
}

.product-card.is-hovered .product-meta {
  opacity: 1;
  pointer-events: auto;
}

.product-meta > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 42px 20px;
  border-right: 1px solid #d8f0e5;
}

.product-meta > div:last-child {
  border-right: 0;
}

.product-meta strong {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1;
}

.product-meta h4 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.product-meta ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-meta span {
  position: relative;
  display: block;
  margin: 11px 0;
  padding-left: 20px;
  color: #42474b;
  font-size: 14px;
}

.product-meta li {
  position: relative;
  min-height: 18px;
  padding-left: 18px;
  color: #42474b;
  font-size: 14px;
  line-height: 1.32;
}

.product-meta span::before,
.product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.read-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  overflow: hidden;
  color: var(--green);
  font-size: 17px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform .25s ease;
}

.product-card.is-hovered .read-link {
  opacity: 1;
  pointer-events: auto;
}

.product-card:hover .product-icon,
.product-card:hover h3,
.product-card:hover .read-link {
  transform: scale(1.05);
}

.product-card:hover h3 {
  color: var(--green);
}

.read-link::after {
  content: "→";
  margin-left: 14px;
  font-size: 24px;
  line-height: 1;
}

.section-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  height: 6px;
  margin-top: 42px;
}

.section-progress button {
  display: block;
  width: 60px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e7e7e7;
  cursor: pointer;
}

.section-progress button.active {
  background: var(--green);
}

.strength-section {
  position: relative;
  min-height: 744px;
  padding-top: 95px;
  background: #f7f7f7;
  overflow: hidden;
}

.strength-section .earth {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1920px, 100vw);
  opacity: 0;
  transform: translate(-50%, 80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.strength-section .container {
  position: relative;
  z-index: 1;
}

.strength-section.in-view .earth {
  opacity: 1;
  transform: translate(-50%, 0);
}

.section-intro {
  max-width: 720px;
  margin: -34px auto 86px;
  color: #3e4246;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--green);
  font-family: "DIN-BOLD", "HarmonyOS Sans SC", Arial, sans-serif;
  font-size: clamp(50px, 4vw, 78px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 16px;
  color: #191919;
  font-size: 15px;
}

.factory-section {
  background: #fff;
  min-height: 922px;
  padding-top: 80px;
}

.factory-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: -26px 0 40px;
}

.factory-tabs button {
  min-width: 213px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: 0.2s ease;
}

.factory-tabs img {
  width: 16px;
}

.factory-tabs button.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.factory-tabs button.active img {
  filter: brightness(0) invert(1);
}

.factory-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: visible;
}

.factory-left,
.factory-right {
  position: relative;
  overflow: hidden;
}

.factory-left img,
.factory-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.factory-left:hover img,
.factory-right img:hover {
  transform: scale(1.05);
}

.factory-left strong {
  position: absolute;
  left: 56px;
  bottom: 48px;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
}

.factory-right {
  display: grid;
  grid-template-rows: 320px 280px;
  overflow: visible;
}

.factory-image-wrap {
  position: relative;
  overflow: hidden;
}

.factory-image-wrap:hover {
  z-index: 3;
}

.factory-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.factory-image-wrap:hover img {
  transform: scale(1.05);
}

.sustainable-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.sustainable-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sustainable-section:hover > img {
  transform: scale(1.03);
}

.sustainable-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 28%);
}

.sustainable-content {
  position: relative;
  z-index: 1;
}

.sustainable-content h2 {
  margin-bottom: 100px;
  color: #fff;
}

.sustainable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 92px 240px;
  max-width: 1320px;
  margin: 0 auto;
}

.sustainable-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: center;
}

.sustainable-item strong {
  font-size: 22px;
}

.sustainable-item p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: 15px;
  line-height: 1.55;
}

.ripple {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.ripple::before,
.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgb(0 158 77 / 55%);
  opacity: 0;
}

.sustainable-item:hover .ripple::before {
  animation: ripple 1.3s ease-out infinite;
}

.sustainable-item:hover .ripple::after {
  animation: ripple 1.3s 0.3s ease-out infinite;
}

.ripple img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

@keyframes ripple {
  from {
    opacity: 0.9;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.9);
  }
}

.read-more-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 82px auto 0;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}

.read-more-light img {
  width: 14px;
  height: 14px;
}

.partners-section {
  background: #f7f7f7;
  min-height: 837px;
}

.partners-section .container {
  overflow: hidden;
}

.partner-grid {
  display: flex;
  width: 100%;
  background: transparent;
  transition: transform 0.45s ease;
}

.partner-grid.switching {
  transform: translateX(-50%);
}

.partner-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(5, 327px);
  justify-content: center;
  gap: 21px;
}

.partner-page div {
  height: 148px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-page div:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgb(0 0 0 / 13%);
}

.partner-page img {
  max-width: 58%;
  max-height: 70px;
}

.contact-section {
  min-height: 678px;
  padding: 92px 0 110px;
  color: #fff;
  background: #009843 url("../images/home/contact-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.contact-inner {
  max-width: 1300px;
}

.contact-section h2 {
  margin-bottom: 54px;
  color: #fff;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: rgb(255 255 255 / 18%);
  border-radius: 0;
}

.contact-form input {
  height: 62px;
  padding: 0 34px;
}

.contact-form textarea {
  min-height: 150px;
  margin-top: 20px;
  padding: 30px 34px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(255 255 255 / 82%);
}

.contact-form button {
  width: 360px;
  height: 52px;
  display: block;
  margin: 34px auto 0;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--yellow);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-form button:hover {
  transform: scale(1.04);
  background: #e89d00;
}

.site-footer {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--footer);
}

.footer-inner {
  width: min(1350px, calc(100vw - 128px));
  margin: 0 auto;
  padding: 56px 0 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 55px;
}

.social img {
  width: 28px;
  height: 28px;
}

.footer-line {
  height: 1px;
  margin: 50px 0 58px;
  background: rgb(255 255 255 / 12%);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 90px;
}

.footer-links h3 {
  margin: 0 0 24px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin: 0 0 15px;
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 46px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
}

@media (max-width: 1280px) {
  :root {
    --container: min(1120px, calc(100vw - 64px));
  }

  .header-inner {
    grid-template-columns: 120px 1fr 100px;
  }

  .main-nav {
    gap: 48px;
  }

  .hero {
    height: 620px;
  }

  .hero-copy {
    left: 56px;
    top: 120px;
    width: 620px;
  }

  .hero-copy p {
    width: 560px;
  }

  .product-track {
    --open-card-width: 620px;
  }

  .product-card,
  .product-track.is-hovering .product-card,
  .product-track.is-hovering .product-card.is-hovered {
    flex-basis: calc((100% - 20px) / 2);
  }

  .product-track.is-hovering .product-card.is-hovered {
    padding: 42px 34px 0;
    background: #effaf5;
    border-color: transparent;
  }

  .product-card.is-hovered::before,
  .product-card.is-hovered .product-meta,
  .product-card.is-hovered .read-link {
    display: none;
  }

  .product-card.is-hovered .product-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 28px;
  }

  .product-card.is-hovered h3,
  .product-card.is-hovered p {
    margin-left: 0;
  }

  .product-card.is-hovered h3 {
    font-size: 24px;
  }

  .product-card.is-hovered p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.55;
  }

  .product-card.is-hovered .product-image {
    top: auto;
    bottom: -10px;
    width: min(96%, 430px);
  }

  .sustainable-grid {
    gap: 72px;
  }

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

@media (max-width: 900px) {
  :root {
    --container: calc(100vw - 36px);
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    width: var(--container);
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .brand img {
    width: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .hero {
    height: 560px;
  }

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

  .hero-copy {
    left: 18px;
    top: 76px;
    width: calc(100vw - 36px);
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: 34px;
  }

  .hero-copy p {
    width: min(520px, 88vw);
    font-size: 14px;
  }

  .section {
    padding: 64px 0;
  }

  h2 {
    margin-bottom: 36px;
    font-size: 30px;
  }

  .stats-grid,
  .partner-page,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    height: 420px;
  }

  .product-meta {
    display: none;
  }

  .product-image {
    width: 70%;
  }

  .factory-collage {
    grid-template-columns: 1fr;
  }

  .factory-right {
    grid-template-rows: auto;
  }

  .factory-tabs {
    flex-wrap: wrap;
  }

  .sustainable-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sustainable-section {
    min-height: 760px;
  }

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

  .footer-inner {
    width: var(--container);
  }
}

@media (max-width: 560px) {
  .language-button span {
    display: none;
  }

  .hero {
    height: 620px;
  }

  .hero-copy {
    top: 54px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .btn {
    min-width: 140px;
  }

  .stats-grid,
  .partner-page,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-track.is-hovering .product-card,
  .product-track.is-hovering .product-card.is-hovered {
    flex-basis: 100%;
  }

  .product-card {
    height: 500px;
  }

  .stats-grid {
    gap: 42px;
  }

  .factory-left strong {
    left: 24px;
    bottom: 24px;
    font-size: 26px;
  }

  .sustainable-item {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .ripple {
    width: 68px;
    height: 68px;
  }

  .ripple img {
    width: 30px;
    height: 30px;
  }

  .contact-form button {
    width: 100%;
  }

  .two-col,
  .copyright {
    grid-template-columns: 1fr;
    display: block;
  }

  .copyright span {
    display: block;
    margin-top: 16px;
  }
}

.contact-modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;padding:40px;background:rgb(0 0 0 / 68%)}
.contact-modal.is-open{display:flex}.contact-modal__overlay{position:absolute;inset:0}.contact-modal__panel{position:relative;z-index:1;width:min(1520px,calc(100vw - 160px));min-height:668px;padding:72px 132px 76px;background:#fff;color:#111}.contact-modal__close{position:absolute;right:38px;top:34px;width:28px;height:28px;display:grid;place-items:center;border:0;background:transparent;cursor:pointer}.contact-modal__close img{width:18px;height:18px}.contact-modal__panel h2{margin:0 0 24px;text-align:center;font-size:48px;line-height:1.1}.contact-modal__panel>p{margin:0 0 58px;text-align:center;color:#222;font-size:15px}.modal-form-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.modal-contact-form input,.modal-contact-form textarea{width:100%;border:1px solid #dcdcdc;outline:0;color:#111;background:#fff}.modal-contact-form input{height:70px;padding:0 36px}.modal-contact-form textarea{height:200px;margin-top:24px;padding:30px 36px;resize:vertical}.modal-contact-form button{width:360px;height:54px;display:block;margin:48px auto 0;border:0;border-radius:4px;color:#fff;background:#009843;cursor:pointer;transition:.25s}.modal-contact-form button:hover{transform:scale(1.04)}body.modal-open{overflow:hidden}@media(max-width:900px){.contact-modal{padding:20px}.contact-modal__panel{width:100%;min-height:auto;padding:58px 24px 34px}.contact-modal__panel h2{font-size:32px}.modal-form-row{grid-template-columns:1fr}.modal-contact-form button{width:100%}}


/* Global interaction polish */
.nav-product-wrap{position:relative;display:inline-flex;align-items:center;height:84px}
.nav-product-link{display:inline-flex;align-items:center;height:84px}
.product-dropdown{position:fixed;left:0;right:0;top:84px;z-index:60;height:132px;display:grid;grid-template-columns:repeat(auto-fit,minmax(96px,1fr));padding:16px 72px 14px;background:#fff;box-shadow:0 14px 32px rgb(0 0 0 / 6%);overflow:hidden;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px);transition:opacity .2s ease,transform .25s ease,visibility 0s linear .25s}
.nav-product-wrap:hover .product-dropdown,.nav-product-wrap.is-open .product-dropdown,.product-dropdown:hover,.product-dropdown.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);transition-delay:0s}
.product-dropdown a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;min-width:0;color:#111;font-size:14px;line-height:1.2;transition:color .2s ease,transform .25s ease}
.product-dropdown img{width:42px;height:42px;object-fit:contain}
.product-dropdown a:hover,.product-dropdown a.active:hover{color:var(--green,#009843);transform:scale(1.05)}
.language{padding:12px 0;margin:-12px 0}
.language-menu{top:100%!important}
.btn,.contact-button,.contact-strip a,.hero-actions a,.main-nav a,.language-button,.language-menu a,.factory-tabs button,.about-tabs a,.section-progress button,.contact-form button,.modal-contact-form button,button[type='submit']{transition:transform .25s ease,background-color .25s ease,color .25s ease,border-color .25s ease,opacity .25s ease}
.btn:hover,.contact-button:hover,.contact-strip a:hover,.hero-actions a:hover,.language-button:hover,.language-menu a:hover,.factory-tabs button:hover,.about-tabs a:hover,.section-progress button:hover,.contact-form button:hover,.modal-contact-form button:hover,button[type='submit']:hover{transform:scale(1.05)}
@media(max-width:900px){.nav-product-wrap,.nav-product-link{height:auto;display:block}.product-dropdown{display:none}}

/* Header alignment correction */
.main-nav{align-items:center;height:100%}
.main-nav> a,.nav-product-link{display:inline-flex;align-items:center;height:100%}
.nav-product-wrap{height:100%;align-items:center}
@media(max-width:900px){.main-nav{height:auto}.main-nav> a,.nav-product-link,.nav-product-wrap{height:auto}}

/* Language switch is reserved for later; show globe + EN only for now. */
.language-arrow,.language-menu{display:none!important}
.language-button{cursor:default}
.language-button span{display:inline!important}

@media(max-width:900px){
  .home-pin-layer{position:relative;top:auto}
  .home-cover-layer{z-index:auto}
}

/* Mobile-only refinements */
@media (max-width: 900px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-top: 68px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 68px;
    transition: height 0.22s ease, box-shadow 0.22s ease;
  }

  .site-header.is-compact {
    height: 46px;
    box-shadow: 0 8px 22px rgb(0 0 0 / 8%);
  }

  .site-header.is-compact .brand img {
    width: 30px;
    height: 30px;
  }

  .site-header.is-compact .menu-toggle {
    width: 32px;
    height: 32px;
    gap: 4px;
  }

  .site-header.is-compact .menu-toggle span {
    width: 20px;
  }

  .site-header.is-compact .language-button {
    height: 32px;
    gap: 6px;
    font-size: 14px;
  }

  .site-header.is-compact .language-button img {
    width: 18px;
    height: 18px;
  }

  .site-header.is-compact .main-nav {
    top: 46px;
  }

  .hero {
    height: 720px;
    touch-action: pan-y;
  }

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

  .hero-copy {
    top: 72px;
    height: calc(100% - 72px);
  }

  .hero-copy p br {
    display: none;
  }

  .hero-copy h1 {
    max-width: 420px;
    margin-bottom: 26px;
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-copy p {
    width: min(390px, calc(100vw - 36px));
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 128px;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
    flex-wrap: nowrap;
  }

  .hero-actions .btn {
    width: min(42vw, 180px);
    min-width: 0;
    height: 52px;
    padding: 0 12px;
    font-size: 15px;
  }

  .slider-dots {
    bottom: 46px;
  }

  .products-section {
    min-height: auto;
    padding: 70px 0 78px;
  }

  .product-carousel {
    touch-action: pan-y;
  }

  .product-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    transform: none !important;
  }

  .product-card,
  .product-track.is-hovering .product-card,
  .product-track.is-hovering .product-card.is-hovered {
    display: block;
    flex-basis: auto;
    height: 132px;
    padding: 16px 42% 14px 20px;
    border: 0;
    background: #effaf5;
    overflow: hidden;
    box-shadow: none;
    transform: none;
  }

  .product-card:nth-child(n + 5) {
    display: none;
  }

  .product-card::before,
  .product-meta,
  .read-link {
    display: none !important;
  }

  .product-icon,
  .product-card.is-hovered .product-icon {
    width: 36px;
    height: 36px;
    margin: 0 0 8px;
  }

  .product-card h3,
  .product-card.is-hovered h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 19px;
    line-height: 1.1;
  }

  .product-card p,
  .product-card.is-hovered p {
    max-width: none;
    min-height: 0;
    margin: 0;
    color: #1f272a;
    font-size: 13px;
    line-height: 1.35;
  }

  .product-image,
  .product-card.is-hovered .product-image {
    top: auto;
    right: 8px;
    bottom: -4px;
    width: 39%;
    max-height: 124px;
    object-fit: contain;
    transform: none;
  }

  .strength-section {
    min-height: auto;
    padding: 70px 0 76px;
  }

  .strength-section .earth {
    width: 120vw;
    opacity: 0.2;
  }

  .section-intro {
    margin: -18px auto 34px;
    font-size: 13px;
  }

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

  .stat {
    min-height: 132px;
    display: grid;
    align-content: center;
    padding: 18px 10px;
    background: rgb(255 255 255 / 74%);
    border: 1px solid #e9eeee;
  }

  .stat strong {
    font-size: 42px;
  }

  .stat span {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .factory-section {
    min-height: auto;
    padding: 68px 0 74px;
  }

  .factory-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: -16px 0 28px;
  }

  .factory-tabs button {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 8px;
    gap: 0;
    font-size: clamp(10px, 2.7vw, 13px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .factory-tabs img {
    display: none;
  }

  .factory-collage {
    display: block;
    touch-action: pan-y;
  }

  .factory-left {
    height: 272px;
  }

  .factory-right {
    display: grid;
    grid-template-rows: 160px 160px;
  }

  .factory-left strong {
    left: 24px;
    bottom: 26px;
    font-size: 28px;
  }

  .partners-section {
    min-height: auto;
    padding: 70px 0 76px;
  }

  .partner-grid {
    width: 100%;
    display: flex;
    transition: none;
    touch-action: auto;
  }

  .partner-page {
    flex: 0 0 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .partner-page div {
    height: 78px;
    transform: none !important;
    box-shadow: none !important;
  }

  .partner-page img {
    max-width: 76%;
    max-height: 42px;
  }

  .footer-top,
  .footer-line,
  .footer-links {
    display: none !important;
  }

  .footer-inner {
    width: var(--container);
    padding: 18px 0;
  }

  .copyright {
    display: block;
    margin: 0;
    color: rgb(255 255 255 / 64%);
    font-size: 12px;
    line-height: 1.7;
  }

  .copyright span {
    display: block;
    margin: 0;
  }

  .copyright span + span {
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .hero {
    height: 776px;
  }

  .hero-copy {
    top: 72px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-actions {
    bottom: 126px;
  }

  .product-card,
  .product-track.is-hovering .product-card,
  .product-track.is-hovering .product-card.is-hovered {
    min-height: 132px;
  }

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