:root {
  --bg: #efefef;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --text: #2d2d2d;
  --text-soft: #6f6f6f;
  --primary: #1b9bbd;
  --primary-dark: #147c98;
  --primary-light: #7ad6e9;
  --primary-rgb: 27, 155, 189;
  --dark: #3f3f43;
  --line: #e4e4e4;
  --blue: #1778f2;
  --shadow: 0 16px 40px rgba(18, 22, 33, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

* {
  box-sizing: border-box;
}

[v-cloak] {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  min-width: 320px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.app-shell {
  padding-bottom: 120px;
}

.page-shell {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 10px;
  border-bottom: 1px solid #d8d8d8;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 52px;
  width: 100%;
}

.site-header__logo-wrap {
  flex: 0 0 auto;
}

.site-header__logo {
  display: block;
  width: 260px;
  height: auto;
  object-fit: contain;
}

.site-header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.site-header__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #131313;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.site-header__headline-char {
  display: block;
}

.site-header__subline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.site-header__tag {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px !important;
}

.site-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0 20px;
}

.site-nav__item {
  position: relative;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #666666;
  padding: 10px 16px 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.2s ease;
}

.site-nav__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: 0.2s ease;
}

.site-nav__item:hover {
  color: #2f2f2f;
  background: transparent;
}

.site-nav__item.is-active {
  color: #111111;
  background: transparent;
  font-weight: 700;
}

.site-nav__item.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.page-main {
  display: block;
  position: relative;
}

.module-page {
  display: grid;
  gap: 24px;
}

.module-page--home {
  --home-banner-height: 500px;
  gap: 0;
  padding-bottom: 8px;
}

.module-page--home > section {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.module-page--home > section + section {
  margin-top: -12px;
}

.home-showcase {
  position: relative;
  min-height: var(--home-banner-height);
  overflow: hidden;
  background: #f4f1ee;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(18, 22, 33, 0.1);
  z-index: 1;
}

.home-showcase__main {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: 44px 52px 48px;
  background: transparent;
  color: #fff;
}

.home-showcase__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.62) 0%, rgba(24, 19, 15, 0.46) 34%, rgba(32, 27, 22, 0.12) 60%, rgba(32, 27, 22, 0) 82%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.2) 100%);
}

.home-showcase__main::after {
  display: none;
}

.home-showcase__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 540px;
}

.home-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-showcase__title {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.home-showcase__title span {
  display: block;
}

.home-showcase__title-sub {
  margin-top: 6px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.home-showcase__lead {
  display: block;
  margin-top: 16px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.72;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.home-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.home-showcase__badge {
  position: relative;
  min-width: 0;
  min-height: 46px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 999px !important;
  flex: 0 0 auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 24px rgba(12, 12, 12, 0.14);
}

.home-showcase__badge:not(:last-child) {
  margin-right: 0;
}

.home-showcase__badge:not(:last-child)::after {
  display: none;
}

.home-showcase__badge span {
  display: block;
  line-height: 1;
  margin: 0;
}

.home-showcase__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 20px;
}

.home-showcase__highlight {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.home-showcase__highlight::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.home-showcase__visual {
  position: relative;
  min-height: var(--home-banner-height);
  background: #ede8e2;
}

.home-showcase__visual::before,
.home-showcase__visual::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.home-showcase__visual::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.home-showcase__visual::after {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 1;
}

.home-showcase__media {
  position: relative;
  z-index: 0;
  min-height: var(--home-banner-height);
}

.home-showcase__media::before {
  display: none;
}

.home-showcase__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  filter: none;
}

.home-showcase__image--top {
  transform: scale(1.02);
  transform-origin: center center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 24px;
  padding: 42px;
  display: flex;
  align-items: center;
  box-shadow: 0 24px 60px rgba(12, 22, 42, 0.18);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.hero__copy::before,
.hero__copy::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero__copy::before {
  top: -28px;
  left: -32px;
  z-index: -1;
  width: 164px;
  height: 164px;
  background:
    radial-gradient(circle at 50% 50%, rgba(118, 245, 255, 0.42) 0, rgba(82, 170, 255, 0.2) 30%, transparent 68%),
    radial-gradient(circle at 64% 38%, rgba(255, 255, 255, 0.32) 0, transparent 16%);
  filter: blur(6px);
  opacity: 0.92;
  animation: hero-copy-pulse 6.2s ease-in-out infinite alternate;
}

.hero__copy::after {
  left: 0;
  bottom: -30px;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 248, 255, 1), rgba(74, 208, 255, 0.82) 40%, rgba(54, 118, 255, 0.36) 72%, rgba(54, 118, 255, 0) 100%);
  box-shadow:
    0 0 16px rgba(86, 231, 255, 0.42),
    0 0 34px rgba(63, 137, 255, 0.28);
  opacity: 1;
  transform-origin: left center;
  animation: hero-line-scan 4.8s ease-in-out infinite alternate;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(109, 235, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(22, 75, 151, 0.48), rgba(7, 23, 64, 0.34));
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(177, 246, 255, 0.12),
    0 10px 24px rgba(10, 20, 38, 0.22),
    0 0 18px rgba(78, 218, 255, 0.18),
    0 0 36px rgba(68, 121, 255, 0.12);
  color: #e2fcff;
  text-shadow: 0 0 12px rgba(92, 236, 255, 0.18);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.1;
  color: #f4feff;
  text-shadow:
    0 0 20px rgba(83, 227, 255, 0.2),
    0 12px 28px rgba(9, 18, 34, 0.22);
}

.hero__text {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(230, 248, 255, 0.96);
  text-shadow: 0 6px 20px rgba(9, 18, 34, 0.18);
}

@keyframes hero-banner-pan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes hero-banner-glow {
  0% {
    opacity: 0.76;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes hero-banner-float {
  0% {
    transform: translate3d(var(--hero-float-x, 0px), var(--hero-float-y, 0px), 0);
  }

  100% {
    transform: translate3d(calc(var(--hero-float-x, 0px) - 10px), calc(var(--hero-float-y, 0px) + 8px), 0);
  }
}

@keyframes hero-copy-pulse {
  0% {
    opacity: 0.62;
    transform: scale(0.96);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes hero-line-scan {
  0% {
    opacity: 0.7;
    transform: scaleX(0.92);
  }

  100% {
    opacity: 1;
    transform: scaleX(1.04);
  }
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-home {
  min-height: var(--home-banner-height);
  padding: 0;
  background: #09132c;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 60px rgba(12, 22, 42, 0.16),
    0 -12px 28px rgba(255, 255, 255, 0.28);
  z-index: 2;
}

.hero-home__slides {
  position: absolute;
  inset: 0;
}

.hero-home__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  overflow: hidden;
}

.hero-home__slide.is-active {
  opacity: 1;
}

.hero-home__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 10, 18, 0.64) 0%, rgba(8, 13, 22, 0.54) 26%, rgba(10, 14, 22, 0.22) 54%, rgba(10, 14, 22, 0.05) 76%, rgba(10, 14, 22, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-home__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-home__content {
  position: absolute;
  top: 64px;
  left: 56px;
  z-index: 2;
  max-width: 560px;
  padding: 24px 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.34), rgba(10, 15, 24, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(3, 8, 15, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}

.hero-home__eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-home__title {
  margin: 16px 0 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.22;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.hero-home__subtitle {
  margin: 12px 0 0;
  max-width: 470px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.hero-home__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
}

.hero-home__nav--prev {
  left: 22px;
}

.hero-home__nav--next {
  right: 22px;
}

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

.hero-home__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-home__dot.is-active {
  background: #fff;
}

.home-featured-products {
  padding: 34px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.32) 34px, rgba(255, 255, 255, 0) 72px),
    linear-gradient(180deg, #fbfbfb 0%, #f4f4f4 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(18, 22, 33, 0.08);
  z-index: 3;
}

.home-featured-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(220px, 32vw);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0), rgba(var(--primary-rgb), 0.56), rgba(var(--primary-rgb), 0));
  z-index: 1;
}

.home-featured-products__intro {
  max-width: 880px;
  margin-bottom: 22px;
}

.home-featured-products__title {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--text);
}

.home-featured-products__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb), 0.24));
}

