/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --ink: #070707;
  --muted: #536066;
  --line: #d9e8e6;
  --paper: #ffffff;
  --soft: #f3fbfa;
  --brand: #35b8ad;
  --brand-strong: #15958b;
  --accent: #111111;
  --navy: #071313;
  --shadow: 0 20px 50px rgba(7, 19, 19, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-height: 34px;
  --header-height: 68px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes orbit-drift {
  0%,
  100% {
    transform: rotate(-18deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-15deg) translate3d(10px, -6px, 0);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 64px 64px, 64px 64px, 0 0, 0 0, 0 0;
  }
}

@keyframes scan-line {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }

  20%,
  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial,
    sans-serif;
  line-height: 1.6;
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--brand);
  color: #ffffff;
  font-size: 13px;
}

.topbar__inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(53, 184, 173, 0.2);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header__inner {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.brand__logo {
  width: 168px;
  height: auto;
  transition: transform 220ms var(--ease-out), filter 220ms ease;
}

.brand:hover .brand__logo {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
}

.nav__item {
  display: flex;
  align-items: stretch;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0;
  transition: color 180ms ease;
}

.nav__link:hover,
.nav__item--mega:focus-within > .nav__link,
.nav__item--mega:hover > .nav__link {
  color: var(--brand);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 35;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  border-top: 1px solid rgba(53, 184, 173, 0.14);
  border-bottom: 1px solid rgba(7, 19, 19, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(7, 19, 19, 0.12);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out), visibility 180ms ease;
}

.nav__item--mega:hover .mega-menu,
.nav__item--mega:focus-within .mega-menu,
.nav__item--mega.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.unified-mega {
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), rgba(255, 255, 255, 0) 46%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(7, 19, 19, 0.12);
}

.unified-mega__inner {
  width: min(100% - 40px, 1040px);
  min-height: 0;
  margin: 0 auto;
  padding: 26px 0 30px;
}

.unified-mega__title {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(53, 184, 173, 0.2);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.unified-mega__body {
  display: grid;
  grid-template-columns: 260px minmax(520px, 1fr);
  align-items: start;
  margin-top: 16px;
}

.unified-mega__tabs {
  display: grid;
  grid-gap: 0;
  gap: 0;
  padding: 0;
}

.unified-mega__tab {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 24px 0 0;
  border-bottom: 1px solid rgba(53, 184, 173, 0.12);
  color: #405054;
  font-size: 16px;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, padding-left 160ms var(--ease-out);
}

.unified-mega__tab:hover,
.unified-mega__tab:focus-visible {
  padding-left: 18px;
  border-radius: 8px 0 0 8px;
  background: #ffffff;
  color: var(--brand-strong);
  outline: 0;
}

.unified-mega__panels {
  position: relative;
  min-height: 0;
  padding: 22px 26px;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgba(53, 184, 173, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 19, 19, 0.08);
}

.unified-mega__panel {
  display: none;
}

.unified-mega__panel.is-active {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

.unified-mega__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px 14px;
  gap: 12px 14px;
}

.unified-mega__link-group {
  min-width: 0;
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(53, 184, 173, 0.14);
  border-radius: 6px;
  background: rgba(243, 251, 250, 0.72);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.unified-mega__link-group:hover,
.unified-mega__link-group:focus-within {
  border-color: rgba(53, 184, 173, 0.38);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 19, 19, 0.06);
}

.unified-mega__primary-link {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms var(--ease-out);
}

.unified-mega__primary-link::after {
  content: "›";
  color: var(--brand);
  font-size: 20px;
  line-height: 1;
}

.unified-mega__primary-link:hover,
.unified-mega__primary-link:focus-visible {
  color: var(--brand-strong);
  transform: translateX(4px);
  outline: 0;
}

.unified-mega__child-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.unified-mega__child-links a {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  color: #536066;
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
}

.unified-mega__child-links a:hover,
.unified-mega__child-links a:focus-visible {
  color: var(--brand-strong);
  background: rgba(53, 184, 173, 0.12);
  transform: translateY(-1px);
  outline: 0;
}

.unified-mega__home {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(100%, 280px);
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.unified-mega__home span {
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
}

.unified-mega__home:hover,
.unified-mega__home:focus-visible {
  color: var(--brand-strong);
  outline: 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn--primary {
  background: var(--brand);
  color: white;
}

.header-cta:hover,
.btn--primary:hover {
  background: #111111;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 19, 19, 0.14);
}

.btn--ghost {
  color: var(--ink);
  border-color: rgba(7, 19, 19, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7, 19, 19, 0.08);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.nav-state,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle:hover {
  border-color: rgba(53, 184, 173, 0.5);
  box-shadow: 0 12px 26px rgba(7, 19, 19, 0.08);
}

.nav-state:checked + .nav-toggle {
  border-color: rgba(53, 184, 173, 0.55);
  background: var(--brand-strong);
}

.nav-state:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-state:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-state:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-visual-carousel {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.home-visual-carousel__frame {
  position: relative;
  height: calc(100svh - var(--topbar-height) - var(--header-height));
  min-height: 520px;
  isolation: isolate;
}

.home-visual-carousel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fade-up 640ms var(--ease-out) both;
}

.home-visual-carousel__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 19, 19, 0.24), rgba(7, 19, 19, 0.04) 34%, transparent 70%),
    linear-gradient(0deg, rgba(7, 19, 19, 0.18), transparent 34%);
}

.home-visual-carousel__copy {
  position: absolute;
  left: max(40px, calc((100vw - 1180px) / 2));
  bottom: clamp(84px, 11vh, 132px);
  z-index: 2;
  width: min(520px, calc(100% - 80px));
  padding: 0;
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(7, 19, 19, 0.52);
  animation: fade-up 560ms var(--ease-out) both;
}

.home-visual-carousel__copy p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.home-visual-carousel__copy p::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(53, 184, 173, 0.58);
}

.home-visual-carousel__copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  text-shadow: 0 16px 40px rgba(7, 19, 19, 0.56);
}

.home-visual-carousel__copy span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 10px 30px rgba(7, 19, 19, 0.58);
}

.home-visual-carousel__progress {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
  transform: translateX(-50%);
}

.home-visual-carousel__progress button {
  position: relative;
  overflow: hidden;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 35, 35, 0.18);
  cursor: pointer;
}

.home-visual-carousel__progress button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
}

.home-visual-carousel__progress button.is-active::after {
  animation: progress-fill var(--progress-duration, 5600ms) linear forwards;
}

.home-visual-carousel__progress button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #effbf9 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(242, 252, 250, 0.68) 100%),
    linear-gradient(0deg, rgba(53, 184, 173, 0.05), rgba(53, 184, 173, 0) 34%);
}

.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(53, 184, 173, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 75% 36%, rgba(53, 184, 173, 0.12), transparent 26%),
    radial-gradient(circle at 96% 86%, rgba(21, 149, 139, 0.08), transparent 23%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfa 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  animation: grid-drift 22s linear infinite;
}

.hero__scene::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(680px, 48vw);
  height: 100%;
  border-left: 1px solid rgba(53, 184, 173, 0.12);
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(53, 184, 173, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  animation: none;
}

.hero__network {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(53, 184, 173, 0.1);
  border-radius: 50%;
  opacity: 0.45;
  animation: soft-float 10s var(--ease-out) infinite;
}

.hero__network::before,
.hero__network::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(53, 184, 173, 0.1);
  border-radius: 50%;
}

.hero__network::before {
  inset: 74px;
}

.hero__network::after {
  inset: 166px;
}

.hero__network--one {
  right: 5%;
  top: 9%;
}

.hero__network--two {
  right: -210px;
  bottom: -150px;
  opacity: 0.52;
  animation-duration: 12s;
  animation-delay: -3s;
}

.hero__panel {
  position: absolute;
  right: 8%;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  opacity: 0.36;
  animation: fade-up 700ms var(--ease-out) both, soft-float 9s var(--ease-out) 900ms infinite;
}

.hero__panel--primary {
  top: 23%;
  width: min(430px, 32vw);
  min-height: 228px;
}

.hero__panel--secondary {
  top: 55%;
  right: 18%;
  width: min(300px, 24vw);
  min-height: 138px;
  animation-delay: 140ms, 1100ms;
}

