:root {
  /* Blue theme:
  --primary: #2563eb;
  --primary-deep: #1d4ed8;
  --primary-accent: #38bdf8;
  --primary-light: #eff6ff;
  --primary-rgb: 37, 99, 235;
  */
  --primary: #0066ff;
  --primary-deep: #b91512;
  --primary-accent: #0056d7;
  --primary-light: #eff6ff;
  --primary-rgb: 0, 102, 255;
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-accent) 0%,
    var(--primary) 72%
  );
  --primary-deep-gradient: linear-gradient(
    135deg,
    var(--primary-accent) 0%,
    var(--primary-deep) 100%
  );
  --primary-shadow: rgba(var(--primary-rgb), 0.24);
  --complement: var(--primary);
  --complement-deep: var(--primary-deep);
  --complement-light: var(--primary-light);
  --complement-rgb: var(--primary-rgb);
  --complement-gradient: var(--primary-gradient);
  --action-gradient: var(--primary-gradient);
  --theme-topbar-bg: #f0f3f8;
  --theme-hero-bg: var(--primary);
  --theme-panel-bg: var(--bg);
  --theme-footer-bg: #333333;
  --theme-news-bg-start: rgba(173, 178, 181, 0.96);
  --theme-news-bg-end: rgba(197, 211, 204, 0.96);
  --theme-news-bg-base: #b6bfbd;
  --theme-news-overlay-start: rgba(125, 134, 141, 0.22);
  --theme-news-overlay-end: rgba(194, 214, 203, 0.34);
  --red: var(--primary);
  --red-deep: var(--primary-deep);
  --red-light: var(--primary-light);
  --ink: #23252b;
  --muted: #6f7480;
  --line: #e5e6eb;
  --bg: #f2f3f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(35, 37, 43, 0.12);
  --container: min(1364px, calc(100vw - 80px));
}

@keyframes menuDrop {
  0% {
    opacity: 0;
    transform: translateY(-18px);
    clip-path: inset(0 0 100% 0);
  }

  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes scrollInfoRise {
  0% {
    opacity: 0;
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 92px, 0);
  }

  65% {
    opacity: 0.82;
    color: #fff;
  }

  100% {
    opacity: 1;
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes solutionTextRise {
  0% {
    opacity: 0;
    color: rgba(255, 255, 255, 0.18);
    transform: translate3d(0, 58px, 0);
  }

  64% {
    opacity: 0.88;
    color: rgba(255, 255, 255, 0.72);
  }

  100% {
    opacity: 1;
    color: #fff;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mediaSlowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes serviceSwitch {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quickBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(25, 28, 36, 0.08);
}

.topbar {
  height: 32px;
  padding: 0 7.2%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--theme-topbar-bg);
  font-size: 13px;
}

.topbar a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.navbar {
  height: 72px;
  padding: 0 7.2%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: inline-block;
  color: var(--primary);
  font-family:
    "Arial Black", "Impact", "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.3px;
  transform: skewX(-6deg);
}

.nav-list {
  flex: 1 1 auto;
  margin: 0 0 0 92px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  list-style: none;
  font-size: 17px;
}

.nav-list > li {
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-list a,
.nav-list button {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  position: relative;
}

.nav-list a::after,
.nav-list button::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -25px;
  height: 4px;
  background: var(--primary);
  opacity: 0;
}

.nav-list a:hover,
.nav-list button:hover,
.nav-list .active {
  color: var(--primary);
}

.nav-list a:hover::after,
.nav-list button:hover::after,
.nav-list .active::after {
  opacity: 1;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 104px;
  left: 0;
  width: 100vw;
  padding: 28px 7.2% 34px;
  background: rgba(255, 255, 255, 0.96);
  background-image: none, none;
  background-position:
    right 60px top -20px,
    right 270px top -20px;
  background-repeat: no-repeat;
  background-size: auto 316px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transform-origin: top center;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  display: block;
  animation: menuDrop 0.36s ease both;
}

.mega-menu h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 960px;
}

.mega-grid h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.mega-grid a {
  display: inline-block;
  margin: 0 22px 10px 0;
  color: #525765;
  font-size: 14px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
}

.mobile-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: 104px;
}

.page-section {
  scroll-margin-top: 104px;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  background: var(--theme-hero-bg);
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 104px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: calc(100vh - 104px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: calc(100vh - 104px);
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 104px);
  object-fit: cover;
  transform-origin: center;
}

.hero-slide.active .hero-media video,
.hero-slide.active .hero-media img {
  animation: mediaSlowZoom 6.8s linear both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 12, 0.82),
      rgba(10, 10, 12, 0.28) 48%,
      rgba(10, 10, 12, 0.1)
    ),
    radial-gradient(
      circle at 72% 42%,
      rgba(255, 255, 255, 0.16),
      transparent 28%
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero-slide.active .eyebrow,
.hero-slide.active h1,
.hero-slide.active .hero-copy p:not(.eyebrow),
.hero-slide.active .hero-actions {
  animation: fadeUp 0.72s ease both;
}

.hero-slide.active h1 {
  animation-delay: 0.08s;
}

.hero-slide.active .hero-copy p:not(.eyebrow) {
  animation-delay: 0.16s;
}

.hero-slide.active .hero-actions {
  animation-delay: 0.24s;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 56px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
}

.btn {
  min-width: 150px;
  height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    background 0.22s,
    border-color 0.22s;
}

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

.btn.primary {
  color: var(--white);
  background: var(--primary-gradient);
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.28);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.btn.ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition:
    width 0.25s,
    background 0.25s;
}

.hero-dots button.active {
  width: 56px;
  background: var(--white);
}

.placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  overflow: hidden;
  position: relative;
}

.placeholder span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
}

.media-red {
  background:
    linear-gradient(
      120deg,
      rgba(15, 45, 75, 0.78),
      rgba(var(--primary-rgb), 0.6)
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 18px
    );
}

.media-blue {
  background:
    linear-gradient(120deg, rgba(15, 45, 75, 0.9), rgba(33, 88, 133, 0.62)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 18px
    );
}

.media-steel {
  background: linear-gradient(135deg, #56616f, #aab3bd);
}

.media-green {
  background: linear-gradient(135deg, #2c6656, #89b7a4);
}

.media-violet {
  background: linear-gradient(135deg, #4c466a, #918ab3);
}

.media-map {
  background:
    radial-gradient(
      circle at 55% 45%,
      rgba(var(--primary-rgb), 0.42),
      transparent 24%
    ),
    linear-gradient(135deg, #e9eef7, #b7c5d8);
}

.media-news {
  background: linear-gradient(135deg, #5d646f, #9fa9b5);
}

.quick-panel {
  background: var(--primary-gradient);
}

.quick-layout {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr 590px;
  align-items: center;
  gap: 64px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quick-links a {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 8px;
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
}

.quick-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.quick-links a:hover .quick-icon {
  animation: quickBounce 0.65s ease;
}

.quick-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 0;
  color: var(--primary);
  background-color: currentColor;
  position: relative;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.quick-icon::before,
.quick-icon::after {
  display: none;
}

.icon-send {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
}
.icon-price {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3Cpath d='M7 3.5 4.5 6'/%3E%3Cpath d='M17 3.5 19.5 6'/%3E%3Cpath d='M8 18h8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3Cpath d='M7 3.5 4.5 6'/%3E%3Cpath d='M17 3.5 19.5 6'/%3E%3Cpath d='M8 18h8'/%3E%3C/svg%3E");
}
.icon-network {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14v-3a9 9 0 0 1 18 0v3'/%3E%3Cpath d='M5 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M18 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M21 17v1a4 4 0 0 1-4 4h-4'/%3E%3Cpath d='M13 22h-2v-2h2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14v-3a9 9 0 0 1 18 0v3'/%3E%3Cpath d='M5 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M18 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M21 17v1a4 4 0 0 1-4 4h-4'/%3E%3Cpath d='M13 22h-2v-2h2Z'/%3E%3C/svg%3E");
}
.icon-range {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M9.1 9a3 3 0 0 1 5.8 1c0 2-3 2-3 4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M9.1 9a3 3 0 0 1 5.8 1c0 2-3 2-3 4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}

.quick-links strong {
  font-size: 16px;
  font-weight: 500;
}

.track-card {
  padding: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(var(--primary-rgb), 0.18);
  transition:
    transform 0.24s,
    box-shadow 0.24s;
}

.track-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(var(--primary-rgb), 0.24);
}

.track-card label {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.track-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  font-weight: 12px;
}

.track-row textarea {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
  outline: none;
}

.track-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.track-row button {
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--action-gradient);
  font-weight: 700;
}

.track-tip {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-title {
  margin: 0 0 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.section-title.left {
  justify-content: flex-start;
}

.section-title.left::before {
  display: none;
}

.section-title.inverse {
  color: #000;
}

.services {
  min-height: calc(100vh - 104px);
  padding: 82px 0 96px;
  display: flex;
  align-items: center;
  background: var(--theme-panel-bg) var(--services-bg, none) center / cover
    no-repeat;
}

.service-shell {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 0.32s,
    box-shadow 0.32s;
}

.service-shell:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(35, 37, 43, 0.15);
}

.service-tabs {
  display: flex;
  gap: 8px;
  padding: 18px 22px 0;
  overflow-x: auto;
}

.service-tabs button {
  border: 0;
  border-radius: 4px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #525765;
  background: var(--theme-panel-bg);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  transition:
    color 0.22s,
    background 0.22s,
    transform 0.22s;
}

.service-tabs button.active {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-2px);
}

.service-detail {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 370px;
  margin-top: 18px;
}

.service-detail.switching {
  animation: serviceSwitch 0.36s ease both;
}

.service-image {
  min-height: 370px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.service-shell:hover .service-image {
  transform: scale(1.02);
  filter: saturate(1.08);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(35, 37, 43, 0),
    rgba(35, 37, 43, 0.12)
  );
}

.service-info {
  padding: 54px 62px;
  background-image:
    none, none;
  background-position:
    right 24px top,
    right 70px top;
  background-repeat: no-repeat;
  background-size: auto 72px;
}

.service-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 14px;
}

.service-info h3 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
}

.service-info p {
  margin: 0 0 24px;
  color: #525765;
  font-size: 17px;
  line-height: 1.8;
}

.service-info ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.service-info li {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
  font-size: 15px;
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}

.service-info li:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.28);
  box-shadow: 0 12px 24px rgba(35, 37, 43, 0.08);
}

