:root {
  --header-height: 78px;
  --content-width: 1200px;
  --background: #ffffff;
  --nav-text: #565656;
  --nav-hover: #000000;
  --brand-accent: #afe33a;
  --menu-arrow: #63aa00;
  --page-surface: #f6fbff;
  --menu-border: #e9f3f7;
  --menu-divider: #ebebeb;
  --button-radius: 10px;
  --motion-duration: 180ms;
  --section-heading-weight: 700;
  --surface-page: #f6f8fa;
  --surface-card: #ffffff;
  --surface-soft: #f4f6f7;
  --surface-selected: #eceff1;
  --surface-card-gradient: linear-gradient(145deg, #ffffff 0%, #f3f5f6 100%);
  --surface-selected-gradient: linear-gradient(135deg, #f5f6f7 0%, #e9edef 100%);
  --border-card: #dce2e5;
  --border-strong: #bfc8cd;
  --border-selected: #b8c2c7;
  --text-primary: #111315;
  --text-secondary: #667278;
  --text-muted: #879298;
  --accent-readable: #63aa00;
  --shadow-card: 0 6px 20px rgba(23, 35, 44, 0.06);
  --shadow-hover: 0 12px 30px rgba(23, 35, 44, 0.1);
  --shadow-popover: 0 18px 48px rgba(23, 35, 44, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1000px;
  margin: 0;
  color: var(--nav-text);
  background: var(--background);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--background);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.brand {
  position: absolute;
  top: 50%;
  left: 40px;
  display: block;
  flex: 0 0 225px;
  width: 225px;
  height: 51px;
  transform: translateY(-50%);
}

.brand img {
  display: block;
  width: 225px;
  height: 51px;
}

.primary-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 30px;
  margin-left: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.primary-nav > a,
.nav-trigger {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  transition: font-weight var(--motion-duration) ease;
}

.primary-nav > a:hover,
.nav-trigger:hover,
.nav-item.is-open > .nav-trigger {
  color: #000000;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-trigger {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.mega-menu {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--surface-card) 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow-popover);
  color: var(--text-primary);
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu--network {
  width: 720px;
  height: 435px;
}

.mega-menu--scenarios {
  width: 580px;
  height: 445px;
}

.mega-menu::after {
  position: absolute;
  top: 30px;
  bottom: 39px;
  left: 50%;
  width: 1px;
  background: var(--border-card);
  content: "";
}

.mega-menu__column {
  min-width: 0;
  padding-top: 29px;
  padding-bottom: 29px;
}

.mega-menu__column:first-child {
  padding-right: 40px;
  padding-left: 39px;
}

.mega-menu__column:nth-child(2) {
  padding-right: 39px;
  padding-left: 40px;
}

.mega-menu--scenarios::after {
  bottom: 40px;
}

.mega-menu__heading {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.mega-menu__list {
  display: grid;
  margin-top: 20px;
}

.mega-menu__list--detailed {
  gap: 9px;
}

.mega-menu__list--compact {
  gap: 4px;
}

.mega-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 18px;
  border-radius: 10px;
  color: var(--text-primary);
  transition:
    background-color var(--motion-duration) ease,
    box-shadow var(--motion-duration) ease;
}

.mega-menu__link--detailed {
  height: 60px;
}

.mega-menu__link--compact {
  height: 40px;
}

.mega-menu__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.mega-menu__link strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.mega-menu__title {
  display: inline-flex !important;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
}

.mega-menu__hot {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.mega-menu__link small {
  display: block;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-menu__arrow {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 14px;
  height: 14px;
  color: var(--accent-readable);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--motion-duration) ease;
}

.mega-menu__link:hover,
.mega-menu__link:focus-visible {
  background: var(--surface-selected-gradient);
  box-shadow: none;
}

.mega-menu__link:hover .mega-menu__arrow,
.mega-menu__link:focus-visible .mega-menu__arrow {
  opacity: 1;
}

.header-actions {
  position: absolute;
  top: 50%;
  right: 40px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  white-space: nowrap;
}

.phone-link__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  border-radius: var(--button-radius);
  background: var(--brand-accent);
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition:
    background-color var(--motion-duration) ease,
    box-shadow var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  background: #9fd62f;
  box-shadow: 0 8px 18px rgba(123, 179, 17, 0.28);
  transform: translateY(-2px);
}

.quote-button:active {
  background: #9fd62f;
  box-shadow: 0 3px 8px rgba(123, 179, 17, 0.22);
  transform: translateY(0);
}

.brand:focus-visible,
.primary-nav > a:focus-visible,
.nav-trigger:focus-visible,
.phone-link:focus-visible,
.quote-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.primary-nav > a,
.nav-trigger,
.phone-link {
  border-radius: 4px;
}

.page-content {
  min-height: calc(100vh - var(--header-height));
  background: var(--page-surface);
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 664px;
  overflow: hidden;
  background: #111722;
  color: #ffffff;
}

.hero-carousel__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide--live {
  background-image: url("./assets/banner/banner-live-network.webp");
}

.hero-slide--stable {
  background-image: url("./assets/banner/banner-stable-network.webp");
}

.hero-slide__content {
  position: relative;
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-slide__badge {
  position: absolute;
  top: 80px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 24px;
  transform: translateX(-50%);
}

.hero-slide__title {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0;
  color: #f7f8fa;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 80px;
  white-space: nowrap;
}

.hero-slide__content--live .hero-slide__title {
  top: 140px;
}

.hero-slide__content--stable .hero-slide__title {
  top: 140px;
}

.hero-slide__title span {
  color: var(--brand-accent);
}

.hero-slide__description {
  position: absolute;
  left: 50%;
  width: 1000px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 32px;
  transform: translateX(-50%);
}

.hero-slide__description span {
  display: block;
}

.hero-slide__description--live {
  top: 251px;
}

.hero-slide__description--stable {
  top: 251px;
}

.hero-slide__benefits {
  position: absolute;
  top: 362px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 840px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.hero-slide__benefits li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.hero-slide__benefits li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
  transform: translateY(-50%);
}

.hero-slide__actions {
  position: absolute;
  top: 432px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 40px;
  transform: translateX(-50%);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--button-radius);
  background: var(--brand-accent);
  color: #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--motion-duration) ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #9fd62f;
}

.hero-button:active {
  background: #9fd62f;
}

.hero-button:focus-visible:not(:hover),
.hero-slide__phone:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero-slide__phone {
  position: absolute;
  top: 513px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f7f8fa;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  transform: translateX(-50%);
}

.hero-slide__phone svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.hero-carousel__qr-panel {
  position: absolute;
  top: 222px;
  left: calc(50% + 90px);
  z-index: 3;
  visibility: hidden;
  width: 180px;
  height: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.98);
  transform-origin: center bottom;
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 250ms ease;
}

.hero-carousel__qr-panel img {
  display: block;
  width: 180px;
  height: 200px;
}

.hero-carousel.is-wechat-open .hero-carousel__qr-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.hero-carousel__progress {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-carousel__progress-item {
  display: flex;
  align-items: center;
  width: 84px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel__progress-track {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-carousel__progress-track::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-carousel__progress-item.is-active .hero-carousel__progress-track::after {
  animation: hero-progress 4500ms linear forwards;
}

.hero-carousel.is-progress-paused .hero-carousel__progress-item.is-active .hero-carousel__progress-track::after {
  animation-play-state: paused;
}

.hero-carousel__progress-item:hover .hero-carousel__progress-track,
.hero-carousel__progress-item:focus-visible .hero-carousel__progress-track {
  background: rgba(255, 255, 255, 0.52);
}

.hero-carousel__progress-item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.assurance-strip {
  width: 100%;
  height: 390px;
  overflow: hidden;
  background: var(--brand-accent);
  color: #262626;
}

.assurance-strip__inner {
  position: relative;
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.assurance-strip__heading {
  position: absolute;
  top: 47px;
  left: 0;
  width: 100%;
  text-align: center;
}

.assurance-strip__heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.assurance-strip__heading p {
  margin: 8px 0 0;
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.assurance-strip__features {
  position: absolute;
  top: 186px;
  left: 0;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance-strip__features::before,
.assurance-strip__features::after,
.assurance-feature--coverage::before {
  position: absolute;
  top: 0;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.assurance-strip__features::before {
  left: 279px;
}

.assurance-strip__features::after {
  left: 600px;
}

.assurance-feature--coverage::before {
  left: 276px;
}

.assurance-feature {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  height: 35px;
  gap: 16px;
}

.assurance-feature--stability {
  left: 26px;
}

.assurance-feature--delivery {
  left: 339px;
}

.assurance-feature--coverage {
  left: 659px;
}

.assurance-feature--rental {
  left: 994px;
}

.assurance-feature img {
  display: block;
  flex: 0 0 auto;
}

.assurance-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
}

.assurance-feature__copy strong {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.assurance-feature__copy small {
  color: rgba(38, 38, 38, 0.72);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.assurance-strip__proof {
  position: absolute;
  top: 288px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 500px;
  height: 40px;
  margin: 0;
  padding: 0 54px;
  border-radius: 20px;
  background: #262626;
  color: rgba(255, 255, 255, 0.86);
  list-style: none;
  transform: translateX(-50%);
}

.assurance-strip__proof li {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}

.assurance-strip__proof li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
  transform: translateY(-50%);
}

.services-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: #ffffff;
  color: #111111;
}

.services-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.services-showcase__heading {
  text-align: center;
}

.services-showcase__heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.services-showcase__heading p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.services-showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 34px;
}

.services-showcase__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #eef1f2 100%);
  box-shadow:
    0 3px 8px rgba(72, 91, 101, 0.14),
    0 10px 24px rgba(72, 100, 114, 0.09);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.services-showcase__tab:hover,
.services-showcase__tab:focus-visible {
  background: linear-gradient(145deg, #ffffff 0%, #e7ebed 100%);
  box-shadow:
    0 4px 10px rgba(72, 91, 101, 0.17),
    0 13px 28px rgba(72, 100, 114, 0.12);
  transform: translateY(-2px);
}

.services-showcase__tab.is-active {
  background: var(--brand-accent);
  box-shadow: 0 8px 20px rgba(104, 133, 38, 0.18);
  color: #000000;
}

.services-showcase__tab.is-active:hover,
.services-showcase__tab.is-active:focus-visible {
  background: #9fd62f;
  box-shadow: 0 10px 24px rgba(104, 133, 38, 0.22);
}

.service-accordion__trigger:focus-visible,
.service-detail__button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.services-showcase__tab:focus-visible {
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-showcase__layout {
  display: grid;
  grid-template-columns: 405px 705px;
  gap: 90px;
  align-items: stretch;
  height: 430px;
  margin-top: 40px;
}

.service-accordion {
  width: 405px;
  height: 430px;
  border-top: 1px solid #c9d5d9;
}

.service-accordion.is-first-active {
  border-top-color: transparent;
}

.service-accordion__item {
  border-bottom: 1px solid #c9d5d9;
}

.service-accordion__item:last-child {
  border-bottom: 0;
}

.service-accordion__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 16px 44px 16px 0;
  border: 0;
  background: transparent;
  color: #111111;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.service-accordion__item.is-active .service-accordion__trigger {
  min-height: 46px;
  padding-bottom: 8px;
}

.service-accordion__title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-accordion__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.service-accordion__hot {
  display: block;
  width: 19px;
  height: 19px;
}

.service-accordion__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  color: var(--accent-readable);
}

.service-accordion__description {
  margin: 0;
  padding: 0 35px 23px 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 22px;
  animation: serviceDescriptionIn 220ms ease both;
}

@keyframes serviceDescriptionIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 705px;
  height: 430px;
  padding: 39px 52px 36px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f8f9 100%);
  box-shadow:
    0 5px 14px rgba(102, 126, 138, 0.08),
    0 18px 42px rgba(72, 100, 114, 0.08);
}

.service-detail.is-updating {
  animation: serviceDetailIn 240ms ease both;
}

.service-detail__panel:not([hidden]) {
  display: contents;
}

@keyframes serviceDetailIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-detail__bestseller {
  position: absolute;
  top: 27px;
  right: 29px;
  display: block;
  width: 49px;
  height: 17px;
}

.service-detail__title {
  max-width: 520px;
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.service-detail__intro {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.service-detail__points {
  display: grid;
  gap: 16px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail__points li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.service-detail__points img {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.service-detail__footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: auto;
}

.service-detail__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #000000;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.service-detail__button:hover,
.service-detail__button:focus-visible {
  background: #252525;
  transform: translateY(-1px);
}

.service-detail__price {
  display: inline-flex;
  align-items: baseline;
  color: #606b6f;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  white-space: nowrap;
}

.service-detail__price-label,
.service-detail__price-suffix {
  color: #606b6f;
  font-weight: 600;
}

.service-detail__price-label {
  font-size: 14px;
}

.service-detail__price-suffix {
  font-size: 16px;
}

.service-detail__price-amount {
  margin-left: 4px;
  color: #111111;
  font-size: 22px;
  font-weight: 600;
}

.service-detail__price-quote {
  margin-left: 4px;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
}

.scenarios-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: var(--page-surface);
  color: #111111;
  scroll-margin-top: var(--header-height);
}

.scenarios-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.scenarios-showcase__heading {
  text-align: center;
}

.scenarios-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.scenarios-showcase__heading h2 span {
  color: var(--accent-readable);
}

.scenarios-showcase__heading p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.scenario-matrix {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.scenario-matrix__group {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(166, 184, 193, 0.3);
  border-radius: 10px;
  background: var(--surface-card-gradient);
  box-shadow:
    0 1px 2px rgba(23, 35, 44, 0.035),
    0 10px 26px rgba(23, 35, 44, 0.065);
}

.scenario-matrix__group-heading {
  padding: 24px 26px 28px;
  background: var(--surface-soft);
}

.scenario-matrix__index {
  display: block;
  color: var(--accent-readable);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 18px;
}

.scenario-matrix__group-heading h3 {
  margin: 9px 0 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.scenario-matrix__group-heading p {
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.scenario-matrix__items {
  display: grid;
  grid-template-columns: repeat(var(--scenario-columns), minmax(0, 1fr));
  border-left: 1px solid rgba(166, 184, 193, 0.22);
}

.scenario-matrix__item {
  position: relative;
  min-width: 0;
  min-height: 154px;
  padding: 24px 26px 22px;
  overflow: hidden;
  border-left: 1px solid rgba(166, 184, 193, 0.22);
  background: #ffffff;
  isolation: isolate;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.scenario-matrix__item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, #ffffff 0%, #eef2f3 100%);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.scenario-matrix__item > * {
  position: relative;
  z-index: 1;
}

.scenario-matrix__item:first-child {
  border-left: 0;
}

.scenario-matrix__items[style*="--scenario-columns: 3"] .scenario-matrix__item:nth-child(3n + 1) {
  border-left: 0;
}

.scenario-matrix__items[style*="--scenario-columns: 2"] .scenario-matrix__item:nth-child(odd) {
  border-left: 0;
}

.scenario-matrix__items[style*="--scenario-columns: 2"] .scenario-matrix__item:nth-child(n + 3) {
  border-top: 1px solid rgba(166, 184, 193, 0.22);
}

.scenario-matrix__item:hover,
.scenario-matrix__item.is-targeted {
  background: #ffffff;
}

.scenario-matrix__item.is-targeted {
  box-shadow: none;
}

.scenario-matrix__item:hover::before,
.scenario-matrix__item.is-targeted::before {
  opacity: 1;
}

.scenario-matrix__item-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.scenario-matrix__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--text-secondary);
}

.scenario-matrix__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-matrix__item-heading h4 {
  margin: 0;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.scenario-matrix__pain {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.scenario-matrix__recommendation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.scenario-matrix__recommendation > span {
  position: relative;
  flex: 0 0 auto;
  padding-left: 11px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.scenario-matrix__recommendation > span::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
}

.scenario-matrix__recommendation p {
  margin: 0;
  color: #111315;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.scenario-consultation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  margin-top: 40px;
  padding: 0 30px;
  border-radius: 10px;
  background: #262832;
  color: #ffffff;
}

.scenario-consultation > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.scenario-consultation__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.scenario-consultation__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.scenario-consultation__button:hover,
.scenario-consultation__button:focus-visible {
  background: #9fd62f;
  transform: translateY(-1px);
}

.scenario-consultation__button:focus-visible,
.scenario-consultation__phone:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.scenario-consultation__wechat {
  position: relative;
}

.scenario-consultation__qr {
  position: absolute;
  bottom: 54px;
  left: 50%;
  z-index: 6;
  visibility: hidden;
  width: 180px;
  height: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.98);
  transform-origin: center bottom;
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 250ms ease;
}

.scenario-consultation__qr img {
  display: block;
  width: 180px;
  height: 200px;
}

.scenario-consultation__wechat.is-open .scenario-consultation__qr {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.scenario-consultation__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.scenario-consultation__phone svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.cases-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: #ffffff;
  color: #111111;
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.cases-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.cases-showcase__heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cases-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.cases-showcase__heading h2 span {
  color: var(--accent-readable);
}

.cases-showcase__heading p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.cases-showcase__primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  margin-top: 42px;
}

.cases-showcase__side {
  display: grid;
  grid-template-rows: repeat(2, 278px);
  gap: 24px;
}

.cases-showcase__secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166, 184, 193, 0.28);
  border-radius: 10px;
  background: var(--surface-card-gradient);
  box-shadow:
    0 1px 2px rgba(23, 35, 44, 0.04),
    0 10px 28px rgba(23, 35, 44, 0.07);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.case-card::after {
  position: absolute;
  top: 78px;
  right: 8px;
  width: 150px;
  height: 104px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.82;
  pointer-events: none;
}

.case-card:hover {
  border-color: rgba(145, 166, 176, 0.46);
  box-shadow:
    0 2px 4px rgba(23, 35, 44, 0.05),
    0 16px 36px rgba(23, 35, 44, 0.1);
  transform: translateY(-2px);
}

.case-card--featured {
  display: flex;
  height: 580px;
  flex-direction: column;
  padding: 36px 40px 34px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 86% 14%, rgba(154, 168, 176, 0.1), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(69, 111, 139, 0.28), transparent 34%),
    linear-gradient(138deg, #1b1d23 0%, #20232b 58%, #242a32 100%);
  box-shadow: 0 10px 28px rgba(24, 29, 38, 0.16);
  color: #ffffff;
}

.case-card--featured::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(27, 29, 35, 0.99) 0%,
    rgba(27, 29, 35, 0.96) 42%,
    rgba(27, 29, 35, 0.7) 63%,
    rgba(27, 29, 35, 0.14) 100%
  );
  content: "";
  pointer-events: none;
}

.case-card--featured::after {
  inset: 0;
  width: auto;
  height: auto;
  background-image: url("./assets/cases/broadcast-production-v2.webp");
  background-position: right center;
  background-size: auto 100%;
  opacity: 0.78;
}

.case-card--outdoor::after {
  background-image: url("./assets/cases/case-outdoor-scene-v2.webp");
}

.case-card--meeting::after {
  background-image: url("./assets/cases/case-meeting-scene-v2.webp");
}

.case-card--venue::after {
  background-image: url("./assets/cases/case-venue-scene-v2.webp");
}

.case-card--exhibition::after {
  background-image: url("./assets/cases/case-exhibition-scene-v2.webp");
}

.case-card--office::after {
  background-image: url("./assets/cases/case-office-scene-v2.webp");
}

.case-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 34px rgba(24, 29, 38, 0.2);
}

.case-card--side {
  height: 278px;
  padding: 24px 26px 22px;
}

.case-card--compact {
  display: flex;
  height: 320px;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.case-card--compact::after {
  top: 92px;
  width: 158px;
  height: 112px;
}

.case-card--side::after,
.case-card--compact::after {
  inset: 0;
  width: auto;
  height: auto;
  background-position: right bottom;
  background-size: auto 76%;
  filter: saturate(0.72) contrast(0.94);
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, #000 84%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, #000 84%, #000 100%);
}

.case-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text-secondary);
}

.case-card__icon--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #dce4e7;
}

.case-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-card__category {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 18px;
}

.case-card--featured .case-card__category {
  color: rgba(255, 255, 255, 0.58);
}

.case-card__featured-copy {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.case-card__client {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 18px;
}

.case-card--featured .case-card__client {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.case-card h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
}

.case-card--featured h3 {
  margin-top: 9px;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 40px;
}

.case-card__lead {
  max-width: 590px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.case-card__summary {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.case-card--side .case-card__client {
  margin-top: 15px;
}

.case-card--side h3 {
  margin-top: 4px;
  font-size: 18px;
  line-height: 26px;
}

.case-card--side .case-card__summary {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-card__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.case-card__facts div {
  min-width: 0;
}

.case-card__facts dt,
.case-card__facts dd {
  margin: 0;
}

.case-card__facts dt {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.case-card__facts dd {
  margin-top: 2px;
  color: #20262b;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
}

.case-card__value-main {
  font-size: 18px;
  font-weight: 600;
}

.case-card__value-unit {
  font-size: 16px;
  font-weight: 600;
}

.case-card--side .case-card__facts {
  margin-top: 14px;
}

.case-card--side .case-card__facts dd {
  font-size: 18px;
  line-height: 23px;
}

.case-card__facts--featured {
  width: 560px;
  gap: 34px;
  margin-top: 30px;
}

.case-card__facts--featured dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 18px;
}

.case-card__facts--featured dd {
  margin-top: 2px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.case-card__facts--featured div:last-child dd {
  color: var(--brand-accent);
}

.case-card__details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card__details span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 18px;
}

.case-card__details p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.case-card--compact .case-card__facts {
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid #e7edef;
}

.cases-consultation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  margin-top: 40px;
  padding: 0 30px;
  border-radius: 10px;
  background: #262832;
  color: #ffffff;
}

.cases-consultation__copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cases-consultation__copy strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.cases-consultation__copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.cases-consultation__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cases-consultation__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.cases-consultation__button:hover,
.cases-consultation__button:focus-visible {
  background: #9fd62f;
  transform: translateY(-1px);
}

.cases-consultation__button:focus-visible,
.cases-consultation__phone:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.cases-consultation__wechat {
  position: relative;
}

.cases-consultation__qr {
  position: absolute;
  bottom: 54px;
  left: 50%;
  z-index: 6;
  visibility: hidden;
  width: 180px;
  height: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.98);
  transform-origin: center bottom;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.cases-consultation__qr img {
  display: block;
  width: 180px;
  height: 200px;
}

.cases-consultation__wechat.is-open .cases-consultation__qr {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.cases-consultation__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.cases-consultation__phone svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.pricing-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: #f6f8fa;
  color: var(--text-primary);
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.pricing-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

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

.pricing-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.pricing-showcase__heading h2 span {
  color: var(--accent-readable);
}

.pricing-showcase__heading p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

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

.pricing-card {
  display: flex;
  min-width: 0;
  height: 650px;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(23, 35, 44, 0.04),
    0 10px 28px rgba(23, 35, 44, 0.07);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pricing-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f7f9fa 100%);
  box-shadow:
    0 2px 4px rgba(23, 35, 44, 0.05),
    0 16px 36px rgba(23, 35, 44, 0.1);
  transform: translateY(-2px);
}

.pricing-card__tags {
  display: flex;
  align-items: center;
  min-height: 26px;
  gap: 6px;
}

.pricing-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 7px;
  background: #eef1f2;
  color: #5f6b70;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.pricing-card__tag--accent {
  background: var(--brand-accent);
  color: #111111;
}

.pricing-card h3 {
  margin: 14px 0 0;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
}

.pricing-card__subtitle {
  min-height: 42px;
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  margin: 22px 0 0;
  color: #111111;
  font-family: Arial, "PingFang SC", sans-serif;
  white-space: nowrap;
}

.pricing-card__currency {
  margin-right: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.pricing-card__price strong {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 42px;
}

.pricing-card__price-unit {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #3f4b50;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding-left: 15px;
}

.pricing-card__features li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  flex: 0 0 48px;
  margin-top: auto;
  border-radius: var(--button-radius);
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition:
    background-color var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus-visible {
  background: #292929;
  transform: translateY(-1px);
}

.pricing-card__button:focus-visible {
  outline: 2px solid var(--accent-readable);
  outline-offset: 3px;
}

.pricing-card__button:active {
  transform: translateY(0);
}

.pricing-notes {
  margin-top: 24px;
  padding: 26px 30px 28px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(23, 35, 44, 0.025),
    0 6px 18px rgba(23, 35, 44, 0.045);
}

.pricing-notes h3 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.pricing-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  row-gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: #627077;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
}

.pricing-notes li {
  position: relative;
  padding-left: 15px;
}

.pricing-notes li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
}

.pricing-more-services {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #262832;
  box-shadow: 0 10px 26px rgba(26, 30, 39, 0.15);
  color: #ffffff;
}

.pricing-more-services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 9px;
  background: var(--brand-accent);
  color: #111111;
}

.pricing-more-services__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-more-services strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
}

.delivery-showcase {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 78px 0 60px;
  overflow: hidden;
  background: #191c23;
  color: #f7f8fa;
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.delivery-showcase__ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.delivery-showcase__network {
  stroke: rgba(175, 227, 58, 0.2);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.28;
  transform-box: fill-box;
  transform-origin: center;
  animation: delivery-network-breathe 14s ease-in-out infinite alternate;
}

.delivery-showcase__network path {
  fill: none;
}

.delivery-showcase__network circle {
  fill: var(--brand-accent);
  stroke: none;
}

.delivery-showcase__network--right {
  stroke: rgba(145, 165, 175, 0.18);
  animation-delay: -7s;
}

.delivery-showcase__network--right circle {
  fill: #91a5af;
}

@keyframes delivery-network-breathe {
  from {
    opacity: 0.16;
    transform: scale(0.995);
  }

  to {
    opacity: 0.34;
    transform: scale(1.005);
  }
}

.delivery-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.delivery-showcase__heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.delivery-showcase__heading h2 {
  margin: 0;
  color: #f7f8fa;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: -0.6px;
  line-height: 44px;
}

.delivery-showcase__heading h2 span {
  color: var(--brand-accent);
}

.delivery-showcase__heading p {
  margin: 10px 0 0;
  color: #aeb6be;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.delivery-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-timeline::before {
  position: absolute;
  top: 20px;
  right: 100px;
  left: 100px;
  height: 1px;
  background: #394049;
  content: "";
}

.delivery-timeline li {
  position: relative;
  min-width: 0;
  padding: 0 15px;
  text-align: center;
}

.delivery-timeline__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #20242c;
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    color var(--motion-duration) ease,
    background-color var(--motion-duration) ease,
    border-color var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.delivery-timeline li:hover .delivery-timeline__index {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #111315;
  transform: translateY(-2px);
}

.delivery-timeline h3 {
  margin: 17px 0 0;
  color: #f7f8fa;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.delivery-timeline p {
  max-width: 170px;
  min-height: 66px;
  margin: 8px auto 0;
  color: #aeb6be;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.delivery-assurance {
  display: grid;
  grid-template-columns: 680px 472px;
  gap: 48px;
  margin-top: 52px;
}

.delivery-topology,
.delivery-capabilities {
  min-height: 390px;
  border-radius: 10px;
  background: #20242c;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.delivery-topology {
  padding: 30px 30px 28px;
}

.delivery-topology > h3,
.delivery-capabilities > h3 {
  margin: 0;
  color: #f7f8fa;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.delivery-topology > p {
  margin: 7px 0 0;
  color: #879298;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.delivery-topology__diagram {
  position: relative;
  height: 244px;
  margin-top: 24px;
}

.delivery-topology__connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.delivery-topology__connections path {
  fill: none;
  stroke: rgba(174, 227, 58, 0.48);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.delivery-topology__connections circle {
  fill: var(--brand-accent);
}

.delivery-topology__node {
  position: absolute;
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 9px;
  background: #282d36;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.045) inset,
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.delivery-topology__node--primary,
.delivery-topology__node--backup {
  left: 0;
  width: 184px;
}

.delivery-topology__node--primary {
  top: 28px;
}

.delivery-topology__node--backup {
  top: 138px;
}

.delivery-topology__node--monitor {
  top: 83px;
  left: 248px;
  width: 184px;
  min-height: 84px;
}

.delivery-topology__node--site {
  top: 83px;
  right: 0;
  width: 148px;
  min-height: 84px;
}

.delivery-topology__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #c6cdd3;
}

.delivery-topology__icon svg,
.delivery-capabilities__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-topology__node > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.delivery-topology__node strong {
  color: #f7f8fa;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  white-space: nowrap;
}

.delivery-topology__node small {
  margin-top: 2px;
  color: #879298;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}

.delivery-capabilities {
  padding: 30px 30px 28px;
}

.delivery-capabilities ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-capabilities li {
  display: grid;
  min-height: 67px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.delivery-capabilities li:last-child {
  border-bottom: 0;
}

.delivery-capabilities__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--brand-accent);
}

.delivery-capabilities li > span:last-child {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.delivery-capabilities strong {
  color: #f7f8fa;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.delivery-capabilities small {
  color: #879298;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.delivery-capabilities__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-top: 18px;
  border-radius: var(--button-radius);
  background: var(--brand-accent);
  box-shadow: 0 12px 28px rgba(175, 227, 58, 0.14);
  color: #111315;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition:
    background-color var(--motion-duration) ease,
    box-shadow var(--motion-duration) ease,
    transform var(--motion-duration) ease;
}

.delivery-capabilities__button:hover,
.delivery-capabilities__button:focus-visible {
  background: #9fd62f;
  box-shadow: 0 16px 34px rgba(175, 227, 58, 0.2);
  transform: translateY(-2px);
}

.delivery-capabilities__button:focus-visible {
  outline: 2px solid #f7f8fa;
  outline-offset: 3px;
}

.faq-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: #eef1f2;
  color: var(--text-primary);
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.faq-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.faq-showcase__heading {
  text-align: center;
}

.faq-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 1000px;
  align-items: start;
  gap: 100px;
  margin: 42px auto 0;
  overflow-anchor: none;
}

.faq-list__column {
  border-top: 1px solid #e5e8ea;
}

.faq-item {
  border-bottom: 1px solid #e5e8ea;
}

.faq-item h3 {
  margin: 0;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  gap: 32px;
  padding: 18px 4px 18px 0;
  border: 0;
  background: transparent;
  color: #111315;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  cursor: pointer;
  transition: color var(--motion-duration) ease;
}

.faq-item__trigger:hover {
  color: #000000;
}

.faq-item__trigger:focus-visible {
  outline: none;
}

.faq-item__trigger:focus-visible > span:first-child {
  text-decoration: underline 2px var(--accent-readable);
  text-underline-offset: 5px;
}

.faq-item__symbol {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: #111315;
}

.faq-item__symbol::before,
.faq-item__symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity var(--motion-duration) ease;
}

.faq-item__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__symbol::after {
  opacity: 0;
}

.faq-item__answer {
  padding: 0 48px 20px 0;
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-item__answer p {
  max-width: 100%;
  margin: -2px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.about-showcase {
  width: 100%;
  padding: 78px 0 60px;
  background: #ffffff;
  color: var(--text-primary);
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.about-showcase__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.about-showcase__heading {
  text-align: center;
}

.about-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.about-showcase__heading > p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.about-showcase__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
  margin-top: 48px;
}

.about-showcase__story {
  padding-top: 2px;
}

.about-showcase__story p {
  margin: 0;
  color: #354148;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 30px;
}

.about-showcase__story p + p {
  margin-top: 22px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-principles li {
  display: flex;
  min-height: 94px;
  gap: 18px;
  padding: 20px 22px 18px 0;
  border-top: 1px solid #e5e8ea;
}

.about-principles li:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid #e5e8ea;
}

.about-principles__index {
  flex: 0 0 auto;
  color: var(--accent-readable);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.about-principles h3 {
  margin: 0;
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.about-principles p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.about-identity {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.55fr 1fr;
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #e5e8ea;
}

.about-identity > div {
  min-width: 0;
  padding: 0 30px;
  border-left: 1px solid #e5e8ea;
}

.about-identity > div:first-child {
  padding-left: 0;
  padding-right: 0;
  border-left: 0;
}

.about-identity dt,
.about-identity dd {
  margin: 0;
}

.about-identity dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.about-identity dd {
  margin-top: 5px;
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.about-identity__brand dd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  margin-top: 0;
  transform: translateY(2px);
}

.about-identity__brand img {
  display: block;
  width: 200px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.about-identity dd strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}

.about-identity a {
  transition: color var(--motion-duration) ease;
}

.about-identity a:hover,
.about-identity a:focus-visible {
  color: var(--accent-readable);
}

.about-identity a:focus-visible {
  outline: 2px solid var(--accent-readable);
  outline-offset: 4px;
}

.about-partners {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e8ea;
}

.about-partners > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.about-partners ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-partners li {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid #e5e8ea;
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.about-partners__logo {
  display: block;
  max-width: 138px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.about-partners__logo--telecom {
  width: 132px;
}

.about-partners__logo--unicom {
  width: 112px;
}

.about-partners__logo--mobile {
  width: 116px;
}

.quote-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 78px 0 60px;
  background: #afe33a;
  color: #111315;
  scroll-margin-top: calc(var(--header-height) - 20px);
}

.quote-showcase::before,
.quote-showcase::after {
  position: absolute;
  top: 50%;
  width: 480px;
  height: 480px;
  border-radius: 46% 54% 58% 42%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.25) 38%, rgba(255, 255, 255, 0) 72%);
  content: "";
  filter: blur(12px);
  opacity: 0.62;
  transform: translateY(-50%);
  animation: quote-aura-breathe 10s ease-in-out infinite alternate;
}

.quote-showcase::before {
  left: -180px;
}

.quote-showcase::after {
  right: -180px;
  border-radius: 56% 44% 42% 58%;
  background: radial-gradient(circle at 50% 50%, rgba(71, 102, 8, 0.26) 0%, rgba(71, 102, 8, 0.12) 38%, rgba(71, 102, 8, 0) 72%);
  animation-delay: -5s;
}

@keyframes quote-aura-breathe {
  from {
    opacity: 0.34;
    transform: translateY(-52%) scale(0.92);
  }

  to {
    opacity: 0.66;
    transform: translateY(-48%) scale(1.08);
  }
}

.quote-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 700px;
  align-items: start;
  width: min(var(--content-width), calc(100% - 48px));
  gap: 100px;
  margin: 0 auto;
}

.quote-showcase__intro {
  padding-top: 18px;
}

.quote-showcase__intro h2 {
  margin: 0;
  color: #111315;
  font-size: 32px;
  font-weight: var(--section-heading-weight);
  letter-spacing: 0.2px;
  line-height: 44px;
}

.quote-showcase__intro > p {
  margin: 20px 0 0;
  color: #39421f;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.quote-showcase__benefits {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  color: #111315;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  list-style: none;
}

.quote-showcase__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-showcase__benefits li > span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #191c23;
}

.quote-showcase__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #111315;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  transition: color var(--motion-duration) ease;
}

.quote-showcase__phone svg {
  width: 22px;
  height: 22px;
  color: #191c23;
}

.quote-showcase__phone:hover,
.quote-showcase__phone:focus-visible {
  color: #000000;
}

.quote-showcase__phone:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 5px;
}

.quote-form-panel {
  position: relative;
  padding: 34px 36px 30px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 36, 43, 0.16);
  color: var(--text-primary);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field label {
  display: block;
  margin-bottom: 8px;
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.quote-field label span,
.quote-field label em {
  margin-left: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.quote-field label span {
  color: var(--text-muted);
}

.quote-field label em {
  color: #4f8b00;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
  width: 100%;
  border: 1px solid #d9dfe2;
  border-radius: 8px;
  background: #f8f9fa;
  color: #111315;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  transition: border-color var(--motion-duration) ease, box-shadow var(--motion-duration) ease, background var(--motion-duration) ease;
}

.quote-field input,
.quote-field select {
  height: 48px;
  padding: 0 14px;
}

.quote-field textarea {
  min-height: 88px;
  padding: 12px 14px;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder,
.quote-field select:invalid {
  color: #929ca1;
}

.quote-field input:hover,
.quote-field textarea:hover,
.quote-field select:hover {
  border-color: #bfc8cd;
}

.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
  border-color: #76a815;
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(175, 227, 58, 0.2);
}

.quote-field.is-invalid input,
.quote-field.is-invalid textarea {
  border-color: #c83c3c;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(200, 60, 60, 0.1);
}

.quote-field__error {
  min-height: 18px;
  margin: 4px 0 -18px;
  color: #b52f2f;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.quote-select {
  position: relative;
}

.quote-select select {
  padding-right: 42px;
  appearance: none;
  cursor: pointer;
}

.quote-select svg {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}

.quote-select path {
  fill: none;
  stroke: #667278;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-form__submit {
  width: 100%;
  height: 50px;
  margin-top: 28px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #111315;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--motion-duration) ease, box-shadow var(--motion-duration) ease, transform var(--motion-duration) ease;
}

.quote-form__submit:hover {
  background: #a3d934;
  box-shadow: 0 12px 28px rgba(175, 227, 58, 0.18);
  transform: translateY(-2px);
}

.quote-form__submit:active {
  transform: translateY(0);
}

.quote-form__submit:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 3px;
}

.quote-form__submit:disabled,
.quote-modal__submit:disabled {
  box-shadow: none;
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.quote-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.quote-form__notice {
  margin: 12px 0 0;
  color: #7a858a;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.quote-form__notice a,
.quote-modal__privacy a {
  color: #4f7500;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-form__status {
  min-height: 20px;
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.quote-form__status.is-success,
.quote-modal__status.is-success {
  color: #3f7000;
}

.quote-form__status.is-error,
.quote-modal__status.is-error {
  color: #a52b2b;
}

.quote-success {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.98);
  color: #111315;
  text-align: center;
}

.quote-success[hidden] {
  display: none;
}

.quote-success__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #111315;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.quote-success h3 {
  margin: 18px 0 0;
  color: #111315;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.quote-success > p:not(.quote-success__countdown) {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.quote-success__countdown {
  margin: 18px 0 0;
  color: #6f797e;
  font-size: 13px;
  line-height: 20px;
}

.quote-success__countdown strong {
  color: #315500;
  font-size: inherit;
  font-weight: 700;
}

.quote-success button {
  min-width: 132px;
  height: 44px;
  margin-top: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #111315;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.quote-success button:hover {
  background: #292d31;
  transform: translateY(-1px);
}

.quote-success button:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 3px;
}

body.is-quote-modal-open {
  overflow: hidden;
}

.floating-service {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 900;
  display: grid;
  width: 64px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(25, 32, 38, 0.16);
}

.floating-service__wechat {
  position: relative;
}

.floating-service__phone {
  position: relative;
}

.floating-service__item {
  display: flex;
  width: 100%;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 9px 5px 8px;
  border: 0;
  border-bottom: 1px solid #edf0f1;
  background: transparent;
  color: #39444a;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.floating-service > .floating-service__item:last-child,
.floating-service__wechat:last-child .floating-service__item {
  border-bottom: 0;
}

.floating-service__item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-service__item:hover,
.floating-service__item:focus-visible {
  background: var(--brand-accent);
  color: #111315;
}

.floating-service__item:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid #111315;
  outline-offset: 2px;
}

.floating-service__wechat-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  width: 156px;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(25, 32, 38, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-service__phone-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  width: 176px;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(25, 32, 38, 0.2);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-service__phone-panel::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.floating-service__phone:hover .floating-service__phone-panel,
.floating-service__phone:focus-within .floating-service__phone-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.floating-service__phone-panel span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 18px;
}

.floating-service__phone-panel strong {
  color: #111315;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.floating-service__wechat-panel::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.floating-service__wechat:hover .floating-service__wechat-panel,
.floating-service__wechat:focus-within .floating-service__wechat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.floating-service__wechat-panel strong {
  color: #111315;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.floating-service__wechat-panel img {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 5px;
}

.floating-service__wechat-panel span {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 18px;
}

.floating-service__top {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 900;
  width: 64px;
  max-height: 62px;
  min-height: 62px;
  margin: 0;
  border-bottom: 0;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(25, 32, 38, 0.13);
  overflow: hidden;
  opacity: 1;
  transition: max-height 180ms ease, opacity 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-service__top[hidden] {
  display: none;
  max-height: 0;
  min-height: 0;
  border-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal.is-open {
  opacity: 1;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 16, 0.62);
  backdrop-filter: blur(7px);
}

.quote-modal__dialog {
  position: relative;
  width: 880px;
  max-height: calc(100vh - 64px);
  overflow: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(8, 12, 16, 0.34);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.quote-modal.is-open .quote-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quote-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f4f5;
  color: #111315;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.quote-modal__close:hover {
  background: #e7eaec;
  transform: rotate(4deg);
}

.quote-modal__close:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 3px;
}

.quote-modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.quote-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  column-gap: 32px;
  padding: 38px 44px 34px;
}

.quote-modal__heading {
  grid-column: 1 / -1;
  padding-right: 52px;
}

.quote-modal__heading h2 {
  margin: 0;
  color: #111315;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.quote-modal__heading > p:not(.quote-modal__plan) {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.quote-modal__plan {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(175, 227, 58, 0.2);
  color: #315500;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.quote-modal__plan[hidden] {
  display: none;
}

.quote-modal__form {
  position: relative;
  grid-column: 1;
  margin-top: 24px;
}

.quote-success--modal {
  min-height: 100%;
  border-radius: 10px;
}

.quote-modal__field + .quote-modal__field {
  margin-top: 18px;
}

.quote-modal__field label {
  display: block;
  margin-bottom: 8px;
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.quote-modal__field label em {
  margin-left: 6px;
  color: #4f8b00;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.quote-modal__field input,
.quote-modal__field textarea {
  width: 100%;
  border: 1px solid #d7dde0;
  border-radius: 9px;
  background: #f7f8f9;
  color: #111315;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-modal__field input {
  height: 50px;
  padding: 0 15px;
}

.quote-modal__field textarea {
  min-height: 94px;
  padding: 13px 15px;
  resize: vertical;
}

.quote-modal__field input::placeholder,
.quote-modal__field textarea::placeholder {
  color: #929ca1;
}

.quote-modal__field input:focus,
.quote-modal__field textarea:focus {
  border-color: #76a815;
  outline: 0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(175, 227, 58, 0.22);
}

.quote-modal__field.is-invalid input,
.quote-modal__field.is-invalid textarea {
  border-color: #c83c3c;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(200, 60, 60, 0.1);
}

.quote-modal__error {
  min-height: 18px;
  margin: 4px 0 -4px;
  color: #b52f2f;
  font-size: 12px;
  line-height: 18px;
}

.quote-modal__submit {
  width: 100%;
  height: 52px;
  margin-top: 22px;
  border: 0;
  border-radius: 9px;
  background: var(--brand-accent);
  color: #111315;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.quote-modal__submit:hover {
  background: #a3d934;
  box-shadow: 0 12px 26px rgba(121, 161, 28, 0.18);
  transform: translateY(-1px);
}

.quote-modal__submit:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 3px;
}

.quote-modal__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: #7a858a;
  font-size: 12px;
  line-height: 18px;
}

.quote-modal__privacy > span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.quote-modal__privacy svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.quote-modal__status {
  min-height: 20px;
  margin: 7px 0 0;
  color: #3f7000;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.quote-modal__wechat {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  gap: 16px;
  margin-top: 24px;
  padding: 22px 18px 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f5f7f8 0%, #eef1f2 100%);
  text-align: center;
}

.quote-modal__wechat > div {
  display: grid;
  gap: 6px;
}

.quote-modal__wechat strong {
  color: #111315;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.quote-modal__wechat span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.quote-modal__wechat img {
  display: block;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 6px;
}

.quote-modal__phone {
  display: flex;
  width: 100%;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  border-radius: 9px;
  background: #111315;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.quote-modal__phone svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.quote-modal__phone span {
  color: #ffffff;
}

.quote-modal__phone:hover {
  background: #292d31;
  transform: translateY(-1px);
}

.quote-modal__phone:focus-visible {
  outline: 2px solid #111315;
  outline-offset: 3px;
}

.site-footer {
  width: 100%;
  background: #191c23;
  color: #ffffff;
}

.site-footer__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 200px 320px 96px 332px 100px;
  gap: 38px;
  padding: 48px 0 60px;
}

.site-footer h2 {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.site-footer__brand > a {
  display: inline-block;
}

.site-footer__brand img {
  display: block;
  width: 120px;
  height: auto;
}

.site-footer__services-columns {
  display: grid;
  grid-template-columns: 182px 108px;
  gap: 30px;
  margin-top: 18px;
}

.site-footer__services-columns > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__nav > div {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.site-footer__services a,
.site-footer__nav a,
.site-footer__contact a {
  color: #aeb7bc;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  transition: color var(--motion-duration) ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--brand-accent);
}

.site-footer__services a,
.site-footer__nav a {
  position: relative;
  width: max-content;
}

.site-footer__services a::after,
.site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #ffffff;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-duration) ease;
}

.site-footer__services a:hover,
.site-footer__services a:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #aeb7bc;
}

.site-footer__services a:hover::after,
.site-footer__services a:focus-visible::after,
.site-footer__nav a:hover::after,
.site-footer__nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__services a:focus-visible,
.site-footer__nav a:focus-visible,
.site-footer__contact a:focus-visible,
.site-footer__brand > a:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 4px;
}

.site-footer__contact address {
  display: grid;
  gap: 18px;
  margin: 18px 0 0;
  font-style: normal;
}

.site-footer__contact h2 {
  padding-left: 30px;
}

.site-footer__contact address > a,
.site-footer__contact address > p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0;
  color: #dce1e4;
  font-size: 13px;
  line-height: 22px;
  white-space: nowrap;
}

.site-footer__contact address > a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.site-footer__contact svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: #8e9aa0;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__wechat {
  text-align: center;
}