.hero__panel span {
  position: relative;
  overflow: hidden;
  display: block;
  height: 28px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(53, 184, 173, 0.32), rgba(53, 184, 173, 0.08)),
    linear-gradient(90deg, #ffffff, #f3fbfa);
  border: 1px solid rgba(53, 184, 173, 0.24);
}

.hero__panel span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  animation: scan-line 3.6s ease-in-out infinite;
}

.hero__panel--primary span:nth-child(2) {
  width: 72%;
}

.hero__panel--primary span:nth-child(3) {
  width: 52%;
}

.hero__panel--secondary span:nth-child(2) {
  width: 64%;
}

.hero__orbit {
  position: absolute;
  border: 1px solid rgba(53, 184, 173, 0.1);
  opacity: 0.42;
  transform: rotate(-18deg);
  animation: orbit-drift 12s var(--ease-out) infinite;
}

.hero__orbit--one {
  right: 11%;
  top: 18%;
  width: 390px;
  height: 170px;
  border-radius: 50%;
}

.hero__orbit--two {
  right: 18%;
  top: 45%;
  width: 310px;
  height: 120px;
  border-radius: 50%;
  animation-delay: -4s;
}

.hero__node {
  position: absolute;
  min-width: 94px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  opacity: 0.42;
  animation: fade-up 700ms var(--ease-out) both, soft-float 7s var(--ease-out) 1s infinite;
}

.hero__node--cloud {
  right: 29%;
  top: 18%;
}

.hero__node--security {
  right: 7%;
  top: 45%;
  animation-delay: 180ms, 1180ms;
}

.hero__node--data {
  right: 26%;
  top: 67%;
  animation-delay: 320ms, 1320ms;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 0.92fr);
  grid-gap: 62px;
  gap: 62px;
  align-items: center;
  padding: 78px 0 104px;
}

.hero__content {
  width: min(680px, 100%);
}

.hero__scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.hero__scope span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 999px;
  color: #26393b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-image-carousel {
  position: relative;
  min-width: 0;
  animation: fade-up 680ms var(--ease-out) 180ms both;
}

.hero-image-carousel__media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(53, 184, 173, 0.26);
  border-radius: 8px;
  background: #0b1414;
  box-shadow: 0 30px 78px rgba(7, 19, 19, 0.16);
}

.hero-image-carousel__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  animation: fade-up 520ms var(--ease-out) both;
}

.hero-image-carousel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 58%);
}

.hero-image-carousel__caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  color: white;
  animation: fade-up 520ms var(--ease-out) 80ms both;
}

.hero-image-carousel__caption p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #8be3dc;
  font-size: 13px;
  font-weight: 800;
}

.hero-image-carousel__caption p span:first-child {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.hero-image-carousel__caption p span + span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.46);
}

.hero-image-carousel__caption strong {
  display: block;
  max-width: 12em;
  font-size: 34px;
  line-height: 1.18;
}

.hero-image-carousel__caption span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28em;
}

.hero-image-carousel__dots {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-image-carousel__dots button {
  position: relative;
  overflow: hidden;
  width: 26px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms var(--ease-out), background-color 180ms ease;
}

.hero-image-carousel__dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.78);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-image-carousel__dots button.is-active {
  width: 54px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-image-carousel__dots button.is-active::after {
  background: var(--brand);
  animation: progress-fill var(--progress-duration, 4600ms) linear forwards;
}

.hero__content > *,
.page-hero .container > *,
.detail-hero .container > * {
  animation: fade-up 620ms var(--ease-out) both;
}

.hero__content > :nth-child(2),
.page-hero .container > :nth-child(2),
.detail-hero .container > :nth-child(2) {
  animation-delay: 90ms;
}

.hero__content > :nth-child(3),
.page-hero .container > :nth-child(3),
.detail-hero .container > :nth-child(3) {
  animation-delay: 170ms;
}

.hero__content > :nth-child(4) {
  animation-delay: 250ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 11em;
  overflow-wrap: anywhere;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(53, 184, 173, 0.16)),
    radial-gradient(circle at 82% 38%, rgba(53, 184, 173, 0.16), transparent 28%),
    linear-gradient(rgba(53, 184, 173, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 24%;
  width: min(420px, 32vw);
  height: 190px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(53, 184, 173, 0.16), rgba(53, 184, 173, 0.02)),
    rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 15%;
  width: 320px;
  height: 130px;
  border: 1px solid rgba(53, 184, 173, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.page-hero .container,
.detail-hero .container {
  position: relative;
  z-index: 1;
  padding: 92px 0 104px;
}

.page-hero h1,
.detail-hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.product-family-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.1) 100%),
    linear-gradient(rgba(53, 184, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.08) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-family-hero__inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  grid-gap: 56px;
  gap: 56px;
  padding: 82px 0;
}

.product-family-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-family-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: #223032;
  font-size: 19px;
}

.product-family-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-family-hero__panel {
  position: relative;
  min-height: 340px;
  padding: 36px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 70px rgba(7, 19, 19, 0.08);
}

.product-family-hero__panel > span {
  color: var(--brand-strong);
  font-size: 22px;
  font-weight: 800;
}

.product-family-hero__lines {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 34px;
}

.product-family-hero__lines a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 6px;
  color: #536066;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms var(--ease-out), background-color 160ms ease;
}

.product-family-hero__lines a::after {
  content: "›";
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.product-family-hero__lines a:hover,
.product-family-hero__lines a:focus-visible {
  transform: translateX(4px);
  border-color: var(--brand);
  color: var(--brand-strong);
  background: #ffffff;
  outline: 0;
}

.product-family-overview__inner {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  grid-gap: 52px;
  gap: 52px;
  align-items: start;
}

.product-family-overview h2,
.section-title-row h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-family-overview p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-family-strengths,
.product-family-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.product-family-card,
.product-family-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(7, 19, 19, 0.07);
}

.product-family-card {
  min-height: 170px;
  padding: 26px;
}

.product-family-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.product-family-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title-row > a {
  color: var(--brand-strong);
  font-weight: 800;
}

.product-family-portfolio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.product-family-panel {
  padding: 30px;
}

.product-family-panel h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.product-family-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-family-panel li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--soft);
  color: #405054;
  font-weight: 700;
}

.product-family-source__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.product-family-source h2 {
  margin: 0;
  font-size: 30px;
}

.product-family-source p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.enterprise-network-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.08) 58%, rgba(53, 184, 173, 0.16) 100%),
    linear-gradient(rgba(53, 184, 173, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.07) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.enterprise-network-hero__inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  grid-gap: 56px;
  gap: 56px;
  padding: 86px 0;
}

.enterprise-network-hero__copy h1 {
  margin: 0;
  color: #030809;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: 0;
}

.enterprise-network-hero__copy p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 24px 0 0;
  color: #263537;
  font-size: 20px;
  line-height: 1.75;
}

.enterprise-network-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.enterprise-network-hero__visual {
  position: relative;
  min-height: 370px;
  padding: 34px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 72px rgba(7, 19, 19, 0.08);
}

.enterprise-network-hero__screen {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.12), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(0deg, transparent 0, transparent 27px, rgba(53, 184, 173, 0.08) 28px);
}

.enterprise-network-hero__screen span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 6px;
  color: var(--brand-strong);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.78);
}

.enterprise-network-hero__stats {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 8px 14px;
  gap: 8px 14px;
  margin-top: 22px;
  color: var(--muted);
}

.enterprise-network-hero__stats strong {
  color: #030809;
  font-size: 34px;
  line-height: 1;
}

.enterprise-network-anchor {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height, 0);
  z-index: 20;
  border-top: 1px solid rgba(53, 184, 173, 0.16);
  border-bottom: 1px solid rgba(53, 184, 173, 0.16);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.enterprise-network-anchor .container {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.enterprise-network-anchor a {
  flex: 0 0 auto;
  color: #435256;
  font-size: 15px;
  font-weight: 800;
}

.enterprise-network-anchor a:hover,
.enterprise-network-anchor a:focus-visible {
  color: var(--brand-strong);
  outline: 0;
}

.enterprise-network-overview__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  grid-gap: 54px;
  gap: 54px;
}

.enterprise-network-overview h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

