:root {
  --zs-bg: #0d0502;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-gray: #666666;
  --zs-inner: 83.333vw;
}

body.zs-home {
  background: var(--zs-bg);
  color: #fff;
}

.zs-inner {
  width: var(--zs-inner);
  margin: 0 auto;
  padding: 0 2.083vw;
  box-sizing: border-box;
  overflow: visible;
}

.zs-home .section-hero.zs-hero {
  --zs-hero-nav-h: 4.062vw;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 55.833vw;
  min-height: 55.833vw;
  max-height: 55.833vw;
  padding-bottom: 4.166vw;
  overflow: visible;
}

.zs-home .section-hero.zs-hero::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 17.187vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #0A0000 100%);

}

.zs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zs-hero-swiper,
.zs-hero-swiper .swiper-wrapper,
.zs-hero-slide {
  width: 100%;
  height: 100%;
}

.zs-hero-bg img,
.zs-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.zs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.42) 88%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.zs-home .hero-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  width: 100%;
  margin: 0 auto;
  padding-top: calc(var(--zs-hero-nav-h));
  padding-bottom: 7.291vw;
  box-sizing: border-box;
  filter: none;
}

.zs-hero,
.zs-hero-main,
.hero-content-item {
  overflow: visible !important;
}

.zs-home .hero-content-item {
  display: none;
}

.zs-home .hero-content-item.active {
  --hero-nav-gap: 76.822vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding-bottom: 2.968vw;
  width: 100%;
  max-width: 38.541vw;
  overflow: visible;
  animation: zsHeroContentFadeIn 0.6s ease both;
}

@keyframes zsHeroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.416vw);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zs-home .zs-hero-title {
  margin: 0;
  max-width: 100%;
}

.zs-home .zs-hero-title-text {
  color: #333333;
  line-height: 1.5;
  display: block;
  font-size: 3.125vw !important;
  font-weight: 700 !important;
  text-align: center;
  white-space: pre-wrap;
}

.hero-content-item.theme-dark .zs-hero-title-text {
  color: #fff;
}

.zs-home .zs-hero-desc {
  margin: 0.833vw 0 0;
  width: 100%;
}

.zs-home .zs-hero-desc span {
  color: #666666;
  display: block;
  font-size: 0.833vw !important;
  font-weight: 500 !important;
  line-height: 1.25vw;
  text-align: center;
}

.hero-content-item.theme-dark .zs-hero-desc span {
  color: #fff;
}