.service-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.service-more[hidden] {
  display: none;
}

.service-more::after {
  content: ">";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.service-more:hover::after {
  transform: translateX(4px);
}

.solutions {
  min-height: calc(100vh - 104px);
  padding: 78px 0 92px;
  display: flex;
  align-items: center;
  background: #ffffff var(--solution-bg, none) left bottom / cover no-repeat;
}

.solution-stage {
  min-height: 236px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(320px, 510px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.solution-subtitle,
.solution-more {
  display: none;
}

.solution-panel {
  padding: 34px 38px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(24, 28, 36, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 58px rgba(21, 24, 32, 0.2);
  backdrop-filter: blur(16px);
}

.solution-panel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.solution-panel h3 {
  margin: 16px 0 14px;
  font-size: 34px;
  line-height: 1.2;
}

.solution-panel p {
  min-height: 56px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.solution-points {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.solution-points li {
  position: relative;
  padding-left: 18px;
}

.solution-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.solution-panel a {
  width: 126px;
  height: 42px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-gradient);
  font-weight: 700;
}

.solution-panel.is-changing {
  animation: serviceSwitch 0.35s ease both;
}

.solution-tabs {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.solution-tabs button {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(35, 37, 43, 0.34);
  backdrop-filter: blur(10px);
  transition:
    transform 0.22s,
    background 0.22s,
    border-color 0.22s;
}

.solution-tabs button.active,
.solution-tabs button:hover {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-2px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 176px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  border-radius: 10px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(35, 37, 43, 0.1);
  background-image: var(
    --solution-card-bg,
    var(--solution-bg, var(--primary-deep-gradient))
  );
  background-size: cover;
  background-position: center;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background-size 0.45s ease,
    filter 0.32s;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.52)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 18px
    );
}

.solution-card span {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.28s;
}

.solution-card:hover,
.solution-card.active {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(35, 37, 43, 0.18);
  background-size: cover;
}

.solution-card:hover span,
.solution-card.active span {
  transform: translateY(-5px);
}

.tone-red,
.tone-dark,
.tone-green,
.tone-violet,
.tone-blue,
.tone-orange {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.52)),
    var(--solution-card-bg, var(--solution-bg, var(--primary-deep-gradient)));
  background-size: cover;
  background-position: center;
}

.network {
  min-height: calc(100vh - 104px);
  padding: 78px 0 72px;
  display: flex;
  align-items: center;
  background:
    var(--network-bg, transparent) center / cover no-repeat,
    linear-gradient(135deg, #f8f9fb, #e8edf5);
}

.network-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 50px;
  align-items: center;
}

.network .section-title {
  color: #333333;
}

.network-copy > p {
  margin: -12px 0 36px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.stat-list {
  display: grid;
  gap: 22px;
}

.stat-list div {
  padding-left: 22px;
  border-left: 4px solid var(--primary);
  transform: translateX(-8px);
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.network.is-visible .stat-list div {
  opacity: 1;
  transform: translateX(0);
}

.network.is-visible .stat-list div:nth-child(2) {
  transition-delay: 0.08s;
}

.network.is-visible .stat-list div:nth-child(3) {
  transition-delay: 0.16s;
}

.stat-list strong {
  display: block;
  color: var(--primary);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.stat-list span {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 16px;
}

.network-visual {
  min-height: 430px;
  position: relative;
}

.globe {
  height: 430px;
  background: var(--network-visual-bg, none) center / cover no-repeat;
  border-radius: 0;
}

.network-features {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, 136px);
  gap: 14px;
}

.network-features span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-gradient);
  box-shadow: 0 12px 22px rgba(var(--primary-rgb), 0.24);
  font-weight: 700;
  animation: quickBounce 2.7s ease-in-out infinite;
}

.network-features span:nth-child(2) {
  animation-delay: 0.18s;
}

.network-features span:nth-child(3) {
  animation-delay: 0.36s;
}

.network-features span:nth-child(4) {
  animation-delay: 0.54s;
}

.news {
  min-height: 664px;
  padding: 58px 0 70px;
  display: block;
  position: relative;
  overflow: hidden;
}

.news-bg,
.news-overlay {
  position: absolute;
  inset: 0;
}

.asset-news-bg {
  display: none;
}

.news-overlay {
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42) 0,
      rgba(255, 255, 255, 0.12) 106px,
      transparent 106px
    ),
    radial-gradient(
      circle at 84% 0,
      rgba(255, 255, 255, 0.32),
      transparent 18%
    ),
    linear-gradient(
      90deg,
      var(--theme-news-overlay-start),
      transparent 38%,
      var(--theme-news-overlay-end)
    );
  backdrop-filter: none;
}

.news-content {
  position: relative;
  z-index: 1;
  width: min(1510px, calc(100vw - 280px));
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 252px;
  align-items: start;
  gap: 22px;
}

.news-card {
  margin: 0;
  overflow: visible;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  color: var(--white);
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}

.news-card[data-news-id] {
  cursor: pointer;
}

.news-image-wrap {
  width: 100%;
  height: 384px;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #000;
  background: #c7ced1;
  box-shadow: 0 18px 42px rgba(31, 34, 39, 0.18);
}

.news-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
}

.news-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.news-card:hover .news-image {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.news-card .tag {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 12px 18px;
  border-radius: 14px 0 14px 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  font-size: 18px;
}

.news-card time {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 336px;
  z-index: 2;
  display: block;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  transition:
    opacity 0.24s,
    transform 0.24s;
}

.news-card h3 {
  position: static;
  min-height: 0;
  margin: 12px 0 0;
  padding: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-more {
  display: none;
}

.news-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
}

.home-news-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 20, 28, 0.62);
}

.home-news-modal {
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(8, 12, 20, 0.32);
}

.home-news-modal__bar {
  height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #eef0f4;
}

.home-news-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #222832;
  background: #f2f3f7;
  font-size: 24px;
  line-height: 1;
}

.home-news-modal__body {
  padding: 34px 42px 42px;
  overflow: auto;
}

.home-news-modal__body h1 {
  margin: 0 0 14px;
  color: #1f2228;
  font-size: 32px;
  line-height: 1.34;
}

.home-news-modal__meta {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #7b8391;
  font-size: 14px;
}