.enterprise-network-overview__text {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.enterprise-network-overview__text p {
  margin: 0;
}

.enterprise-network-insights,
.enterprise-network-case-grid,
.enterprise-network-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.enterprise-network-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.enterprise-network-card,
.enterprise-network-product,
.enterprise-network-case,
.enterprise-network-news article,
.enterprise-network-resource {
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(7, 19, 19, 0.06);
}

.enterprise-network-card,
.enterprise-network-product,
.enterprise-network-case,
.enterprise-network-news article {
  min-height: 210px;
  padding: 28px;
}

.enterprise-network-card h3,
.enterprise-network-product h3,
.enterprise-network-case h3,
.enterprise-network-news h3 {
  margin: 0;
  color: #030809;
  font-size: 24px;
  line-height: 1.28;
}

.enterprise-network-card p,
.enterprise-network-product p,
.enterprise-network-case p,
.enterprise-network-news p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.enterprise-network-product span,
.enterprise-network-case span,
.enterprise-network-news span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.enterprise-network-product,
.enterprise-network-case {
  display: block;
  color: inherit;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.enterprise-network-product em,
.enterprise-network-case em {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--brand-strong);
  font-style: normal;
  font-weight: 900;
}

.enterprise-network-product em::after,
.enterprise-network-case em::after,
.enterprise-network-resource strong::after {
  content: "›";
  margin-left: 8px;
  font-size: 22px;
  line-height: 1;
}

.enterprise-network-product:hover,
.enterprise-network-product:focus-visible,
.enterprise-network-case:hover,
.enterprise-network-case:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 46px rgba(7, 19, 19, 0.1);
  outline: 0;
}

.enterprise-network-scenarios {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.enterprise-network-scenario,
.enterprise-network-resource {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  padding: 26px;
  color: inherit;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.enterprise-network-scenario {
  min-height: 210px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: #ffffff;
}

.enterprise-network-scenario strong,
.enterprise-network-resource strong {
  color: #030809;
  font-size: 24px;
  line-height: 1.28;
}

.enterprise-network-scenario span,
.enterprise-network-resource span {
  color: var(--muted);
  line-height: 1.75;
}

.enterprise-network-scenario:hover,
.enterprise-network-scenario:focus-visible,
.enterprise-network-resource:hover,
.enterprise-network-resource:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 46px rgba(7, 19, 19, 0.1);
  outline: 0;
}

.enterprise-network-news {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.switches-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.08) 60%, rgba(53, 184, 173, 0.14) 100%),
    linear-gradient(rgba(53, 184, 173, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.07) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.switches-hero__inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  align-items: center;
  grid-gap: 56px;
  gap: 56px;
  padding: 82px 0;
}

.switches-hero h1 {
  margin: 0;
  color: #030809;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.switches-hero p:not(.eyebrow) {
  width: min(730px, 100%);
  margin: 24px 0 0;
  color: #263537;
  font-size: 20px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.switches-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.switches-hero__panel {
  display: grid;
  grid-gap: 26px;
  gap: 26px;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(7, 19, 19, 0.08);
}

.switches-hero__panel > span {
  color: var(--brand-strong);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.switches-hero__panel div {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.switches-hero__panel strong {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 6px;
  color: #030809;
  background: rgba(255, 255, 255, 0.82);
}

.switches-hero__panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.switches-hero__image-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 72px rgba(7, 19, 19, 0.1);
}

.switches-hero__image-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.switches-hero__image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.switches-hero__image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  color: #ffffff;
}

.switches-hero__image-caption span {
  color: #8ce9df;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.switches-hero__image-caption strong {
  font-size: 20px;
  line-height: 1.35;
}

.switches-overview__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  grid-gap: 54px;
  gap: 54px;
}

.switches-overview h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.switches-overview p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.switches-why-grid,
.switches-case-grid,
.switches-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.switches-why-grid article,
.switches-case-grid article,
.switches-resource-grid a {
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(7, 19, 19, 0.06);
}

.switches-why-grid article,
.switches-case-grid article {
  min-height: 210px;
  padding: 28px;
}

.switches-why-grid h3,
.switches-case-grid h3 {
  margin: 0;
  color: #030809;
  font-size: 24px;
  line-height: 1.28;
}

.switches-why-grid p,
.switches-case-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.switches-product-list {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
}

.switches-product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 28px;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 19, 19, 0.06);
}

.switches-product-band h3 {
  margin: 0;
  color: #030809;
  font-size: 30px;
  line-height: 1.2;
}

.switches-product-band p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.switches-product-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.switches-product-band__actions a,
.switches-case-grid a {
  color: var(--brand-strong);
  font-weight: 900;
}

.switches-product-band__actions a::after,
.switches-case-grid a::after,
.switches-resource-grid strong::after {
  content: "›";
  margin-left: 8px;
  font-size: 22px;
  line-height: 1;
}

.switches-model-list {
  display: grid;
  grid-gap: 0;
  gap: 0;
  border-top: 1px solid rgba(53, 184, 173, 0.16);
}

.switches-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.switches-brand-card {
  display: grid;
  align-content: start;
  grid-gap: 12px;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 251, 250, 0.72) 100%);
}

.switches-brand-card__title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #030809;
  font-size: 20px;
  font-weight: 900;
}

.switches-brand-card__title::after {
  content: "›";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.switches-brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.switches-model-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(53, 184, 173, 0.14);
  color: #35464a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform 180ms var(--ease-out), color 180ms ease;
}

.switches-model-list a::after {
  content: "›";
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.switches-model-list a:hover,
.switches-model-list a:focus-visible {
  transform: translateX(3px);
  color: var(--brand-strong);
  outline: 0;
}

.switches-brand-card__more {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
}

.switches-brand-card__more::after {
  content: "›";
  margin-left: 6px;
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
}

.switches-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.switches-resource-grid a {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  min-height: 190px;
  padding: 24px;
  color: inherit;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.switches-resource-grid strong {
  color: #030809;
  font-size: 22px;
  line-height: 1.3;
}

.switches-resource-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.switches-resource-grid a:hover,
.switches-resource-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 18px 46px rgba(7, 19, 19, 0.1);
  outline: 0;
}

.switch-brand-group-card {
  align-content: start;
}

.switch-brand-model-links {
  display: grid;
  grid-gap: 0;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(53, 184, 173, 0.16);
}

.switch-brand-model-links a,
.switch-brand-group-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(53, 184, 173, 0.12);
  color: #33484c;
  font-size: 14px;
  font-weight: 800;
}

.switch-brand-model-links a::after,
.switch-brand-group-card__link::after {
  content: "›";
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
}

.switch-brand-model-links a:hover,
.switch-brand-model-links a:focus-visible,
.switch-brand-group-card__link:hover,
.switch-brand-group-card__link:focus-visible {
  color: var(--brand-strong);
  outline: 0;
}

.product-showcase-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.1) 100%),
    linear-gradient(rgba(53, 184, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.08) 1px, transparent 1px);
  background-size: auto, auto 100%, 64px 64px, 64px 64px;
}

.model-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.12) 100%),
    radial-gradient(circle at 84% 42%, rgba(53, 184, 173, 0.18), transparent 28%);
}

.model-hero__inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  align-items: center;
  grid-gap: 54px;
  gap: 54px;
  padding: 80px 0;
}

.model-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.model-hero p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 22px 0 0;
  color: #223032;
  font-size: 19px;
}

.product-category-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(53, 184, 173, 0.1) 100%),
    linear-gradient(rgba(53, 184, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.08) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-category-hero__inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: center;
  grid-gap: 54px;
  gap: 54px;
  padding: 78px 0;
}

.product-category-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-category-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: #223032;
  font-size: 19px;
}

.product-category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-category-map {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: center;
  grid-gap: 18px;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(7, 19, 19, 0.08);
}

.product-category-map::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(53, 184, 173, 0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.product-category-map span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 19, 19, 0.06);
  animation: fade-up 620ms var(--ease-out) both;
  animation-delay: calc(var(--index) * 90ms);
}

.model-device-card {
  min-height: 320px;
  padding: 32px;
  border: 1px solid rgba(53, 184, 173, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 250, 247, 0.78)),
    #ffffff;
  box-shadow: 0 26px 64px rgba(7, 19, 19, 0.1);
}

.model-device-card span {
  color: var(--brand-strong);
  font-weight: 900;
}