.zs-home .zs-hero-cta {
  margin-top: 3.02vw;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.zs-hero-cta-inner {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.666vw;
  width: 22.604vw;
  min-width: 22.604vw;
  max-width: 22.604vw;
}

.zs-hero-cta-nav {
  flex-shrink: 0;
  width: 3.229vw;
  height: 3.229vw;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  border: 0.052vw solid transparent;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.zs-hero-cta-nav:focus-visible {
  outline: 0.104vw solid rgba(255, 255, 255, 0.65);
  outline-offset: 0.156vw;
}

.zs-hero-cta-nav--prev,
.zs-hero-cta-nav--next {
  border: 0.052vw solid transparent;
  background: rgba(255, 255, 255, 0.2);
}

.zs-hero-cta-nav--prev:hover,
.zs-hero-cta-nav--next:hover {
  border: 0.052vw solid rgba(184, 28, 34, 0.95);
  background: rgba(184, 28, 34, 0.08);
}

.zs-home .hero-content-item.active .zs-hero-cta-nav--prev {
  position: absolute;
  left: calc(50% - (var(--hero-nav-gap) / 2) - 3.229vw);
  top: auto;
  bottom: 0;
  transform: none;
  z-index: 2;
}

.zs-home .hero-content-item.active .zs-hero-cta-nav--next {
  position: absolute;
  left: calc(50% + (var(--hero-nav-gap) / 2));
  top: auto;
  bottom: 0;
  transform: none;
  z-index: 2;
}

.zs-hero-cta-nav--prev .zs-hero-cta-nav-icon {
  display: block;
  width: 0.625vw;
  height: 0.625vw;
  margin-left: 0.104vw;
  border: solid #fff;
  border-width: 0 0 0.104vw 0.104vw;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.zs-hero-cta-nav--next .zs-hero-cta-nav-icon {
  display: block;
  width: 0.625vw;
  height: 0.625vw;
  margin-right: 0.104vw;
  border: solid #fff;
  border-width: 0 0.104vw 0.104vw 0;
  transform: rotate(-45deg);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.zs-hero-cta-nav--prev:hover .zs-hero-cta-nav-icon,
.zs-hero-cta-nav--next:hover .zs-hero-cta-nav-icon {
  border-color: var(--zs-brand);
}

.zs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.083vw;
  min-width: 7.083vw;
  height: 2.5vw;
  padding: 0;
  border-radius: 10.416vw;
  box-sizing: border-box;
  position: relative;
  gap: 0;
}

.zs-pill--solid {
  background: var(--zs-brand);
  color: #fff;
}

.zs-pill--outline {
  border: 0.052vw solid var(--zs-brand);
  color: rgba(184, 28, 34, 0.8);
  background: transparent;
}

.zs-hero-cta-inner .zs-pill {
  border: 0.052vw solid transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.zs-hero-cta-inner .zs-pill--solid {
  background: var(--zs-brand);
  color: #ffffff;
  border-color: var(--zs-brand);
}

.zs-hero-cta-inner .zs-pill--outline {
  background: transparent;
  color: rgba(184, 28, 34, 0.8);
  border-color: var(--zs-brand);
}

.zs-hero-cta-inner .zs-pill span {
  display: block;
  font-size: 0.937vw !important;
  font-weight: 500 !important;
  line-height: 1.25vw;
  transition: color 0.25s ease;
}

.zs-hero-cta-inner .zs-pill--solid span {
  color: #ffffff;
}

.zs-hero-cta-inner .zs-pill--outline span {
  color: rgba(184, 28, 34, 0.8);
}

.zs-hero-cta-inner .zs-pill::after {
  display: none;
}

.zs-hero-cta-inner .zs-pill:hover,
.zs-hero-cta-inner .zs-pill:focus-visible {
  background: #ffffff;
  color: var(--zs-brand);
  border-color: #ffffff;
}

.zs-hero-cta-inner .zs-pill:hover span,
.zs-hero-cta-inner .zs-pill:focus-visible span {
  color: var(--zs-brand);
}

.zs-section {
  position: relative;
  padding: 6.25vw 0;
}

.zs-page>section.zs-section {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.zs-page>section.zs-section.zs-depth-pending {
  opacity: 0.94;
  transform: translate3d(0, 1.875vw, 0) scale(0.995);
  filter: brightness(0.94);
  box-shadow: none;
}

.zs-page>section.zs-section.zs-depth-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: brightness(1);
}

.zs-section-head {
  margin-bottom: 3.125vw;
}

.zs-section-title span {
  color: #fff;
  line-height: 1.5;
}

.zs-section-sub span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.zs-section-sub {
  margin-top: 0.416vw;
}

.zs-section-products {
  background: linear-gradient(180deg, rgba(13, 5, 2, 0) 0%, rgba(13, 5, 2, 1) 12%);
}

body.zs-home .zs-section-products>.zs-inner {
  width: 83.333vw;
  max-width: 83.333vw;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125vw;
}

body.zs-home .zs-section-products .zs-section-head {
  width: 17.5vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.zs-home .zs-section-products .zs-section-title {
  width: 100%;
  margin: 0;
}

body.zs-home .zs-section-products .zs-section-title span {
  display: block;
  width: 100%;
  color: #ffffff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5vw !important;
  font-weight: 800 !important;
  line-height: 3.75vw;
  text-align: center;
}

body.zs-home .zs-section-products .zs-section-sub {
  width: 100%;
  margin-top: 0.208vw;
}

body.zs-home .zs-section-products .zs-section-sub span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.937vw !important;
  font-weight: 400 !important;
  line-height: 1.406vw;
  text-align: center;
}

.zs-home .zs-product-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 40.625vw));
  gap: 2.083vw;
  width: 100%;
  height: auto;
}

.zs-home .zs-product-card {
  position: relative;
  border-radius: 1.666vw;
  overflow: hidden;
  background: #141414;
  width: 40.625vw;
  min-height: 33.333vw;
  max-width: 100%;
}

.zs-home .zs-product-visual {
  height: 33.333vw;
}

.zs-home .zs-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
  transform: none;
  will-change: auto;

}

.zs-home .zs-product-card:hover .product-image {
  transform: scale(1.1);
}

.zs-home .zs-product-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 4.166vw;
  bottom: auto;
  padding: 0 1.25vw;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.zs-home .zs-product-caption .product-title {
  margin: 0;
}

.zs-home .zs-product-caption .product-subtitle {
  margin: 0.625vw 0 0;
  opacity: 1;
}

body.zs-home .zs-product-caption .product-title span {
  display: block;
  color: #ffffff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800 !important;
  line-height: 2.812vw;
  text-align: center;
}

body.zs-home .zs-product-caption .product-subtitle span {
  color: #fff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400 !important;
  line-height: 1.406vw;
  text-align: center;
}

.zs-section-tech {
  padding-top: 4.166vw;
}

body.zs-home .architecture-inner.zs-inner {
  width: 83.333vw;
  max-width: 83.333vw;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125vw;
}