.home-featured-products__desc {
  margin: 0;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.home-featured-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-featured-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
}

.home-featured-card:hover .home-featured-card__action {
  background: var(--primary);
}

.home-featured-card__media {
  height: 188px;
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
}

.home-featured-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.home-featured-card:hover .home-featured-card__image {
  transform: scale(1.02);
}

.home-featured-card__body {
  position: relative;
  flex: 1;
  padding: 20px 18px 22px;
}

.home-featured-card__title {
  margin: 0;
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.home-featured-card__text {
  margin: 10px 52px 0 0;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.6;
}

.home-featured-card__action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #a5a5a5;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  border-radius: 999px !important;
  pointer-events: none;
  transition: 0.2s ease;
}

.home-featured-card__action:hover {
  background: var(--primary);
}

.home-service {
  position: relative;
  padding: 52px 28px 40px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f6f6f6 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  z-index: 4;
}

.home-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  transform: translateY(-12%) scale(1.35);
  transform-origin: top center;
  clip-path: ellipse(68% 44% at 50% 12%);
  pointer-events: none;
}

.home-service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(240px, 34vw);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255, 106, 45, 0), rgba(255, 106, 45, 0.7), rgba(255, 106, 45, 0));
  pointer-events: none;
}

.home-service__header {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: left;
}

.home-service__title {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.home-service__desc {
  margin: 14px 0 0;
  max-width: 820px;
  color: #535353;
  font-size: 17px;
  line-height: 1.85;
}

.home-service__divider {
  display: block;
  width: 84px;
  height: 4px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(var(--primary-rgb), 0.24));
}

.home-service__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.home-service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.24);
}