.model-device-card strong {
  display: block;
  margin: 18px 0 30px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.model-device-card i {
  display: block;
  height: 44px;
  margin-top: 12px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(53, 184, 173, 0.16), rgba(255, 255, 255, 0.76));
}

.s16700-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(53, 184, 173, 0.14) 100%),
    linear-gradient(rgba(53, 184, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.08) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.s16700-hero__inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.95fr);
  align-items: center;
  grid-gap: 56px;
  gap: 56px;
  padding-block: 92px;
}

.s16700-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #030809;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.98;
}

.s16700-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: #26373a;
  font-size: 20px;
  line-height: 1.8;
}

.s16700-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.s16700-product-visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 36px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 45%, rgba(53, 184, 173, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 30px 80px rgba(7, 19, 19, 0.12);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.s16700-product-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(7, 19, 19, 0.2));
}

.s16700-product-visual__placeholder {
  margin: 0;
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50, 184, 174, 0.26);
  border-radius: 8px;
  color: var(--yg-teal-dark);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(50, 184, 174, 0.16), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(90deg, rgba(50, 184, 174, 0.08) 0 1px, transparent 1px 42px);
  box-shadow: 0 24px 44px rgba(7, 19, 19, 0.12);
}

.s16700-product-visual div {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  padding: 12px 16px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(7, 19, 19, 0.08);
}

.s16700-product-visual span {
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s16700-product-visual strong {
  color: #030809;
  font-size: 18px;
  line-height: 1.2;
}

.s16700-overview,
.s16700-specs {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  grid-gap: 78px;
  gap: 78px;
  align-items: start;
}

.s16700-overview > *,
.s16700-specs > *,
.s16700-feature-grid > *,
.s16700-scenario-grid > *,
.s16700-model-grid > *,
.s16700-resource-grid > *,
.s16700-support-grid > * {
  min-width: 0;
}

.s16700-overview h2,
.s16700-specs h2 {
  margin: 0;
  color: #030809;
  font-size: 46px;
  line-height: 1.12;
}

.s16700-specs--matrix {
  display: block;
}

.s16700-specs--matrix > div:first-child {
  margin-bottom: 54px;
  text-align: center;
}

.s16700-specs--matrix .eyebrow {
  display: none;
}

.s16700-specs--matrix h2 {
  font-size: 42px;
  font-weight: 500;
}

.s16700-overview p:not(.eyebrow),
.s16700-specs p:not(.eyebrow) {
  max-width: 100%;
  margin: 0;
  color: #415054;
  font-size: 18px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.s16700-feature-grid,
.s16700-scenario-grid,
.s16700-model-grid,
.s16700-resource-grid,
.s16700-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.s16700-support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.s16700-feature-grid article,
.s16700-scenario-grid article,
.s16700-model-grid article,
.s16700-resource-grid a,
.s16700-support-grid a {
  display: grid;
  align-content: start;
  grid-gap: 14px;
  gap: 14px;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 20px 54px rgba(7, 19, 19, 0.06);
}

.s16700-support-grid a {
  min-height: 188px;
}

.s16700-feature-grid span {
  color: var(--brand-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.s16700-feature-grid strong {
  color: #030809;
  font-size: 30px;
  line-height: 1.2;
}

.s16700-feature-grid p,
.s16700-scenario-grid p,
.s16700-model-grid p,
.s16700-resource-grid span,
.s16700-support-grid span {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.s16700-scenario-grid h3 {
  margin: 0;
  color: #030809;
  font-size: 24px;
}

.s16700-spec-table {
  display: grid;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.s16700-spec-table div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(53, 184, 173, 0.14);
}

.s16700-spec-table div:last-child {
  border-bottom: 0;
}

.s16700-spec-table strong {
  color: #030809;
}

.s16700-spec-table span {
  color: var(--muted);
  line-height: 1.7;
}

.s16700-spec-matrix {
  width: 100%;
  overflow: hidden;
  color: #1f2a2d;
  background: #ffffff;
}

.s16700-spec-matrix__head,
.s16700-spec-matrix__row {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr 1.18fr;
  align-items: stretch;
}

.s16700-spec-matrix__head {
  margin-bottom: 6px;
  background: #f5f5f5;
}

.s16700-spec-matrix__head strong {
  padding: 28px 30px;
  color: #10191b;
  font-size: 20px;
  font-weight: 500;
}

.s16700-spec-matrix__row {
  border-bottom: 1px solid #dcdcdc;
}

.s16700-spec-matrix__row strong,
.s16700-spec-matrix__row span {
  padding: 26px 30px;
  min-width: 0;
  white-space: pre-line;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.8;
}

.s16700-spec-matrix__row strong {
  display: flex;
  align-items: center;
  color: #0b1517;
  font-weight: 500;
}

.s16700-spec-matrix__row span {
  color: #3d4b50;
}

.s16700-model-grid strong,
.s16700-resource-grid strong,
.s16700-support-grid strong {
  color: #030809;
  font-size: 22px;
  line-height: 1.3;
}

.s16700-model-grid a {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--brand-strong);
  font-weight: 900;
}

.s16700-model-grid a::after,
.s16700-resource-grid strong::after,
.s16700-support-grid strong::after {
  content: "›";
  margin-left: 8px;
  color: var(--brand);
  font-size: 20px;
  line-height: 1;
}

.product-showcase-hero__inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  align-items: center;
  grid-gap: 58px;
  gap: 58px;
  padding: 86px 0;
}

.product-showcase-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-showcase-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: #223032;
  font-size: 19px;
}

.product-showcase-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.product-showcase-hero__meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(53, 184, 173, 0.22);
  border-radius: 999px;
  color: var(--brand-strong);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
}

.product-showcase-visual {
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(53, 184, 173, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 250, 247, 0.76)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(7, 19, 19, 0.1);
}

.product-showcase-visual strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.product-showcase-visual div {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 30px;
}

.product-showcase-visual span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 6px;
  color: #405054;
  font-weight: 800;
  background: #ffffff;
}

.product-anchor-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  z-index: 20;
  border-top: 1px solid rgba(53, 184, 173, 0.14);
  border-bottom: 1px solid rgba(53, 184, 173, 0.18);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.product-anchor-nav .container {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
}

.product-anchor-nav a {
  flex: 0 0 auto;
  color: #405054;
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.product-anchor-nav a:hover,
.product-anchor-nav a:focus-visible {
  color: var(--brand-strong);
  outline: 0;
}

.product-showcase-overview__inner,
.product-showcase-specs {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  grid-gap: 50px;
  gap: 50px;
  align-items: start;
}

.product-showcase-overview h2,
.product-showcase-specs h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-showcase-overview p:not(.eyebrow),
.product-showcase-specs p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-showcase-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.product-showcase-features article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 19, 19, 0.06);
}

.product-showcase-features strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.product-showcase-features span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.product-series-grid--large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-title-row__note {
  width: min(360px, 100%);
  color: var(--muted);
  font-size: 15px;
}

.hero__lead {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: #1d2a2a;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  width: min(620px, 100%);
  margin: 56px 0 0;
}

.hero__metrics div {
  padding: 20px;
  border: 1px solid rgba(53, 184, 173, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.9));
  box-shadow: 0 18px 40px rgba(7, 19, 19, 0.06);
}

.hero__metrics dt {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.hero__metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.page-hero + .section,
.detail-hero + .section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.hero + .section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

.hero + .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 184, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.hero + .section .container {
  position: relative;
  z-index: 1;
}

.section--soft {
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--soft);
}

.section--about-lifecycle {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
}

.section--about-lifecycle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 184, 173, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.about-lifecycle {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}

.about-lifecycle__intro {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--topbar-height) + var(--header-height) + 34px);
  max-width: 500px;
}

.about-lifecycle__intro .eyebrow {
  color: var(--brand-strong);
}

.about-lifecycle__intro h2 {
  color: var(--ink);
  font-size: 42px;
}

.section--about-lifecycle .section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section--dark {
  color: white;
  background: #071313;
}

.section--cases {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.1), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
}

.section--cases::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 184, 173, 0.12), transparent 24%),
    linear-gradient(rgba(53, 184, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.06) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
}

.section--cases .container {
  position: relative;
  z-index: 1;
}

.section--contact {
  background: #e9faf7;
}