body.zs-home .architecture-header.zs-section-head {
  width: 25vw;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.zs-home .architecture-title.zs-section-title {
  width: 100%;
  margin: 0;
}

body.zs-home .architecture-title.zs-section-title span {
  display: block;
  width: 100%;
  color: #ffffff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800 !important;
  line-height: 3.75vw;
  text-align: center;
}

body.zs-home .architecture-subtitle.zs-section-sub {
  width: 100%;
  margin-top: 0.208vw;
}

body.zs-home .architecture-subtitle.zs-section-sub span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300 !important;
  line-height: 1.406vw;
  text-align: center;
  white-space: nowrap;
}

body.zs-home .architecture-header .zs-more-btn {
  margin-top: 1.25vw;
  width: 8.333vw;
  padding: 0 2.291vw;
  justify-content: center;
  box-sizing: border-box;
}

body.zs-home .architecture-header .zs-more-btn .f_16 {
  font-weight: 500 !important;
  line-height: 1.25vw;
}

.zs-more-btn {
  margin-top: 1.041vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52vw;
  height: 2.604vw;
  padding: 0 2.291vw;
  border-radius: 52.031vw;
  background: var(--zs-brand);
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.zs-more-btn .f_16 {
  font-weight: 500 !important;
  line-height: normal;
  white-space: nowrap;
}

.zs-more-btn:hover,
.zs-more-btn:focus-visible {
  background: #ffffff;
  color: var(--zs-brand);
  box-shadow: 0 0.208vw 0.937vw rgba(0, 0, 0, 0.08);
}

.zs-more-btn:hover span,
.zs-more-btn:focus-visible span {
  color: var(--zs-brand);
}

.zs-more-btn:hover .zs-arrow,
.zs-more-btn:focus-visible .zs-arrow {
  filter: brightness(0) saturate(100%) invert(16%) sepia(83%) saturate(2581%) hue-rotate(341deg) brightness(93%) contrast(93%);
}

.zs-more-btn--center {
  margin-top: 0;
}

.zs-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.625vw;
  height: 0.625vw;
  flex-shrink: 0;
  margin-bottom: 0;
  border: none;
  transform: none;
  color: currentColor;
  transition: color 0.25s ease, filter 0.25s ease;
}

.zs-arrow::before {
  content: "";
  display: block;
  width: 0.364vw;
  height: 0.364vw;
  border-top: 0.104vw solid currentColor;
  border-right: 0.104vw solid currentColor;
  transform: rotate(45deg);
}

.zs-arrow img {
  display: none;
}

.zs-tech-row {
  gap: 1.041vw;
  width: 100%;
}

.zs-tech-card {
  position: relative;
  border-radius: 1.041vw;
  overflow: hidden;
  flex: 1;
  max-width: 100%;
  height: 33.333vw;

  will-change: transform;
  transition: all cubic-bezier(0.22, 1, 0.36, 1) 1s;
}

.zs-tech-card:hover {
  flex: 1.8;
}

.zs-tech-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.zs-tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.zs-tech-cap {
  position: absolute;
  left: 1.25vw;
  right: 1.25vw;
  bottom: 1.25vw;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  background: none;
}

.zs-tech-cap h3 {
  margin: 0;
}

body.zs-home .zs-tech-cap h3 span {
  color: #fff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25vw !important;
  font-weight: 800 !important;
  line-height: 1.875vw;
}

.zs-tech-cap p {
  margin: 0;
  opacity: 0.95;
}

body.zs-home .zs-tech-cap p span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400 !important;
  line-height: 1.25vw;
}

body.zs-home .zs-section-industry .zs-inner.zs-industry-inner {
  width: 83.333vw;
  max-width: 83.333vw;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125vw;
}

body.zs-home .zs-section-industry .zs-section-head {
  margin-bottom: 0;
  width: 13.333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.zs-home .zs-section-industry .zs-section-title {
  width: 100%;
  margin: 0;
}

body.zs-home .zs-section-industry .zs-section-title span {
  display: block;
  width: 100%;
  color: #ffffff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800 !important;
  line-height: 3.75vw;
  text-align: center;
}

body.zs-home .zs-section-industry .zs-section-sub {
  width: 100%;
  margin-top: 0.208vw;
}

body.zs-home .zs-section-industry .zs-section-sub span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300 !important;
  line-height: 1.406vw;
  text-align: center;
  white-space: nowrap;
}

.zs-industry-body {
  display: flex;
  flex-direction: column;
  gap: 2.083vw;
  width: 100%;
}

.zs-industry-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25vw;
  flex-wrap: nowrap;
  width: 100%;
}

.zs-industry-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25vw;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 29.791vw;
  width: 29.791vw;
  min-width: 29.791vw;
}

.zs-tab {
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.416vw;
  line-height: 1;
}

.zs-tab span {
  color: inherit;
}

.zs-tab:not(.is-active) {
  color: #fff;
}

.zs-tab.is-active {
  color: var(--zs-brand);
}