.site-footer__wechat img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 12px auto 0;
  padding: 6px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__legal p {
  display: flex;
  gap: 24px;
  margin: 0;
  color: #7f8a90;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .brand {
    left: 20px;
    width: 150px;
    height: 34px;
    flex-basis: 150px;
  }

  .brand img {
    width: 150px;
    height: 34px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a,
  .nav-trigger {
    font-size: 13px;
  }

  .header-actions {
    right: 20px;
  }

  .header-actions .phone-link {
    display: none;
  }

  .mega-menu--network {
    width: 680px;
  }

  .mega-menu--scenarios {
    width: 550px;
  }

  .hero-slide__title {
    font-size: 52px;
    line-height: 68px;
  }

  .hero-slide__description {
    width: 90%;
  }

  .hero-slide__benefits {
    gap: 18px;
    font-size: 13px;
  }

  .assurance-strip__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .assurance-strip__features::before,
  .assurance-strip__features::after,
  .assurance-feature--coverage::before {
    display: none;
  }

  .assurance-feature {
    position: relative;
    left: auto;
    min-width: 0;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
  }

  .assurance-feature + .assurance-feature {
    border-left: 1px solid rgba(255, 255, 255, 0.72);
  }

  .assurance-feature__copy strong {
    font-size: 16px;
  }

  .services-showcase__layout {
    grid-template-columns: minmax(320px, 36%) minmax(0, 1fr);
    gap: 48px;
  }

  .service-accordion,
  .service-detail {
    width: 100%;
  }

  .service-detail {
    padding-right: 38px;
    padding-left: 38px;
  }

  .scenario-matrix__group {
    grid-template-columns: 172px minmax(0, 1fr);
  }

  .pricing-showcase__grid {
    gap: 12px;
  }

  .pricing-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .delivery-assurance {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 30px;
  }

  .faq-list {
    width: 100%;
    gap: 72px;
  }

  .about-showcase__content {
    gap: 54px;
  }

  .about-identity {
    grid-template-columns: 1.15fr 0.8fr 0.9fr 1.35fr 0.9fr;
  }

  .about-identity > div {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-identity__brand img {
    width: 170px;
  }

  .quote-showcase__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.45fr);
    gap: 56px;
  }

  .site-footer__main {
    grid-template-columns: 140px 286px 78px minmax(278px, 1fr) 92px;
    gap: 18px;
  }

  .site-footer__services-columns {
    grid-template-columns: 168px 100px;
    gap: 18px;
  }

  .floating-service {
    right: 0;
    width: 52px;
    border-radius: 8px 0 0 8px;
  }

  .floating-service__item {
    min-height: 68px;
    padding: 8px 3px 7px;
    font-size: 12px;
    line-height: 17px;
  }

  .floating-service__top {
    right: 0;
    width: 52px;
    border-radius: 8px 0 0 8px;
  }
}

