﻿.hero {
  height: 760px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-slide-item {
  width: 100%;
  height: 100%;
  background: #274a1a;
}
.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-pagination {
  left: 10% !important;
  bottom: 34px !important;
  width: auto !important;
  display: inline-flex;
  gap: 10px;
}
.hero-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 6px;
  background: #57a741;
}

.products {
  padding: 56px 0 46px;
  background:
    linear-gradient(120deg, rgba(170, 205, 157, .2), rgba(255,255,255,0) 32%),
    linear-gradient(-120deg, rgba(170, 205, 157, .2), rgba(255,255,255,0) 30%),
    #f3f6f1;
    background-image: url(/static/images/index-pro-bg.jpg);

}
.products-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}
.products-kicker {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 1px;
  color: #5a9a43;
  font-weight: 700;
}
.products .section-title {
  margin: 0;
  color: #18222b;
  font-size: 36px;
}
.products-search p {
  margin: 0 0 12px;
  text-align: right;
  font-size: 26px;
  color: #38453f;
}
.products-search form {
  width: 470px;
  max-width: 100%;
  height: 52px;
  border: 1px solid #c8d5c0;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  background: #fff;
}
.products-search input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 18px;
  font-size: 14px;
}
.products-search button {
  width: 124px;
  border: 0;
  background: #4b9438;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d9e3d4;
  box-shadow: 0 8px 16px rgba(87, 116, 78, .1);
  overflow: hidden;
  transition: background .22s ease, border-color .22s ease;
}
.product-card > a {
  color: inherit;
  display: block;
}
.img-wrap {
  aspect-ratio: 1 / 1;
  position: relative;
  background: #e9ece8;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .22s ease;
}
.img-hover-title {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #295f3c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  z-index: 2;
}
.product-info {
  padding: 12px 14px 10px;
}
.product-info h3 {
  margin: 0;
  color: #1f2730;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
  text-align: center;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.product-actions {
  border-top: 1px solid #e3e8e3;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-tag {
  position: relative;
  overflow: hidden;
  min-width: 102px;
  height: 30px;
  padding: 0 12px;
  border-radius: 18px;
  background: #fff;
  color: #3f4d48;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(60, 78, 58, .2);
  transition: color .25s ease, border-color .25s ease;
}
.btn-tag::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  background: #dbeec7;
  transition: width .28s ease;
  z-index: -1;
}
.btn-tag:hover {
  color: #2c5d2a;
  border-color: #b8d39e;
}
.btn-tag:hover::before {
  width: 106%;
}
.btn-tag i { color: #6a6f70; font-size: 12px; }
.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.right-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon-btn.mail {
  color: #fff;
  background: #e6b316;
}
.icon-btn.more {
  color: #fff;
  background: #4f963d;
}
.product-card:hover {
  background: #cfe2b7;
  border-color: #9fc16f;
}
.product-card:hover .img-wrap img {
  opacity: .4;
}
.product-card:hover .img-hover-title {
  opacity: 1;
}
.product-card:hover .product-info {
  opacity: 0;
}
.product-info,
.img-hover-title {
  transition: opacity .28s ease, transform .28s ease;
}
.img-hover-title {
  transform: translateY(56px);
}
.product-card:hover .img-hover-title {
  transform: translateY(0);
}
.product-card:hover .product-info {
  transform: translateY(-18px);
}
.thumb {
  border-radius: 10px;
  background: linear-gradient(145deg, #f9f9f9, #dcebd2);
}

.showcase, .about, .factory, .video, .process, .news { padding: 56px 0; }
.showcase {
  background: #f3f3f3;
  padding-top: 5%;
  padding-bottom: 5%;
}
.showcase-head { margin-bottom: 5%; }
.showcase-head .section-title {
  margin: 0;
  font-size: 40px;
  color: #245b2a;
  line-height: 1.15;
  font-weight: 700;
}
.showcase-head .section-subtitle {
  margin: 8px 0 0;
  font-size: 18px;
  color: #5f6e67;
  line-height: 2.1;
}

.showcase-layout {
  --showcase-large-h: 720px;
  --showcase-gap: 20px;
  --showcase-head-h: 110px;
  --showcase-head-gap: 24px;
  --showcase-total-h: calc(var(--showcase-head-h) + var(--showcase-head-gap) + var(--showcase-large-h));
  display: grid;
  grid-template-columns: 30% 36% 30%;
  gap: 2%;
  align-items: stretch;
}
.showcase-col.left {
  display: grid;
  grid-template-rows: var(--showcase-head-h) var(--showcase-large-h);
  row-gap: var(--showcase-head-gap);
}
.showcase-col.left .showcase-head {
  margin: 0;
  height: var(--showcase-head-h);
}
.showcase-col.left .showcase-card.large {
  height: var(--showcase-large-h);
}
.showcase-col.mid {
  height: var(--showcase-total-h);
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--showcase-gap);
  min-height: 0;
}
.showcase-col.right {
  height: var(--showcase-total-h);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: 20px;
  min-height: 0;
  align-self: stretch;
  align-content: stretch;
}
.showcase-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  padding: 40px;
}
.showcase-card.large { height: var(--showcase-large-h); }
.showcase-col.mid .showcase-card {
  height: auto;
  min-height: 0;
}
.showcase-col.right .showcase-card {
  height: auto;
}
.showcase-col.right .showcase-card.large {
  height: calc(var(--showcase-total-h) - 72px);
}
.showcase-card.green { background: #7bc3a5; }
.showcase-card.orange { background: #ef965f; }
.showcase-card.pink { background: #e6c1c4; }
.showcase-card.sand { background: #e8d4b0; }

.showcase-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}
.showcase-copy h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
.showcase-copy p {
  margin: 10px 0 0;
  font-size: 18px;
  opacity: .95;
  line-height: 2;
}
.showcase-card img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1);
  transition: transform .6s ease;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.showcase-card:hover img {
  transform: scale(1.08);
}
.showcase-btn {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 3;
  min-width: 150px;
  height: 40px;
  border: 1px solid #4e8d45;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.82);
  color: #3f7a38;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  transition: all .3s ease;
}
.showcase-btn span {
  width: 100%;
  display: block;
  position: relative;
  padding-right: 20px;
}
.showcase-btn span::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.showcase-btn:hover {
  letter-spacing: 2px;
  border-radius: 20px;
}
.showcase-more {
  margin: 0;
  display: block;
  text-align: right;
  font-size: 24px;
  color: #225f2c;
  font-weight: 700;
  padding-right: 30px;
  margin-bottom: 0;
  position: relative;
}
.showcase-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about {
  background: #e8efe3;
  padding-top: 70px;
  padding-bottom: 64px;
}
.about-grid, .process-grid {
  display: grid;
  grid-template-columns: 1fr 1.62fr;
  gap: 60px;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  border-radius: 10px;
  height: 620px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  right: -30px;
  top: 140px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #5b963a;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.about-badge::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(63, 127, 40, 0.55);
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.about-badge .badge-ring {
  width: 100%;
  height: 100%;
  animation: about-rotate 8s linear infinite;
  transition: opacity .3s ease;
}
.about-badge .badge-ring text {
  fill: #f1f7eb;
  font-size: 11px;
  letter-spacing: 1.35px;
  font-weight: 600;
}
.about-badge i {
  position: absolute;
  font-size: 30px;
}
.about-badge:hover::before {
  animation: badge-ripple 1s ease-out forwards;
}
.about-badge:hover .badge-ring {
  opacity: .95;
}
@keyframes badge-ripple {
  0% {
    transform: scale(0);
    opacity: .75;
  }
  70% {
    transform: scale(20);
    opacity: .28;
  }
  100% {
    transform: scale(24);
    opacity: 0;
  }
}
@keyframes about-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-main {
  position: relative;
}
.about-kicker {
  margin: 0 0 10px;
  color: #4c8f38;
  font-size: 34px;
  letter-spacing: 1px;
}
.about .section-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.12;
  color: #1f2b33;
}
.about-text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.52;
  color: #34413f;
}
.about-actions {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}
.about-btn {
  height: 46px;
  border-radius: 999px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.about-btn.primary {
  background: #4f8f35;
  color: #fff;
  border: 1px solid transparent;
}
.about-btn.secondary {
  background: #efb61f;
  color: #fff;
  border: 1px solid transparent;
}
.about-btn.primary:hover {
  background: transparent;
  border-color: #4f8f35;
  color: #4f8f35;
}
.about-btn.secondary:hover {
  background: transparent;
  border-color: #efb61f;
  color: #efb61f;
}
.about-tag {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 180px;
  border-radius: 8px;
  background: #4d8f2f;
  color: #fff;
  padding: 30px 16px 24px;
  text-align: center;
}
.about-tag i { font-size: 56px; }
.about-tag strong {
  display: block;
  font-size: 64px;
  line-height: 1;
  margin-top: 10px;
}
.about-tag span { font-size: 34px; }

.about-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about-stats > div strong {
  color: #438531;
  font-size: 52px;
  line-height: 1;
}
.about-stats > div em {
  margin-left: 6px;
  font-style: normal;
  color: #438531;
  font-size: 32px;
  font-weight: 700;
}
.about-stats > div p {
  margin: 10px 0 0;
  color: #2f3c39;
  font-size: 16px;
}

.factory {
  background: #fff;
  padding-top: 66px;
  padding-bottom: 70px;
}
.factory .section-title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  color: #101923;
}
.factory .section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 3px;
  margin: 12px auto 0;
  background: #4b9438;
}
.factory-desc {
  max-width: 1220px;
  margin: 18px auto 42px;
  text-align: center;
  color: #2f3d49;
  font-size: 15px;
  line-height: 1.62;
}
.global-service {
  background: #468a2f;
  padding: 74px 0 68px;
  min-height: clamp(560px, 38vw, 760px);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.global-service .container {
  position: relative;
  z-index: 2;
}
.global-copy {
  width: min(56%, 860px);
  padding-right: 24px;
}
.global-kicker {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
}
.global-copy h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.08;
}
.global-copy p {
  margin: 0 0 12px;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.96);
}
.global-btn {
  margin-top: 18px;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.global-map-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 56vw;
  height: 100%;
  min-height: 560px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.global-map-stage {
  width: min(100%, 1082px);
  aspect-ratio: 1082 / 720;
  position: relative;
}
.global-map-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: .95;
}
.global-map-stage .dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 180, 23, .72);
  box-shadow: 0 0 0 10px rgba(233, 180, 23, .12);
  animation: map-pulse 2.8s ease-in-out infinite;
}
.global-map-stage .d1 { width: 72px; height: 72px; left: 25%; top: 23%; } /* North America */
.global-map-stage .d2 { width: 48px; height: 48px; left: 22%; top: 11%; }  /* Alaska/Canada */
.global-map-stage .d3 { width: 66px; height: 66px; left: 46%; top: 62%; }  /* South America */
.global-map-stage .d4 { width: 34px; height: 34px; left: 45%; top: 73%; }  /* South Cone */
.global-map-stage .d5 { width: 60px; height: 60px; left: 76%; top: 41%; } /* Africa */
.global-map-stage .d6 { width: 74px; height: 74px; left: 82%; top: 18%; }   /* Europe */
.global-map-stage .d7 { width: 46px; height: 46px; left: 84%; top: 52%; }   /* East Africa */
@keyframes map-pulse {
  0%,100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.08); opacity: .9; }
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.factory-item {
  border-radius: 20px;
  overflow: hidden;
  background: #ececec;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
  position: relative;
  isolation: isolate;
}
.factory-item-body {
  color: inherit;
  display: block;
  position: relative;
  min-height: 100%;
}
.factory-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 1;
}
.factory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.factory-item:hover .factory-photo img {
  transform: scale(1.05);
}
.factory-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 14px;
  min-height: 34%;
  overflow: visible;
  z-index: 3;
  display: flex;
  align-items: center;
}
.factory-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  left: 0;
  background: #ececec;
  clip-path: polygon(0 0, 100% 16px, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.factory-tools {
  position: absolute;
  left: 20px;
  bottom: calc(34% - 24px);
  z-index: 6;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
}
.tool-btn,
.factory-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4a9336;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(53, 115, 42, .28);
  font-size: 16px;
  text-decoration: none;
}
.tool-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.factory-icon:hover ~ .tool-btn,
.factory-tools:hover .tool-btn,
.factory-tools:focus-within .tool-btn,
.tool-btn:hover,
.tool-btn:focus-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.factory-icon:hover ~ .tool-btn.phone,
.factory-tools:hover .tool-btn.phone,
.factory-tools:focus-within .tool-btn.phone,
.tool-btn.phone:hover,
.tool-btn.phone:focus-visible {
  transition-delay: .09s;
}
.factory-icon:hover ~ .tool-btn.mail,
.factory-tools:hover .tool-btn.mail,
.factory-tools:focus-within .tool-btn.mail,
.tool-btn.mail:hover,
.tool-btn.mail:focus-visible {
  transition-delay: .03s;
}
.factory-info h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #1d2a3a;
  font-weight: 700;
  position: relative;
  z-index: 5;
}