.home-service-card__body {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.home-service-card__title {
  margin: 0;
  color: #191919;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.home-service-card__text {
  margin: 12px 0 0;
  color: #5b5b5b;
  font-size: 15px;
  line-height: 1.8;
}

.home-service-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-service-card__keyword {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.hero-about,
.hero-products,
.hero-contact,
.hero-support,
.hero-catalog {
  isolation: isolate;
  background-size: 150% 150%;
  box-shadow:
    inset 0 0 0 1px rgba(88, 226, 255, 0.16),
    inset 0 0 80px rgba(45, 110, 255, 0.14),
    0 28px 70px rgba(4, 11, 33, 0.34),
    0 0 36px rgba(52, 154, 255, 0.16);
  animation: hero-banner-pan 14s ease-in-out infinite alternate;
}

.hero-about::before,
.hero-about::after,
.hero-products::before,
.hero-products::after,
.hero-contact::before,
.hero-contact::after,
.hero-support::before,
.hero-support::after,
.hero-catalog::before,
.hero-catalog::after {
  z-index: 1;
  background-repeat: no-repeat;
}

.hero-about::before,
.hero-products::before,
.hero-contact::before,
.hero-support::before,
.hero-catalog::before {
  animation: hero-banner-glow 9s ease-in-out infinite alternate;
}

.hero-about::after,
.hero-products::after,
.hero-contact::after,
.hero-support::after,
.hero-catalog::after {
  --hero-float-x: 0px;
  --hero-float-y: 0px;
  transform-origin: center right;
  animation: hero-banner-float 10s ease-in-out infinite alternate;
}

.hero-about {
  background: linear-gradient(135deg, #030b26 0%, #0a3f8f 42%, #18a9ff 74%, #62f2ff 100%);
}

.hero-about::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(137, 246, 255, 0.64) 0 3%, transparent 8%),
    radial-gradient(circle at 82% 50%, transparent 0 12%, rgba(111, 238, 255, 0.34) 12% 12.8%, transparent 12.8% 19%, rgba(96, 161, 255, 0.22) 19% 19.8%, transparent 19.8% 27%, rgba(97, 232, 255, 0.16) 27% 27.8%, transparent 27.8%),
    conic-gradient(from 210deg at 82% 50%, rgba(116, 232, 255, 0.24), transparent 26%, rgba(89, 132, 255, 0.1) 54%, transparent 72%, rgba(133, 243, 255, 0.18)),
    linear-gradient(118deg, transparent 0 54%, rgba(90, 206, 255, 0.18) 54% 60%, transparent 60%);
  mix-blend-mode: screen;
}

.hero-about::after {
  top: 10%;
  right: 6%;
  width: 38%;
  height: 76%;
  background:
    linear-gradient(135deg, rgba(62, 145, 255, 0.26), rgba(21, 236, 255, 0.06)),
    radial-gradient(circle at 18% 20%, rgba(180, 249, 255, 0.7) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 34%, rgba(85, 205, 255, 0.52) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 68%, rgba(129, 161, 255, 0.42) 0 5px, transparent 6px),
    linear-gradient(rgba(88, 239, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 167, 255, 0.18) 1px, transparent 1px),
    linear-gradient(132deg, transparent 0 48%, rgba(108, 241, 255, 0.22) 48% 50%, transparent 50%);
  background-size: auto, auto, auto, auto, 44px 44px, 44px 44px, auto;
  clip-path: polygon(14% 0, 100% 0, 76% 100%, 0 100%);
  filter: drop-shadow(0 18px 26px rgba(9, 79, 186, 0.3));
  opacity: 0.96;
}

.hero-products {
  background: linear-gradient(135deg, #02081f 0%, #0a2d73 34%, #0869d0 68%, #4cecff 100%);
}

.hero-products::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(116, 244, 255, 0.46) 0 10%, transparent 22%),
    radial-gradient(circle at 84% 52%, transparent 0 12%, rgba(86, 232, 255, 0.28) 12% 12.8%, transparent 12.8% 19%, rgba(94, 144, 255, 0.18) 19% 19.8%, transparent 19.8%),
    repeating-linear-gradient(126deg, transparent 0 22px, rgba(98, 222, 255, 0.12) 22px 24px, transparent 24px 50px),
    linear-gradient(90deg, transparent 0 54%, rgba(96, 240, 255, 0.18) 54% 56%, transparent 56% 63%, rgba(81, 146, 255, 0.12) 63% 65%, transparent 65%);
  opacity: 0.96;
}

.hero-products::after {
  right: 2%;
  bottom: 10%;
  width: 48%;
  height: 50%;
  background:
    linear-gradient(90deg, rgba(116, 246, 255, 0.42) 0 2px, transparent 2px 14%, rgba(102, 200, 255, 0.34) 14% 16%, transparent 16% 30%, rgba(74, 136, 255, 0.28) 30% 32%, transparent 32% 46%, rgba(115, 246, 255, 0.24) 46% 48%, transparent 48% 100%),
    radial-gradient(circle at 7% 50%, rgba(196, 251, 255, 0.96) 0 10px, transparent 11px),
    radial-gradient(circle at 23% 50%, rgba(111, 242, 255, 0.7) 0 9px, transparent 10px),
    radial-gradient(circle at 39% 50%, rgba(103, 146, 255, 0.62) 0 8px, transparent 9px),
    linear-gradient(180deg, rgba(104, 229, 255, 0.18), rgba(12, 33, 91, 0.06)),
    linear-gradient(135deg, transparent 0 64%, rgba(118, 242, 255, 0.18) 64% 66%, transparent 66%);
  clip-path: polygon(6% 0, 100% 0, 88% 100%, 0 100%);
  filter: drop-shadow(0 16px 26px rgba(9, 86, 187, 0.34));
  opacity: 0.98;
}

.hero-contact {
  background: linear-gradient(135deg, #040d27 0%, #12356d 34%, #0d6fc2 70%, #65e9ff 100%);
}

.hero-contact::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(133, 244, 255, 0.34), transparent 14%),
    linear-gradient(120deg, transparent 0 58%, rgba(104, 234, 255, 0.22) 58% 59.2%, transparent 59.2% 66%, rgba(85, 142, 255, 0.16) 66% 67.2%, transparent 67.2%),
    linear-gradient(90deg, transparent 0 76%, rgba(96, 220, 255, 0.2) 76% 77.2%, transparent 77.2%),
    linear-gradient(rgba(90, 218, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 145, 255, 0.1) 1px, transparent 1px);
  background-size: auto, auto, auto, 50px 50px, 50px 50px;
  opacity: 0.92;
}

.hero-contact::after {
  top: 12%;
  right: 6%;
  width: 40%;
  height: 66%;
  background:
    radial-gradient(circle at 14% 24%, rgba(208, 252, 255, 0.96) 0 6px, transparent 7px),
    radial-gradient(circle at 40% 46%, rgba(112, 239, 255, 0.82) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 22%, rgba(118, 162, 255, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 74%, rgba(118, 245, 255, 0.68) 0 7px, transparent 8px),
    linear-gradient(122deg, transparent 0 24%, rgba(107, 232, 255, 0.28) 24% 25%, transparent 25% 100%),
    linear-gradient(18deg, transparent 0 54%, rgba(95, 150, 255, 0.24) 54% 55%, transparent 55% 100%),
    linear-gradient(90deg, transparent 0 42%, rgba(90, 229, 255, 0.18) 42% 43%, transparent 43% 100%),
    linear-gradient(180deg, rgba(81, 218, 255, 0.08), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 100% 8%, 94% 100%, 8% 92%);
  filter: drop-shadow(0 18px 28px rgba(10, 74, 166, 0.32));
}

.hero-support {
  background: linear-gradient(135deg, #020d24 0%, #08336c 32%, #077cb9 68%, #53f0ff 100%);
}

.hero-support::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(141, 247, 255, 0.36), transparent 14%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(104, 232, 255, 0.12) 38px 40px, transparent 40px 86px),
    linear-gradient(180deg, transparent 0 26%, rgba(105, 229, 255, 0.16) 26% 27.4%, transparent 27.4% 48%, rgba(85, 144, 255, 0.12) 48% 49.4%, transparent 49.4%),
    linear-gradient(135deg, transparent 0 58%, rgba(108, 241, 255, 0.14) 58% 72%, transparent 72%);
  opacity: 0.95;
}

