.zs-main {
  overflow-x: hidden;
}

.zs-page-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0f172a;
}

.zs-page-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zs-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 37, 0.46);
}

.zs-page-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 88px 0 74px;
}

.zs-page-banner-copy {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  justify-items: center;
  width: min(100%, 920px);
  text-align: center;
  color: #ffffff;
}

.zs-page-banner-copy h2,
.zs-page-banner-copy p {
  margin: 0;
}

.zs-page-banner-copy h2 {
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.zs-page-banner-subtitle {
  max-width: 760px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.zs-page-banner-copy p {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.zs-page-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

.zs-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.zs-btn-secondary:hover {
  color: #0f172a;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.zs-product-subnav {
  padding: 24px 0 56px;
  background: #ffffff;
}

.zs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #667085;
}

.zs-breadcrumb a,
.zs-breadcrumb .is-current {
  color: inherit;
}

.zs-breadcrumb a:hover {
  color: var(--zs-color-primary);
}

.zs-breadcrumb-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--zs-color-primary);
}

.zs-breadcrumb-home svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.zs-breadcrumb-separator {
  color: #98a2b3;
}

.zs-breadcrumb .is-current {
  font-weight: 700;
  color: #0f172a;
}

.zs-product-subnav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.zs-product-subnav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  background: #ffffff;
  transition: color var(--zs-transition), background-color var(--zs-transition), border-color var(--zs-transition), transform var(--zs-transition);
}

.zs-product-subnav-list a:hover {
  color: #ffffff;
  background: var(--zs-color-primary);
  border-color: var(--zs-color-primary);
  transform: translateY(-2px);
}

.zs-product-subnav-list a.is-active {
  color: #ffffff;
  background: var(--zs-color-primary);
  border-color: var(--zs-color-primary);
}

.zs-partners-section {
  padding: 18px 0 112px;
  background: #ffffff;
}

.zs-partners-head {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0;
  align-content: start;
}

.zs-partners-head h2,
.zs-partners-head p {
  margin: 0;
}

.zs-partners-head h2 {
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.zs-partners-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #475467;
}

.zs-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.zs-partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zs-partner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.zs-partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.zs-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.zs-partner-card:hover::after {
  transform: translateX(130%);
}

.zs-partner-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.zs-partner-card__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.zs-partner-card:hover .zs-partner-card__label {
  opacity: 1;
  transform: translateY(0);
}

.zs-company-profile {
  display: grid;
  gap: 32px;
}

.zs-company-profile__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: stretch;
}

.zs-company-profile__block {
  display: grid;
  gap: 16px;
}

.zs-company-profile__block h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.24;
  color: #0f172a;
}

.zs-company-profile__block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #475467;
}

.zs-company-profile__list,
.zs-company-profile__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.zs-company-profile__list li,
.zs-company-profile__sublist li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.9;
  color: #475467;
}

.zs-company-profile__list li::before,
.zs-company-profile__sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zs-color-primary);
}

.zs-company-profile__sublist {
  margin-top: -2px;
  padding-left: 18px;
}

.zs-company-profile__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.zs-company-profile__spotlight {
  display: block;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  box-shadow: 0 20px 50px rgba(33, 127, 196, 0.12);
  align-self: start;
}

.zs-company-profile__spotlight-media {
  overflow: hidden;
  border-radius: 20px;
}

.zs-company-profile__spotlight-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zs-company-profile__spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.zs-company-profile__stat {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.zs-company-profile__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #217fc4 0%, #63b3ed 100%);
}

.zs-company-profile__stat::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(33, 127, 196, 0.08);
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.zs-company-profile__stat:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 127, 196, 0.28);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.zs-company-profile__stat:hover::after {
  transform: scale(1.18);
  background: rgba(33, 127, 196, 0.12);
}

.zs-company-profile__stat strong {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.zs-company-profile__stat span {
  position: relative;
  z-index: 1;
  max-width: 120px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 991px) {
  .zs-page-banner,
  .zs-page-banner-content {
    min-height: 460px;
  }

  .zs-page-banner-content {
    padding: 72px 0 60px;
  }

  .zs-page-banner-copy {
    gap: 18px;
  }

  .zs-page-banner-subtitle {
    font-size: 20px;
  }

  .zs-product-subnav {
    padding: 22px 0 44px;
  }

  .zs-breadcrumb {
    margin-bottom: 18px;
  }

  .zs-partners-section {
    padding-bottom: 88px;
  }

  .zs-partners-head {
    margin-bottom: 24px;
  }

  .zs-partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .zs-company-profile {
    gap: 28px;
  }

  .zs-company-profile__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zs-company-profile__block p,
  .zs-company-profile__list li,
  .zs-company-profile__sublist li {
    font-size: 16px;
    line-height: 1.8;
  }

  .zs-company-profile__gallery {
    gap: 20px;
  }

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

  .zs-company-profile__stat {
    min-height: 96px;
    padding: 16px 14px 14px;
  }

  .zs-company-profile__stat strong {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .zs-page-banner,
  .zs-page-banner-content {
    min-height: 400px;
  }

  .zs-page-banner-content {
    padding: 56px 0 46px;
  }

  .zs-page-banner-copy {
    gap: 16px;
  }

  .zs-page-banner-copy h2 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .zs-page-banner-subtitle {
    font-size: 18px;
    line-height: 1.68;
  }

  .zs-page-banner-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .zs-page-banner-actions {
    gap: 12px;
  }

  .zs-product-subnav {
    padding: 18px 0 34px;
  }

  .zs-breadcrumb {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .zs-product-subnav-list {
    gap: 10px;
  }

  .zs-product-subnav-list a {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .zs-partners-section {
    padding-bottom: 64px;
  }

  .zs-partners-head h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .zs-partners-head p {
    font-size: 16px;
    line-height: 1.72;
  }

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

  .zs-partner-card {
    border-radius: 16px;
  }

  .zs-partner-card__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
    opacity: 1;
    transform: none;
  }

  .zs-company-profile {
    gap: 24px;
  }

  .zs-company-profile__block {
    gap: 14px;
  }

  .zs-company-profile__block h3 {
    font-size: 24px;
  }

  .zs-company-profile__block p,
  .zs-company-profile__list li,
  .zs-company-profile__sublist li {
    font-size: 15px;
    line-height: 1.76;
  }

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

  .zs-company-profile__spotlight {
    padding: 14px;
    border-radius: 20px;
  }

  .zs-company-profile__spotlight-stats {
    grid-template-columns: 1fr;
  }

  .zs-company-profile__stat {
    min-height: 88px;
    border-radius: 18px;
  }

  .zs-company-profile__stat strong {
    font-size: 24px;
  }

  .zs-company-profile__stat span {
    max-width: none;
    font-size: 13px;
  }
}
