@font-face {
  font-family: "Montserrat";
  src: url("../font/montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../font/noto-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --zs-color-black: #111111;
  --zs-color-white: #ffffff;
  --zs-color-text: #1f1f1f;
  --zs-color-muted: #5f5f5f;
  --zs-color-border: #e6e6e6;
  --zs-color-soft: #f6f6f6;
  --zs-color-green: #2ebb77;
  --zs-color-green-dark: #23955f;
  --zs-color-footer: #101010;
  --zs-shadow-card: 0 18px 42px rgba(0, 0, 0, 0.08);
  --zs-shadow-header: 0 8px 24px rgba(0, 0, 0, 0.08);
  --zs-radius-card: 24px;
  --zs-radius-button: 999px;
  --zs-container: 1320px;
  --zs-transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans", Arial, sans-serif;
  color: var(--zs-color-text);
  background: var(--zs-color-white);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

input,
textarea {
  outline: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.zs-section {
  padding: 88px 15%;
}

.zs-section__head {
  margin-bottom: 40px;
  text-align: center;
}

.zs-section__head h2,
.zs-manufacturer__text h2,
.zs-quote-section__form h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--zs-color-black);
}

.zs-categories .zs-section__head h2,
.zs-why .zs-section__head h2,
.zs-certifications .zs-section__head h2,
.zs-trend .zs-section__head h2,
.zs-blog .zs-section__head h2 {
  font-weight: 600;
}

.zs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: var(--zs-radius-button);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--zs-transition), background-color var(--zs-transition), color var(--zs-transition), border-color var(--zs-transition);
}

.zs-button:hover {
  transform: translateY(-2px);
}

.zs-button--primary,
.zs-form button,
.zs-form--modal button {
  background: var(--zs-color-green);
  color: var(--zs-color-white);
}

.zs-button--primary:hover,
.zs-form button:hover,
.zs-form--modal button:hover {
  background: var(--zs-color-green-dark);
}

.zs-button--ghost {
  border: 1px solid var(--zs-color-black);
  color: var(--zs-color-black);
}

.zs-button--ghost:hover {
  color: var(--zs-color-white);
  background: var(--zs-color-black);
}

.zs-button--learn-more {
  min-height: 50px;
  padding: 0 22px;
  gap: 10px;
  border-radius: 999px;
  background: var(--zs-color-green);
  color: var(--zs-color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.zs-button--learn-more:hover {
  background: var(--zs-color-black);
  color: var(--zs-color-white);
}

.zs-manufacturer__text .zs-button--learn-more,
.zs-manufacturer__text .zs-button--learn-more:hover,
.zs-manufacturer__text .zs-button--learn-more:visited {
  color: var(--zs-color-white);
}

.zs-button--learn-more__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.zs-button--learn-more__arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.zs-form input,
.zs-form textarea {
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.zs-hero {
  position: relative;
  overflow: hidden;
}

.zs-hero__slider {
  position: relative;
  min-height: calc(100svh - 136px);
  background: #d8d8d8;
}

.zs-hero__track,
.zs-hero__slide,
.zs-hero__slide img {
  width: 100%;
  height: 100%;
}

.zs-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.zs-hero__slide.is-active {
  opacity: 1;
}

.zs-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.12) 100%);
}

.zs-hero__slide img {
  object-fit: cover;
}

.zs-hero__overlay {
  position: absolute;
  inset: 0;
  width: 90%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

.zs-hero__content {
  max-width: 820px;
  color: var(--zs-color-white);
}

.zs-hero__content h2 {
  margin: 0 0 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 50px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.zs-hero__content p {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 300;
}

.zs-hero__content .zs-button--primary {
  margin-top: 12px;
  min-height: 44px;
  padding: 0 34px;
  font-size: 16px;
  border: 3px solid transparent;
}

.zs-hero__content .zs-button--primary:hover {
  background: transparent;
  border-color: var(--zs-color-white);
  color: var(--zs-color-white);
}

.zs-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  margin-top: -29px;
  padding: 16px;
  border-radius: 0;
  background: transparent;
  color: var(--zs-color-white);
  backdrop-filter: none;
  transition: transform var(--zs-transition), color var(--zs-transition);
}

.zs-slider-arrow:hover {
  background: transparent;
  color: var(--zs-color-white);
  transform: translateY(-2px);
}

.zs-slider-arrow--prev {
  left: 28px;
}

.zs-slider-arrow--next {
  right: 28px;
}

.zs-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.zs-hero__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform var(--zs-transition), background-color var(--zs-transition);
}