body.zs-home .zs-tab .f_18 {
  font-size: 0.937vw !important;
  font-weight: 400 !important;
  line-height: 1.406vw;
}

body.zs-home .zs-tab.is-active .f_18 {
  font-weight: 800 !important;
}

.zs-tab-dot {
  flex-shrink: 0;
  width: 0.625vw;
  height: 0.625vw;
  border-radius: 0.208vw;
  background: var(--zs-brand);
}

.zs-industry-progress {
  flex: 0 0 27.083vw;
  width: 27.083vw;
  height: 0.52vw;
  border-radius: 1.041vw;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  min-width: 27.083vw;
}

.zs-industry-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--zs-brand);
  transition: width 0.35s ease;
}

.zs-industry-progress-fill.zs-industry-progress-fill--autoplay {
  width: 0%;
}

.zs-home .applications-grid.zs-industry-showcase {
  margin-top: 0;
  width: 100%;
  max-width: 83.333vw;
  display: block;
}

.zs-industry-visual {
  position: relative;
  width: 83.333vw;
  max-width: 100%;
  height: 28.125vw;
  border-radius: 0 0 1.041vw 1.041vw;
  overflow: hidden;
  --zs-industry-slide-count: 6;
  --zs-industry-slide-index: 0;
  --zs-industry-slide-duration: 1200ms;
}

.zs-industry-slide-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.zs-industry-slides {
  display: flex;
  height: 100%;
  width: calc(var(--zs-industry-slide-count, 6) * 100%);
  transform: translateX(calc(-100% * var(--zs-industry-slide-index, 0) / var(--zs-industry-slide-count, 6)));
  transition: transform var(--zs-industry-slide-duration, 1200ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.zs-industry-slide {
  position: relative;
  flex: 0 0 calc(100% / var(--zs-industry-slide-count, 6));
  min-width: 0;
  height: 100%;
}

.zs-industry-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.zs-industry-slide--layered .zs-industry-slide-img {
  position: absolute;
  inset: 0;
}

.zs-industry-slide--layered .zs-industry-slide-img--under {
  z-index: 0;
}

.zs-industry-slide--layered .zs-industry-slide-img--over {
  z-index: 1;
}

.zs-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.22%, rgba(0, 0, 0, var(--zs-overlay-alpha, 0.51)) 86.28%);
  transition: background 0.35s ease;
}