@media (max-width: 1366px) and (min-width: 1200px) {
  .primary-nav {
    gap: 26px;
  }

  .floating-service {
    right: 0;
    width: 52px;
    border-radius: 8px 0 0 8px;
  }

  .floating-service__item {
    min-height: 68px;
    padding: 8px 3px 7px;
    font-size: 12px;
    line-height: 17px;
  }

  .floating-service__wechat-panel {
    right: calc(100% + 10px);
  }

  .floating-service__top {
    right: 0;
    width: 52px;
    border-radius: 8px 0 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-nav > a,
  .nav-trigger,
  .mega-menu__link,
  .mega-menu__arrow,
  .quote-button,
  .hero-slide,
  .hero-button,
  .hero-carousel__qr-panel,
  .services-showcase__tab,
  .service-detail__button,
  .scenario-matrix__item,
  .scenario-consultation__button,
  .scenario-consultation__qr,
  .case-card,
  .case-card::after,
  .cases-consultation__button,
  .cases-consultation__qr,
  .pricing-card,
  .pricing-card__button,
  .delivery-timeline__index,
  .delivery-capabilities__button,
  .faq-item__trigger,
  .faq-item__symbol::before,
  .faq-item__symbol::after,
  .about-identity a,
  .floating-service__item,
  .floating-service__wechat-panel,
  .floating-service__top,
  .quote-modal__phone,
  .quote-showcase__phone,
  .quote-field input,
  .quote-field textarea,
  .quote-field select,
  .quote-form__submit,
  .site-footer__nav a,
  .site-footer__contact a {
    transition: none;
  }

  .quote-showcase::before,
  .quote-showcase::after {
    animation: none;
  }

  .service-accordion__description,
  .service-detail.is-updating,
  .delivery-showcase__network {
    animation: none;
  }
}