.video {
  position: relative;
  color: #eff8eb;
  text-align: center;
  background-image:
    linear-gradient(0deg, rgba(64, 122, 44, .72), rgba(64, 122, 44, .72)),
    url("/static/images/32553a7c-48ae-4d67-8873-80ce1dca3726.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.video .container {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}
.video-text {
  margin: 28px auto 0;
  max-width: 1460px;
  color: rgba(255, 255, 255, .96);
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1.7;
}
.video-play {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 54px auto 0;
  background: rgba(255,255,255,.95);
  color: #518e3f;
  box-shadow: 0 16px 40px rgba(23, 50, 20, .28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.video-play::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  animation: video-ripple 1.6s ease-out infinite;
  pointer-events: none;
}
.video-play i {
  position: relative;
  z-index: 2;
  transform: translateX(4px);
}
.video-play:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 42px rgba(23, 50, 20, .33);
  background: #fff;
}
@keyframes video-ripple {
  0% {
    transform: scale(0.92);
    opacity: .52;
  }
  70% {
    transform: scale(1.15);
    opacity: .18;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.process {
  background: #fff;
}
.process-grid {
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
  gap: 68px;
  align-items: stretch;
}
.process-photo-wrap {
  border-radius: 18px;
  overflow: hidden;
}
.process-photo {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  display: block;
}
.process-main {
  padding: 4px 0;
}
.process-title {
  margin: 0;
  color: #232d3a;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}
.process-lead {
  margin: 24px 0 30px;
  color: #27313c;
  font-size: 18px;
  line-height: 1.45;
}
.process-list {
  border-top: 1px solid #d6d6d6;
}
.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #d6d6d6;
}
.process-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, #4b8f35 0%, #79b35a 55%, #a9cf86 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.38s ease;
}
.process-item:hover::after {
  transform: scaleX(1);
}
.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4b8f35;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-top: 4px;
}
.process-copy h3 {
  margin: 0;
  color: #1f2b38;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}
.process-copy p {
  margin: 10px 0 0;
  color: #2f3d4b;
  font-size: 16px;
  line-height: 1.5;
}

.news {
  background: #ececec;
}
.news-layout {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 5%;
  align-items: stretch;
}
.news-cover {
  border-radius: 12px;
  min-height: 600px;
  background-image: url("/static/images/a479f61a-ff33-4f4a-ac79-3b8a992319e2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.news-main {
  display: flex;
  flex-direction: column;
}
.news-head {
  position: relative;
  padding-right: 120px;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 22px;
}
.news-kicker {
  margin: 0;
  color: #4f8f35;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}
.news-title {
  margin: 8px 0 0;
  color: #212d3c;
  font-size: 38px;
  line-height: 1.08;
}
.news-more-circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #78af20;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.news-more-circle svg {
  width: 100%;
  height: 100%;
  animation: about-rotate 8s linear infinite;
}
.news-more-circle text {
  fill: rgba(255,255,255,.92);
  font-size: 11px;
  letter-spacing: 1.1px;
  font-weight: 500;
}
.news-more-circle i {
  position: absolute;
  font-size: 20px;
}
.news-list {
  margin-top: 8px;
}
.news-item {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, .78fr);
  gap: 56px;
  padding: 34px 0;
  border-bottom: 1px solid #d6d6d6;
}
.news-date {
  margin: 0;
  color: #334255;
  font-size: 18px;
}
.news-item h3 {
  margin: 14px 0 0;
  color: #202c3a;
  font-size: 20px;
  line-height: 1.34;
}
.news-link {
  margin-top: 12px;
  display: inline-block;
  color: #4f8f35;
  font-size: 18px;
}
.news-excerpt {
  margin: 22px 0 0;
  color: #3f4d5d;
  font-size: 18px;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (max-width: 1920px) {
  .showcase-layout {
    --showcase-large-h: 640px;
    --showcase-gap: 16px;
    --showcase-head-h: 96px;
    --showcase-head-gap: 16px;
  }
  .showcase-card { padding: 28px; }
  .showcase-copy h3 { font-size: 28px; }
  .showcase-copy p { font-size: 16px; line-height: 1.7; }
  .showcase-btn {
    left: 24px;
    bottom: 24px;
    min-width: 136px;
    height: 36px;
    font-size: 16px;
  }
  .showcase-col.right .showcase-card.large {
    height: calc(var(--showcase-total-h) - 60px);
  }
  .showcase-more {
    font-size: 20px;
    padding-right: 24px;
  }
}

@media (max-width: 992px) {
  .hero { height: 520px; }
  .products-head {
    flex-direction: column;
    gap: 14px;
  }
  .products .section-title { font-size: 34px; }
  .products-search p { text-align: left; }
  .products-search form {
    width: 100%;
    max-width: 520px;
    height: 46px;
  }
  .products-search button {
    width: 110px;
    font-size: 13px;
  }
  .products-search input {
    padding: 0 14px;
    font-size: 13px;
  }
  .about-grid, .process-grid { grid-template-columns: 1fr; }
  .about-main { padding-right: 0; }
  .about-photo { height: 440px; }
  .about-badge { right: 14px; top: 14px; width: 88px; height: 88px; }
  .about .section-title { font-size: 38px; }
  .about-tag { position: static; margin-top: 16px; width: 140px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-layout {
    grid-template-columns: 1fr;
    --showcase-large-h: auto;
    --showcase-head-h: auto;
    --showcase-head-gap: 0px;
  }
  .showcase-col.left { grid-template-rows: auto; row-gap: 16px; }
  .showcase-col.left .showcase-head { height: auto; }
  .showcase-col.mid,
  .showcase-col.right { grid-template-rows: auto; gap: 16px; height: auto; min-height: auto;}
  .showcase-copy h3 { font-size: 20px; }
  .showcase-copy p { font-size: 16px; }
  .showcase-card,
  .showcase-card.large,
  .showcase-col.mid .showcase-card { height: auto; min-height: 360px; }
  .showcase-more { margin-top: 20px; display: none;}
  .news-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news-cover {
    min-height: 360px;
    background-attachment: scroll;
  }
  .news-head {
    padding-right: 96px;
    padding-bottom: 16px;
  }
  .news-kicker { font-size: 34px; }
  .news-title { font-size: 46px; }
  .news-more-circle {
    width: 76px;
    height: 76px;
  }
  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  .news-date { font-size: 15px; }
  .news-item h3 {
    margin-top: 10px;
    font-size: 34px;
    line-height: 1.4;
  }
  .news-link { font-size: 22px; }
  .news-excerpt {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.7;
  }
  .global-copy {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }
  .global-service {
    padding-top: 56px;
    padding-bottom: 52px;
  }
  .global-kicker { font-size: 14px; }
  .global-copy h2 { font-size: 36px; }
  .global-copy p { font-size: 14px; line-height: 1.65; }
  .global-btn {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }
  .video .container {
    min-height: 500px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .video-title { font-size: 42px; }
  .video-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
  }
  .video-play {
    width: 88px;
    height: 88px;
    margin-top: 30px;
    font-size: 36px;
  }
  .global-map-wrap {
    position: relative;
    width: 100%;
    min-height: 360px;
    margin-top: 24px;
    justify-content: center;
    align-items: flex-start;
  }
  .global-map-stage { width: min(100%, 820px); }
  .global-map-stage .d1 { width: 90px; height: 90px; }
  .global-map-stage .d2 { width: 46px; height: 46px; }
  .global-map-stage .d3 { width: 64px; height: 64px; }
  .global-map-stage .d4 { width: 34px; height: 34px; }
  .global-map-stage .d5 { width: 96px; height: 96px; }
  .global-map-stage .d6 { width: 58px; height: 58px; }
  .global-map-stage .d7 { width: 42px; height: 42px; }
  .process-grid { gap: 24px; }
  .process-photo { min-height: 380px; }
  .process-title { font-size: 38px; }
  .process-lead {
    margin: 16px 0 20px;
    font-size: 17px;
    line-height: 1.68;
  }
  .process-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .process-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-top: 2px;
  }
  .process-copy h3 { font-size: 34px; }
  .process-copy p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.65;
  }
  .factory .section-title { font-size: 42px; }
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-info h4 { font-size: 20px; }
}
@media (max-width: 640px) {
  .showcase, .about, .factory, .video, .process, .news { padding: 36px 0; }
  .hero { height: 420px; }
  .hero-pagination { left: 16px !important; bottom: 18px !important; }
  .products { padding: 34px 0 30px; }
  .products .section-title { font-size: 26px; }
  .products-kicker { font-size: 16px; margin-bottom: 6px; }
  .products-search p { font-size: 14px; margin-bottom: 8px; }
  .products-search form {
    max-width: 100%;
    height: 42px;
    border-radius: 24px;
  }
  .products-search button {
    width: 96px;
    font-size: 12px;
  }
  .products-search input {
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .product-info { padding: 8px 8px 6px; }
  .product-info h3 {
    font-size: 12px;
    height: 34px;
    line-height: 1.25;
  }
  .product-actions {
    padding: 8px 6px;
    gap: 6px;
  }
  .btn-tag {
    min-width: 72px;
    height: 26px;
    padding: 0 8px;
    font-size: 11px;
    gap: 5px;
  }
  .icon-btn {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .right-actions { gap: 6px; }
  .global-service {
    padding-top: 42px;
    padding-bottom: 40px;
  }
  .global-kicker { font-size: 13px; }
  .global-copy h2 { font-size: 28px; }
  .global-copy p { font-size: 13px; line-height: 1.6; }
  .global-btn {
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }
  .video .container { min-height: 420px; }
  .video-title { font-size: 34px; }
  .video-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .video-play {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
  .global-map-wrap { min-height: 250px; margin-top: 16px; }
  .global-map-stage { width: 100%; }
  .global-map-stage .d1 { width: 64px; height: 64px; }
  .global-map-stage .d2 { width: 34px; height: 34px; }
  .global-map-stage .d3 { width: 46px; height: 46px; }
  .global-map-stage .d4 { width: 26px; height: 26px; }
  .global-map-stage .d5 { width: 70px; height: 70px; }
  .global-map-stage .d6 { width: 40px; height: 40px; }
  .global-map-stage .d7 { width: 30px; height: 30px; }
  .news-cover { min-height: 260px; }
  .news-head { padding-right: 0; }
  .news-more-circle {
    position: relative;
    margin-top: 14px;
    width: 68px;
    height: 68px;
  }
  .news-kicker { font-size: 26px; }
  .news-title { font-size: 36px; }
  .news-item h3 { font-size: 20px; line-height: 1.4; }
  .news-link { font-size: 15px; }
  .news-excerpt { font-size: 12px; line-height: 1.65; }
  .process-photo { min-height: 280px; }
  .process-title { font-size: 30px; }
  .process-lead { font-size: 14px; }
  .process-copy h3 { font-size: 24px; }
  .process-copy p { font-size: 14px; }
  .factory .section-title { font-size: 34px; }
  .factory-desc { margin-bottom: 24px; font-size: 14px; }
  .factory-info {
    min-height: 36%;
    padding: 14px 12px 12px;
  }
  .factory-info::before { clip-path: polygon(0 0, 100% 12px, 100% 100%, 0 100%); }
  .factory-tools {
    left: 16px;
    bottom: calc(36% - 24px);
  }
  .factory-info h4 { font-size: 16px; line-height: 1.35; }
  .factory-grid, .about-stats { grid-template-columns: 1fr; }
}