.zs-industry-controls {
  position: absolute;
  top: 50%;
  left: 2.083vw;
  right: 2.083vw;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.zs-industry-nav {
  pointer-events: auto;
  width: 2.5vw;
  height: 2.5vw;
  border: none;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.zs-industry-nav:focus-visible {
  outline: 0.104vw solid rgba(255, 255, 255, 0.65);
  outline-offset: 0.156vw;
}

.zs-industry-nav--prev {
  background: rgba(0, 0, 0, 0.45);
}

.zs-industry-nav--next {
  background: rgba(255, 255, 255, 0.96);
}

.zs-industry-nav--prev:hover,
.zs-industry-nav--next:hover {
  background: rgba(255, 255, 255, 0.92);
}

.zs-industry-nav--prev .zs-industry-nav-icon {
  display: block;
  width: 0.572vw;
  height: 0.572vw;
  margin-left: 0.104vw;
  border: solid #fff;
  border-width: 0 0 0.104vw 0.104vw;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.zs-industry-nav--next .zs-industry-nav-icon {
  display: block;
  width: 0.572vw;
  height: 0.572vw;
  margin-right: 0.104vw;
  border: solid var(--zs-brand);
  border-width: 0 0.104vw 0.104vw 0;
  transform: rotate(-45deg);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.zs-industry-nav--prev:hover .zs-industry-nav-icon {
  border-color: var(--zs-brand);
}

.zs-industry-nav--next:hover .zs-industry-nav-icon {
  border-color: var(--zs-brand);
}

.zs-industry-caption {
  position: absolute;
  left: 2.083vw;
  bottom: 1.458vw;
  z-index: 1;
}

.zs-industry-caption span {
  color: #fff;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800 !important;
  line-height: 1.666vw;
}

.zs-industry-more {
  position: absolute;
  right: 2.083vw;
  bottom: 2.083vw;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  height: 2.604vw;
  padding: 0 1.875vw;
  border-radius: 52.031vw;
  border: 0.052vw solid #fff;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

body.zs-home .zs-industry-more .f_16 {
  font-weight: 500 !important;
  line-height: 1.25vw;
}

.zs-industry-more:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--zs-brand);
  box-shadow: 0 0.468vw 0.364vw rgba(0, 0, 0, 0.25);
}

.zs-industry-more:hover .zs-arrow-sm {
  border-right-color: var(--zs-brand);
  border-bottom-color: var(--zs-brand);
}

.zs-arrow-sm {
  width: 0.416vw;
  height: 0.416vw;
  border-right: 0.104vw solid #fff;
  border-bottom: 0.104vw solid #fff;
  transform: rotate(-45deg);
}

.zs-section-partners {
  overflow: hidden;
  padding-top: 0.52vw;
}

.zs-section-partners .zs-inner {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.zs-partners-title span {
  color: #fff;
}

.zs-partners-scroll {
  margin-top: 2.083vw;
  overflow: hidden;
  mask-image: none;
}

.zs-partners-track {
  display: flex;
  gap: 1.666vw;
  width: max-content;
  animation: zs-partners-marquee 40s linear infinite;
}

.zs-partners-track.reverse {
  margin-top: 1.666vw;
  animation-direction: reverse;
}

@keyframes zs-partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.zs-partner-logo {
  flex: 0 0 14.791vw;
  height: 6.25vw;
  border-radius: 1.041vw;
  background: #efefef;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zs-partner-logo img {
  max-width: 92%;
  max-height: 78%;
  object-fit: contain;
}

.zs-section-news .news-inner {
  width: var(--zs-inner);
  margin: 0 auto;
}

.zs-news-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25vw;
}

.zs-news-tabs {
  margin: 1.875vw 0 1.875vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.833vw 1.25vw;
  justify-content: center;
}

.zs-news-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.416vw;
  color: rgba(255, 255, 255, 0.88);
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}

.zs-news-tab.is-active {
  color: var(--zs-brand);
}

.zs-dot {
  width: 0.625vw;
  height: 0.625vw;
  border-radius: 0.208vw;
  background: var(--zs-brand);
}

.zs-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.458vw;
}

.zs-news-card {
  background: transparent;
  border-radius: 1.041vw;
  border: 0.052vw solid transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}

.zs-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 100% 100%, transparent 0.885vw, var(--zs-brand) 0.885vw 0.937vw, transparent 0.937vw) left top / 1.25vw 1.25vw no-repeat,
    radial-gradient(circle at 0 100%, transparent 0.885vw, var(--zs-brand) 0.885vw 0.937vw, transparent 0.937vw) right top / 1.25vw 1.25vw no-repeat,
    radial-gradient(circle at 100% 0, transparent 0.885vw, var(--zs-brand) 0.885vw 0.937vw, transparent 0.937vw) left bottom / 1.25vw 1.25vw no-repeat,
    radial-gradient(circle at 0 0, transparent 0.885vw, var(--zs-brand) 0.885vw 0.937vw, transparent 0.937vw) right bottom / 1.25vw 1.25vw no-repeat;
  transition: opacity 0.25s ease;
}

.zs-news-card:hover,
.zs-news-card:focus-within {
  border-color: transparent;
}

.zs-news-card:hover::before,
.zs-news-card:focus-within::before {
  opacity: 1;
}

.zs-news-card .news-image-wrap {
  position: relative;
  overflow: hidden;
  height: 17.083vw;
  margin: 0.625vw 0.625vw 0;
  border-radius: 0.625vw 0.625vw 0 0;
}

.zs-news-card .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zs-news-card .news-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.zs-news-card:hover .news-image-wrap::before,
.zs-news-card:focus-within .news-image-wrap::before {
  opacity: 1;
}

.zs-news-card:hover .news-image,
.zs-news-card:focus-within .news-image {
  transform: scale(1.04);
}

.zs-news-body {
  padding: 1.25vw 1.458vw 1.458vw;
  margin: 0 0.625vw 0.625vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  background-color: #fff;
  border-radius: 0 0 0.625vw 0.625vw;
}

.zs-news-body .news-category {
  margin: 0;
  color: #333;
}

.zs-news-body .news-headline {
  margin: 0;
}

.zs-news-body .news-headline span {
  color: #222;
  line-height: 1.45;
}

.news-read-more.zs-link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.312vw;
  margin-top: auto;
  color: #222222;
  text-decoration: none;
  transition: color 0.25s ease;
}

.news-read-more.zs-link-more:hover,
.news-read-more.zs-link-more:focus-visible {
  color: var(--zs-brand);
}

.news-read-more.zs-link-more span:first-child {
  color: inherit;
}

.zs-link-more-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 0.364vw;
  height: 0.364vw;
  margin-top: 0.052vw;
  border-right: 0.104vw solid #111;
  border-bottom: 0.104vw solid #111;
  transform: rotate(-45deg);
  transition: border-color 0.25s ease;
}

.news-read-more.zs-link-more:hover .zs-link-more-arrow,
.news-read-more.zs-link-more:focus-visible .zs-link-more-arrow {
  border-right-color: var(--zs-brand);
  border-bottom-color: var(--zs-brand);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  height: auto !important;
  margin: 0;
  padding: 0;
}

.page-shell {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}