.section--news {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.section--services {
  background: #f5f6f7;
}

.section--services .section-heading {
  width: min(860px, 100%);
  margin-inline: auto;
  margin-bottom: 64px;
  text-align: center;
}

.section--services .section-heading .eyebrow {
  display: none;
}

.section--services .section-heading h2 {
  color: #2a2d30;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
}

.section--services .section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--brand-strong);
}

.section--services .section-heading > p:not(.eyebrow) {
  margin-top: 22px;
  color: #6f777b;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.62;
}

.section--news .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section--news .section-heading .eyebrow {
  display: none;
}

.section--news .section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--brand-strong);
}

.section--industry-carousel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
}

.section--industry-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 184, 173, 0.14), transparent 26%),
    linear-gradient(rgba(53, 184, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.06) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
}

.section--industry-carousel .container {
  position: relative;
  z-index: 1;
}

.section--carousel {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fbfa 100%);
}

.section--carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 184, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
}

.section--carousel .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading--light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
}

.section-heading > p:not(.eyebrow),
.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.solution-carousel {
  display: grid;
  grid-gap: 34px;
  gap: 34px;
}

.solution-carousel__heading {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.solution-carousel__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.18;
  letter-spacing: 0.04em;
}

.solution-carousel__heading p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #1b292c;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.9;
}

.solution-carousel__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}

.solution-carousel__tabs::-webkit-scrollbar {
  display: none;
}

.solution-carousel__tabs button {
  position: relative;
  min-height: 34px;
  flex: 0 0 auto;
  padding: 0 3px;
  border: 0;
  color: #1d2d30;
  background: transparent;
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1;
  transition: color 180ms ease;
}

.solution-carousel__tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease-out);
}

.solution-carousel__tabs button:hover,
.solution-carousel__tabs button:focus-visible,
.solution-carousel__tabs button.is-active {
  color: var(--brand-strong);
  outline: 0;
}

.solution-carousel__tabs button.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.solution-carousel__matrix {
  display: grid;
  grid-template-columns: minmax(270px, 0.3fr) minmax(0, 1fr);
  min-height: 470px;
  background: #f6f8f8;
}

.solution-carousel__list {
  display: grid;
  align-content: center;
  grid-gap: 0;
  gap: 0;
  padding: 32px 22px;
}

.solution-carousel__list a {
  position: relative;
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 0 0 0 18px;
  color: #16484a;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.42;
  transition: color 160ms ease, transform 160ms var(--ease-out);
}

.solution-carousel__list a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 160ms ease, height 160ms var(--ease-out);
}

.solution-carousel__list a:hover,
.solution-carousel__list a:focus-visible,
.solution-carousel__list a.is-active {
  color: var(--brand-strong);
  transform: translateX(4px);
  outline: 0;
}

.solution-carousel__list a:hover::before,
.solution-carousel__list a:focus-visible::before,
.solution-carousel__list a.is-active::before {
  height: 22px;
  background: var(--brand);
}

.solution-carousel__visual {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  color: #ffffff;
  background: #071313;
}

.solution-carousel__visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transform: scale(1.01);
  animation: fade-up 460ms var(--ease-out) both;
  transition: transform 520ms var(--ease-out);
}

.solution-carousel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(7, 19, 19, 0.74), rgba(7, 19, 19, 0.12) 48%, rgba(7, 19, 19, 0.06)),
    linear-gradient(90deg, rgba(7, 19, 19, 0.28), transparent 54%);
}

.solution-carousel__visual:hover img,
.solution-carousel__visual:focus-visible img {
  transform: scale(1.045);
}

.solution-carousel__visual-copy {
  position: absolute;
  left: clamp(26px, 3.4vw, 48px);
  right: clamp(22px, 3.4vw, 48px);
  bottom: clamp(26px, 4vw, 42px);
  z-index: 1;
  animation: fade-up 420ms var(--ease-out) both;
}

.solution-carousel__visual-copy p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #8be3dc;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.solution-carousel__visual-copy p::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.solution-carousel__visual-copy h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.22;
}

.solution-carousel__visual-copy span {
  display: block;
  max-width: 660px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.8;
}

.industry-carousel {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

.industry-carousel__main {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(53, 184, 173, 0.24);
  border-radius: 8px;
  background: #f2fbfa;
  box-shadow: 0 24px 60px rgba(7, 19, 19, 0.08);
}

.industry-carousel__main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  animation: fade-up 520ms var(--ease-out) both;
}

.industry-carousel__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.02)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.industry-carousel__caption {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 1;
  width: min(520px, calc(100% - 68px));
  color: white;
  animation: fade-up 520ms var(--ease-out) 80ms both;
}

.industry-carousel__caption p {
  margin: 0 0 12px;
  color: #8be3dc;
  font-size: 13px;
  font-weight: 800;
}

.industry-carousel__caption h3 {
  font-size: 34px;
}

.industry-carousel__caption span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.industry-carousel__bar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-gap: 12px;
  gap: 12px;
  align-items: center;
}

.industry-carousel__bar > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.industry-carousel__bar > button:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: white;
  background: var(--brand);
}

.industry-carousel__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.industry-carousel__thumbs button {
  overflow: hidden;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  opacity: 0.72;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, opacity 180ms ease;
}

.industry-carousel__thumbs button:hover,
.industry-carousel__thumbs button.is-active {
  transform: translateY(-2px);
  border-color: var(--brand);
  opacity: 1;
}

.industry-carousel__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-grid,
.solution-grid,
.case-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.service-card,
.solution-card,
.case-card,
.catalog-card,
.inquiry-form {
  border-radius: 8px;
}

.service-card,
.solution-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.96));
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before,
.solution-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.16), rgba(53, 184, 173, 0) 34%),
    radial-gradient(circle at 100% 0%, rgba(53, 184, 173, 0.14), transparent 32%);
  opacity: 0.72;
}

.service-card > *,
.solution-card > *,
.catalog-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.solution-card:hover,
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(53, 184, 173, 0.48);
}

.service-card:hover .service-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 34px rgba(53, 184, 173, 0.32);
}

.section--services .business-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
}

.section--services .service-card {
  min-height: clamp(220px, 16.5vw, 286px);
  display: block;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 20px 42px rgba(7, 19, 19, 0.12);
}

.section--services .service-card::before {
  display: none;
}

.section--services .service-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 520ms ease;
}

.section--services .service-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 19, 19, 0.02) 0%, rgba(7, 19, 19, 0.28) 44%, rgba(7, 19, 19, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 19, 19, 0.36), rgba(7, 19, 19, 0.04));
}

.section--services .service-card__copy {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 2;
  color: #ffffff;
}

.section--services .service-card h3 {
  color: #ffffff;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.24;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.46);
}

.section--services .service-card p {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.62;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.48);
}

.section--services .service-card:hover,
.section--services .service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(7, 19, 19, 0.18);
  outline: 0;
}

.section--services .service-card:hover img,
.section--services .service-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
}

.catalog-card__eyebrow {
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.catalog-card h2 {
  font-size: 24px;
}

.catalog-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.catalog-card strong {
  margin-top: auto;
  color: var(--accent);
}

.category-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
}

.category-row a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.96));
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.category-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.14), rgba(53, 184, 173, 0) 42%),
    radial-gradient(circle at 100% 0%, rgba(53, 184, 173, 0.12), transparent 36%);
}

.category-row a > * {
  position: relative;
  z-index: 1;
}

.category-row a:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 184, 173, 0.46);
  box-shadow: var(--shadow);
}

.category-row strong {
  font-size: 18px;
}

.category-row span {
  color: var(--muted);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 30px rgba(53, 184, 173, 0.26);
  font-weight: 800;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.service-card p,
.solution-card p,
.case-card span {
  margin: 14px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.advantage-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.advantage-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 184, 173, 0.44);
  box-shadow: 0 16px 34px rgba(7, 19, 19, 0.08);
}

.advantage-list strong,
.advantage-list span {
  display: block;
}

.advantage-list strong {
  font-size: 18px;
}

.advantage-list span {
  margin-top: 10px;
  color: var(--muted);
}

.advantage-list--lifecycle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.advantage-list--lifecycle article {
  position: relative;
  min-height: 218px;
  display: grid;
  align-content: start;
  justify-items: start;
  padding: 24px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(7, 19, 19, 0.06);
  text-align: left;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.advantage-list--lifecycle article:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 184, 173, 0.42);
  box-shadow: 0 22px 46px rgba(7, 19, 19, 0.09);
}