.hero-support::after {
  top: 12%;
  right: 5%;
  width: 42%;
  height: 64%;
  background:
    linear-gradient(180deg, rgba(97, 227, 255, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, transparent 0 14%, rgba(106, 243, 255, 0.28) 14% 15.5%, transparent 15.5% 32%, rgba(89, 152, 255, 0.2) 32% 33.5%, transparent 33.5% 50%, rgba(101, 233, 255, 0.18) 50% 51.5%, transparent 51.5% 100%),
    linear-gradient(0deg, transparent 0 22%, rgba(103, 238, 255, 0.22) 22% 23.5%, transparent 23.5% 42%, rgba(84, 147, 255, 0.18) 42% 43.5%, transparent 43.5% 62%, rgba(101, 233, 255, 0.14) 62% 63.5%, transparent 63.5% 100%),
    radial-gradient(circle at 18% 22%, rgba(176, 248, 255, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 68%, rgba(94, 232, 255, 0.52) 0 5px, transparent 6px);
  clip-path: polygon(0 10%, 84% 0, 100% 100%, 18% 92%);
  filter: drop-shadow(0 18px 28px rgba(8, 88, 176, 0.32));
}

.hero-catalog {
  background: linear-gradient(135deg, #050a22 0%, #182f78 30%, #215fdb 68%, #76f4ff 100%);
}

.hero-catalog::before {
  top: 10%;
  right: 8%;
  width: 30%;
  height: 72%;
  background:
    linear-gradient(180deg, rgba(107, 233, 255, 0.3), rgba(255, 255, 255, 0.1)),
    linear-gradient(rgba(105, 232, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 153, 255, 0.14) 1px, transparent 1px),
    linear-gradient(140deg, transparent 0 70%, rgba(105, 231, 255, 0.2) 70% 72%, transparent 72%);
  background-size: auto, 100% 18px, 48px 100%, auto;
  clip-path: polygon(0 0, 84% 0, 100% 14%, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 28px rgba(19, 91, 197, 0.3));
  opacity: 0.96;
}

.hero-catalog::after {
  --hero-float-x: -14%;
  --hero-float-y: 10%;
  top: 24%;
  right: 20%;
  width: 30%;
  height: 70%;
  background:
    linear-gradient(180deg, rgba(109, 239, 255, 0.22), rgba(255, 255, 255, 0.05)),
    linear-gradient(rgba(96, 228, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 78%, rgba(88, 153, 255, 0.2) 78% 80%, transparent 80%);
  background-size: auto, 100% 18px, auto;
  clip-path: polygon(0 0, 84% 0, 100% 14%, 100% 100%, 0 100%);
  filter: drop-shadow(0 12px 22px rgba(22, 95, 194, 0.24));
  opacity: 0.62;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--small {
  padding: 10px 14px;
  font-size: 14px;
}

.content-card,
.visual-card,
.contact-panel,
.map-panel,
.support-item,
.product-content {
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.section-block {
  display: grid;
  gap: 18px;
}

.section-block--split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.section-heading h3,
.content-card h3 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 32px);
}

.section-heading p,
.content-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.content-card--about p {
  text-indent: 2em;
}

.visual-card,
.content-card {
  min-height: 300px;
  padding: 22px;
}

.visual-card--city {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 18, 53, 0.18), rgba(3, 18, 53, 0.32)),
    url('./images/our/WechatIMG31950.jpg') center / cover no-repeat;
}

.visual-card--city::before,
.visual-card--city::after {
  content: '';
  position: absolute;
  inset: 0;
}

.visual-card--city::before {
  background:
    radial-gradient(circle at 82% 22%, rgba(120, 236, 255, 0.36), transparent 18%),
    linear-gradient(135deg, rgba(30, 108, 196, 0.14), rgba(103, 239, 255, 0.04));
}

.visual-card--city::after {
  background:
    linear-gradient(180deg, rgba(2, 8, 27, 0.08), rgba(2, 8, 27, 0.34)),
    linear-gradient(90deg, rgba(119, 238, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(119, 238, 255, 0.14) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mix-blend-mode: screen;
}

.visual-card__label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(232, 249, 255, 0.92);
  text-shadow: 0 0 14px rgba(86, 229, 255, 0.22);
  font-size: 16px;
  font-weight: 700;
}

.support-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.support-item__meta {
  color: var(--text-soft);
}

.product-layout,
.contact-layout {
  display: grid;
  gap: 20px;
}

.product-layout {
  grid-template-columns: minmax(0, 1fr);
}

.contact-layout {
  grid-template-columns: 360px minmax(0, 1fr);
}

.product-content,
.contact-panel,
.map-panel {
  padding: 20px;
}

.panel-title {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.panel-title--accent {
  background: var(--surface-soft);
  color: var(--primary);
}

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

.product-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
}

.product-card__thumb {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.02);
}

.product-card__body {
  position: relative;
  padding: 18px 18px 62px;
}

.product-card__model,
.product-card__summary {
  margin: 10px 0 0;
  line-height: 1.7;
  word-break: break-word;
}

.product-card__model {
  margin-top: 0;
  color: #505050;
}

.product-card__summary {
  color: var(--text-soft);
  font-size: 14px;
}

.product-card__action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a5a5a5;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  border-radius: 999px !important;
  pointer-events: none;
  transition: 0.2s ease;
}

.product-card:hover .product-card__action {
  background: var(--primary);
}

.product-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 36px 68px 110px;
  background: rgba(21, 23, 28, 0.56);
}

.product-modal {
  position: relative;
  width: min(1000px, calc(100vw - 220px));
  padding: 38px 38px 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.product-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #c4c4c4;
  font-size: 38px;
  line-height: 1;
}