/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --zs-inner: 92%;
  }

  .zs-inner {
    padding: 0 40px;
  }

  .zs-home .section-hero.zs-hero {
    --zs-hero-nav-h: 78px;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 560px;
    max-height: none;
    min-height: 520px;
    max-height: auto;
    min-height: 560px;
    max-height: none;
    padding-bottom: 80px;
  }

  .zs-home .section-hero.zs-hero::after {
    width: 100%;
    height: 330px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #0A0000 100%);
  }

  .zs-hero-swiper,
  .zs-hero-swiper .swiper-wrapper,
  .zs-hero-slide {
    width: 100%;
    height: 100%;
  }

  .zs-hero-bg img,
  .zs-hero-slide img {
    width: 100%;
    height: 100%;
  }

  .zs-hero-bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.42) 88%, rgba(0, 0, 0, 0.72) 100%);
  }

  .zs-home .hero-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 140px;
  }

  .zs-home .hero-content-item.active {
    --hero-nav-gap: 100vw;
    display: flex;
    flex-direction: column;
    padding-bottom: 57px;
    width: 90%;
    max-width: 100%;
  }

  .zs-home .zs-hero-title-text {
    font-size: 26px !important;
  }

  .zs-home .zs-hero-title {
    max-width: 100%;
  }

  .zs-home .zs-hero-desc {
    margin: 16px 0 0;
    width: 100%;
  }

  .zs-home .zs-hero-desc span {
    font-size: 16px !important;
    line-height: 24px;
  }

  .zs-home .zs-hero-cta {
    margin-top: 38px;
    display: flex;
    position: static;
    bottom: 0;
    width: auto;
    height: auto;
    order: 1;
    gap: 20px;
  }

  .zs-hero-cta-inner {
    margin-top: 20px;
    position: static;
    left: 0;
    transform: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    width: 434px;
    min-width: 0;
    max-width: 434px;
  }

  .zs-hero-cta-nav {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    border: 1px solid transparent;
  }

  .zs-hero-cta-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
  }

  .zs-hero-cta-nav--prev,
  .zs-hero-cta-nav--next {
    border: 1px solid transparent;
  }

  .zs-hero-cta-nav--prev:hover,
  .zs-hero-cta-nav--next:hover {
    border: 1px solid rgba(184, 28, 34, 0.95);
  }

  .zs-home .hero-content-item.active .zs-hero-cta-nav--prev {
    left: calc(50% - (var(--hero-nav-gap) / 2) - 62px);
  }

  .zs-home .hero-content-item.active .zs-hero-cta-nav--next {
    left: calc(50% + (var(--hero-nav-gap) / 2));
  }

  .zs-hero-cta-nav--prev .zs-hero-cta-nav-icon {
    width: 8px;
    height: 8px;
    margin-left: 2px;
    border-width: 0 0 2px 2px;
  }

  .zs-hero-cta-nav--next .zs-hero-cta-nav-icon {
    width: 8px;
    height: 8px;
    margin-right: 2px;
    border-width: 0 2px 2px 0;
  }

  .zs-pill {
    display: inline-flex;
    width: 100px;
    min-width: 100px;
    height: 30px;
    border-radius: 200px;
  }

  .zs-pill--outline {
    border: 1px solid var(--zs-brand);
  }

  .zs-hero-cta-inner .zs-pill {
    border: 1px solid var(--zs-brand);
  }

  .zs-hero-cta-inner .zs-pill span {
    font-size: 14px !important;
    line-height: 24px;
  }

  .zs-section {
    padding: 120px 0;
  }

  .zs-page>section.zs-section.zs-depth-pending {
    transform: translate3d(0, 36px, 0) scale(0.995);
  }

  .zs-section-head {
    margin-bottom: 60px;
  }

  .zs-section-sub {
    margin-top: 8px;
  }

  .zs-section-products {
    background: linear-gradient(180deg, rgba(13, 5, 2, 0) 0%, rgba(13, 5, 2, 1) 12%);
  }

  body.zs-home .zs-section-products>.zs-inner {
    width: 92%;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  body.zs-home .zs-section-products .zs-section-head {
    width: 336px;
    display: flex;
    flex-direction: column;
  }

  body.zs-home .zs-section-products .zs-section-title {
    width: 100%;
  }

  body.zs-home .zs-section-products .zs-section-title span {
    font-size: 24px !important;
    line-height: 1.4;
  }

  body.zs-home .zs-section-products .zs-section-sub {
    width: 100%;
    margin-top: 4px;
  }

  body.zs-home .zs-section-products .zs-section-sub span {
    width: 100%;
    font-size: 16px !important;
    line-height: 27px;
  }

  .zs-home .zs-product-matrix {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .zs-home .zs-product-card {
    border-radius: 32px;
    width: 100%;
    min-height: auto;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .zs-home .zs-product-visual {
    height: auto;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .zs-home .zs-product-visual img {
    width: 100%;
    height: 100%;
  }

  .zs-home .zs-product-caption {
    top: 0;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .zs-home .zs-product-caption .product-subtitle {
    margin: 12px 0 0;
  }

  body.zs-home .zs-product-caption .product-title span {
    line-height: 54px;
  }

  body.zs-home .zs-product-caption .product-subtitle span {
    line-height: 27px;
  }

  .zs-section-tech {
    padding-top: 80px;
  }

  body.zs-home .architecture-inner.zs-inner {
    width: 92%;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  body.zs-home .architecture-header.zs-section-head {
    width: 480px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  body.zs-home .architecture-title.zs-section-title {
    width: 100%;
  }

  body.zs-home .architecture-subtitle.zs-section-sub {
    width: 100%;
    margin-top: 4px;
  }

  body.zs-home .architecture-subtitle.zs-section-sub span {
    width: 100%;
    font-size: 18px !important;
    line-height: 27px;
  }

  body.zs-home .architecture-header .zs-more-btn {
    margin-top: 24px;
    width: 110px;
    padding: 0 44px;
  }

  body.zs-home .architecture-header .zs-more-btn .f_16 {
    font-size: 16px !important;
    line-height: 24px;
  }

  .zs-more-btn {
    margin-top: 20px;
    display: inline-flex;
    gap: 4px;
    height: 30px;
    padding: 0 44px;
    border-radius: 999px;
  }

  .zs-more-btn .f_16 {
    font-size: 16px !important;
  }

  .zs-more-btn:hover,
  .zs-more-btn:focus-visible {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  }

  .zs-more-btn:hover .zs-arrow,
  .zs-more-btn:focus-visible .zs-arrow {
    filter: brightness(0) saturate(100%) invert(16%) sepia(83%) saturate(2581%) hue-rotate(341deg) brightness(93%) contrast(93%);
  }

  .zs-arrow {
    display: inline-flex;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .zs-arrow::before {
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .zs-tech-row {
    gap: 20px;
    width: 100%;
  }

  .zs-tech-card {
    border-radius: 20px;
    flex: 1;
    max-width: 100%;
    height: auto;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .zs-tech-card:hover {
    flex: 1.8;
  }

  .zs-tech-card img {
    width: 100%;
    height: 100%;
  }

  .zs-tech-cap {
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  body.zs-home .zs-tech-cap h3 span {
    font-size: 24px !important;
    line-height: 36px;
  }

  body.zs-home .zs-tech-cap p span {
    font-size: 16px !important;
    line-height: 24px;
  }

  body.zs-home .zs-section-industry .zs-inner.zs-industry-inner {
    width: 92%;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  body.zs-home .zs-section-industry .zs-section-head {
    width: 256px;
    display: flex;
    flex-direction: column;
  }

  body.zs-home .zs-section-industry .zs-section-title {
    width: 100%;
  }
  body.zs-home .zs-section-industry .zs-section-title span{
    line-height:1.4;
  }

  body.zs-home .zs-section-industry .zs-section-sub {
    width: 100%;
    margin-top: 4px;
  }

  body.zs-home .zs-section-industry .zs-section-sub span {
    width: 100%;
    font-size: 16px !important;
    line-height: 27px;
  }

  .zs-industry-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .zs-industry-toolbar-row {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    width: 100%;
  }

  .zs-industry-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: flex-start;
    flex: 0 0 572px;
    width: 572px;
    min-width: 0;
  }

  .zs-tab {
    display: inline-flex;
    gap: 8px;
  }

  body.zs-home .zs-tab .f_18 {
    font-size: 18px !important;
    line-height: 27px;
  }

  .zs-tab-dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 4px;
  }

  .zs-industry-progress {
    flex: none;
    width: 100%;
    height: 5px;
    border-radius: 20px;
    min-width: 0;
  }

  .zs-industry-progress-fill {
    height: 100%;
  }

  .zs-industry-progress-fill.zs-industry-progress-fill--autoplay {
    width: 0%;
  }

  .zs-home .applications-grid.zs-industry-showcase {
    width: 100%;
    max-width: 100%;
  }

  .zs-industry-visual {
    width: 100%;
    max-width: 100%;
    height: 540px;
    border-radius: 0 0 20px 20px;
  }

  .zs-industry-slides {
    display: flex;
    height: 100%;
    width: calc(var(--zs-industry-slide-count, 6) * 100%);
    transform: translateX(calc(-100% * var(--zs-industry-slide-index, 0) / var(--zs-industry-slide-count, 6)));
  }

  .zs-industry-slide {
    flex: 0 0 calc(100% / var(--zs-industry-slide-count, 6));
    height: 100%;
  }

  .zs-industry-slide-img {
    width: 100%;
    height: 100%;
  }

  .zs-industry-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.22%, rgba(0, 0, 0, var(--zs-overlay-alpha, 0.51)) 86.28%);
  }

  .zs-industry-controls {
    top: 50%;
    left: 40px;
    right: 40px;
    transform: translateY(-50%);
    display: none;
  }

  .zs-industry-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    flex-shrink: 0;
  }

  .zs-industry-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
  }

  .zs-industry-nav--prev .zs-industry-nav-icon {
    width: 11px;
    height: 11px;
    margin-left: 2px;
    border-width: 0 0 2px 2px;
  }

  .zs-industry-nav--next .zs-industry-nav-icon {
    width: 11px;
    height: 11px;
    margin-right: 2px;
    border-width: 0 2px 2px 0;
  }

  .zs-industry-caption {
    left: 10px;
    bottom: 34px;
  }

  .zs-industry-more {
    right: 10px;
    bottom: 28px;
    display: inline-flex;
    gap: 4px;
    height: 30px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid #fff;
  }

  body.zs-home .zs-industry-more .f_16 {
    font-size: 14px !important;
    line-height: 24px;
  }

  .zs-industry-more:hover {
    box-shadow: 0 9px 7px rgba(0, 0, 0, 0.25);
  }

  .zs-arrow-sm {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .zs-section-partners {
    padding-top: 10px;
  }

  .zs-section-partners .zs-inner {
    width: 100%;
  }

  .zs-partners-scroll {
    margin-top: 40px;
  }

  .zs-partners-track {
    display: flex;
    gap: 22px;
  }

  .zs-partners-track.reverse {
    margin-top: 32px;
  }

  .zs-partner-logo {
    flex: none;
    height: 80px;
    border-radius: 20px;
    display: flex;
  }

  .zs-partner-logo img {
    max-width: 92%;
    max-height: 78%;
  }

  .zs-news-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .zs-news-tabs {
    margin: 36px 0 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .zs-news-tab {
    display: inline-flex;
    gap: 8px;
  }

  .zs-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
  }

  .zs-news-grid {
    gap: 28px;
  }

  .zs-news-card {
    border-radius: 20px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
  }

  .zs-news-card::before {
    background:
      radial-gradient(circle at 100% 100%, transparent 17px, var(--zs-brand) 17px 18px, transparent 18px) left top / 24px 24px no-repeat,
      radial-gradient(circle at 0 100%, transparent 17px, var(--zs-brand) 17px 18px, transparent 18px) right top / 24px 24px no-repeat,
      radial-gradient(circle at 100% 0, transparent 17px, var(--zs-brand) 17px 18px, transparent 18px) left bottom / 24px 24px no-repeat,
      radial-gradient(circle at 0 0, transparent 17px, var(--zs-brand) 17px 18px, transparent 18px) right bottom / 24px 24px no-repeat;
  }

  .zs-news-card .news-image-wrap {
    height: 188px;
    margin: 12px 12px 0;
    border-radius: 12px 12px 0 0;
  }

  .zs-news-card .news-image {
    width: 100%;
    height: 100%;
  }

  .zs-news-body {
    padding: 24px 28px 28px;
    margin: 0 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 0 0 12px 12px;
  }

  .news-read-more.zs-link-more {
    display: inline-flex;
    gap: 6px;
  }

  .zs-link-more-arrow {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 1px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
  }

  html,
  body {
    width: 100%;
  }

  .page-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .zs-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .zs-home .section-hero.zs-hero {
    --zs-hero-nav-h: 56px;
  }

  .zs-home .hero-content-item.active {
    --hero-nav-gap: 0px;
    max-width: 100%;
    padding-bottom: 0;
  }

  .zs-home .hero-content {
    padding: 10% 0 0;
  }

  .zs-hero-cta-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .zs-home .hero-content-item.active .zs-hero-cta-nav--prev,
  .zs-home .hero-content-item.active .zs-hero-cta-nav--next {
    position: static;
    left: auto;
    transform: none;
  }

  .zs-section {
    padding: 48px 0;
  }

  .zs-section-head {
    margin-bottom: 32px;
    width: 100% !important;
  }

  body.zs-home .zs-section-products .zs-section-head,
  body.zs-home .architecture-header.zs-section-head,
  body.zs-home .zs-section-industry .zs-section-head {
    width: 100% !important;
  }

  .zs-industry-toolbar-row {
    flex-wrap: wrap;
  }

  .zs-industry-tabs {
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }

  .zs-industry-visual {
    height: auto;
    min-height: 340px;
    aspect-ratio: auto;
  }

  .zs-tech-row {
    flex-direction: column;
  }

  .zs-tech-card {
    height: auto;
    min-height: 440px;
    aspect-ratio: 16 / 10;
  }

  .zs-tech-card:hover {
    flex: 1;
  }

  .zs-news-grid {
    grid-template-columns: 1fr !important;
  }
}