.advantage-list__icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--brand-strong);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.advantage-list__icon::after {
  content: "";
  width: 26px;
  height: 2px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(53, 184, 173, 0.42);
}

.advantage-list--lifecycle strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.advantage-list--lifecycle article > span:not(.advantage-list__icon) {
  max-width: none;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.qualification-band {
  display: grid;
  grid-gap: 30px;
  gap: 30px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.qualification-list,
.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.qualification-list span,
.partner-wall span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #f7fbfa;
  text-align: center;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
}

.qualification-list span:hover,
.partner-wall span:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 184, 173, 0.42);
  background: #ffffff;
}

.qualification-band__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section--qualifications {
  background:
    linear-gradient(180deg, rgba(247, 252, 251, 0.76), #ffffff 44%),
    linear-gradient(rgba(53, 184, 173, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 184, 173, 0.045) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.qualification-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.qualification-certificate {
  display: grid;
  align-content: start;
  grid-gap: 14px;
  gap: 14px;
  min-height: 420px;
  padding: 14px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(7, 19, 19, 0.07);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.qualification-certificate:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 184, 173, 0.42);
  box-shadow: 0 24px 54px rgba(7, 19, 19, 0.1);
}

.qualification-certificate__media {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 19, 0.08);
  border-radius: 6px;
  background: #ffffff;
}

.qualification-certificate__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qualification-certificate__placeholder {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  display: grid;
  place-items: center;
  align-content: center;
  grid-gap: 8px;
  gap: 8px;
  border: 1px dashed rgba(53, 184, 173, 0.4);
  border-radius: 6px;
  color: var(--brand-strong);
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), transparent 46%),
    #f7fbfa;
  text-align: center;
}

.qualification-certificate__placeholder span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.qualification-certificate__placeholder strong {
  font-size: 20px;
  line-height: 1.2;
}

.qualification-certificate__caption {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
}

.qualification-certificate__caption strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.qualification-certificate__caption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.section--partners {
  overflow: hidden;
  padding-top: 46px;
  background:
    linear-gradient(180deg, rgba(247, 252, 251, 0.72), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 12% 50%, rgba(53, 184, 173, 0.1), transparent 32%);
}

.section--partners .section-heading {
  margin-bottom: 24px;
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 120s linear infinite;
  will-change: transform;
}

.partner-marquee:hover .partner-marquee__track {
  animation-play-state: paused;
}

.partner-rows {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
}

.partner-row {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.partner-marquee__track--reverse {
  animation-name: partnerMarqueeReverse;
}

.partner-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 22px;
  padding-right: 22px;
}

.partner-brand {
  display: grid;
  grid-template-columns: 76px minmax(0, 250px);
  align-items: center;
  width: 350px;
  min-height: 78px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.partner-brand:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 184, 173, 0.34);
  box-shadow: none;
}

.partner-brand__logo {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(53, 184, 173, 0.14);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
}

.partner-brand__logo img {
  max-width: 58px;
  max-height: 50px;
  object-fit: contain;
}

.partner-brand__logo--wide img {
  max-width: 64px;
  max-height: 30px;
}

.partner-brand__logo--lockup {
  display: flex;
  width: 122px;
  gap: 8px;
  padding: 0 10px;
  border-radius: 999px;
}

.partner-brand__logo--lockup img {
  max-width: 42px;
  max-height: 42px;
}

.partner-brand__logo--lockup span {
  display: block;
  max-width: none;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.partner-brand__logo span {
  display: block;
  max-width: 58px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.partner-brand__content {
  min-width: 0;
}

.partner-brand:has(.partner-brand__logo--lockup) {
  grid-template-columns: 130px minmax(0, 220px);
  width: 380px;
}

.partner-brand__logo--lockup span {
  max-width: none;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.partner-brand__content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.partner-brand__content p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partnerMarqueeReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 28px;
  gap: 28px;
  margin-top: 42px;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(7, 19, 19, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 19, 19, 0.06);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 184, 173, 0.42);
  box-shadow: 0 24px 48px rgba(7, 19, 19, 0.1);
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3fbfa;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  padding: 24px 26px 28px;
  text-align: center;
}

.news-card__date {
  margin-bottom: 20px;
  color: #707d80;
  font-size: 15px;
  line-height: 1;
}

.news-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.42;
}

.news-card p {
  margin: 20px 0 0;
  color: #263436;
  font-size: 15px;
  line-height: 1.76;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--brand);
  font-weight: 800;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.94));
  box-shadow: 0 18px 40px rgba(7, 19, 19, 0.06);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.14), rgba(53, 184, 173, 0) 36%),
    radial-gradient(circle at 100% 0%, rgba(53, 184, 173, 0.12), transparent 34%);
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 184, 173, 0.46);
  box-shadow: var(--shadow);
}

.case-card p {
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-weight: 800;
}

.case-card span {
  color: var(--muted);
}

.partner-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  grid-gap: 52px;
  gap: 52px;
  align-items: start;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  grid-gap: 52px;
  gap: 52px;
  align-items: start;
}

.detail-layout > * {
  min-width: 0;
}

.rich-copy,
.detail-content,
.detail-aside {
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.rich-copy,
.detail-content {
  padding: 30px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(7, 19, 19, 0.05);
  animation: fade-up 620ms var(--ease-out) both;
}

.rich-copy p,
.detail-content p {
  margin: 0 0 18px;
  word-break: break-all;
}

.detail-content h2,
.detail-aside h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
}

.detail-content h2:not(:first-child) {
  margin-top: 34px;
}

.detail-aside {
  position: -webkit-sticky;
  position: sticky;
  top: 128px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.96));
  box-shadow: 0 18px 44px rgba(7, 19, 19, 0.06);
  animation: fade-up 680ms var(--ease-out) 120ms both;
}

.spec-list {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin: 0;
}

.spec-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-list dt {
  color: var(--ink);
  font-weight: 800;
}

.spec-list dd {
  margin: 6px 0 0;
}

.check-list {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin: 18px 0 4px;
}

.detail-mini-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.96));
  color: inherit;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.detail-mini-card:hover,
.detail-mini-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(53, 184, 173, 0.44);
  box-shadow: 0 16px 34px rgba(7, 19, 19, 0.08);
  outline: 0;
}

.detail-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.14), rgba(53, 184, 173, 0) 46%),
    radial-gradient(circle at 100% 0%, rgba(53, 184, 173, 0.12), transparent 36%);
}

.detail-mini-card > * {
  position: relative;
  z-index: 1;
}

.detail-mini-card strong {
  color: var(--ink);
  font-size: 17px;
}

.detail-mini-card span {
  color: var(--muted);
  font-size: 15px;
}

.detail-feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin: 24px 0 10px;
}

.detail-feature-band article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.1), rgba(255, 255, 255, 0) 54%),
    #ffffff;
}

.detail-feature-band strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.detail-feature-band span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.product-series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
  margin: 20px 0 18px;
}

.product-series-grid article {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.1), rgba(255, 255, 255, 0) 50%),
    #ffffff;
}

.product-series-grid article > span {
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
}

.product-series-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.product-series-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.parameter-matrix {
  display: grid;
  grid-gap: 0;
  gap: 0;
  margin: 18px 0 0;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.parameter-matrix div {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-gap: 18px;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(53, 184, 173, 0.14);
}

.parameter-matrix div:last-child {
  border-bottom: 0;
}

.parameter-matrix strong {
  color: var(--ink);
}

.parameter-matrix span {
  color: var(--muted);
}

.architecture-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1px;
  gap: 1px;
  margin: 18px 0 4px;
  overflow: hidden;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(53, 184, 173, 0.2);
}

.architecture-strip article {
  min-height: 160px;
  padding: 22px;
  background: #ffffff;
}

.architecture-strip strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.architecture-strip p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-topology {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-top: 20px;
}

.product-topology div {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(53, 184, 173, 0.34);
  border-radius: 8px;
  color: var(--brand-strong);
  font-weight: 900;
  text-align: center;
  background: rgba(53, 184, 173, 0.07);
}

.service-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
}

.service-capability-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: #ffffff;
}