.home-news-modal__cover {
  width: 100%;
  max-height: 420px;
  margin-bottom: 24px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.home-news-modal__summary {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  color: #4c5565;
  background: #f7f8fb;
  line-height: 1.75;
}

.home-news-modal__content {
  color: #2f3540;
  font-size: 16px;
  line-height: 1.9;
}

.home-news-modal__content p {
  margin: 0 0 1.1em;
}

.home-news-modal__content h2,
.home-news-modal__content h3 {
  margin: 1.45em 0 0.65em;
  color: #1f2228;
  line-height: 1.35;
}

.home-news-modal__content figure {
  margin: 28px 0;
}

.home-news-modal__content figcaption {
  margin-top: 8px;
  color: #7b8391;
  font-size: 14px;
  text-align: center;
}

.home-news-modal__content hr {
  border: 0;
  border-top: 1px solid #e8ebf0;
  margin: 32px 0;
}

.home-news-modal__content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 8px;
}

.home-news-modal__status {
  padding: 48px 18px;
  color: #8a94a6;
  text-align: center;
}

.more-card {
  height: 338px;
  min-height: 0;
  margin-top: 24px;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  border-radius: 18px;
  background: rgba(140, 142, 143, 0.76);
  border: 0;
  backdrop-filter: none;
}

.more-card a {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.24);
  font-weight: 700;
  font-size: 20px;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    background 0.22s;
}

.more-card a::after {
  content: "›";
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.more-card a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(55, 60, 64, 0.16);
}

.page-navigation {
  display: none;
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 30;
  gap: 14px;
  transform: translateY(-50%);
}

.page-navigation button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 37, 43, 0.28);
  position: relative;
  transition:
    height 0.24s,
    background 0.24s,
    transform 0.24s;
}