.zs-hero__dots button.is-active {
  background: var(--zs-color-white);
  transform: scale(1.25);
}

.zs-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.zs-carousel__viewport {
  overflow: hidden;
}

.zs-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.zs-carousel__arrow {
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 50%;
  background: var(--zs-color-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  color: var(--zs-color-black);
  transition: background-color var(--zs-transition), color var(--zs-transition), transform var(--zs-transition);
}

.zs-carousel__arrow:hover {
  background: var(--zs-color-green);
  color: var(--zs-color-white);
  transform: translateY(-2px);
}

.zs-categories .zs-carousel__arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--zs-color-green);
  position: relative;
}

.zs-categories .zs-carousel__arrow:hover {
  background: transparent;
  color: var(--zs-color-green);
  transform: none;
}

.zs-categories .zs-carousel__arrow svg {
  display: none;
}

.zs-categories .zs-carousel__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.zs-categories .zs-carousel__arrow--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.zs-categories .zs-carousel__arrow--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.zs-certifications .zs-carousel__arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--zs-color-green);
  position: relative;
}

.zs-certifications .zs-carousel__arrow:hover {
  background: transparent;
  color: var(--zs-color-green);
  transform: none;
}

.zs-certifications .zs-carousel__arrow svg {
  display: none;
}

.zs-certifications .zs-carousel__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.zs-certifications .zs-carousel__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.zs-certifications .zs-carousel__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.zs-category-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.zs-cert-card {
  margin: 0;
  flex: 0 0 calc((100% - 60px) / 4);
}

.zs-cert-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.zs-cert-swiper .swiper-wrapper {
  align-items: stretch;
}

.zs-cert-swiper .zs-cert-card {
  flex: 0 0 auto;
  width: auto;
}

.zs-category-card a {
  display: block;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.zs-category-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: none;
}

.zs-category-card__content {
  padding: 18px 12px 8px;
  text-align: center;
}

.zs-category-card__content h3 {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--zs-color-black);
}

.zs-category-card__content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  border-radius: var(--zs-radius-button);
  border: 0;
  background: var(--zs-color-green);
  color: var(--zs-color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.zs-trend-card a:hover .zs-trend-card__media img,
.zs-blog-card:hover .zs-blog-card__thumb img {
  transform: scale(1.03);
}

.zs-manufacturer {
  background: var(--zs-color-soft);
  padding-bottom: 24px;
}

.zs-manufacturer__head {
  margin-bottom: 36px;
}

.zs-manufacturer__head h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--zs-color-black);
  text-align: left;
}

.zs-manufacturer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.zs-manufacturer__text p,
.zs-why-card__body p,
.zs-blog-card__body p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.85;
  color: var(--zs-color-muted);
  font-weight: 300;
}

.zs-manufacturer__text a {
  color: #c36;
  text-decoration: none;
  font-weight: 400;
}

.zs-manufacturer__text strong,
.zs-manufacturer__text strong a {
  color: #c36;
  font-weight: 400;
  text-decoration: none;
}

.zs-video-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--zs-shadow-card);
}

.zs-video-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.zs-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.zs-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.zs-video-card__play::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 33px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--zs-color-green);
}

.zs-video-card__play::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: zs-pulse 2.6s infinite;
}

.zs-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.zs-video-modal.is-open {
  display: flex;
}

.zs-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 18, 0.74);
}

.zs-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
  border-radius: 12px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.zs-video-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.zs-video-modal__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.zs-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.zs-video-modal__close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.zs-video-modal__close span:first-child {
  transform: rotate(45deg);
}