.product-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.product-modal__visual {
  padding: 18px;
  border: 1px solid #ececec;
  background: #fafafa;
}

.product-card__thumb--modal {
  min-height: 460px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(246, 247, 249, 0.98), rgba(236, 239, 244, 0.9));
}

.product-card__image--modal {
  height: 412px;
}

.product-modal__info {
  padding-top: 4px;
}

.product-modal__info h3 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececec;
  font-size: 32px;
  color: #4a4a4a;
}

.product-modal__rows {
  display: grid;
  gap: 20px;
}

.product-modal__row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
}

.product-modal__label {
  color: #111;
  letter-spacing: 0.16em;
}

.product-modal__value {
  color: #111;
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.product-modal__thumbs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-top: 22px;
  margin-top: 26px;
}

.product-modal__thumb {
  flex: 0 0 76px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
}

.product-modal__thumb.is-active {
  border-color: rgba(var(--primary-rgb), 0.32);
  box-shadow: 0 10px 22px rgba(var(--primary-rgb), 0.1);
}

.product-modal__thumb-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f6f6f7, #eceef2);
}

.product-modal__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-modal-nav {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 44px;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.product-modal-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.pager__button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.pager__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pager__current {
  color: var(--primary);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.contact-item__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  font-size: 24px;
}

.contact-item p {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.map-card {
  position: relative;
  height: 360px;
  --map-crop-left: 320px;
  --map-extra-right: 120px;
  --map-extra-top: 42px;
  --map-extra-bottom: 108px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #f3f3f3;
}

.map-card__frame {
  width: calc(100% + var(--map-crop-left) + var(--map-extra-right));
  height: calc(100% + var(--map-extra-top) + var(--map-extra-bottom));
  margin-left: calc(var(--map-crop-left) * -1);
  margin-top: calc(var(--map-extra-top) * -1);
  border: 0;
  display: block;
}

.map-card__overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: min(360px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(8px);
}

.map-card__overlay strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.map-card__overlay p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.map-card__tip {
  display: inline-flex;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-item {
  padding: 18px 20px;
}

.support-item--interactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-item--interactive:hover,
.support-item--interactive:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
}

.support-item--interactive:focus-visible {
  outline: 2px solid rgba(var(--primary-rgb), 0.28);
  outline-offset: 2px;
}

.support-item__title {
  font-weight: 600;
}

.support-item .btn--ghost {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
}

.site-footer {
  padding: 28px 0 12px;
  color: #8b8b8b;
  font-size: 14px;
  text-align: center;
}

.module-switcher {
  position: fixed;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  display: flex;
  gap: 110px;
  z-index: 20;
}

.module-switcher__button {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
  font-size: 34px;
  color: #444;
}

.service-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  border: 0;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  box-shadow: 0 -8px 18px rgba(var(--primary-rgb), 0.18);
  color: #fff;
  font-weight: 600;
  z-index: 22;
}

@media (max-width: 1080px) {
  .module-page--home > section {
    border-radius: 24px;
  }

  .module-page--home > .hero-home {
    border-radius: 24px;
  }

  .module-page--home > section + section {
    margin-top: -10px;
  }

  .module-page--home {
    --home-banner-height: 460px;
  }

  .home-showcase__main {
    padding: 36px 36px 40px;
  }

  .home-showcase__image {
    width: 100%;
  }

  .home-showcase__image--top {
    object-position: center center;
    transform: scale(1.04);
  }

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

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

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

  .product-modal-mask {
    padding-left: 24px;
    padding-right: 24px;
    gap: 14px;
  }

  .product-modal {
    width: min(100%, calc(100vw - 120px));
  }

  .product-modal__body {
    grid-template-columns: 1fr;
  }

  .section-block--split,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100%, calc(100% - 12px));
  }

  .site-header {
    padding: 10px 0 10px;
    align-items: flex-start;
  }

  .site-header__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header__logo {
    width: 180px;
    height: auto;
  }

  .site-header__headline {
    font-size: 24px;
    gap: 12px;
  }

  .site-header__tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .site-nav {
    gap: 2px;
    padding: 10px 0 16px;
  }

  .module-page--home {
    gap: 0;
    padding-bottom: 4px;
  }

  .module-page--home > section {
    border-radius: 20px;
  }

  .module-page--home > .hero-home {
    border-radius: 20px;
  }

  .module-page--home > section + section {
    margin-top: -8px;
  }

  .module-page--home {
    --home-banner-height: 400px;
  }

  .site-nav__item {
    padding: 10px 12px;
    font-size: 14px;
  }

  .home-showcase__main {
    align-items: flex-start;
    padding: 24px 18px 28px;
  }

  .home-showcase__eyebrow {
    padding: 9px 14px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .home-showcase__title {
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .home-showcase__title-sub {
    margin-top: 4px;
    font-size: 0.72em;
  }

  .home-showcase__lead {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .home-showcase__badges {
    gap: 8px;
    margin-top: 16px;
  }

  .home-showcase__badge {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 14px !important;
  }

  .home-showcase__badge::after {
    display: none;
  }

  .home-showcase__visual::after {
    inset: 10px;
  }

  .home-showcase__highlights {
    gap: 8px 12px;
    margin-top: 16px;
  }

  .home-showcase__highlight {
    font-size: 15px;
  }

  .home-showcase__highlight::before {
    width: 7px;
    height: 7px;
    margin-right: 8px;
  }

  .home-showcase__image {
    width: 100%;
  }

  .home-showcase__image--top {
    object-position: 62% center;
    transform: scale(1.06);
  }

  .hero {
    min-height: 220px;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .hero-home__content {
    top: 34px;
    left: 24px;
    right: 24px;
    max-width: none;
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .hero-home__eyebrow {
    font-size: 11px;
    padding: 6px 10px;
  }

  .hero-home__title {
    margin-top: 14px;
    font-size: 24px;
  }

  .hero-home__subtitle {
    margin-top: 10px;
    max-width: 92%;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-home__nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .hero-home__nav--prev {
    left: 10px;
  }

  .hero-home__nav--next {
    right: 10px;
  }

  .home-featured-products {
    padding: 22px 16px;
  }

  .home-service {
    padding: 36px 16px 24px;
  }

  .home-featured-products::before,
  .home-service::after {
    width: min(160px, 42vw);
  }

  .home-featured-products__intro {
    margin-bottom: 16px;
  }

  .home-service__header {
    margin-bottom: 24px;
  }

  .home-featured-products__title {
    font-size: 24px;
  }

  .home-service__title {
    font-size: 28px;
  }

  .home-service__desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-service__divider {
    width: 72px;
    margin-top: 18px;
  }

  .home-featured-products__desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-featured-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-service__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-featured-card {
    min-height: auto;
  }

  .home-service-card__body {
    min-height: auto;
    padding: 0;
  }

  .home-service-card__title {
    font-size: 20px;
  }

  .home-service-card__text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-service-card {
    padding: 22px 18px 20px;
    gap: 16px;
  }

  .home-service-card::before {
    left: 18px;
    width: 48px;
  }

  .home-service-card__icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .home-service-card__keywords {
    margin-top: 14px;
  }

  .home-service-card__keyword {
    min-height: 28px;
    padding: 0 10px;
  }

  .home-featured-card__media {
    height: 220px;
  }

  .home-featured-card__body {
    padding: 18px 16px 20px;
  }

  .home-featured-card__title {
    font-size: 15px;
  }

  .home-featured-card__text {
    margin-top: 8px;
    margin-right: 48px;
    font-size: 14px;
  }

  .home-featured-card__action {
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .hero__tag {
    font-size: 12px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero__copy::before {
    top: -18px;
    left: -18px;
    width: 120px;
    height: 120px;
  }

  .hero__copy::after {
    bottom: -20px;
    width: 132px;
  }

  .hero-about::after,
  .hero-products::after,
  .hero-contact::after,
  .hero-support::after {
    right: -2%;
    width: 46%;
    height: 54%;
  }

  .hero-about::after,
  .hero-contact::after,
  .hero-support::after {
    top: 22%;
  }

  .hero-products::after {
    bottom: 10%;
  }

  .hero-catalog::before,
  .hero-catalog::after {
    width: 34%;
    height: 58%;
  }

  .hero-catalog::before {
    top: 18%;
    right: 6%;
  }

  .hero-catalog::after {
    top: 28%;
    right: 17%;
  }

  .btn {
    padding: 10px 16px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .support-item,
  .contact-panel,
  .map-panel,
  .product-content,
  .content-card,
  .visual-card {
    padding: 16px;
  }

  .support-item--interactive {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-modal-mask {
    align-items: flex-start;
    padding: 16px 12px 90px;
  }

  .product-modal {
    width: 100%;
    padding: 18px 18px 16px;
  }

  .product-modal__close {
    top: 6px;
    right: 10px;
    font-size: 30px;
  }

  .product-card__thumb--modal {
    min-height: 250px;
  }

  .product-card__image--modal {
    height: 220px;
  }

  .product-modal__info h3 {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 22px;
  }

  .product-modal__row {
    grid-template-columns: 64px 1fr;
    gap: 8px;
    font-size: 14px;
  }

  .product-modal__thumbs {
    gap: 10px;
    padding-top: 16px;
    margin-top: 16px;
  }

  .product-modal__thumb {
    flex-basis: 62px;
  }

  .product-modal__thumb-visual {
    height: 62px;
  }

  .product-modal-nav {
    width: 52px;
    height: 52px;
    font-size: 32px;
  }

  .site-footer {
    padding-bottom: 4px;
  }

  .module-switcher {
    gap: 92px;
    bottom: 66px;
  }

  .module-switcher__button {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .module-page--home > section {
    border-radius: 18px;
  }

  .module-page--home > .hero-home {
    border-radius: 18px;
  }

  .module-page--home > section + section {
    margin-top: -6px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-home__dots {
    bottom: 10px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
  }

  .map-card {
    height: 260px;
    --map-crop-left: 240px;
    --map-extra-right: 80px;
    --map-extra-top: 30px;
    --map-extra-bottom: 84px;
  }

  .module-switcher {
    gap: 76px;
  }

  .product-modal-mask {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-about,
  .hero-products,
  .hero-contact,
  .hero-support,
  .hero-catalog,
  .hero__copy::before,
  .hero__copy::after,
  .hero-about::before,
  .hero-products::before,
  .hero-contact::before,
  .hero-support::before,
  .hero-catalog::before,
  .hero-about::after,
  .hero-products::after,
  .hero-contact::after,
  .hero-support::after,
  .hero-catalog::after {
    animation: none;
  }
}

:root {
  --primary: #ff6432;
  --primary-dark: #e45725;
  --primary-light: #ff9b74;
  --primary-rgb: 255, 100, 50;
  --dark: #4d2818;
  --blue: #ff6432;
  --shadow: 0 16px 40px rgba(88, 39, 18, 0.12);
}

.hero-home {
  background: #2a1008;
}

.visual-card--city {
  isolation: isolate;
  border: 1px solid rgba(126, 225, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 18, 36, 0.18), rgba(8, 15, 30, 0.48)),
    radial-gradient(circle at 82% 18%, rgba(116, 237, 255, 0.14), transparent 20%),
    url('./images/our/WechatIMG31950.jpg') center / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -80px 120px rgba(6, 12, 27, 0.24),
    0 20px 44px rgba(14, 24, 42, 0.12);
}

.visual-card--city::before {
  background:
    radial-gradient(circle at 82% 22%, rgba(121, 232, 255, 0.34), transparent 20%),
    radial-gradient(circle at 18% 80%, rgba(75, 144, 255, 0.18), transparent 26%),
    linear-gradient(128deg, rgba(54, 149, 255, 0.18), transparent 34%, rgba(120, 238, 255, 0.08) 58%, transparent 78%);
  mix-blend-mode: screen;
}

.visual-card--city::after {
  background:
    linear-gradient(180deg, rgba(6, 11, 24, 0.02), rgba(6, 11, 24, 0.34)),
    linear-gradient(90deg, rgba(117, 229, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(117, 229, 255, 0.12) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 58%, rgba(117, 229, 255, 0.16) 58% 60%, transparent 60% 100%),
    linear-gradient(0deg, transparent 0 84%, rgba(117, 229, 255, 0.14) 84% 85%, transparent 85% 100%);
  background-size: auto, 26px 26px, 26px 26px, auto, auto;
  mix-blend-mode: screen;
}

.visual-card__label {
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(120, 232, 255, 0.26);
  background: linear-gradient(135deg, rgba(8, 22, 45, 0.78), rgba(25, 58, 94, 0.42));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(9, 18, 34, 0.18),
    0 0 22px rgba(114, 230, 255, 0.12);
  color: rgba(236, 249, 255, 0.96);
  text-shadow: 0 0 14px rgba(114, 230, 255, 0.2);
  letter-spacing: 0.12em;
  backdrop-filter: blur(6px);
}

.hero-about,
.hero-products,
.hero-contact,
.hero-support,
.hero-catalog {
  box-shadow:
    inset 0 0 0 1px rgba(242, 222, 208, 0.18),
    inset 0 0 90px rgba(236, 206, 184, 0.1),
    0 24px 56px rgba(42, 58, 78, 0.22),
    0 0 36px rgba(215, 184, 162, 0.14);
}

.hero-about .hero__copy::before,
.hero-products .hero__copy::before,
.hero-contact .hero__copy::before,
.hero-support .hero__copy::before,
.hero-catalog .hero__copy::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 238, 226, 0.34) 0, rgba(226, 196, 176, 0.16) 30%, transparent 68%),
    radial-gradient(circle at 64% 38%, rgba(255, 255, 255, 0.24) 0, transparent 16%);
}

.hero-about .hero__copy::after,
.hero-products .hero__copy::after,
.hero-contact .hero__copy::after,
.hero-support .hero__copy::after,
.hero-catalog .hero__copy::after {
  background: linear-gradient(90deg, rgba(255, 247, 240, 0.94), rgba(222, 194, 171, 0.74) 40%, rgba(190, 154, 129, 0.26) 72%, rgba(190, 154, 129, 0) 100%);
  box-shadow:
    0 0 16px rgba(228, 198, 177, 0.26),
    0 0 34px rgba(161, 126, 104, 0.18);
}

.hero-about .hero__tag,
.hero-products .hero__tag,
.hero-contact .hero__tag,
.hero-support .hero__tag,
.hero-catalog .hero__tag {
  border-color: rgba(233, 214, 199, 0.42);
  background: linear-gradient(180deg, rgba(103, 118, 143, 0.34), rgba(57, 70, 91, 0.24));
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 235, 0.08),
    0 10px 24px rgba(28, 42, 63, 0.16),
    0 0 18px rgba(213, 184, 161, 0.14),
    0 0 32px rgba(155, 122, 101, 0.08);
  color: #fff8f3;
  text-shadow: 0 0 10px rgba(214, 187, 165, 0.12);
}

.hero-about .hero__title,
.hero-products .hero__title,
.hero-contact .hero__title,
.hero-support .hero__title,
.hero-catalog .hero__title {
  color: #fbf8f5;
  text-shadow:
    0 0 18px rgba(225, 197, 174, 0.12),
    0 12px 28px rgba(9, 18, 34, 0.18);
}

.hero-about .hero__text,
.hero-products .hero__text,
.hero-contact .hero__text,
.hero-support .hero__text,
.hero-catalog .hero__text {
  color: rgba(247, 242, 237, 0.94);
  text-shadow: 0 6px 20px rgba(9, 18, 34, 0.14);
}

.hero-about {
  background: linear-gradient(135deg, #2a4468 0%, #557697 42%, #8ea4bb 74%, #d8b5a0 100%);
}

.hero-about::before {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 241, 231, 0.48) 0 3%, transparent 8%),
    radial-gradient(circle at 82% 50%, transparent 0 12%, rgba(230, 204, 184, 0.26) 12% 12.8%, transparent 12.8% 19%, rgba(194, 170, 152, 0.16) 19% 19.8%, transparent 19.8% 27%, rgba(223, 197, 177, 0.12) 27% 27.8%, transparent 27.8%),
    conic-gradient(from 210deg at 82% 50%, rgba(244, 219, 199, 0.18), transparent 26%, rgba(198, 164, 138, 0.08) 54%, transparent 72%, rgba(233, 208, 189, 0.14)),
    linear-gradient(118deg, transparent 0 54%, rgba(218, 186, 164, 0.14) 54% 60%, transparent 60%);
}

.hero-about::after {
  background:
    linear-gradient(135deg, rgba(194, 160, 136, 0.2), rgba(230, 205, 185, 0.05)),
    radial-gradient(circle at 18% 20%, rgba(255, 241, 231, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 34%, rgba(225, 196, 175, 0.44) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 68%, rgba(198, 170, 150, 0.34) 0 5px, transparent 6px),
    linear-gradient(rgba(222, 197, 177, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 166, 145, 0.16) 1px, transparent 1px),
    linear-gradient(132deg, transparent 0 48%, rgba(224, 198, 179, 0.18) 48% 50%, transparent 50%);
  filter: drop-shadow(0 16px 24px rgba(85, 107, 138, 0.18));
}

.hero-products {
  background: linear-gradient(135deg, #294463 0%, #547493 34%, #8ea3b8 68%, #ddb8a3 100%);
}

.hero-products::before {
  background:
    radial-gradient(circle at 78% 30%, rgba(244, 225, 209, 0.34) 0 10%, transparent 22%),
    radial-gradient(circle at 84% 52%, transparent 0 12%, rgba(226, 198, 176, 0.22) 12% 12.8%, transparent 12.8% 19%, rgba(193, 167, 147, 0.14) 19% 19.8%, transparent 19.8%),
    repeating-linear-gradient(126deg, transparent 0 22px, rgba(220, 191, 169, 0.1) 22px 24px, transparent 24px 50px),
    linear-gradient(90deg, transparent 0 54%, rgba(225, 198, 176, 0.14) 54% 56%, transparent 56% 63%, rgba(191, 164, 144, 0.1) 63% 65%, transparent 65%);
}

.hero-products::after {
  background:
    linear-gradient(90deg, rgba(241, 223, 208, 0.34) 0 2px, transparent 2px 14%, rgba(221, 193, 171, 0.28) 14% 16%, transparent 16% 30%, rgba(191, 164, 143, 0.22) 30% 32%, transparent 32% 46%, rgba(227, 201, 181, 0.18) 46% 48%, transparent 48% 100%),
    radial-gradient(circle at 7% 50%, rgba(255, 243, 234, 0.88) 0 10px, transparent 11px),
    radial-gradient(circle at 23% 50%, rgba(226, 198, 177, 0.58) 0 9px, transparent 10px),
    radial-gradient(circle at 39% 50%, rgba(193, 166, 145, 0.48) 0 8px, transparent 9px),
    linear-gradient(180deg, rgba(224, 197, 176, 0.14), rgba(23, 34, 52, 0.06)),
    linear-gradient(135deg, transparent 0 64%, rgba(229, 205, 186, 0.14) 64% 66%, transparent 66%);
  filter: drop-shadow(0 16px 24px rgba(86, 108, 138, 0.18));
}

.hero-contact {
  background: linear-gradient(135deg, #2b4669 0%, #5a7a99 34%, #94aac0 70%, #dcb7a2 100%);
}

.hero-contact::before {
  background:
    radial-gradient(circle at 82% 30%, rgba(244, 227, 213, 0.28), transparent 14%),
    linear-gradient(120deg, transparent 0 58%, rgba(224, 199, 177, 0.18) 58% 59.2%, transparent 59.2% 66%, rgba(193, 168, 147, 0.12) 66% 67.2%, transparent 67.2%),
    linear-gradient(90deg, transparent 0 76%, rgba(220, 194, 173, 0.16) 76% 77.2%, transparent 77.2%),
    linear-gradient(rgba(223, 198, 177, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 167, 147, 0.08) 1px, transparent 1px);
}

.hero-contact::after {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 243, 233, 0.88) 0 6px, transparent 7px),
    radial-gradient(circle at 40% 46%, rgba(227, 201, 180, 0.72) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 22%, rgba(199, 171, 151, 0.62) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 74%, rgba(234, 210, 191, 0.56) 0 7px, transparent 8px),
    linear-gradient(122deg, transparent 0 24%, rgba(224, 198, 177, 0.22) 24% 25%, transparent 25% 100%),
    linear-gradient(18deg, transparent 0 54%, rgba(193, 166, 145, 0.18) 54% 55%, transparent 55% 100%),
    linear-gradient(90deg, transparent 0 42%, rgba(220, 194, 173, 0.14) 42% 43%, transparent 43% 100%),
    linear-gradient(180deg, rgba(226, 203, 183, 0.06), rgba(255, 255, 255, 0));
  filter: drop-shadow(0 16px 24px rgba(84, 106, 135, 0.18));
}

.hero-support {
  background: linear-gradient(135deg, #284261 0%, #537391 32%, #8ea4b8 68%, #dab49e 100%);
}

.hero-support::before {
  background:
    radial-gradient(circle at 78% 26%, rgba(244, 229, 216, 0.28), transparent 14%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(222, 197, 176, 0.1) 38px 40px, transparent 40px 86px),
    linear-gradient(180deg, transparent 0 26%, rgba(221, 196, 175, 0.12) 26% 27.4%, transparent 27.4% 48%, rgba(191, 166, 145, 0.1) 48% 49.4%, transparent 49.4%),
    linear-gradient(135deg, transparent 0 58%, rgba(227, 201, 182, 0.12) 58% 72%, transparent 72%);
}

.hero-support::after {
  background:
    linear-gradient(180deg, rgba(224, 198, 178, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, transparent 0 14%, rgba(229, 205, 185, 0.24) 14% 15.5%, transparent 15.5% 32%, rgba(194, 167, 146, 0.18) 32% 33.5%, transparent 33.5% 50%, rgba(224, 198, 178, 0.16) 50% 51.5%, transparent 51.5% 100%),
    linear-gradient(0deg, transparent 0 22%, rgba(226, 201, 181, 0.18) 22% 23.5%, transparent 23.5% 42%, rgba(192, 166, 146, 0.16) 42% 43.5%, transparent 43.5% 62%, rgba(223, 198, 178, 0.12) 62% 63.5%, transparent 63.5% 100%),
    radial-gradient(circle at 18% 22%, rgba(248, 236, 226, 0.62) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 68%, rgba(225, 197, 177, 0.42) 0 5px, transparent 6px);
  filter: drop-shadow(0 16px 24px rgba(82, 104, 133, 0.18));
}

.hero-catalog {
  background: linear-gradient(135deg, #2c4769 0%, #5b7c9c 30%, #97aec4 68%, #e0beab 100%);
}

.hero-catalog::before {
  background:
    linear-gradient(180deg, rgba(225, 200, 180, 0.24), rgba(255, 255, 255, 0.08)),
    linear-gradient(rgba(221, 196, 176, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 168, 148, 0.1) 1px, transparent 1px),
    linear-gradient(140deg, transparent 0 70%, rgba(229, 204, 184, 0.16) 70% 72%, transparent 72%);
  filter: drop-shadow(0 16px 24px rgba(86, 108, 138, 0.18));
}

.hero-catalog::after {
  background:
    linear-gradient(180deg, rgba(225, 200, 180, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(rgba(221, 196, 176, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 78%, rgba(194, 168, 148, 0.16) 78% 80%, transparent 80%);
  filter: drop-shadow(0 10px 18px rgba(86, 108, 138, 0.14));
}