.service-capability-grid strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.service-capability-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.detail-steps li {
  counter-increment: step;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.detail-steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 184, 173, 0.44);
  box-shadow: 0 14px 28px rgba(7, 19, 19, 0.07);
}

.detail-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: 13px;
}

.detail-note {
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: #f2fbfa;
}

.detail-note strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.detail-note p {
  margin: 8px 0 0;
}

.empty-copy {
  margin: 0;
  color: var(--muted);
}

.contact-info {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
}

.contact-info__item {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  padding-left: 16px;
  border-left: 3px solid rgba(53, 184, 173, 0.38);
}

.contact-info__item strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.contact-info__item span,
.contact-info__item a {
  font-size: 17px;
  line-height: 1.6;
}

.contact-info a {
  color: var(--brand-strong);
  font-weight: 800;
}

.contact-info--large {
  font-size: 18px;
}

.contact-info--large .contact-info__item span,
.contact-info--large .contact-info__item a {
  font-size: 18px;
}

.inquiry-form {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: fade-up 620ms var(--ease-out) both;
}

.inquiry-form label {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cfe5e2;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(53, 184, 173, 0.16);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--brand-strong);
  font-weight: 700;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: #050505;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0;
}

.footer strong {
  color: white;
  font-size: 18px;
}

.footer p {
  margin: 10px 0 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
}