.zs-video-modal__close span:last-child {
  transform: rotate(-45deg);
}

@keyframes zs-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.24);
    opacity: 0;
  }
}

.zs-stats {
  position: relative;
  background: var(--zs-color-soft);
  padding-top: 20px;
  padding-bottom: 42px;
}

.zs-stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: #dcebe4;
  z-index: 0;
}

.zs-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 34px 28px 30px;
  background: var(--zs-color-green);
}

.zs-stat {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 138px;
  padding: 12px 18px;
  background: transparent;
  text-align: center;
}

.zs-stat__title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.zs-stat__value {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 4vw, 70px);
  line-height: 1;
  font-weight: 700;
  color: var(--zs-color-white);
}

.zs-why__grid,
.zs-trend__grid,
.zs-blog__grid {
  display: grid;
  gap: 28px;
}

.zs-why {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.zs-certifications,
.zs-trend,
.zs-blog {
  padding-bottom: 0;
}

.zs-why__grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.zs-trend-card a,
.zs-blog-card {
  overflow: hidden;
  border-radius: var(--zs-radius-card);
  background: var(--zs-color-white);
  box-shadow: var(--zs-shadow-card);
}

.zs-why-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  aspect-ratio: 2 / 1;
}

.zs-why-card:nth-child(3),
.zs-why-card:nth-child(4) {
  direction: rtl;
}

.zs-why-card:nth-child(3) .zs-why-card__body,
.zs-why-card:nth-child(4) .zs-why-card__body,
.zs-why-card:nth-child(3) .zs-why-card__media,
.zs-why-card:nth-child(4) .zs-why-card__media {
  direction: ltr;
}

.zs-why-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zs-why-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  background: #f5f5f5;
  height: 100%;
}

.zs-why-card__body h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--zs-color-black);
}

.zs-cert-card {
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: var(--zs-color-white);
  text-align: center;
  box-shadow: none;
}

.zs-cert-card img {
  width: 100%;
  aspect-ratio: 310 / 396;
  object-fit: cover;
  border-radius: 0;
}

.zs-cert-card figcaption {
  margin-top: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.zs-carousel--cert .zs-carousel__track {
  gap: 20px;
}

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

.zs-trend-card {
  height: 100%;
}

.zs-trend-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  border-radius: 18px;
  background: #f3f3f3;
  box-shadow: none;
  transition: none;
}

.zs-trend-card__media {
  overflow: hidden;
  border-radius: 12px;
}

.zs-trend-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.zs-trend-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 6px 6px;
}

.zs-trend-card__body h3,
.zs-blog-card__body h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--zs-color-black);
}

.zs-trend-card__body p {
  margin: 0 0 10px;
  min-height: 78px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--zs-color-muted);
}

.zs-trend-card__colors {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
}

.zs-trend-card__colors img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

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

.zs-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: var(--zs-color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.zs-blog-card__thumb {
  overflow: hidden;
}

.zs-blog-card__thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.zs-blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 35px 25px 0;
}

.zs-blog-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--zs-color-green);
  color: var(--zs-color-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zs-blog-card__link {
  display: inline-flex;
  margin-top: 30px;
  margin-bottom: 25px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--zs-color-green);
  text-transform: uppercase;
}

.zs-blog-card__meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 18px 22px 16px;
  font-size: 13px;
  color: #a6a6a6;
}

.zs-blog-card__meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #ececec;
}

.zs-blog-card__body h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.zs-blog-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #8a8a8a;
}

.zs-quote-section {
  background: transparent;
}

.zs-quote-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  background: var(--zs-color-soft);
}

.zs-quote-section__visual img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
}

.zs-quote-section__form {
  padding: 10% 15%;
}

.zs-quote-section__form h2 {
  margin-bottom: 28px;
  text-align: center;
  font-weight: 600;
}

.zs-form,
.zs-form--modal {
  display: grid;
  gap: 14px;
}