.page-navigation button span {
  position: absolute;
  right: 22px;
  top: 50%;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(35, 37, 43, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
  font-size: 12px;
}

.page-navigation button:hover span {
  opacity: 1;
  transform: translate(0, -50%);
}

.page-navigation button.active {
  height: 32px;
  background: var(--primary);
  transform: translateY(-2px);
}

.float-tools {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 20;
  display: grid;
  gap: 8px;
}

.float-tools a,
.float-tools button {
  width: 86px;
  height: 62px;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #525765;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.float-tools a:hover,
.float-tools button:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.site-footer {
  background: var(--theme-footer-bg);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  padding: 38px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.copyright {
  margin: 0;
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

@media (max-width: 1100px) {
  :root {
    --container: min(100vw - 36px, 900px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    height: 64px;
    padding: 0 18px;
  }

  main {
    padding-top: 64px;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav-list {
    margin: 0;
    display: none;
    position: absolute;
    z-index: 70;
    top: 64px;
    left: 18px;
    right: 18px;
    min-height: 0;
    max-height: calc(100vh - 84px);
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5eaf2;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.13);
    overflow-y: auto;
  }

  .nav-list.open {
    display: grid;
    animation: menuDrop 0.22s ease both;
  }

  .nav-list > li {
    height: auto;
    display: block;
    padding: 0;
    border-bottom: 0;
  }

  .nav-list a,
  .nav-list button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #3a3d45;
    background: #f5f7fb;
    border-radius: 8px;
    font-size: 15px;
    text-align: left;
  }

  .nav-list a.active,
  .nav-list > li.expanded > button {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(0, 103, 255, 0.22);
    font-weight: 600;
  }

  .nav-list a::after,
  .nav-list button::after {
    display: none;
  }

  .mega-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 132px;
    right: 0;
    bottom: 0;
    width: auto;
    min-height: calc(100vh - 64px);
    padding: 18px 18px 28px;
    background-color: var(--white);
    background-position: right -44px top -20px;
    background-size: auto 190px;
    box-shadow: none;
    overflow-y: auto;
  }

  .has-mega.expanded .mega-menu {
    display: block;
    animation: menuDrop 0.25s ease both;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega-grid a {
    margin: 0 14px 10px 0;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-media,
  .hero-copy {
    min-height: 540px;
  }

  .hero-media video,
  .hero-media img {
    min-height: 540px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .quick-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .page-navigation {
    display: none;
  }

  .services,
  .solutions,
  .network,
  .news {
    min-height: auto;
  }

  .solution-stage {
    grid-template-columns: 1fr;
  }

  .solution-tabs {
    justify-content: flex-start;
  }

  .service-detail,
  .network-layout,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    gap: 16px;
  }

  .more-card {
    min-height: 128px;
  }

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

  .float-tools {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .navbar {
    height: 48px;
    padding: 0 14px;
  }

  main {
    padding-top: 48px;
  }

  .brand-logo {
    font-size: 22px;
  }

  .mobile-menu-button {
    width: 38px;
    height: 38px;
  }

  .mobile-menu-button span {
    width: 22px;
    margin: 4px auto;
  }

  .nav-list {
    top: 48px;
    min-height: calc(100vh - 48px);
    grid-template-columns: 122px 1fr;
  }

  .nav-list a,
  .nav-list button {
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .mega-menu {
    left: 122px;
    min-height: calc(100vh - 48px);
    padding: 14px 14px 24px;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-media,
  .hero-copy {
    min-height: 420px;
  }

  .hero-media video,
  .hero-media img {
    min-height: 420px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 70px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 1.22;
  }

  .hero-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .btn {
    min-width: 110px;
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-dots {
    bottom: 22px;
  }

  .hero-dots button {
    width: 24px;
    height: 3px;
  }

  .hero-dots button.active {
    width: 38px;
  }

  .quick-layout {
    gap: 12px;
    padding: 18px 0;
  }

  .quick-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-links a {
    min-height: 74px;
    border-radius: 6px;
  }

  .quick-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .quick-links strong {
    font-size: 12px;
  }

  .track-card {
    padding: 16px;
    border-radius: 8px;
  }

  .track-card label {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .track-row {
    grid-template-columns: 1fr;
  }

  .track-row button {
    height: 44px;
  }

  .section-title {
    margin-bottom: 22px;
    font-size: 24px;
    gap: 8px;
  }

  .section-title::before,
  .section-title::after {
    width: 12px;
  }

  .services,
  .solutions,
  .network,
  .news {
    padding: 34px 0;
    display: block;
  }

  .service-shell {
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(35, 37, 43, 0.08);
  }

  .service-tabs {
    padding: 14px 12px 0;
  }

  .service-tabs button {
    padding: 8px 14px;
    font-size: 13px;
  }

  .service-detail {
    margin-top: 12px;
  }

  .service-info {
    padding: 24px 18px;
  }

  .service-info h3 {
    font-size: 24px;
  }

  .service-info p {
    font-size: 14px;
    line-height: 1.65;
  }

  .service-info ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-info li {
    padding: 13px 14px;
  }

  .service-image {
    min-height: 190px;
  }

  .solution-stage {
    min-height: 0;
    margin-bottom: 14px;
    gap: 14px;
  }

  .solution-panel {
    padding: 22px;
    border-radius: 10px;
  }

  .solution-panel h3 {
    margin: 10px 0 8px;
    font-size: 23px;
  }

  .solution-panel p {
    min-height: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .solution-panel a {
    width: 108px;
    height: 36px;
    margin-top: 16px;
    font-size: 13px;
  }

  .solution-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .solution-tabs button {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .solution-card {
    min-height: 96px;
    padding: 14px;
    border-radius: 8px;
  }

  .solution-card span {
    font-size: 17px;
  }

  .network-layout {
    gap: 16px;
  }

  .network-copy > p {
    margin: -8px 0 20px;
    font-size: 14px;
  }

  .stat-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .stat-list div {
    padding-left: 9px;
    border-left-width: 3px;
  }

  .stat-list strong {
    font-size: 22px;
    line-height: 1.1;
  }

  .stat-list span {
    font-size: 11px;
    line-height: 1.35;
  }

  .network {
    background-image: var(--network-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .network-features {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
    gap: 10px;
  }

  .network-features span {
    min-height: 42px;
    font-size: 13px;
  }

  .globe {
    height: 210px;
    margin-top: -8px;
  }

  .news {
    background: #2d3138;
  }

  .news-overlay {
    background: rgba(39, 43, 50, 0.72);
  }

  .news-grid {
    display: block;
  }

  .news-card {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .news-card:first-child {
    min-height: 206px;
    color: var(--white);
  }

  .news-card:first-child::after {
    display: none;
  }

  .news-card:first-child .tag,
  .news-card:first-child time,
  .news-card:first-child h3 {
    z-index: 1;
  }

  .news-card:first-child time {
    position: absolute;
    left: 14px;
    bottom: 52px;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
  }

  .news-card:first-child h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0;
    padding: 0 14px 16px;
    font-size: 16px;
    color: var(--white);
  }

  .news-card:not(:first-child) {
    display: grid;
    grid-template-columns: 94px 1fr;
    min-height: 94px;
  }

  .news-card:not(:first-child) .tag {
    display: none;
  }

  .news-card:not(:first-child) time {
    grid-column: 2;
    padding: 13px 12px 0;
    font-size: 12px;
  }

  .news-card:not(:first-child) h3 {
    grid-column: 2;
    min-height: 0;
    padding: 6px 12px 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .news-card:not(:first-child) .news-image-wrap {
    grid-row: 1 / span 2;
    width: 94px;
    height: 100%;
    min-height: 94px;
    border-radius: 10px;
  }

  .news-image-wrap {
    height: 206px;
  }

  .news-more {
    display: none;
  }

  .more-card {
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .more-card a {
    height: 38px;
    border-radius: 6px;
    font-size: 13px;
  }
}

@keyframes dotProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: auto;
  left: calc(100dvw - 104px);
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.lang-switch {
  width: 32px;
  height: 32px;
  border: 1px solid #d7d9df;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1f2228;
  background: #fff;
  font-size: 14px;
}

@media (min-width: 1101px) {
  .mobile-actions {
    visibility: hidden;
    pointer-events: none;
  }
}

.hero,
.hero-slider,
.hero-slide,
.hero-media {
  height: clamp(560px, 65vh, 700px);
  min-height: 560px;
}

.hero {
  background: var(--primary-deep);
}

.hero-copy,
.hero-media::after {
  display: none;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero-slide.active .hero-media video,
.hero-slide.active .hero-media img {
  animation: mediaSlowZoom 7.2s ease-out both;
}

.scroll-info {
  position: absolute;
  left: 7.2%;
  bottom: 268px;
  z-index: 3;
  max-width: min(560px, 46vw);
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 92px, 0);
}

.hero-slide.active .scroll-info {
  animation: scrollInfoRise 2.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.text-info {
  display: grid;
  gap: 14px;
}

.text-info p {
  margin: 0;
  color: inherit;
  line-height: 1.18;
  text-shadow: inherit;
}

.text-info p:first-child {
  font-size: 24px;
  font-weight: 500;
}

.text-info p:last-child {
  font-size: 46px;
  font-weight: 700;
}

.hero-dots {
  bottom: 120px;
}

.hero-dots button {
  width: 82px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
  position: relative;
}

.hero-dots button.active {
  width: 82px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-dots button.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: left center;
  animation: dotProgress 5.2s linear both;
}

.quick-panel {
  position: relative;
  z-index: 4;
  display: flow-root;
  margin-top: 0;
  padding: 0 0 36px;
  background: #f2f3f7;
}

.quick-layout {
  width: min(1456px, calc(100vw - 280px));
  min-height: 170px;
  margin-top: -94px;
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: end;
  gap: 12px;
}

.track-card {
  height: 170px;
  margin-top: 0;
  padding: 39px 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 24px 52px rgba(var(--primary-rgb), 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  transition:
    height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    margin-top 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.24s ease,
    box-shadow 0.24s ease;
}

.track-card label {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.track-row {
  grid-template-columns: 1fr;
  grid-template-rows: 80px;
  gap: 0;
  width: 100%;
  height: 92px;
  padding: 6px 10px;
  border-radius: 26px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition:
    height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.24s ease;
}

.track-row::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: none center / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
  transition: top 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.track-row textarea {
  min-height: 80px;
  height: 80px;
  padding: 27px 154px 22px 52px;
  border: 0;
  border-radius: 24px;
  resize: none;
  color: #5f6673;
  font-size: 17px;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  transition:
    height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    min-height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.track-row textarea:focus {
  border-color: transparent;
  box-shadow: none;
}

.track-row textarea::placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-row:focus-within textarea::placeholder {
  text-overflow: clip;
  white-space: pre-wrap;
}

.track-row button {
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 62px;
  padding: 0;
  border-radius: 26px;
  background: var(--primary);
  align-self: center;
  justify-self: end;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%);
  transition:
    width 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    top 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    right 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.24s ease,
    background 0.2s ease;
}

.track-card:focus-within {
  height: 332px;
  margin-top: -162px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(var(--primary-rgb), 0.24);
  transform: none;
}

.track-row:focus-within {
  grid-template-columns: 1fr;
  grid-template-rows: 166px 54px;
  row-gap: 16px;
  height: 284px;
  padding: 22px 24px 26px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.12);
}

.track-row:focus-within::before {
  top: 45px;
}

.track-row:focus-within textarea {
  height: 166px;
  min-height: 166px;
  padding: 10px 0 0 36px;
  white-space: pre-wrap;
}

.track-row:focus-within button {
  right: 10px;
  top: 204px;
  width: calc(100% - 20px);
  height: 54px;
  transform: none;
  justify-self: stretch;
}

.track-tip {
  display: none;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
}

body.tracking-modal-open {
  overflow: hidden;
}

.tracking-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(5px);
}

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

.tracking-modal {
  width: min(820px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.25);
}

.tracking-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e5edf3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.tracking-modal-title-wrap h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.25;
}

.tracking-modal-count {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.tracking-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid #d8e2ee;
  border-radius: 999px;
  color: #334155;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.tracking-modal-close:hover,
.tracking-modal-close:focus-visible {
  border-color: rgba(var(--primary-rgb), 0.36);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
  outline: none;
}

.tracking-result-list {
  padding: 18px 22px 24px;
  display: grid;
  gap: 16px;
}

.tracking-result-card {
  padding: 16px;
  border: 1px solid #dbe5e1;
  border-radius: 8px;
  background: #fff;
}

.tracking-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tracking-result-label,
.tracking-latest-label {
  display: block;
  margin-bottom: 6px;
  color: #607080;
  font-size: 13px;
  line-height: 1.2;
}

.tracking-result-number {
  display: block;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: break-all;
}

.tracking-status {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  color: #00694f;
  background: #e8f8f1;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.tracking-result-card.is-error .tracking-status {
  color: #b42318;
  background: #fef3f2;
}

.tracking-result-card.is-error .tracking-latest {
  border-left-color: #f04438;
}

.tracking-latest {
  margin-top: 16px;
  padding-left: 14px;
  display: grid;
  gap: 6px;
  border-left: 3px solid #0c8068;
}

.tracking-latest-time {
  color: #405d6f;
  font-size: 15px;
}

.tracking-latest-title {
  color: #020617;
  font-size: 19px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tracking-latest-location {
  color: #405d6f;
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tracking-toggle {
  margin-top: 14px;
  padding: 12px 0 0;
  width: 100%;
  border: 0;
  border-top: 1px dashed #d9e4e1;
  color: #00694f;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.tracking-toggle:focus-visible {
  outline: 2px solid rgba(var(--primary-rgb), 0.35);
  outline-offset: 3px;
}

.tracking-events {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.tracking-events[hidden] {
  display: none;
}

.tracking-event {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 6px;
  align-items: start;
}

.tracking-event-time {
  color: #405d6f;
  font-size: 15px;
  line-height: 1.45;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.tracking-event-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.tracking-event-title {
  color: #020617;
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tracking-event-location {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

body.price-modal-open {
  overflow: hidden;
}

.price-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 3100;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(4px);
}

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

.price-modal {
  width: min(862px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid #d9e1de;
  border-radius: 8px;
  background: #f7faf9;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.price-modal-header {
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe6e3;
  background: #fff;
}

.price-modal-header h2 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.price-modal-close {
  width: 32px;
  height: 32px;
  border: 0;
  color: #111;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.price-modal-body {
  max-height: calc(100vh - 110px);
  padding: 10px 30px 20px;
  overflow: auto;
}

.price-query-summary {
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 42px;
  border: 1px solid #d8dfdc;
  border-radius: 4px;
  color: #45545c;
  background: #fff;
  font-size: 14px;
}

.price-query-summary strong {
  color: #000;
  font-weight: 800;
}

.price-card-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.price-card {
  overflow: hidden;
  border: 1px solid #dce4e1;
  border-radius: 8px;
  background: #fff;
}

.price-card.is-open {
  border-color: #7d8984;
}

.price-card-head {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px 82px 112px;
  align-items: center;
  gap: 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.price-card-head > strong {
  min-width: 0;
  color: #00131d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.price-card-more {
  color: #004bff;
  font-size: 14px;
}

.price-card-time {
  color: #526a72;
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}

.price-card-head em {
  color: #d96522;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.price-card-detail {
  display: none;
  margin: 0 20px 18px;
  padding-top: 12px;
  border-top: 1px dashed #dce4e1;
}

.price-card.is-open .price-card-detail {
  display: block;
}

.price-card-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.price-card-detail-grid p,
.price-card-empty {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.price-card-detail-grid p {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
}

.price-card-detail-label {
  color: #222;
  font-weight: 400;
  white-space: nowrap;
}

.price-card-detail-value {
  min-width: 0;
  font-weight: 800;
}

.price-empty {
  margin: 0;
  padding: 20px;
  border: 1px solid #dce4e1;
  border-radius: 8px;
  color: #526a72;
  background: #fff;
}

.quick-links {
  min-height: 170px;
  padding: 22px 28px 16px;
  border-radius: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.78)
    ),
    none right top / auto 78px no-repeat;
  box-shadow: 0 26px 60px rgba(35, 37, 43, 0.1);
  position: relative;
}

.quick-links::before {
  content: attr(data-quick-badge);
  position: absolute;
  left: 98px;
  top: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
}

.quick-links a {
  min-height: 132px;
  color: #1f2228;
  border-radius: 8px;
}

.quick-links a:hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), 0.12);
  transform: translateY(-2px);
}

.quick-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.icon-send {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
}
.icon-price {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3Cpath d='M7 3.5 4.5 6'/%3E%3Cpath d='M17 3.5 19.5 6'/%3E%3Cpath d='M8 18h8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3Cpath d='M7 3.5 4.5 6'/%3E%3Cpath d='M17 3.5 19.5 6'/%3E%3Cpath d='M8 18h8'/%3E%3C/svg%3E");
}
.icon-range {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M9.1 9a3 3 0 0 1 5.8 1c0 2-3 2-3 4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M9.1 9a3 3 0 0 1 5.8 1c0 2-3 2-3 4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}
.icon-network {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14v-3a9 9 0 0 1 18 0v3'/%3E%3Cpath d='M5 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M18 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M21 17v1a4 4 0 0 1-4 4h-4'/%3E%3Cpath d='M13 22h-2v-2h2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14v-3a9 9 0 0 1 18 0v3'/%3E%3Cpath d='M5 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M18 13h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M21 17v1a4 4 0 0 1-4 4h-4'/%3E%3Cpath d='M13 22h-2v-2h2Z'/%3E%3C/svg%3E");
}

.quick-links strong {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.section-title {
  margin-bottom: 32px;
  color: #070707;
  font-size: 30px;
}

.services {
  min-height: 0;
  padding: 48px 0 70px;
  display: block;
  background: #f2f3f7;
}

.service-shell {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-shell:hover {
  transform: none;
  box-shadow: none;
}

.service-tab-wrap {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: flex-start;
  gap: 18px;
}

.service-arrow {
  width: 42px;
  height: 42px;
  margin-top: 7px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9aa0aa;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(35, 37, 43, 0.08);
  font-size: 28px;
  line-height: 1;
  transition:
    color 0.22s,
    background 0.22s,
    transform 0.22s;
}

.service-arrow:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-2px);
}

.service-tabs {
  justify-content: stretch;
  align-items: flex-start;
  gap: 12px;
  padding: 0 8px 28px;
  overflow-x: visible;
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tabs button {
  height: 56px;
  min-width: 0;
  padding: 0 16px;
  border-radius: 8px;
  flex: 1 1 0;
  color: #262a32;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(35, 37, 43, 0.06);
  position: relative;
}

.service-tabs button::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.24s,
    transform 0.24s;
}

.service-tabs button.active {
  color: var(--primary);
  background: #fff;
  transform: translateY(-2px);
}

.service-tabs button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-detail {
  width: 100%;
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 37, 43, 0.08);
}

.service-image {
  min-height: 360px;
}

.service-info {
  padding: 48px 58px 38px;
  background-color: #fff;
  background-size: auto 76px;
}

.service-badge {
  margin-bottom: 14px;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.service-info h3 {
  margin: 0;
  font-size: 30px;
}

.service-info p {
  font-size: 16px;
  line-height: 1.75;
}

.service-info ul {
  gap: 10px;
}

.service-info li {
  padding: 14px 12px;
  border-radius: 6px;
}

.solutions {
  min-height: 0;
  padding: 56px 0 70px;
  display: block;
  background: #fff;
}

.solution-panel {
  border-radius: 10px;
  background: rgba(25, 30, 40, 0.62);
}

.solution-card {
  min-height: 160px;
  border-radius: 8px;
  background-size: cover;
}

.solution-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.tone-red,
.tone-dark,
.tone-green,
.tone-violet,
.tone-blue,
.tone-orange {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    var(--solution-card-bg, var(--solution-bg, var(--primary-deep-gradient)));
}

@media (min-width: 1101px) {
  .solutions {
    min-height: 700px;
    height: clamp(700px, 82vh, 820px);
    padding: 62px 0 0;
    display: block;
    align-items: initial;
    overflow: hidden;
    position: relative;
    background: var(--solution-bg, var(--primary-deep-gradient)) center / cover
      no-repeat;
  }

  .solutions::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(22, 27, 34, 0.82),
        rgba(22, 27, 34, 0.42) 48%,
        rgba(22, 27, 34, 0.18)
      ),
      linear-gradient(180deg, rgba(22, 27, 34, 0.06), rgba(22, 27, 34, 0.3));
    pointer-events: none;
  }

  .solutions .container {
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .solutions .section-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 34px;
  }

  .solutions .section-title::before,
  .solutions .section-title::after {
    background: var(--primary);
  }

  .solution-subtitle {
    margin: 0;
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
  }

  .solution-grid {
    display: none;
  }

  .solution-stage {
    position: absolute;
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: min(1700px, calc(100vw - 160px));
    min-height: 0;
    margin: 0;
    display: block;
    transform: translateX(-50%);
  }

  .solution-panel {
    width: min(520px, 34vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    display: block;
    position: absolute;
    left: clamp(56px, 3.4vw, 70px);
    top: clamp(160px, 27vh, 228px);
    color: #fff;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .solution-panel span,
  .solution-panel a {
    display: none;
  }

  .solution-panel h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 700;
  }

  .solution-panel p {
    max-width: 520px;
    min-height: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
  }

  .solution-points {
    margin-top: 36px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
  }

  .solution-points li {
    padding-left: 26px;
  }

  .solution-points li::before {
    width: 4px;
    height: 4px;
    top: 0.72em;
    background: var(--primary);
    box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.18);
  }

  .solution-panel.is-changing {
    animation: none;
  }

  .solution-panel.is-changing h3,
  .solution-panel.is-changing p,
  .solution-panel.is-changing .solution-points li {
    animation: solutionTextRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .solution-panel.is-changing p {
    animation-delay: 0.1s;
  }

  .solution-panel.is-changing .solution-points li:nth-child(1) {
    animation-delay: 0.22s;
  }

  .solution-panel.is-changing .solution-points li:nth-child(2) {
    animation-delay: 0.34s;
  }

  .solution-tabs {
    position: absolute;
    left: 50%;
    bottom: clamp(28px, 5vh, 48px);
    width: min(1020px, calc(100% - 96px));
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 2px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
  }

  .solution-tabs button {
    height: 104px;
    border: 0;
    border-radius: 3px;
    padding: 0 22px;
    display: grid;
    place-items: center;
    color: #1f2228;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    transition:
      color 0.22s,
      background 0.22s,
      transform 0.22s;
  }

  .solution-tabs button.active {
    display: none;
  }

  .solution-tabs button:hover {
    color: #1f2228;
    background: rgba(255, 255, 255, 0.86);
    transform: none;
  }

  .solution-more {
    width: 100%;
    height: 128px;
    margin: -12px 0;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--primary-gradient);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(var(--primary-rgb), 0.26);
    position: relative;
  }

  .solution-more::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -34px;
    width: 64px;
    height: 64px;
    color: var(--primary);
    background-color: currentColor;
    border-radius: 0;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    filter: drop-shadow(0 12px 18px rgba(var(--primary-rgb), 0.24));
    pointer-events: none;
    transform: translateX(-50%);
  }

  .solution-more::after {
    content: "";
    display: none;
  }

  .solution-more[data-solution-icon="consumer"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16h6'/%3E%3Cpath d='M19 13v6'/%3E%3Cpath d='M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
    filter: none;
  }

  .solution-more[data-solution-icon="consumer"]::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% + 17px);
    top: -42px;
    width: 22px;
    height: 18px;
    border-top: 4px solid rgba(255, 255, 255, 0.92);
    border-right: 4px solid rgba(255, 255, 255, 0.92);
    border-radius: 0 14px 0 0;
    transform: rotate(-24deg);
  }

  .solution-more[data-solution-icon="fashion"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M6 7v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M6 7v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E");
  }

  .solution-more[data-solution-icon="home"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11h16'/%3E%3Cpath d='M5 11 7 5h10l2 6'/%3E%3Cpath d='M7 11v8'/%3E%3Cpath d='M17 11v8'/%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M10 15h4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11h16'/%3E%3Cpath d='M5 11 7 5h10l2 6'/%3E%3Cpath d='M7 11v8'/%3E%3Cpath d='M17 11v8'/%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M10 15h4'/%3E%3C/svg%3E");
  }

  .solution-more[data-solution-icon="digital"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='12' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='12' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
  }

  .solution-more[data-solution-icon="car"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17h4'/%3E%3Cpath d='M5 17H3v-5l2-5h9l3 5h2a2 2 0 0 1 2 2v3h-2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M6 12h10'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17h4'/%3E%3Cpath d='M5 17H3v-5l2-5h9l3 5h2a2 2 0 0 1 2 2v3h-2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3Cpath d='M6 12h10'/%3E%3C/svg%3E");
  }

  .solution-more[data-solution-icon="fresh"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V8'/%3E%3Cpath d='M5 12c0-4 3-7 7-7s7 3 7 7'/%3E%3Cpath d='M5 12c0 5 3 8 7 10 4-2 7-5 7-10'/%3E%3Cpath d='M8 4c2-2 6-2 8 0'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V8'/%3E%3Cpath d='M5 12c0-4 3-7 7-7s7 3 7 7'/%3E%3Cpath d='M5 12c0 5 3 8 7 10 4-2 7-5 7-10'/%3E%3Cpath d='M8 4c2-2 6-2 8 0'/%3E%3C/svg%3E");
  }
}

.network {
  min-height: 0;
  padding: 58px 0 64px;
}

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

.stat-list strong {
  font-size: 36px;
}

.network.is-visible .stat-list div:nth-child(4) {
  transition-delay: 0.24s;
}

.float-tools {
  right: 20px;
  bottom: 56px;
  justify-items: center;
  gap: 36px;
}

.float-tools-panel {
  width: 72px;
  padding-top: 10px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(35, 37, 43, 0.16);
}

.float-tools-panel a,
.float-backtop {
  border: 0;
  display: grid;
  place-items: center;
  justify-items: center;
  align-items: center;
  color: transparent;
  background: transparent;
  position: relative;
  font-size: 0;
  line-height: 1;
}

.float-tools-panel a {
  width: 64px;
  height: 64px;
  min-height: 64px;
  box-shadow: none;
}

.float-tools-panel a:not(:first-child) {
  margin-top: 16px;
}

.float-tools-panel a:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 32px;
  height: 1px;
  background: #e6e6e6;
  transform: translateX(-50%);
}

.float-tools-panel a:first-child {
  width: 58px;
  height: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: var(--primary-deep-gradient);
}

.float-backtop {
  width: 86px;
  height: 86px;
  min-height: 86px;
  border-radius: 50%;
  grid-template-rows: 28px auto;
  align-content: center;
  justify-items: center;
  gap: 4px;
  color: #1f2228;
  background: #fff;
  box-shadow: 0 22px 48px rgba(35, 37, 43, 0.18);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.float-tools-panel a::before,
.float-backtop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  display: block;
  color: #1f2228;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.float-tools-panel a:first-child::before {
  width: 36px;
  height: 36px;
  color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.79%2019.79%200%200%201%202.12%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.12.92.33%201.82.62%202.68a2%202%200%200%201-.45%202.11L8.09%209.7a16%2016%200%200%200%206.21%206.21l1.19-1.19a2%202%200%200%201%202.11-.45c.86.29%201.76.5%202.68.62A2%202%200%200%201%2022%2016.92Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.79%2019.79%200%200%201%202.12%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.12.92.33%201.82.62%202.68a2%202%200%200%201-.45%202.11L8.09%209.7a16%2016%200%200%200%206.21%206.21l1.19-1.19a2%202%200%200%201%202.11-.45c.86.29%201.76.5%202.68.62A2%202%200%200%201%2022%2016.92Z'/%3E%3C/svg%3E");
}

.float-tool-service::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%2014v-3a9%209%200%200%201%2018%200v3'/%3E%3Cpath%20d='M5%2013h1a2%202%200%200%201%202%202v2a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-2a2%202%200%200%201%202-2Z'/%3E%3Cpath%20d='M18%2013h1a2%202%200%200%201%202%202v2a2%202%200%200%201-2%202h-1a2%202%200%200%201-2-2v-2a2%202%200%200%201%202-2Z'/%3E%3Cpath%20d='M21%2017v1a4%204%200%200%201-4%204h-4'/%3E%3Cpath%20d='M13%2022h-2v-2h2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%2014v-3a9%209%200%200%201%2018%200v3'/%3E%3Cpath%20d='M5%2013h1a2%202%200%200%201%202%202v2a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-2a2%202%200%200%201%202-2Z'/%3E%3Cpath%20d='M18%2013h1a2%202%200%200%201%202%202v2a2%202%200%200%201-2%202h-1a2%202%200%200%201-2-2v-2a2%202%200%200%201%202-2Z'/%3E%3Cpath%20d='M21%2017v1a4%204%200%200%201-4%204h-4'/%3E%3Cpath%20d='M13%2022h-2v-2h2Z'/%3E%3C/svg%3E");
}

.float-tool-cooperate::before {
  width: 38px;
  height: 38px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m11%2017%202%202a1.8%201.8%200%200%200%202.6%200l3-3a1.8%201.8%200%200%200%200-2.6l-3.9-3.9a3.2%203.2%200%200%200-4.4%200l-.9.9a1.8%201.8%200%200%201-2.6-2.6l2.6-2.6a4.9%204.9%200%200%201%206.2-.6l.6.4a3%203%200%200%200%202.1.4L21%204'/%3E%3Cpath%20d='m3%204%202.7%201.4a3%203%200%200%200%202.1-.4l.6-.4'/%3E%3Cpath%20d='m7%2013%204%204'/%3E%3Cpath%20d='m9%2011%205%205'/%3E%3Cpath%20d='M3%2015h2l3.5%203.5a1.8%201.8%200%200%200%202.6%200'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m11%2017%202%202a1.8%201.8%200%200%200%202.6%200l3-3a1.8%201.8%200%200%200%200-2.6l-3.9-3.9a3.2%203.2%200%200%200-4.4%200l-.9.9a1.8%201.8%200%200%201-2.6-2.6l2.6-2.6a4.9%204.9%200%200%201%206.2-.6l.6.4a3%203%200%200%200%202.1.4L21%204'/%3E%3Cpath%20d='m3%204%202.7%201.4a3%203%200%200%200%202.1-.4l.6-.4'/%3E%3Cpath%20d='m7%2013%204%204'/%3E%3Cpath%20d='m9%2011%205%205'/%3E%3Cpath%20d='M3%2015h2l3.5%203.5a1.8%201.8%200%200%200%202.6%200'/%3E%3C/svg%3E");
}

.float-backtop::before {
  position: static;
  width: 32px;
  height: 32px;
  color: inherit;
  transform: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m6%2014%206-6%206%206'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%20fill='none'%20stroke='%23000'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m6%2014%206-6%206%206'/%3E%3C/svg%3E");
}

.float-tools-panel a:hover,
.float-backtop:hover {
  border-color: transparent;
  background-color: #fff;
  transform: translateY(-2px);
}

.float-backtop:hover {
  color: #fff;
  background: var(--primary);
}

.float-tools-panel a:first-child:hover {
  background: var(--primary-deep-gradient);
}

.template-page .hero {
  height: 340px;
  min-height: 340px;
  margin-top: 104px;
  display: flex;
  align-items: center;
}

.template-page .hero .hero-media,
.template-page .hero .hero-media img {
  height: 340px;
  min-height: 340px;
}

.template-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 12, 0.58),
    rgba(10, 10, 12, 0.2) 56%,
    rgba(10, 10, 12, 0.08)
  );
  pointer-events: none;
}

.template-page .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 46px;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.template-page .hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.template-page .hero-content p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.template-page .banner-summary {
  padding: 66px 0 58px;
}

.template-page .banner-summary h2 {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
}

.template-page .banner-summary h2::before {
  content: "";
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
}

.template-page .banner-summary p {
  max-width: 900px;
  margin: 0;
  color: #525765;
  font-size: 17px;
  line-height: 1.9;
}

.template-page #page-root {
  min-height: 0;
  padding-top: 0;
}

@media (max-width: 1100px) {
  .template-page .hero {
    margin-top: 64px;
  }

  .template-page .hero-content {
    padding-top: 0;
  }

  .template-page .hero-content h1 {
    font-size: 38px;
  }

  .template-page .banner-summary {
    padding: 52px 0 46px;
  }

  .mobile-actions {
    display: flex !important;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .lang-switch {
    width: 32px;
    height: 32px;
    border: 1px solid #d7d9df;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #1f2228;
    background: #fff;
    font-size: 14px;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-media {
    height: 360px;
    min-height: 0;
  }

  .hero-media video,
  .hero-media img {
    min-height: 0;
    object-fit: cover;
  }

  .scroll-info {
    left: 18px;
    bottom: 82px;
    max-width: calc(100vw - 48px);
  }

  .text-info {
    gap: 10px;
  }

  .text-info p:first-child {
    font-size: 18px;
  }

  .text-info p:last-child {
    font-size: 34px;
  }

  .quick-layout {
    width: 100%;
    max-width: none;
    margin-top: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .track-card {
    height: auto;
    min-height: 78px;
    margin-top: 0;
    padding: 14px 0 16px;
    border-radius: 0;
    box-shadow: none;
    justify-content: center;
  }

  .track-card:focus-within {
    height: 146px;
    margin-top: -68px;
    padding: 14px 0 16px;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .track-card label,
  .track-tip {
    display: none;
  }

  .track-row {
    grid-template-columns: 1fr 136px;
    grid-template-rows: 64px;
    height: 64px;
    margin: 0 24px;
    padding: 0 6px 0 0;
    border-radius: 32px;
  }

  .track-row textarea {
    height: 64px;
    min-height: 64px;
    padding: 20px 150px 18px 52px;
  }

  .track-row button {
    right: 6px;
    width: 126px;
    height: 52px;
    border-radius: 28px;
  }

  .track-row:focus-within {
    grid-template-columns: 1fr;
    grid-template-rows: 84px 48px;
    row-gap: 10px;
    height: 144px;
    margin: 0 24px;
    padding: 0 6px 8px 0;
    border-radius: 24px;
  }

  .track-row:focus-within::before {
    top: 42px;
  }

  .track-row:focus-within textarea {
    height: 84px;
    min-height: 84px;
    padding: 22px 8px 0 52px;
    white-space: pre-wrap;
  }

  .track-row:focus-within button {
    right: 6px;
    top: 90px;
    width: calc(100% - 12px);
    height: 46px;
    transform: none;
    align-self: stretch;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .navbar {
    width: 100%;
    max-width: none;
    height: 64px;
    padding: 0 16px;
    background: #fff;
    backdrop-filter: none;
    position: relative;
  }

  .mobile-actions {
    position: absolute;
    right: 16px;
    left: auto;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .site-header .mobile-actions {
    display: flex !important;
    position: absolute !important;
    right: 16px !important;
    left: auto !important;
    top: 16px;
    z-index: 80;
    transform: none;
    pointer-events: auto;
  }

  .site-header .mobile-menu-button {
    pointer-events: auto;
  }

  main {
    padding-top: 64px;
  }

  .template-page .hero {
    align-items: flex-end;
  }

  .template-page .hero-content {
    padding-bottom: 42px;
  }

  .template-page .hero-content h1 {
    font-size: 24px;
    line-height: 1.22;
  }

  .template-page .hero-content p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .template-page .banner-summary {
    padding: 34px 0 30px;
  }

  .template-page .banner-summary h2 {
    margin-bottom: 12px;
    font-size: 23px;
  }

  .template-page .banner-summary h2::before {
    height: 22px;
  }

  .template-page .banner-summary p {
    font-size: 14px;
    line-height: 1.75;
  }

  .brand-logo {
    font-size: 23px;
  }

  .mobile-menu-button {
    width: 30px;
    height: 30px;
  }

  .mobile-menu-button span {
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: #1f2228;
  }

  .nav-list {
    top: 64px;
    left: 12px;
    right: 12px;
    min-height: 0;
    max-height: calc(100vh - 84px);
  }

  .mega-menu {
    min-height: calc(100vh - 64px);
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-media {
    width: 100%;
    max-width: none;
    height: 53.333vw;
    min-height: 198px;
    max-height: 230px;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
  }

  .hero-dots {
    bottom: 9px;
    gap: 6px;
  }

  .hero-dots button,
  .hero-dots button.active {
    width: 24px;
    height: 3px;
  }

  .scroll-info {
    left: 18px;
    bottom: 38px;
    max-width: 280px;
    transform: translate3d(0, 56px, 0);
  }

  .text-info {
    gap: 6px;
  }

  .text-info p:first-child {
    font-size: 12px;
  }

  .text-info p:last-child {
    font-size: 21px;
    line-height: 1.2;
  }

  .quick-panel {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0;
    background: #fff;
  }

  .quick-layout {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .track-card {
    height: auto;
    min-height: 78px;
    margin-top: 0;
    padding: 0 20px;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    justify-content: center;
  }

  .track-card:focus-within {
    height: 146px;
    margin-top: -68px;
    padding: 0 20px;
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .track-card label,
  .track-tip {
    display: none;
  }

  .track-row {
    grid-template-columns: 1fr 76px;
    grid-template-rows: 48px;
    height: 48px;
    margin: 0;
    padding: 0 4px 0 0;
    border-radius: 24px;
  }

  .track-row::before {
    left: 16px;
    width: 17px;
    height: 17px;
  }

  .track-row textarea {
    height: 48px;
    min-height: 48px;
    padding: 14px 88px 12px 42px;
    font-size: 14px;
    line-height: 20px;
  }

  .track-row button {
    right: 4px;
    top: 50%;
    width: 76px;
    height: 40px;
    align-self: center;
    border-radius: 22px;
    font-size: 13px;
  }

  .track-row:focus-within {
    grid-template-columns: 1fr;
    grid-template-rows: 60px 42px;
    row-gap: 8px;
    height: 116px;
    margin: 0px;
    padding: 0 0px;
    border-radius: 24px;
    width: 100%;
  }

  .track-row:focus-within::before {
    top: 30px;
  }

  .track-row:focus-within textarea {
    height: 60px;
    min-height: 60px;
    padding: 18px 8px 0 42px;
  }

  .track-row:focus-within button {
    right: 4px;
    top: 68px;
    width: calc(100% - 8px);
    height: 42px;
    transform: none;
    align-self: stretch;
  }

  .tracking-modal-mask {
    padding: 12px;
    align-items: stretch;
  }

  .tracking-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 12px;
  }

  .tracking-modal-header {
    padding: 14px 14px 12px;
  }

  .tracking-modal-title-wrap h2 {
    font-size: 18px;
  }

  .tracking-modal-close {
    width: 34px;
    height: 34px;
  }

  .tracking-result-list {
    padding: 14px;
    gap: 12px;
  }

  .tracking-result-card {
    padding: 14px;
  }

  .tracking-result-head {
    gap: 10px;
  }

  .tracking-result-number {
    font-size: 19px;
  }

  .tracking-status {
    padding: 5px 10px;
    font-size: 13px;
  }

  .tracking-latest {
    margin-top: 14px;
    padding-left: 12px;
  }

  .tracking-latest-title {
    font-size: 17px;
  }

  .tracking-latest-location {
    font-size: 15px;
  }

  .tracking-event {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tracking-event-time,
  .tracking-event-title,
  .tracking-event-location {
    font-size: 14px;
  }

  .tracking-toggle {
    font-size: 14px;
  }

  .price-modal-mask {
    padding: 10px;
    align-items: stretch;
  }

  .price-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
  }

  .price-modal-header {
    height: 54px;
    padding: 0 16px;
  }

  .price-modal-body {
    max-height: calc(100vh - 74px);
    padding: 10px 12px 16px;
  }

  .price-query-summary {
    padding: 10px 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    font-size: 13px;
  }

  .price-card-head {
    padding: 12px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name fee"
      "more time";
    gap: 8px 12px;
  }

  .price-card-head > strong {
    grid-area: name;
    font-size: 17px;
  }

  .price-card-more {
    grid-area: more;
    font-size: 13px;
  }

  .price-card-time {
    grid-area: time;
    font-size: 14px;
    text-align: right;
  }

  .price-card-head em {
    grid-area: fee;
    justify-self: end;
    align-self: start;
    font-size: 20px;
  }

  .price-card.is-open .price-card-more {
    display: none;
  }

  .price-card-detail {
    margin: 0 14px 14px;
  }

  .price-card-detail-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-card-detail-grid p {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .price-card-detail-grid p,
  .price-card-empty {
    font-size: 13px;
  }

  .quick-links {
    width: 100%;
    max-width: none;
    min-height: 96px;
    padding: 4px 0 8px;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quick-links::before {
    display: none;
  }

  .quick-links a {
    min-height: 84px;
    border-radius: 0;
    min-width: 0;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
  }

  .quick-links strong {
    font-size: 12px;
    font-weight: 500;
  }

  .section-title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .section-title::before,
  .section-title::after {
    width: 14px;
  }

  .services {
    width: 100%;
    max-width: none;
    padding: 22px 0 26px;
    background: #f2f3f7;
  }

  .service-tabs {
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 0 0 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-tab-wrap {
    display: block;
    width: 100%;
  }

  .service-arrow {
    display: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tabs button {
    min-width: auto;
    flex: 0 0 auto;
    height: 24px;
    padding: 0 6px;
    border-radius: 4px;
    color: #30343b;
    background: #f5f5f5;
    box-shadow: none;
    font-size: 12px;
  }

  .service-tabs button.active {
    color: #30343b;
    background: #f5f5f5;
    transform: none;
  }

  .service-tabs button::after {
    left: 5px;
    right: 5px;
    bottom: -5px;
    height: 2px;
  }

  .service-detail {
    width: 100%;
    min-height: 0;
    margin-top: 18px;
    display: block;
    border-radius: 10px;
    box-shadow: none;
  }

  .service-image {
    height: 205px;
    min-height: 0;
  }

  .service-info {
    margin-top: -12px;
    padding: 12px 10px 24px;
    border-radius: 0 0 10px 10px;
    background-position: right 12px top;
    background-size: auto 54px;
    position: relative;
  }

  .service-badge {
    display: none;
  }

  .service-heading {
    gap: 10px;
    margin-bottom: 8px;
  }

  .service-info h3 {
    font-size: 18px;
  }

  .service-info p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.62;
  }

  .service-info ul {
    display: none;
  }

  .solutions {
    width: 100%;
    max-width: none;
    padding: 5px 0 26px;
    background: #f2f3f7;
  }

  .solution-stage {
    display: none;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .solution-card {
    min-height: 83px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: none;
  }

  .solution-card:hover,
  .solution-card.active {
    transform: none;
    box-shadow: none;
  }

  .solution-card span {
    font-size: 16px;
  }

  .network {
    width: 100%;
    max-width: none;
    height: 236px;
    padding: 28px 0 0;
    background-image: var(--network-bg, none);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .network-layout {
    display: block;
    height: 100%;
    position: relative;
  }

  .network-copy > p,
  .network-visual {
    display: none;
  }

  .network .section-title {
    margin-bottom: 0;
    color: #333333;
  }

  .stat-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .stat-list div,
  .network.is-visible .stat-list div {
    padding: 0 4px;
    border-left: 0;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
  }

  .stat-list div:nth-child(2),
  .stat-list div:nth-child(3),
  .network.is-visible .stat-list div:nth-child(2),
  .network.is-visible .stat-list div:nth-child(3) {
    transform: translateY(-34px);
  }

  .stat-list strong {
    color: var(--primary);
    font-size: 19px;
    line-height: 1.08;
  }

  .stat-list span {
    margin-top: 6px;
    color: rgba(0, 0, 0, 0.82);
    font-size: 10px;
    line-height: 1.35;
  }

  .news {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 44px 0 28px;
    background: #fff;
    overflow: visible;
  }

  .news-content {
    width: calc(100% - 32px);
    max-width: none;
  }

  .news-bg {
    display: none;
  }

  .news-overlay {
    display: block;
    inset: 0 0 auto;
    height: 34px;
    background:
      radial-gradient(
        circle at 70% -70%,
        rgba(var(--primary-rgb), 0.28),
        transparent 42%
      ),
      linear-gradient(90deg, #eef4fb, #f7f9fc);
  }

  .news .section-title {
    margin-bottom: 34px;
    color: #070707;
    font-size: 24px;
  }

  .news-grid {
    display: block;
  }

  .news-card {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #1f2228;
    transform: none;
  }

  .news-card:hover {
    transform: none;
    box-shadow: none;
  }

  .news-card:first-child {
    min-height: 218px;
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
    background: #d8dde0;
  }

  .news-card:first-child .news-image-wrap {
    width: 100%;
    height: 218px;
    min-height: 0;
    border-radius: 10px;
  }

  .news-card:first-child::after {
    display: none;
  }

  .news-card:first-child time {
    position: absolute;
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 28px;
    padding: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
  }

  .news-card:first-child h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 56px;
    padding: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .news-card:not(:first-child) {
    min-height: 124px;
    margin-top: 18px;
    padding-bottom: 18px;
    display: grid;
    grid-template-columns: 126px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: start;
    border-bottom: 1px solid #edf0f5;
    overflow: visible;
  }

  .news-card:not(:first-child)::after {
    display: none;
  }

  .news-card:not(:first-child) .news-image-wrap {
    grid-row: 1 / span 2;
    width: 126px;
    height: 126px;
    min-height: 0;
    border-radius: 10px;
  }

  .news-card .tag {
    padding: 6px 10px;
    border-radius: 10px 0 6px 0;
    font-size: 15px;
  }

  .news-card:not(:first-child) .tag {
    left: 0;
    top: 0;
  }

  .news-card:not(:first-child) h3 {
    position: static;
    grid-column: 2;
    margin: 10px 0 0;
    padding: 0;
    color: #1f2228;
    font-size: 18px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .news-card:not(:first-child) time {
    position: static;
    grid-column: 2;
    padding: 2px 0 0;
    color: #7f8ba0;
    font-size: 15px;
  }

  .news-more {
    display: none;
  }

  .home-news-modal-mask {
    padding: 0;
    align-items: stretch;
  }

  .home-news-modal {
    width: 100%;
    max-height: none;
    min-height: 100%;
    border-radius: 0;
  }

  .home-news-modal__body {
    padding: 24px 18px 34px;
  }

  .home-news-modal__body h1 {
    font-size: 22px;
  }

  .home-news-modal__content {
    font-size: 15px;
    line-height: 1.78;
  }

  .more-card {
    margin-top: 30px;
    height: auto;
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    border: 0;
    background: transparent;
  }

  .more-card a {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe4ec;
    border-radius: 999px;
    color: #8a94a6;
    background: #fff;
    box-shadow: none;
    font-size: 18px;
  }

  .more-card a::after {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-header .mobile-actions {
    right: 16px !important;
    left: auto !important;
  }
}


.brand-logo-image {
  display: block;
  max-width: 148px;
  max-height: 54px;
  object-fit: contain;
}

.template-article {
  max-width: 960px;
  margin: 0 auto 72px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.9;
}

.template-article h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 28px;
  line-height: 1.3;
}

.template-article p {
  margin: 0 0 12px;
}

.subpage-content {
  width: var(--container);
  max-width: none;
  margin: 56px auto 86px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.9;
}

.subpage-content > .template-article {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 0 auto 72px;
  min-width: 0;
  overflow-x: hidden;
}

.subpage-content > .template-article,
.subpage-content > .template-article * {
  box-sizing: border-box;
}

.subpage-content > .template-article * {
  max-width: 100%;
}

.subpage-content > .template-article .container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

.subpage-content > .template-article p,
.subpage-content > .template-article li,
.subpage-content > .template-article div,
.subpage-content > .template-article span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.subpage-content > .template-article table {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.subpage-content > .template-article .tab-header,
.subpage-content > .template-article .tab-content {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto;
}

.subpage-content h1,
.subpage-content h2,
.subpage-content h3,
.subpage-content h4 {
  margin: 0 0 18px;
  color: #111827;
  line-height: 1.35;
}

.subpage-content h1 { font-size: 34px; }
.subpage-content h2 { font-size: 28px; }
.subpage-content h3 { font-size: 22px; }

.subpage-content p,
.subpage-content ul,
.subpage-content ol,
.subpage-content blockquote {
  margin: 0 0 16px;
}

.subpage-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.subpage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.subpage-content th,
.subpage-content td {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
}

.subpage-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
}

.subpage-state h2 {
  margin: 0;
  color: #334155;
  font-size: 24px;
}