.related-section {
  background:
    linear-gradient(135deg, rgba(53, 184, 173, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.related-card {
  min-height: 156px;
  display: grid;
  align-content: start;
  grid-gap: 12px;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(53, 184, 173, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(7, 19, 19, 0.06);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(53, 184, 173, 0.42);
  box-shadow: 0 22px 46px rgba(7, 19, 19, 0.09);
  outline: 0;
}

.related-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.related-card span {
  color: var(--muted);
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 8px 0;
  }

  .topbar__inner span:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
    gap: 14px;
  }

  .product-anchor-nav {
    top: 66px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 42px;
    place-items: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
    border-color: var(--brand);
    background: var(--brand);
  }

  .nav-toggle span {
    background: white;
  }

  .nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(7, 19, 19, 0.12);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
  }

  .nav__item {
    display: block;
  }

  .nav-state:checked ~ .nav {
    display: flex;
  }

  .nav__link {
    min-height: auto;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(53, 184, 173, 0.12);
  }

  .nav__item:last-child .nav__link {
    border-bottom: 0;
  }

  .mega-menu {
    display: none;
  }

  .product-family-hero__inner,
  .product-category-hero__inner,
  .product-family-overview__inner,
  .about-lifecycle,
  .product-showcase-hero__inner,
  .model-hero__inner,
  .product-showcase-overview__inner,
  .product-showcase-specs,
  .product-showcase-features,
  .product-family-strengths,
  .product-family-scenarios,
  .product-topology,
  .service-capability-grid,
  .product-family-portfolio,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-family-hero__inner {
    min-height: auto;
    padding: 64px 0;
  }

  .product-family-hero__panel {
    min-height: 280px;
  }

  .product-showcase-hero__inner {
    min-height: auto;
    padding: 68px 0;
  }

  .model-hero__inner {
    min-height: auto;
    padding: 68px 0;
  }

  .product-category-hero__inner {
    min-height: auto;
    padding: 68px 0;
  }

  .product-showcase-visual {
    min-height: 300px;
  }

  .section-title-row,
  .product-family-source__inner {
    align-items: start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }

  .home-visual-carousel__frame,
  .home-visual-carousel__frame img {
    height: calc(100svh - 66px);
    min-height: 420px;
  }

  .hero {
    min-height: auto;
  }

  .hero__panel,
  .hero__orbit,
  .hero__node {
    opacity: 0.42;
  }

  .hero__panel--primary {
    right: -120px;
    top: 18%;
    width: 360px;
  }

  .hero__panel--secondary,
  .hero__node--security,
  .hero__node--data {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 72px 0 88px;
  }

  .hero-image-carousel {
    width: min(100%, 680px);
  }

  .hero-image-carousel__media,
  .hero-image-carousel__media img {
    min-height: 360px;
    height: 360px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .page-hero h1,
  .detail-hero h1,
  .product-family-hero h1 {
    font-size: 42px;
  }

  .product-showcase-hero h1 {
    font-size: 42px;
  }

  .model-hero h1 {
    font-size: 42px;
  }

  .product-category-hero h1 {
    font-size: 42px;
  }

  .product-family-overview h2,
  .product-showcase-overview h2,
  .product-showcase-specs h2,
  .section-title-row h2 {
    font-size: 30px;
  }

  h2 {
    font-size: 34px;
  }

  .business-grid,
  .solution-grid,
  .case-grid,
  .catalog-grid,
  .category-row,
  .detail-card-grid,
  .split,
  .content-split,
  .detail-layout,
  .detail-feature-band,
  .product-series-grid,
  .architecture-strip,
  .qualification-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .detail-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-carousel__tabs {
    justify-content: flex-start;
    gap: 24px;
  }

  .solution-carousel__matrix {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solution-carousel__list {
    align-content: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
  }

  .solution-carousel__list a {
    min-height: 40px;
    font-size: 14px;
  }

  .solution-carousel__visual,
  .solution-carousel__visual img {
    min-height: 390px;
  }

  .industry-carousel__main,
  .industry-carousel__main img {
    min-height: 420px;
    height: 420px;
  }

  .industry-carousel__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-wall,
  .qualification-list,
  .qualification-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-brand {
    grid-template-columns: 68px minmax(0, 220px);
    width: 310px;
    min-height: 76px;
  }

  .partner-brand__logo {
    width: 60px;
    height: 60px;
  }

  .section--services .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-list--lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-lifecycle__intro {
    position: static;
    max-width: 100%;
  }

  .about-lifecycle__intro h2 {
    font-size: 34px;
  }

  .detail-aside {
    position: static;
  }

  .enterprise-network-hero__inner,
  .enterprise-network-overview__inner {
    grid-template-columns: 1fr;
  }

  .enterprise-network-product-grid,
  .enterprise-network-insights,
  .enterprise-network-case-grid,
  .enterprise-network-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-network-scenarios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .switches-hero__inner,
  .switches-overview__inner,
  .switches-product-band {
    grid-template-columns: 1fr;
  }

  .switches-why-grid,
  .switches-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .switches-brand-grid,
  .switches-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s16700-hero__inner,
  .s16700-overview,
  .s16700-specs,
  .s16700-feature-grid,
  .s16700-scenario-grid,
  .s16700-model-grid,
  .s16700-resource-grid,
  .s16700-support-grid {
    grid-template-columns: 1fr;
  }

  .s16700-hero__inner {
    min-height: auto;
    gap: 38px;
    padding-block: 68px;
  }

  .s16700-product-visual {
    min-height: 300px;
  }

  .s16700-product-visual img {
    width: min(100%, 520px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand__logo {
    width: min(153px, calc(100vw - 96px));
  }

  .home-visual-carousel__frame,
  .home-visual-carousel__frame img {
    height: calc(100svh - 66px);
    min-height: 320px;
  }

  .home-visual-carousel__copy {
    left: 20px;
    bottom: 70px;
    width: calc(100% - 40px);
    padding: 0;
  }

  .home-visual-carousel__copy h2 {
    font-size: 32px;
  }

  .home-visual-carousel__copy span {
    font-size: 15px;
  }

  .home-visual-carousel__progress {
    bottom: 18px;
    width: calc(100% - 28px);
    gap: 7px;
  }

  .hero__metrics,
  .detail-steps,
  .advantage-list,
  .partner-wall,
  .qualification-list,
  .qualification-wall,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section--services .business-grid {
    grid-template-columns: 1fr;
  }

  .section--services .section-heading {
    margin-bottom: 34px;
  }

  .section--services .service-card {
    min-height: 240px;
  }

  .partner-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .partner-marquee__track {
    animation-duration: 120s;
  }

  .partner-marquee__group {
    gap: 14px;
    padding-right: 14px;
  }

  .partner-brand {
    grid-template-columns: 58px minmax(0, 176px);
    width: 250px;
    min-height: 70px;
    padding: 8px 12px 8px 8px;
  }

  .partner-brand__logo {
    width: 52px;
    height: 52px;
  }

  .partner-brand__logo img {
    max-width: 44px;
    max-height: 38px;
  }

  .partner-brand__logo--wide img {
    max-width: 46px;
    max-height: 22px;
  }

  .partner-brand__logo--lockup {
    width: 94px;
    gap: 5px;
    padding: 0 7px;
  }

  .partner-brand__logo--lockup img {
    max-width: 32px;
    max-height: 32px;
  }

  .partner-brand__logo--lockup span {
    font-size: 12px;
  }

  .partner-brand__logo span {
    max-width: 44px;
    font-size: 11px;
  }

  .partner-brand__content strong {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .partner-brand:has(.partner-brand__logo--lockup) {
    grid-template-columns: 96px minmax(0, 148px);
    width: 260px;
  }

  .partner-brand__logo--lockup span {
    max-width: none;
    font-size: 12px;
  }

  .partner-brand__content p {
    font-size: 11.5px;
  }

  .advantage-list--lifecycle {
    grid-template-columns: 1fr;
  }

  .advantage-list--lifecycle article {
    min-height: auto;
  }

  .about-lifecycle__intro h2 {
    font-size: 28px;
  }

  .hero-image-carousel__media,
  .hero-image-carousel__media img {
    min-height: 260px;
    height: 260px;
  }

  .hero-image-carousel__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-image-carousel__caption strong {
    font-size: 20px;
  }

  .hero-image-carousel__caption span {
    font-size: 14px;
  }

  .solution-carousel {
    gap: 26px;
  }

  .solution-carousel__tabs {
    gap: 20px;
  }

  .section--carousel {
    padding-top: 38px;
  }

  .solution-carousel__matrix {
    margin-inline: -14px;
  }

  .solution-carousel__list {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .solution-carousel__list a {
    min-height: 38px;
    font-size: 13px;
  }

  .solution-carousel__visual,
  .solution-carousel__visual img {
    min-height: 320px;
  }

  .solution-carousel__visual-copy {
    left: 22px;
    right: 22px;
    bottom: 26px;
  }

  .industry-carousel__main,
  .industry-carousel__main img {
    min-height: 360px;
    height: 360px;
  }

  .industry-carousel__caption {
    left: 18px;
    bottom: 20px;
    width: calc(100% - 36px);
  }

  .industry-carousel__caption h3 {
    font-size: 24px;
  }

  .industry-carousel__caption span {
    font-size: 15px;
  }

  .industry-carousel__bar {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .industry-carousel__bar > button {
    width: 38px;
    height: 38px;
  }

  .industry-carousel__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .industry-carousel__thumbs button {
    height: 62px;
  }

  .product-family-panel ul {
    grid-template-columns: 1fr;
  }

  .product-series-grid--large {
    grid-template-columns: 1fr;
  }

  .parameter-matrix div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-family-hero__panel {
    padding: 24px;
  }

  .enterprise-network-hero__inner {
    min-height: auto;
    gap: 34px;
    padding: 58px 0;
  }

  .enterprise-network-hero__copy h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .enterprise-network-hero__copy p:not(.eyebrow),
  .enterprise-network-overview__text {
    font-size: 16px;
  }

  .enterprise-network-hero__visual {
    min-height: auto;
    padding: 20px;
  }

  .enterprise-network-hero__screen {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .enterprise-network-anchor .container {
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .enterprise-network-overview h2 {
    font-size: 30px;
  }

  .enterprise-network-product-grid,
  .enterprise-network-insights,
  .enterprise-network-case-grid,
  .enterprise-network-resource-grid,
  .enterprise-network-scenarios,
  .enterprise-network-news {
    grid-template-columns: 1fr;
  }

  .enterprise-network-card,
  .enterprise-network-product,
  .enterprise-network-case,
  .enterprise-network-news article,
  .enterprise-network-scenario,
  .enterprise-network-resource {
    min-height: auto;
    padding: 22px;
  }

  .switches-hero__inner {
    min-height: auto;
    gap: 34px;
    padding: 58px 0;
  }

  .switches-hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .switches-hero p:not(.eyebrow),
  .switches-overview p:not(.eyebrow) {
    font-size: 16px;
    max-width: min(100%, 340px);
    word-break: break-all;
  }

  .switches-hero__panel,
  .switches-hero__image-card,
  .switches-product-band,
  .switches-why-grid article,
  .switches-case-grid article,
  .switches-resource-grid a {
    min-height: auto;
    padding: 22px;
  }

  .switches-hero__image-card {
    padding: 0;
  }

  .switches-hero__image-card img {
    height: 280px;
  }

  .switches-overview h2 {
    font-size: 30px;
    max-width: min(100%, 340px);
    word-break: break-all;
  }

  .switches-why-grid,
  .switches-case-grid,
  .switches-brand-grid,
  .switches-resource-grid {
    grid-template-columns: 1fr;
  }

  .switches-product-band h3 {
    font-size: 26px;
  }

  .s16700-hero__inner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-block: 58px;
  }

  .s16700-hero h1 {
    width: min(100%, 340px);
    max-width: 340px;
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .s16700-hero p:not(.eyebrow) {
    width: min(100%, 340px);
    max-width: 340px;
    font-size: 16px;
    line-height: 1.75;
    word-break: break-all;
  }

  .s16700-hero__actions {
    display: grid;
  }

  .s16700-product-visual {
    min-height: auto;
    padding: 22px;
  }

  .s16700-product-visual img {
    width: 100%;
  }

  .s16700-product-visual div {
    position: static;
    margin-top: 16px;
    width: 100%;
  }

  .s16700-product-visual strong {
    font-size: 16px;
  }

  .s16700-overview,
  .s16700-specs {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    display: block;
    gap: 24px;
  }

  .s16700-overview > *,
  .s16700-specs > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .s16700-overview h2,
  .s16700-specs h2 {
    width: min(100%, 340px);
    max-width: 340px;
    margin-bottom: 18px;
    font-size: 30px;
    word-break: break-all;
  }

  .s16700-overview p:not(.eyebrow),
  .s16700-specs p:not(.eyebrow),
  .s16700-feature-grid p,
  .s16700-scenario-grid p,
  .s16700-model-grid p,
  .s16700-resource-grid span,
  .s16700-support-grid span {
    width: min(100%, 340px);
    max-width: 340px;
    word-break: break-all;
  }

  .s16700-feature-grid article,
  .s16700-scenario-grid article,
  .s16700-model-grid article,
  .s16700-resource-grid a,
  .s16700-support-grid a {
    min-height: auto;
    padding: 22px;
  }

  .s16700-feature-grid strong {
    font-size: 24px;
  }

  .s16700-spec-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .s16700-spec-matrix {
    overflow-x: auto;
    border-bottom: 1px solid #dcdcdc;
  }

  .s16700-spec-matrix__head,
  .s16700-spec-matrix__row {
    min-width: 760px;
    grid-template-columns: 180px 290px 290px;
  }

  .s16700-spec-matrix__head strong,
  .s16700-spec-matrix__row strong,
  .s16700-spec-matrix__row span {
    padding: 18px 20px;
    font-size: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.16;
    max-width: 100%;
  }

  .hero__lead {
    max-width: calc(100vw - 40px);
    font-size: 16px;
    line-height: 1.75;
  }

  .hero__panel,
  .hero__orbit,
  .hero__node {
    display: none;
  }

  .page-hero h1,
  .detail-hero h1 {
    font-size: 22px;
    line-height: 1.22;
    max-width: min(100%, 330px);
    word-break: break-all;
  }

  .page-hero p:not(.eyebrow),
  .detail-hero p:not(.eyebrow) {
    max-width: min(100%, 330px);
    font-size: 16px;
    line-height: 1.75;
    word-break: break-all;
  }

  .page-hero::before,
  .page-hero::after,
  .detail-hero::before,
  .detail-hero::after {
    display: none;
  }

  .page-hero .container,
  .detail-hero .container {
    padding: 64px 0 72px;
  }

  h2 {
    font-size: 28px;
  }

  .rich-copy,
  .detail-content,
  .detail-aside,
  .inquiry-form {
    padding: 22px;
  }

  .detail-content,
  .detail-aside {
    width: min(100%, 334px);
    margin-inline: auto;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .footer__inner,
  .footer__bottom {
    display: grid;
  }

  .footer__links {
    display: grid;
    grid-gap: 12px;
    gap: 12px;
  }
}