.zs-form input,
.zs-form textarea {
  width: 100%;
  padding: 12px 12px;
  background: var(--zs-color-white);
  color: var(--zs-color-text);
}

.zs-quote-section .zs-form input,
.zs-quote-section .zs-form textarea {
  border: 2px solid #C5C5C5;
  border-radius: 3px;
}

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

.zs-form input::placeholder,
.zs-form textarea::placeholder {
  color: #858585;
}

.zs-form button,
.zs-form--modal button {
  min-height: 56px;
  border-radius: var(--zs-radius-button);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 1279px) {
  .zs-manufacturer__grid,
  .zs-quote-section__grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 1024px) {


  .zs-section {
    padding: 72px 0;
  }

  .zs-hero__slider {
    min-height: 58svh;
  }

  .zs-slider-arrow--prev {
    left: 8px;
  }

  .zs-slider-arrow--next {
    right: 8px;
  }

  .zs-hero__content {
    padding: 0 15px;
  }

  .zs-hero__content h2 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .zs-hero__content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .zs-category-card,
  .zs-cert-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .zs-stats__grid,
  .zs-why__grid,
  .zs-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zs-why-card {
    grid-template-columns: 1fr;
    min-height: 0;
    aspect-ratio: auto;
  }

  .zs-why-card:nth-child(3),
  .zs-why-card:nth-child(4) {
    direction: ltr;
  }

  .zs-manufacturer__head,
  .zs-manufacturer__grid {
    width: min(100% - 40px, var(--zs-container));
    margin-left: auto;
    margin-right: auto;
  }


  .zs-quote-section__form {
    padding: 10% 5%;
  }
}
@media (max-width: 767px) {

  .zs-section {
    padding: 56px 0;
  }

  .zs-why__grid {
    width: 100%;
    margin: 0;
  }

  .zs-manufacturer__head,
  .zs-manufacturer__grid {
    width: min(100% - 32px, var(--zs-container));
    margin-left: auto;
    margin-right: auto;
  }

  .zs-manufacturer__head h2,
  .zs-manufacturer__text {
    text-align: center;
  }

  .zs-manufacturer__text .zs-button--learn-more {
    margin-left: auto;
    margin-right: auto;
  }

  .zs-quote-section__form {
    padding: 10% 5%;
  }

  .zs-hero__slider {
    min-height: 62svh;
  }

  .zs-hero__overlay {
    align-items: flex-end;
    padding-bottom: 56px;
  }

  .zs-hero__content {
    max-width: 100%;
    padding: 0 15px;
  }

  .zs-hero__content h2 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1;
  }

  .zs-hero__content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .zs-slider-arrow {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    padding: 12px;
  }

  .zs-slider-arrow--prev {
    left: -8px;
  }

  .zs-slider-arrow--next {
    right: -8px;
  }

  .zs-carousel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .zs-carousel__arrow {
    display: none;
  }

  .zs-certifications .zs-section__head,
  .zs-certifications .zs-carousel {
    width: min(100% - 24px, var(--zs-container));
    margin-left: auto;
    margin-right: auto;
  }

  .zs-certifications .zs-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .zs-certifications .zs-carousel__arrow {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .zs-category-card,
  .zs-cert-card {
    flex-basis: 100%;
  }

  .zs-category-card__content h3,
  .zs-why-card__body h3,
  .zs-trend-card__body h3,
  .zs-blog-card__body h3 {
    font-size: 22px;
  }

  .zs-why__grid,
  .zs-trend__grid,
  .zs-blog__grid {
    grid-template-columns: 1fr;
  }

  .zs-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 14px;
  }

  .zs-why-card__body {
    padding: 24px 20px;
  }

  .zs-why-card__media {
    aspect-ratio: 1 / 1;
  }

  .zs-stat {
    min-height: 110px;
    padding: 18px 14px;
    gap: 8px;
  }

  .zs-stat:last-child {
    grid-column: 1 / -1;
  }

  .zs-stat__value {
    font-size: 32px;
  }

  .zs-stat__title {
    font-size: 14px;
  }

}
