@font-face {
  font-family: "Michroma";
  src: url("../fonts/Michroma-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-text-300: #c9cdd7;
  --color-text-400: #9aa0b0;
  --color-text-500: #6b7180;
  --color-text-600: #4a5063;
  --color-text-700: #2f3649;
  --color-text-800: #232a3d;
  --color-text-900: #1a233c;
  --color-brand: #015efb;
  --color-brand-hover: #0057d4;
  --page-gutter: 40px;
  --content-width: 1280px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --motion-hover-duration: 280ms;
  --motion-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-control: 0 12px 20px -12px rgba(26, 35, 60, 0.08),
    0 6px 20px -6px rgba(26, 35, 60, 0.04),
    0 0 1px rgba(26, 35, 60, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-900);
  background: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#main-content {
  overflow-x: clip;
  background: #f2f5fc;
}

body,
button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-text-900);
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr) 248px;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 0 0 var(--page-gutter);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.site-header--scrolled {
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(36px) saturate(1.5);
  backdrop-filter: blur(36px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 1px 0 rgba(26, 35, 60, 0.02),
    0 6px 30px rgba(26, 35, 60, 0.05);
}

.site-header.site-header--pinned {
  position: fixed;
  animation: site-header-pin 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes site-header-pin {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  height: 32px;
}

.site-brand__mark {
  flex: 0 0 auto;
  width: 78px;
  height: 26px;
}

.site-brand__divider {
  position: relative;
  display: block;
  flex: 0 0 1px;
  width: 1px;
  height: 32px;
  overflow: hidden;
}

.site-brand__divider img {
  position: absolute;
  top: 15.5px;
  left: -15.5px;
  width: 32px;
  height: 1px;
  max-width: none;
  transform: rotate(90deg);
}

.site-brand__slogan {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  background-image:
    linear-gradient(
      110deg,
      transparent 18%,
      rgba(255, 231, 163, 0.95) 43%,
      #fff 50%,
      rgba(255, 231, 163, 0.95) 57%,
      transparent 82%
    ),
    linear-gradient(107deg, #c06600 48%, #752a00 100%);
  background-repeat: no-repeat;
  background-position: -52px 0, 0 0;
  background-size: 52px 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: site-brand-slogan-shine 4s ease-in-out infinite;
}

@keyframes site-brand-slogan-shine {
  0%,
  18% {
    background-position: -52px 0, 0 0;
  }

  48%,
  100% {
    background-position: calc(100% + 52px) 0, 0 0;
  }
}

.primary-nav {
  justify-self: center;
}

.site-navigation {
  display: contents;
}

.site-navigation[hidden],
.site-menu-toggle {
  display: none;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  transition: color var(--motion-hover-duration) var(--motion-hover-ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--color-brand-hover);
}

.header-actions {
  display: grid;
  grid-template-columns: 40px 40px 144px;
  align-items: center;
  gap: 8px;
  width: 248px;
}

.header-actions__cta {
  height: 72px;
  margin-left: 8px;
}

.icon-action {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-control);
  cursor: pointer;
  transition:
    background-color var(--motion-hover-duration) var(--motion-hover-ease),
    box-shadow var(--motion-hover-duration) var(--motion-hover-ease),
    transform var(--motion-hover-duration) var(--motion-hover-ease);
}

.icon-action:hover,
.icon-action:focus-visible {
  background: rgba(1, 94, 251, 0.08);
  box-shadow:
    0 0 0 1px rgba(1, 94, 251, 0.12),
    var(--shadow-control);
  transform: translateY(-1px);
}

.icon-action img {
  width: 18px;
  height: 18px;
}

.icon-action .icon-action__wechat {
  width: 22px;
  height: 18px;
}

.header-wechat {
  position: relative;
}

.header-wechat__popover {
  position: absolute;
  z-index: 4;
  top: 56px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 128px;
  gap: 8px;
  padding: 8px;
  color: var(--color-text-700);
  background: #fff;
  border: 1px solid rgba(26, 35, 60, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow-control);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity var(--motion-hover-duration) var(--motion-hover-ease),
    visibility 0s linear var(--motion-hover-duration),
    transform var(--motion-hover-duration) var(--motion-hover-ease);
}

.header-wechat__popover::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.header-wechat.is-open .header-wechat__popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.header-wechat.is-open .icon-action {
  background: rgba(1, 94, 251, 0.08);
  box-shadow:
    0 0 0 1px rgba(1, 94, 251, 0.16),
    var(--shadow-control);
}

.header-wechat__qr {
  width: 112px;
  height: 112px;
  max-width: none;
}

.header-wechat__popover p {
  width: 100%;
  color: var(--color-text-700);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(111deg, #3392fe 0%, var(--color-brand) 100%);
  border-radius: 12px;
  box-shadow: var(--shadow-control);
  font-weight: 600;
  transition: filter var(--motion-hover-duration) var(--motion-hover-ease);
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.94) saturate(1.08);
}

.button--compact {
  width: 144px;
  height: 72px;
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
}

.hero {
  position: relative;
  height: 810px;
  overflow: hidden;
  background: #fff;
}

.hero__slide {
  --hero-edge-left: url("../images/hero-iso-edge-left.png");
  --hero-edge-right: url("../images/hero-iso-edge-right.png");
  position: absolute;
  inset: 0 0 auto;
  height: 810px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 800ms;
}

#hero-slide-ce {
  --hero-edge-left: url("../images/hero-ce-edge-left.png");
  --hero-edge-right: url("../images/hero-ce-edge-right.png");
}

#hero-slide-management {
  --hero-edge-left: url("../images/hero-management-edge-left.png");
  --hero-edge-right: url("../images/hero-management-edge-right.png");
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.hero__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 810px;
  overflow: hidden;
  background:
    var(--hero-edge-left) left / 50% 100% no-repeat,
    var(--hero-edge-right) right / 50% 100% no-repeat;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 721px) {
  .hero__visual img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    height: 810px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(var(--content-width), calc(100% - 160px));
  margin: 0 auto;
  padding-top: 200px;
}

.hero__title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  white-space: nowrap;
}



.hero__title-accent {
  display: block;
  flex: 0 0 auto;
  width: 141px;
  overflow: visible;
  font-family: "Michroma", "Arial Narrow", "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-indent: -2px;
  text-transform: uppercase;
  transform: translateY(-4px) scaleX(1.24);
  transform-origin: left center;
}

.hero__title--ce {
  gap: 8px;
}

.hero__title-accent--ce {
  width: 90px;
  transform: translateY(-4px);
}

.hero__title--management {
  gap: 4px;
}

.hero__title-accent--management {
  width: auto;
  font-family: inherit;
  font-weight: 600;
  line-height: 58px;
  text-indent: 0;
  text-transform: none;
  transform: none;
}

.hero__lead {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.hero__lead span {
  display: block;
}

.hero__lead span + span {
  margin-top: 8px;
}

.button--primary {
  position: relative;
  justify-content: space-between;
  width: 320px;
  height: 56px;
  margin-top: 44px;
  padding: 0 28px;
  overflow: hidden;
  background:
    radial-gradient(
      68% 82% at 50% 108%,
      rgba(64, 215, 255, 0.82) 0%,
      rgba(64, 215, 255, 0) 100%
    ),
    linear-gradient(111deg, #3392fe 0%, var(--color-brand) 100%);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  isolation: isolate;
  transition: filter var(--motion-hover-duration) var(--motion-hover-ease);
}

.button--primary::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: inherit;
}

.button--primary::after {
  z-index: 0;
  inset: 2px;
  background:
    radial-gradient(
      68% 82% at 50% 108%,
      rgba(64, 215, 255, 0.78) 0%,
      rgba(64, 215, 255, 0) 100%
    ),
    linear-gradient(111deg, #3392fe 0%, var(--color-brand) 100%);
  border-radius: 10px;
}

.button--primary:hover,
.button--primary:focus-visible {
  filter: brightness(1.04);
}

.button--primary__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.button--primary__points {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.button--primary__points i {
  position: absolute;
  bottom: -4px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.82);
  animation: hero-button-point 2.35s ease-in-out infinite;
  will-change: transform, opacity;
}

.button--primary__points i:nth-child(1) {
  left: 8%;
  animation-delay: 0.2s;
}

.button--primary__points i:nth-child(2) {
  left: 19%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}

.button--primary__points i:nth-child(3) {
  left: 29%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}

.button--primary__points i:nth-child(4) {
  left: 41%;
  opacity: 0.6;
  animation-duration: 2.05s;
}

.button--primary__points i:nth-child(5) {
  left: 51%;
  animation-duration: 1.9s;
}

.button--primary__points i:nth-child(6) {
  left: 63%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}

.button--primary__points i:nth-child(7) {
  left: 73%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}

.button--primary__points i:nth-child(8) {
  left: 82%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}

.button--primary__points i:nth-child(9) {
  left: 91%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}

.button--primary__points i:nth-child(10) {
  left: 96%;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

@keyframes hero-button-point {
  0% {
    transform: translateY(0);
  }

  85%,
  100% {
    opacity: 0;
  }

  100% {
    transform: translateY(-64px);
  }
}

.button--primary img {
  width: 24px;
  height: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .button--primary {
    transition: none;
  }

  .button--primary__points {
    display: none;
  }
}

.contact-main {
  background: #f2f5fc;
}

.contact-hero {
  position: relative;
  min-height: 1024px;
  overflow: hidden;
  background:
    url("../images/contact-hero-edge-left.png?v=20260825-11") left top / 50% 680px no-repeat,
    url("../images/contact-hero-edge-right.png?v=20260825-11") right top / 50% 680px no-repeat;
}

.contact-hero__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  max-width: none;
  height: 680px;
  object-fit: cover;
  transform: translateX(-50%);
}

.contact-card {
  position: absolute;
  top: 152px;
  left: calc(50% - 67px);
  width: 680px;
  height: 660px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.contact-card__heading h1 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.contact-card__heading p {
  width: 600px;
  margin-top: 16px;
  color: var(--color-text-900);
  font-size: 16px;
  line-height: 24px;
}

.contact-card .consultation-panel__form {
  position: static;
  width: 600px;
  height: auto;
  margin-top: 60px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact-card .consultation-panel__submit {
  margin-top: 8px;
}

.contact-card__benefits {
  grid-column: 1 / -1;
  display: grid;
  width: 100%;
  gap: 8px;
  margin-top: 20px;
}

.contact-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-900);
  font-size: 14px;
  line-height: 22px;
}

.contact-card__benefits li > span {
  flex: 0 0 12px;
  color: #00b161;
}

.contact-card__benefits p {
  min-width: 0;
}

@media (max-width: 1180px) {
  .contact-card {
    right: 40px;
    left: auto;
    width: min(680px, calc(100% - 80px));
  }

  .contact-card__heading p {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .contact-hero {
    min-height: 0;
    padding: 120px 40px 80px;
  }

  .contact-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(680px, 100%);
    height: auto;
    min-height: 660px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    padding: 104px 24px 64px;
    background: none;
  }

  .contact-hero__background {
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .contact-card {
    min-height: 0;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .contact-card__heading h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-card__heading p {
    margin-top: 12px;
  }

  .contact-card .consultation-panel__form {
    width: 100%;
    margin-top: 40px;
  }

  .contact-card__benefits {
    margin-top: 32px;
  }
}

.hero__pagination {
  position: absolute;
  z-index: 4;
  top: 548px;
  left: 50%;
  display: flex;
  gap: 8px;
  width: min(var(--content-width), calc(100% - 160px));
  transform: translateX(-50%);
}

.hero__pagination button {
  position: relative;
  width: 34.6667px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero__pagination button::before {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--color-text-300);
  border-radius: 99px;
  content: "";
}

.hero__pagination button::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-brand);
  border-radius: 99px;
  content: "";
  opacity: 0;
}

.hero__pagination button[data-carousel-progress="current"]::after,
.hero__pagination button[aria-current="true"]:not([data-carousel-progress])::after {
  opacity: 1;
  width: 100%;
}

.hero__pagination button.is-progressing::after {
  animation: hero-pagination-progress var(--carousel-interval, 6000ms) linear forwards;
  animation-play-state: paused;
  opacity: 1;
}

.hero.is-carousel-playing .hero__pagination button.is-progressing::after {
  animation-play-state: running;
}

@keyframes hero-pagination-progress {
  from {
    width: 4px;
  }

  to {
    width: 100%;
  }
}

.hero__pagination button:focus-visible {
  outline: 0;
}

.hero__pagination button:focus-visible::before {
  box-shadow: 0 0 0 3px rgba(1, 94, 251, 0.2);
}

.advantages {
  position: absolute;
  z-index: 3;
  top: 630px;
  left: 50%;
  width: 100%;
  height: 180px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.advantages__list {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  height: 100px;
  padding: 0 40px;
}

.advantages__item {
  flex: 1 0 0;
  min-width: 0;
}

.advantages__divider {
  position: relative;
  flex: 0 0 0;
  width: 0;
  height: 80px;
}

.advantages__divider::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 60, 0.01) 0%,
    rgba(26, 35, 60, 0.1) 50%,
    rgba(26, 35, 60, 0.01) 100%
  );
  content: "";
  transform: translateX(-50%);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature__icon--dual-track,
.feature__icon--experience,
.feature__icon--consultant,
.feature__icon--chain {
  width: 32px;
  height: 32px;
  overflow: visible;
}

.feature__icon-track,
.feature__icon-arrow {
  transform-box: fill-box;
}

.feature__icon-track {
  transform-origin: center bottom;
}

.feature__icon-arrow {
  transform-origin: center;
}

.feature__icon-ten,
.feature__icon-chain-line,
.feature__icon-chain-arrow {
  transform-box: fill-box;
}

.feature__icon-chain-arrow {
  transform-origin: center;
}

.feature__icon--dual-track.is-animating .feature__icon-track--short {
  animation: feature-dual-track-short 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-track--medium {
  animation: feature-dual-track-medium 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-track--tall {
  animation: feature-dual-track-tall 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--dual-track.is-animating .feature__icon-arrow {
  animation: feature-dual-track-arrow 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--experience.is-animating .feature__icon-ten--one {
  animation: feature-experience-one 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--experience.is-animating .feature__icon-ten--zero {
  animation: feature-experience-zero 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--consultant.is-animating .feature__icon-consultant-part--head {
  animation: feature-consultant-head 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--consultant.is-animating .feature__icon-consultant-part--body {
  animation: feature-consultant-body 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--chain.is-animating .feature__icon-chain-line {
  animation: feature-chain-line 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.feature__icon--chain.is-animating .feature__icon-chain-arrow {
  animation: feature-chain-arrow 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes feature-dual-track-short {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  12% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  30% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-medium {
  0%,
  16%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  28% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  46% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-tall {
  0%,
  32%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  44% {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  62% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes feature-dual-track-arrow {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  52% {
    opacity: 0.35;
    transform: translateY(4px);
  }

  66% {
    opacity: 1;
    transform: translateY(-1px);
  }

  78% {
    transform: translateY(0);
  }
}

@keyframes feature-experience-one {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 20;
    stroke-dashoffset: 0;
  }

  10% {
    opacity: 0.25;
    stroke-dashoffset: 20;
  }

  38% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-experience-zero {
  0%,
  18%,
  100% {
    opacity: 1;
    stroke-dasharray: 32;
    stroke-dashoffset: 0;
  }

  28% {
    opacity: 0.25;
    stroke-dashoffset: 32;
  }

  58% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-consultant-head {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 16;
    stroke-dashoffset: 0;
  }

  8% {
    opacity: 0.25;
    stroke-dasharray: 16;
    stroke-dashoffset: 16;
  }

  32% {
    opacity: 1;
    stroke-dasharray: 16;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-consultant-body {
  0%,
  14%,
  100% {
    opacity: 1;
    stroke-dasharray: 44;
    stroke-dashoffset: 0;
  }

  22% {
    opacity: 0.25;
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
  }

  62% {
    opacity: 1;
    stroke-dasharray: 44;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-chain-line {
  0%,
  100% {
    opacity: 1;
    stroke-dasharray: 32;
    stroke-dashoffset: 0;
  }

  10% {
    opacity: 0.25;
    stroke-dashoffset: 32;
  }

  52% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes feature-chain-arrow {
  0%,
  40%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0;
    transform: translateY(3px) scale(0.65);
  }

  66% {
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
  }

  78% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature__icon-track,
  .feature__icon-arrow,
  .feature__icon-ten,
  .feature__icon-consultant-part,
  .feature__icon-chain-line,
  .feature__icon-chain-arrow {
    animation: none !important;
  }
}

.feature h3 {
  color: var(--color-text-900);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.feature p {
  margin-top: 4px;
  color: var(--color-text-500);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@property --service-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.service-entries {
  position: relative;
  min-height: 0;
  padding: 80px max(80px, calc((100% - var(--content-width)) / 2)) 48px;
  overflow: visible;
  background: #f2f5fc;
  isolation: isolate;
}

.service-entries::before,
.service-catalog-section::before {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: -190px;
  width: 900px;
  height: 860px;
  background: linear-gradient(
    193.436deg,
    rgba(51, 146, 254, 0) 14.678%,
    rgba(1, 94, 251, 0.8) 52.339%,
    rgba(186, 57, 255, 0.4) 90%
  );
  border-radius: 50%;
  filter: blur(100px);
  content: "";
}

.service-entries__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100%, var(--content-width));
  min-height: 48px;
  margin: 0 auto;
}

.service-entries__heading h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.service-entries__heading p {
  width: 420px;
  color: var(--color-text-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.service-entries__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 444px 240px;
  gap: 20px 16px;
  width: min(100%, var(--content-width));
  margin: 52px auto 0;
}

.service-entry {
  --service-border-angle: 0deg;
  position: relative;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  box-shadow: var(--shadow-control);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.service-entry::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 1px;
  background: conic-gradient(
    from var(--service-border-angle),
    transparent 0 72%,
    #3392fe 80%,
    #015efb 87%,
    #ba39ff 94%,
    transparent 100%
  );
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-hover-duration) var(--motion-hover-ease);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-entry:hover::before,
.service-entry:focus-within::before {
  opacity: 1;
  animation: service-border-flow 6s linear infinite;
}

.service-entry--iso {
  grid-column: span 2;
}

.service-entry--iso,
.service-entry--ce {
  height: 444px;
}

.service-entry--compact {
  height: 240px;
}

.service-entry__index {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 26px;
  color: rgba(26, 35, 60, 0.8);
  border: 1px dashed rgba(26, 35, 60, 0.2);
  border-radius: 99px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  transition:
    color var(--motion-hover-duration) var(--motion-hover-ease),
    background-color var(--motion-hover-duration) var(--motion-hover-ease),
    border-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.service-entry:hover .service-entry__index,
.service-entry:focus-within .service-entry__index {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.service-entry__title {
  position: relative;
  z-index: 2;
  padding-right: 56px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.service-entry__title--display {
  padding-right: 72px;
  font-family: "Michroma", "Arial Narrow", "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: -0.02em;
}

.service-entry__title a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 5px;
  border-radius: 4px;
}

.service-entry__description {
  position: relative;
  z-index: 2;
  width: 336px;
  margin-top: 12px;
  color: var(--color-text-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.service-entry__description--iso {
  width: 480px;
}

.service-entry__ce-detail {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 62px;
}

.service-entry__ce-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-entry__ce-path::before {
  position: absolute;
  top: 14px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 0;
  border-top: 1px dashed var(--color-text-300);
  content: "";
}

.service-entry__ce-path::after {
  position: absolute;
  top: 13px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 2px;
  background: var(--color-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.service-entry__ce-path.is-playing::after {
  animation: ce-path-line 5s linear infinite;
}

.service-entry__ce-path li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.service-entry__ce-path span {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--color-text-700);
  background: #fff;
  border: 1px solid var(--color-text-400);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

.service-entry__ce-path li:nth-child(n + 2) span::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}

.service-entry__ce-path.is-playing li:nth-child(2) span {
  animation: ce-path-node-02 5s linear infinite;
}

.service-entry__ce-path.is-playing li:last-child span::after {
  animation: ce-path-check-03 5s linear infinite;
}

.service-entry__ce-path.is-playing li:nth-child(2) span::after {
  animation: ce-path-check-02 5s linear infinite;
}

.service-entry__ce-path.is-playing li:last-child span {
  animation: ce-path-node-03 5s linear infinite;
}

@keyframes ce-path-line {
  0%,
  6% {
    transform: scaleX(0);
  }

  42%,
  99.99% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes ce-path-node-02 {
  0%,
  22% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }

  26%,
  99.99% {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  100% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }
}

@keyframes ce-path-node-03 {
  0%,
  40% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }

  44%,
  99.99% {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  100% {
    color: var(--color-text-700);
    background: #fff;
    border-color: var(--color-text-400);
  }
}

@keyframes ce-path-check-02 {
  0%,
  22% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }

  26%,
  99.99% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }
}

@keyframes ce-path-check-03 {
  0%,
  40% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }

  44%,
  99.99% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }
}

.service-entry__ce-path strong {
  color: var(--color-text-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
}

.service-entry__ce-scopes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 62px;
}

.service-entry__ce-scopes li {
  display: grid;
  place-items: center;
  height: 28px;
  color: var(--color-text-600);
  background: rgba(242, 245, 252, 0.72);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.service-entry--compact .service-entry__description {
  margin-top: 80px;
}

.service-entry__globes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 160px);
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 86px;
}

.service-entry__globes .standard-card__badge {
  cursor: default;
}

.service-entry__globes [data-iso-model] {
  display: inline-flex;
  justify-content: center;
  opacity: 1;
  transition:
    opacity 180ms linear,
    filter 180ms linear;
}

.service-entry__globes [data-iso-model].is-changing {
  opacity: 0;
  filter: blur(4px);
}

.standard-card__model-char {
  display: inline-block;
  animation: iso-model-char-in 450ms linear backwards;
}

@keyframes iso-model-char-in {
  from {
    opacity: 0;
    filter: blur(20px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes service-border-flow {
  to {
    --service-border-angle: 360deg;
  }
}

@media (max-width: 1400px) {
  .service-entries {
    padding-right: 40px;
    padding-left: 40px;
  }

  .service-entry__globes {
    gap: clamp(8px, calc((100% - 640px) / 3), 40px);
  }
}

@media (max-width: 1180px) {
  .service-entries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    align-items: start;
  }

  .service-entry--iso {
    grid-column: span 2;
  }

  .service-entry__globes {
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .service-entries {
    min-height: 0;
    padding: 64px 32px 40px;
  }

  .service-entries__heading {
    display: block;
  }

  .service-entries__heading p {
    width: min(100%, 560px);
    margin-top: 16px;
  }

  .service-entries__grid {
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  .service-entries {
    padding: 56px 20px 40px;
  }

  .service-entries__heading h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .service-entries__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-entry,
  .service-entry--iso,
  .service-entry--ce,
  .service-entry--compact {
    grid-column: auto;
    width: 100%;
    height: auto;
    min-height: 240px;
    padding: 28px;
  }

  .service-entry--ce {
    padding-bottom: 40px;
  }

  .service-entry__title--display {
    font-size: 38px;
    line-height: 48px;
  }

  .service-entry__description,
  .service-entry__description--iso {
    width: 100%;
  }

  .service-entry--compact .service-entry__description {
    margin-top: 56px;
  }

  .service-entry__globes {
    grid-template-columns: repeat(2, 160px);
    gap: 24px 16px;
    margin-top: 56px;
  }
}

@media (max-width: 460px) {
  .service-entry {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-entry__globes {
    grid-template-columns: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-entry:hover::before,
  .service-entry:focus-within::before {
    animation: none;
  }

  .service-entry__globes [data-iso-model] {
    transition: none;
  }

  .standard-card__model-char {
    animation: none;
  }

  .service-entry__ce-path::after,
  .service-entry__ce-path li:nth-child(n + 2) span,
  .service-entry__ce-path li:nth-child(n + 2) span::after {
    animation: none;
  }

  .service-entry__ce-path.is-playing::after {
    transform: scaleX(1);
  }

  .service-entry__ce-path.is-playing li:nth-child(n + 2) span {
    color: transparent;
    background: var(--color-brand);
    border-color: var(--color-brand);
  }

  .service-entry__ce-path.is-playing li:nth-child(n + 2) span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
}

.compliance-process {
  padding: 68px max(80px, calc((100% - var(--content-width)) / 2)) 60px;
}

.compliance-process__heading,
.compliance-process__grid {
  width: min(var(--content-width), calc(100vw - 160px));
  margin-right: auto;
  margin-left: auto;
}

.compliance-process__heading h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.compliance-process__heading p {
  width: min(100%, 780px);
  margin-top: 12px;
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.compliance-process__grid {
  display: grid;
  grid-template-columns: 200fr 308fr 416fr 308fr;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.compliance-step-card {
  position: relative;
  min-width: 0;
  height: 320px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.compliance-step-card--contact {
  display: block;
}

.compliance-step-card__contact-entry {
  position: absolute;
  top: 39px;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.compliance-step-card__contact-entry h3,
.compliance-step-card__diagnosis strong,
.compliance-step-card--support > h3 {
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.compliance-step-card__outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 144px);
  height: 42px;
  margin-top: 12px;
  color: var(--color-text-700);
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
}

.compliance-step-card__outline-button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.compliance-step-card__diagnosis {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  height: 160px;
  padding: 40px 16px 0;
  border-top: 1px solid #e4e6eb;
  text-align: center;
}

.compliance-step-card__diagnosis p {
  width: 157px;
  margin: 8px auto 0;
  color: var(--color-text-700);
  font-size: 14px;
  line-height: 22px;
}

.compliance-step-card--proposal,
.compliance-step-card--execution {
  display: flex;
  flex-direction: column;
}

.compliance-step-card--proposal {
  background: linear-gradient(90deg, #8aa2f7, #d0d9ff);
}

.compliance-step-card--execution {
  background: linear-gradient(90deg, #4b73ff, #d7e0ff);
}

.compliance-step-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 68px;
  padding: 0 48px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

.compliance-step-card__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

.compliance-step-card__lead {
  color: var(--color-text-700);
  font-size: 14px;
  line-height: 22px;
}

.compliance-step-card--support {
  padding: 0;
}

.compliance-step-card--support::before {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 500px;
  height: 500px;
  background: url("../images/compliance-support-heading-glow.svg") center / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.compliance-step-card--support > h3 {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0;
  text-align: center;
}

.compliance-step-card--support > .compliance-step-card__lead {
  position: absolute;
  z-index: 1;
  top: 56px;
  left: 50%;
  width: 252px;
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
}

.compliance-step-card--proposal .compliance-step-card__body,
.compliance-step-card--execution .compliance-step-card__body {
  padding: 28px;
}

.compliance-step-card--proposal .compliance-step-card__lead,
.compliance-step-card--execution .compliance-step-card__lead {
  text-align: center;
}

.compliance-step-card__proposal-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.compliance-step-card__proposal-list li,
.compliance-step-card__execution-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--color-text-900);
  background: #f2f3f5;
  border-radius: 8px;
  font-size: 14px;
  line-height: 22px;
}

.compliance-step-card__proposal-list li {
  height: 40px;
  padding: 8px 12px;
}

.compliance-step-card__proposal-list img,
.compliance-step-card__execution-list img {
  flex: 0 0 auto;
}

.compliance-step-card__execution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.compliance-step-card__execution-list li {
  height: 41px;
  padding: 8px 12px;
}

.compliance-step-card__divider {
  width: 100%;
  height: 1px;
  margin-top: 22px;
}

.compliance-step-card__delivery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.compliance-step-card__delivery-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  height: 32px;
  padding: 4px 12px;
  color: var(--color-text-900);
  background: #fff;
  border: 1px solid #f2f3f5;
  border-radius: 8px;
  font-size: 14px;
  line-height: 22px;
}

.compliance-step-card__delivery-list img {
  flex: 0 0 auto;
}

.compliance-step-card__support-list {
  position: absolute;
  z-index: 1;
  top: 98px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 252px;
  height: 194px;
  padding: 5px 20px;
  background: #f2f3f5;
  border-radius: 12px;
  transform: translateX(-50%);
}

.compliance-step-card__support-list li {
  display: flex;
  align-items: center;
  flex: 0 0 46px;
  gap: 8px;
  color: var(--color-text-900);
  border-bottom: 1px solid #e4e6eb;
  font-size: 14px;
  line-height: 22px;
}

.compliance-step-card__support-list li:last-child {
  border-bottom: 0;
}

.compliance-step-card__support-list img {
  flex: 0 0 auto;
}

@media (max-width: 1400px) {
  .compliance-process {
    padding-right: 40px;
    padding-left: 40px;
  }

  .compliance-process__heading,
  .compliance-process__grid {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .compliance-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .compliance-process {
    padding: 32px 20px 56px;
  }

  .compliance-process__heading h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .compliance-process__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .compliance-step-card {
    width: 100%;
    height: auto;
    min-height: 320px;
  }

  .compliance-step-card__body {
    min-height: 252px;
  }
}

@media (max-width: 460px) {
  .compliance-step-card__execution-list li {
    gap: 6px;
    padding: 6px;
    font-size: 12px;
  }

  .compliance-step-card__divider {
    margin-top: 12px;
  }

  .compliance-step-card__delivery-list {
    gap: 6px;
  }

  .compliance-step-card__delivery-list li {
    gap: 6px;
    padding: 4px;
    font-size: 14px;
  }
}






.standard-card__badge {
  position: relative;
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.standard-card__globe {
  position: absolute;
  inset: 0;
  display: block;
  width: 160px;
  height: 160px;
  background-image:
    url("../images/globe-latitude-upper.svg"),
    url("../images/globe-latitude-lower.svg"),
    url("../images/globe-sphere-outline.svg"),
    url("../images/globe-ring-dashed.svg?v=20260818-1"),
    url("../images/globe-ring-gradient.svg?v=20260818-1");
  background-repeat: no-repeat;
  background-position:
    center 38px,
    center 110px,
    center,
    center,
    center;
  background-size:
    63.932px 11.681px,
    63.932px 11.681px,
    106px 106px,
    125px 125px,
    140px 140px;
}

.standard-card__globe::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    url("../images/globe-meridian-axis.svg"),
    url("../images/globe-meridian-narrow.svg"),
    url("../images/globe-meridian-wide.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1px 105px, 43px 106px, 85px 106px;
  content: "";
}

.standard-card__globe.is-animating::before {
  opacity: 0;
}

.standard-card__globe-motion {
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 27px;
  width: 106px;
  height: 106px;
  opacity: 0;
  pointer-events: none;
}

.standard-card__globe.is-animating .standard-card__globe-motion {
  opacity: 1;
}

.standard-card__badge figcaption {
  position: absolute;
  z-index: 2;
  top: 66px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 124px;
  height: 28px;
  color: var(--color-text-900);
  background: #fff;
  border: 1px solid var(--color-text-400);
  border-radius: 99px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}



@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__pagination button::before {
    transition: none;
  }

  .hero__pagination button.is-progressing::after {
    animation: none;
    width: 100%;
  }

  .site-header.site-header--pinned {
    animation: none;
  }

  .site-brand__slogan {
    background-image: linear-gradient(107deg, #c06600 48%, #752a00 100%);
    background-position: 0 0;
    background-size: 100% 100%;
    animation: none;
  }

  .standard-card__globe-motion {
    display: none;
  }
}

@media (max-width: 1280px) {
  :root {
    --page-gutter: 24px;
  }

  .site-header {
    grid-template-columns: 190px minmax(0, 1fr) 104px;
  }

  .site-brand__slogan {
    display: none;
  }

  .site-brand__divider {
    display: none;
  }

  .primary-nav ul {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .header-actions {
    grid-template-columns: 104px;
    width: 104px;
  }

  .header-actions > li:not(.header-actions__cta) {
    display: none;
  }

  .header-actions__cta {
    height: 72px;
    margin-left: 0;
  }

  .button--compact {
    width: 104px;
  }

  .advantages__list {
    gap: 28px;
    padding-right: 24px;
    padding-left: 24px;
  }

}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 110px minmax(0, 1fr) 104px;
  }

  .primary-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav ul {
    width: max-content;
    padding: 0 12px;
  }

  .hero__copy {
    width: calc(100% - 80px);
  }

  .hero__pagination {
    width: calc(100% - 80px);
  }

  .advantages {
    padding-right: 32px;
    padding-left: 32px;
  }

  .advantages__list {
    gap: 20px;
    padding: 0;
  }

  .feature h3 {
    font-size: 16px;
  }

  .feature p {
    font-size: 14px;
  }


}

@media (max-width: 980px) {
  html.site-navigation-is-open,
  html.site-navigation-is-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  html.site-navigation-is-open body {
    padding-top: 80px;
  }

  .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-rows: 32px auto;
    gap: 0;
    height: auto;
    min-height: 80px;
    padding: 24px 20px 0;
  }

  .site-header.site-header--navigation-ready {
    position: sticky;
    grid-template-rows: 32px;
    height: 80px;
    padding-bottom: 24px;
  }

  .site-header.site-header--menu-open,
  .site-header:not(.site-header--navigation-ready) {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.site-header--menu-open {
    position: fixed;
    z-index: 60;
  }

  .site-brand {
    width: 190px;
  }

  .site-brand__slogan,
  .site-brand__divider {
    display: block;
  }

  .site-menu-toggle:not([hidden]) {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    margin-right: -6px;
    padding: 0;
    border: 0;
    background: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .site-menu-toggle::before {
    position: absolute;
    inset: 6px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-control);
    content: "";
  }

  .site-menu-toggle img {
    position: relative;
    width: 24px;
    height: 24px;
  }

  .site-menu-toggle .site-menu-toggle__close,
  .site-menu-toggle[aria-expanded="true"] .site-menu-toggle__open {
    display: none;
  }

  .site-menu-toggle[aria-expanded="true"] .site-menu-toggle__close {
    display: block;
  }

  .site-menu-toggle:focus-visible,
  .site-navigation a:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
  }

  .site-navigation:not([hidden]) {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    min-height: 0;
    margin: 24px -20px 0;
    border-top: 1px solid #f2f3f5;
    background: #fff;
  }

  .site-header--navigation-ready .site-navigation:not([hidden]) {
    position: fixed;
    inset: 80px 0 0;
    height: calc(100dvh - 80px);
    margin: 0;
  }

  .site-navigation .primary-nav {
    flex: 1 1 auto;
    min-height: 0;
    padding: 20px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: auto;
  }

  .site-navigation .primary-nav ul {
    display: block;
    width: 100%;
    padding: 0;
  }

  .site-navigation .primary-nav a {
    padding: 12px 0;
    color: var(--color-text-900);
    font-size: 16px;
    line-height: 24px;
  }

  .site-navigation .primary-nav a:hover,
  .site-navigation .primary-nav a:focus-visible {
    color: var(--color-brand);
  }

  .site-navigation .header-actions {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }

  .site-navigation .header-actions__cta {
    height: auto;
    margin: 0;
  }

  .site-navigation .button--compact {
    width: 100%;
    min-height: 72px;
    height: auto;
    padding: 8px 20px calc(8px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    background: linear-gradient(128.705deg, #3392fe 0%, var(--color-brand) 100%);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

}
@media (min-width: 721px) and (max-width: 980px) {
  html.site-navigation-is-open body { padding-top: 72px; }
  .site-header { min-height: 72px; padding-top: 20px; }
  .site-header.site-header--navigation-ready { height: 72px; padding-bottom: 20px; }
  .site-header--navigation-ready .site-navigation:not([hidden]) { inset-block-start: 72px; height: calc(100dvh - 72px); }
}
@media (max-width: 720px) {

  .hero {
    height: auto;
    overflow: visible;
    background: #f5f8ff;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    display: none;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .hero__slide.is-active {
    display: block;
  }

  .hero__visual {
    height: 620px;
  }

  .hero__visual img {
    object-position: 34% center;
  }

  .hero__copy {
    width: calc(100% - 40px);
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .hero__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.2;
    white-space: normal;
  }

  .hero__title-accent {
    transform: scaleX(1.24);
  }

  .hero__title-accent--ce,
  .hero__title-accent--management {
    transform: none;
  }

  .hero__lead {
    font-size: 20px;
    line-height: 30px;
  }

  .button--primary {
    width: min(100%, 320px);
  }

  .hero__pagination {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    margin: -104px auto 80px;
    transform: none;
  }

  .advantages {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    height: auto;
    margin: -72px auto 0;
    padding: 32px;
    border-radius: 24px;
    transform: none;
  }

  .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    gap: 32px 24px;
    padding: 0;
  }

  .advantages__divider {
    display: none;
  }




}

@media (max-width: 460px) {
  .hero__copy {
    padding-top: 80px;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

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

.industry-applications {
  background: #f2f5fc;
}

.industry-applications__hero {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.industry-applications__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 180ms ease,
    transform 420ms var(--motion-hover-ease);
}

.industry-applications__image.is-changing {
  opacity: 0;
  transform: scale(1.008);
}

.industry-applications__wash {
  position: absolute;
  inset: 0 0 auto;
  height: 600px;
  background: linear-gradient(
    180deg,
    #f2f5fc 0%,
    rgba(242, 245, 252, 0.96) 14%,
    rgba(242, 245, 252, 0.84) 28%,
    rgba(242, 245, 252, 0.66) 42%,
    rgba(242, 245, 252, 0.44) 56%,
    rgba(242, 245, 252, 0.22) 70%,
    rgba(242, 245, 252, 0.06) 86%,
    rgba(242, 245, 252, 0) 100%
  );
  pointer-events: none;
}

.industry-applications__heading {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-top: 100px;
}

.industry-applications__heading h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.industry-applications__heading p {
  margin-top: 12px;
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.industry-applications__cta {
  margin-top: 28px;
}

.industry-applications__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 180px;
  padding: 0 max(80px, calc((100vw - var(--content-width)) / 2));
  background: #fff;
  box-shadow: var(--shadow-control);
}

.industry-applications__list li {
  position: relative;
  min-width: 0;
  border: 0;
}

.industry-applications__list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 60, 0.01) 0%,
    rgba(26, 35, 60, 0.1) 50%,
    rgba(26, 35, 60, 0.01) 100%
  );
  content: "";
  pointer-events: none;
  transform: translate(50%, -50%);
}

.industry-applications__list button {
  display: flex;
  width: 100%;
  min-height: 180px;
  padding: 60px 40px 38px;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  background: #fff;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.industry-applications__list strong {
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.industry-applications__list span {
  color: var(--color-text-700);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.industry-applications__list .is-active button {
  border-bottom-color: var(--color-brand);
}

.industry-applications__list button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: -4px;
}

.trusted-brands {
  position: relative;
  padding: 101px max(80px, calc((100vw - var(--content-width)) / 2)) 100px;
  background: #f2f5fc;
}

.trusted-brands::before,
.trusted-brands::after {
  position: absolute;
  z-index: 2;
  top: 222px;
  width: max(204px, calc((100vw - var(--content-width)) / 2 + 124px));
  height: 368px;
  content: "";
  pointer-events: none;
}

.trusted-brands::before {
  left: 0;
  background: linear-gradient(90deg, #f2f5fc 39%, rgba(242, 245, 252, 0));
}

.trusted-brands::after {
  right: 0;
  background: linear-gradient(270deg, #f2f5fc 39%, rgba(242, 245, 252, 0));
}

.trusted-brands h2 {
  width: min(100%, 480px);
  margin: 0 auto 81px;
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}

.trusted-brands__marquee {
  display: grid;
  gap: 16px;
  width: min(var(--content-width), calc(100vw - 160px));
  margin: 0 auto;
  overflow: hidden;
}

.trusted-brands__row {
  height: 80px;
  overflow: hidden;
}

.trusted-brands__track,
.trusted-brands__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  height: 80px;
  gap: 16px;
}

.trusted-brands__track {
  will-change: transform;
}

.trusted-brands__row--left .trusted-brands__track {
  animation: trusted-brands-scroll-left 32s linear infinite;
}

.trusted-brands__row--right .trusted-brands__track {
  animation: trusted-brands-scroll-right 36s linear infinite;
}

.trusted-brands__row--third .trusted-brands__track {
  animation-duration: 34s;
}

.trusted-brands__set li {
  display: grid;
  flex: 0 0 200px;
  place-items: center;
  width: 200px;
  height: 80px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 8px 18px -12px rgba(26, 35, 60, 0.05),
    0 4px 16px -6px rgba(26, 35, 60, 0.03),
    0 0 1px rgba(26, 35, 60, 0.14);
}

.trusted-brands__set img {
  width: 200px;
  height: 80px;
  max-width: none;
  object-fit: contain;
}

@keyframes trusted-brands-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

@keyframes trusted-brands-scroll-right {
  from {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1401px) {
  .industry-applications__list {
    grid-template-columns: repeat(4, 320px);
  }
}

@media (max-width: 1400px) {
  .industry-applications__heading {
    width: calc(100% - 80px);
  }

  .industry-applications__list {
    padding-right: 40px;
    padding-left: 40px;
  }

  .trusted-brands {
    padding-right: 40px;
    padding-left: 40px;
  }

  .trusted-brands__marquee {
    width: 100%;
  }

}

@media (max-width: 980px) {
  .industry-applications__hero {
    height: 680px;
  }

  .industry-applications__heading {
    padding-top: 72px;
  }

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

  .industry-applications__list li:nth-child(even)::after {
    display: none;
  }

  .industry-applications__list button {
    min-height: 164px;
    padding: 46px 32px 32px;
  }

  .trusted-brands::before,
  .trusted-brands::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .industry-applications__hero {
    height: 620px;
  }

  .industry-applications__image {
    object-position: 62% center;
  }

  .industry-applications__wash {
    height: 460px;
  }

  .industry-applications__heading {
    width: auto;
    margin: 0;
    padding: 56px 24px 0;
  }

  .industry-applications__heading h2,
  .trusted-brands h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .industry-applications__heading p {
    max-width: 320px;
  }

  .industry-applications__cta {
    width: 100%;
    max-width: 320px;
  }

  .industry-applications__list {
    grid-template-columns: 1fr;
    padding: 0 24px;
    border-bottom: 0;
  }

  .industry-applications__list li:not(:last-child)::after {
    display: block;
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(26, 35, 60, 0.01) 0%,
      rgba(26, 35, 60, 0.1) 50%,
      rgba(26, 35, 60, 0.01) 100%
    );
    transform: none;
  }

  .industry-applications__list button {
    min-height: 0;
    padding: 24px 20px;
  }

  .trusted-brands {
    padding: 72px 24px;
  }

  .trusted-brands h2 {
    width: auto;
    margin: 0 0 40px;
  }

  .trusted-brands__marquee {
    gap: 12px;
  }
}
.company-news {
  position: relative;
  height: 900px;
  padding: 120px max(80px, calc((100vw - var(--content-width)) / 2)) 200px;
  overflow: hidden;
  background-color: #f2f5fc;
  background-image: url("../images/news-background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: max(1440px, 100%) 900px;
}

.company-news__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(1280px, calc(100vw - 160px));
  min-height: 104px;
  margin: 0 auto 60px;
}

.company-news__heading h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.company-news__heading p {
  width: 460px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 24px;
}

.section-more-link,
.article-section__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  padding: 4px 12px 4px 16px;
  color: var(--color-text-700);
  background: #e4e6eb;
  border-radius: 99px;
  font-size: 14px;
  line-height: 24px;
  transition:
    color var(--motion-hover-duration) var(--motion-hover-ease),
    background-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.section-more-link {
  flex: 0 0 auto;
  width: 116px;
  gap: 0;
  margin-top: 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.section-more-link img,
.article-section__more img {
  width: 24px;
  height: 24px;
  transition: filter var(--motion-hover-duration) var(--motion-hover-ease);
}

.section-more-link:hover,
.section-more-link:focus-visible,
.article-section__more:hover,
.article-section__more:focus-visible {
  color: #fff;
  background: var(--color-brand);
}

.section-more-link:hover img,
.section-more-link:focus-visible img,
.article-section__more:hover img,
.article-section__more:focus-visible img {
  filter: brightness(0) invert(1);
}

.company-news__grid {
  display: grid;
  grid-template-columns: 840px 424px;
  width: min(1280px, calc(100vw - 160px));
  height: 496px;
  gap: 16px;
}

.featured-article {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 412px);
  height: 496px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.featured-article__content {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
}

.article-badge,
.article-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  color: var(--color-text-900);
  background: #f2f3f5;
  border-radius: 99px;
  font-size: 12px;
  line-height: 18px;
}

.article-badge img,
.article-card__tag img {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.article-card__tag {
  align-self: flex-start;
}

.featured-article__info {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  gap: 20px;
}

.featured-article__content h3 {
  color: var(--color-text-900);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.article-title-link {
  color: inherit;
  transition: color var(--motion-hover-duration) var(--motion-hover-ease);
}

.article-title-link::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
}

.article-title-link:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 4px;
  border-radius: 4px;
}

.featured-article__content p {
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 22px;
}



.featured-article__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d9d9d9;
  border-radius: 8px 12px 12px 8px;
}

.featured-article__media img {
  position: absolute;
  top: calc(50% + 258px);
  left: calc(50% + 223px);
  width: 2000px;
  max-width: none;
  height: 1500px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.company-news__secondary-list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.company-news__secondary {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 240px;
  padding: 40px;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.company-news__secondary .article-badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.company-news__secondary h3 {
  position: static;
  z-index: 2;
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.company-news__secondary--image h3 {
  color: #fff;
}

.company-news__secondary-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  max-width: none;
  height: 750px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

@media (max-width: 1400px) {
  .company-news {
    padding-right: 40px;
    padding-left: 40px;
  }

  .company-news__grid {
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    width: calc(100vw - 80px);
  }

  .company-news__heading {
    width: calc(100vw - 80px);
  }

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

@media (max-width: 980px) {
  .company-news {
    height: auto;
    padding: 80px 0 64px;
    background-size: auto 900px;
  }

  .company-news__heading {
    width: calc(100% - 80px);
    min-height: 0;
    margin-bottom: 48px;
  }

  .company-news__grid {
    grid-template-columns: 1fr;
    width: calc(100% - 80px);
    height: auto;
    margin: 0 auto;
  }

  .featured-article__content {
    padding: 28px;
  }

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

@media (max-width: 720px) {
  .company-news {
    padding: 64px 0 48px;
  }

  .company-news__heading {
    width: calc(100% - 48px);
    margin-bottom: 32px;
  }

  .company-news__heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .company-news__heading p {
    width: auto;
  }

  .section-more-link {
    display: none;
  }

  .company-news__grid {
    width: calc(100% - 48px);
  }

  .featured-article {
    grid-template-columns: 1fr;
    grid-template-rows: auto 300px;
    height: auto;
  }

  .featured-article__content {
    min-height: 380px;
    padding: 28px 24px 32px;
  }

  .featured-article__content h3 {
    font-size: 26px;
    line-height: 34px;
  }



  .featured-article__media {
    border-radius: 8px 8px 12px 12px;
  }

  .featured-article__media img {
    top: 50%;
    left: 50%;
    width: 1250px;
    height: 937.5px;
  }

  .company-news__secondary-list {
    grid-template-columns: 1fr;
  }

  .company-news__secondary {
    padding: 32px 28px;
  }
}
.article-section {
  padding: 40px max(80px, calc((100vw - var(--content-width)) / 2)) 96px;
  background: #f2f5fc;
}

.article-section__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 104px;
  margin: 0 auto 60px;
}

.article-section__heading h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.article-section__heading p {
  width: 460px;
  margin-top: 16px;
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.article-section__more {
  flex: 0 0 auto;
  margin-top: 4px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 16px;
  margin: 0 auto;
}

.article-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 432px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 8px 18px -12px rgba(26, 35, 60, 0.05),
    0 4px 16px -6px rgba(26, 35, 60, 0.03),
    0 0 1px rgba(26, 35, 60, 0.14);
  flex-direction: column;
  gap: 8px;
}

.article-card__media {
  position: relative;
  flex: 0 0 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  display: flex;
  flex: 0 0 208px;
  height: 208px;
  min-height: 208px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.article-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card h3 {
  min-height: 28px;
  color: var(--color-text-900);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.article-card__title-link {
  color: inherit;
  transition: color var(--motion-hover-duration) var(--motion-hover-ease);
}

.article-card__title-link::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
}

.article-card__title-link:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 4px;
  border-radius: 4px;
}

.article-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  color: var(--color-text-700);
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  transition:
    color var(--motion-hover-duration) var(--motion-hover-ease),
    border-color var(--motion-hover-duration) var(--motion-hover-ease),
    background-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.article-card:hover .article-card__title-link,
.article-card:focus-within .article-card__title-link {
  color: var(--color-brand-hover);
}

.article-card:hover .article-card__button,
.article-card:focus-within .article-card__button {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

@media (max-width: 1400px) {
  .article-section {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 980px) {
  .article-section {
    padding: 56px 40px 80px;
  }

  .article-section__heading {
    min-height: 0;
    margin-bottom: 48px;
  }

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

@media (max-width: 720px) {
  .article-section {
    padding: 56px 24px 72px;
  }

  .article-section__heading {
    margin-bottom: 32px;
  }

  .article-section__heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .article-section__heading p {
    width: auto;
  }

  .article-section__more {
    display: none;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.faq-section {
  width: 100%;
  padding: 80px max(80px, calc((100vw - var(--content-width)) / 2)) 96px;
  background: #f2f5fc;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 460px minmax(0, 700px);
  align-items: start;
  width: min(100%, var(--content-width));
  gap: 120px;
  margin: 0 auto;
}

.faq-section__intro h2 {
  color: var(--color-text-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.faq-section__intro > p {
  width: 100%;
  margin-top: 16px;
  color: var(--color-text-700);
  font-size: 16px;
  line-height: 24px;
}

.faq-section__link {
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-top: 28px;
  padding: 4px 12px 4px 16px;
  color: var(--color-text-700);
  background: #e4e6eb;
  border-radius: 99px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  transition:
    color var(--motion-hover-duration) var(--motion-hover-ease),
    background-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.faq-section__link img {
  width: 24px;
  height: 24px;
  transition: filter var(--motion-hover-duration) var(--motion-hover-ease);
}

.faq-section__link:hover,
.faq-section__link:focus-visible {
  color: #fff;
  background: var(--color-brand);
}

.faq-section__link:hover img,
.faq-section__link:focus-visible img {
  filter: brightness(0) invert(1);
}

.faq-section__list {
  display: grid;
  gap: 12px;
  counter-reset: faq-question;
}

.faq-section__list details {
  position: relative;
  min-height: 72px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-control);
  transition:
    background-color var(--motion-hover-duration) var(--motion-hover-ease),
    box-shadow var(--motion-hover-duration) var(--motion-hover-ease);
  counter-increment: faq-question;
}

.faq-section__list details[open] {
  min-height: 144px;
  background: #fff;
}

.faq-section__list details.is-animating {
  min-height: 0;
  will-change: height;
}

.faq-section__list summary {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 12px;
  padding: 24px;
  color: var(--color-text-900);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
}

.faq-section__list summary::before {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  place-items: center;
  color: var(--color-text-900);
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 4px;
  content: counter(faq-question);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.faq-section__list details[open] summary {
  font-weight: 500;
}

.faq-section__list summary::-webkit-details-marker {
  display: none;
}

.faq-section__list summary > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-section__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faq-section__icon img {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  transition: opacity var(--motion-hover-duration) var(--motion-hover-ease);
}

.faq-section__icon-minus {
  opacity: 0;
}

.faq-section__list details[open] .faq-section__icon-plus {
  opacity: 0;
}

.faq-section__list details[open] .faq-section__icon-minus {
  opacity: 1;
}

.faq-section__list details.is-closing .faq-section__icon-plus {
  opacity: 1;
}

.faq-section__list details.is-closing .faq-section__icon-minus {
  opacity: 0;
}

.faq-section__list summary:focus-visible {
  outline: 3px solid rgba(1, 94, 251, 0.16);
  outline-offset: -6px;
  border-radius: 12px;
}

.faq-section__list details p {
  padding: 0 24px 24px;
  color: var(--color-text-500);
  font-size: 16px;
  line-height: 24px;
}

.faq-section__list details.is-opening p {
  animation: faq-answer-in 400ms var(--motion-hover-ease) both;
}

.faq-section__list details.is-closing p {
  animation: faq-answer-out 280ms ease both;
}

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

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

@keyframes faq-answer-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-3px);
  }
}

@media (max-width: 1400px) {
  .faq-section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .faq-section__inner {
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
    gap: 64px;
  }
}

@media (max-width: 980px) {
  .faq-section {
    padding: 80px 40px;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .faq-section {
    padding: 72px 24px;
  }

  .faq-section__inner {
    gap: 40px;
  }

  .faq-section__intro h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-section__list summary {
    padding: 20px;
  }

  .faq-section__list details p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 24px;
  }
}
.consultation-shell {
  padding: 10px;
  background: #f2f5fc;
}

.consultation-panel {
  position: relative;
  width: 100%;
  min-height: 442px;
  padding: 62px 0 52px;
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
}

.consultation-panel__background,
.consultation-panel__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
}

.consultation-panel__background {
  object-fit: fill;
}

.consultation-panel__canvas {
  display: block;
  opacity: 0;
  transition: opacity 320ms ease;
}

.consultation-panel.is-gradient-ready .consultation-panel__canvas {
  opacity: 1;
}

.consultation-panel__copy {
  position: absolute;
  z-index: 1;
  top: 100px;
  left: 7.042%;
  width: 460px;
}

.consultation-panel__copy h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}

.consultation-panel__copy > p {
  max-width: 460px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 24px;
}

.consultation-panel__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 49.296%;
  height: auto;
  gap: 20px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.consultation-panel > .consultation-panel__form {
  min-height: 328px;
  margin-left: auto;
  margin-right: 4.93%;
}

.consultation-panel__form .consultation-panel__stage {
  grid-column: 1 / -1;
}

.consultation-panel__form label {
  display: grid;
  grid-template-rows: 20px 48px;
  min-width: 0;
  gap: 12px;
}

.consultation-panel__form label > span {
  padding-left: 10px;
  color: var(--color-text-500);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.consultation-panel__form input,
.consultation-panel__form select {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  color: var(--color-text-900);
  background-color: #f2f3f5;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: 0;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.consultation-panel__form input::placeholder,
.consultation-panel__form select:invalid {
  color: var(--color-text-400);
  opacity: 1;
}

.consultation-panel__form select {
  padding-right: 52px;
  background-image: url("../images/consultation-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px 24px;
  -webkit-appearance: none;
  appearance: none;
}

.consultation-panel__form input:focus,
.consultation-panel__form select:focus {
  background-color: #fff;
  border-color: rgba(1, 94, 251, 0.48);
  box-shadow: 0 0 0 3px rgba(1, 94, 251, 0.1);
}

.consultation-panel__submit {
  grid-column: 1 / -1;
  height: 48px;
  padding: 12px 20px;
  color: #fff;
  background: var(--color-brand);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .consultation-panel {
    height: auto;
    min-height: 740px;
    padding: 72px 40px;
  }

  .consultation-panel__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .consultation-panel__copy,
  .consultation-panel__form {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

  .consultation-panel__copy {
    max-width: 560px;
  }

  .consultation-panel__form {
    height: auto;
    margin-top: 48px;
  }

  .consultation-panel > .consultation-panel__form {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .consultation-shell {
    padding: 8px;
  }

  .consultation-panel {
    padding: 72px 24px;
    border-radius: 16px;
  }

  .consultation-panel__form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consultation-panel__canvas {
    transition: none;
  }
}

.blaze-footer-shell {
  padding: 10px;
  background: #f2f5fc;
}

.blaze-footer {
  position: relative;
  min-height: 832px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(51, 115, 255, 0.14), transparent 52%),
    #0a0a0a;
  border-radius: 20px;
  isolation: isolate;
}

.blaze-footer__source {
  display: none;
}

.blaze-footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 832px;
}

.blaze-footer__output {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blaze-footer--fallback .blaze-footer__output {
  display: none;
}

.blaze-footer__cta {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 144px 24px 96px;
  text-align: center;
}

.blaze-footer__cta h2 {
  max-width: 720px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.035em;
}

.blaze-footer__cta p {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 28px;
}

.blaze-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 44px;
  margin-top: 32px;
  padding: 0 24px;
  color: #0a0a0a;
  background: #fff;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity var(--motion-hover-duration) var(--motion-hover-ease);
}

.blaze-footer__button:hover,
.blaze-footer__button:focus-visible {
  opacity: 0.85;
}

.site-footer {
  width: 100%;
  margin: auto 0 0;
  padding: 0 80px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(248px, 1fr) repeat(3, minmax(120px, auto));
  gap: 56px;
  padding: 56px 0 64px;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer__brand > a img {
  width: 78px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 24px;
}

.ai-summary {
  margin-top: 48px;
}

.site-footer__brand .ai-summary__title {
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  background-image:
    linear-gradient(
      108deg,
      transparent 8%,
      rgba(89, 151, 255, 0.72) 38%,
      rgba(255, 255, 255, 0.96) 50%,
      rgba(169, 111, 255, 0.72) 62%,
      transparent 92%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.56));
  background-repeat: no-repeat;
  background-position: -112px 0, 0 0;
  background-size: 112px 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 16px rgba(69, 139, 255, 0.08);
  animation: ai-summary-thinking-scan 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes ai-summary-thinking-scan {
  0%,
  32% {
    background-position: -112px 0, 0 0;
  }

  76%,
  100% {
    background-position: calc(100% + 112px) 0, 0 0;
  }
}

.ai-summary__platforms {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.ai-summary__link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition:
    background-color var(--motion-hover-duration) var(--motion-hover-ease),
    border-color var(--motion-hover-duration) var(--motion-hover-ease),
    transform var(--motion-hover-duration) var(--motion-hover-ease);
}

.ai-summary__link:hover,
.ai-summary__link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.ai-summary__link img {
  width: 24px;
  height: 24px;
}

.site-footer nav {
  min-width: 116px;
}

.site-footer h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.site-footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 22px;
  transition: color var(--motion-hover-duration) var(--motion-hover-ease);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  line-height: 20px;
}

.site-footer__legal > p:last-child {
  justify-self: end;
}

.site-footer__back-to-top {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
  padding: 0;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color var(--motion-hover-duration) var(--motion-hover-ease);
}

.site-footer__back-to-top:hover,
.site-footer__back-to-top:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__back-to-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 99px;
}

.site-footer__back-to-top img {
  width: 32px;
  height: 32px;
}

.floating-sidebar {
  position: fixed;
  z-index: 30;
  top: 50%;
  right: 0;
  width: 80px;
  height: 416px;
  color: var(--color-text-900);
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow-control);
  transform: translateY(-50%);
}

.floating-sidebar__list {
  height: 100%;
  padding: 28px 0;
}

.floating-sidebar__item {
  position: relative;
  width: 80px;
  height: 78px;
}

.floating-sidebar__item--backtop {
  height: 48px;
}

.floating-sidebar__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 80px;
  height: 78px;
  gap: 4px;
  padding: 0;
  color: var(--color-text-500);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.floating-sidebar__button--backtop {
  height: 48px;
}

.floating-sidebar__button:focus-visible {
  outline: 2px solid rgba(1, 94, 251, 0.36);
  outline-offset: -6px;
  border-radius: 8px;
}

.floating-sidebar__icon-surface {
  position: relative;
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  background: #fff;
  border: 1px solid #f2f3f5;
  border-radius: 50%;
  transition:
    background-color var(--motion-hover-duration) var(--motion-hover-ease),
    border-color var(--motion-hover-duration) var(--motion-hover-ease);
}

.floating-sidebar__icon-surface > img:not(.floating-sidebar__icon-hover) {
  width: 24px;
  height: 24px;
  transition: opacity var(--motion-hover-duration) var(--motion-hover-ease);
}

.floating-sidebar__icon-surface .floating-sidebar__icon-hover {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity var(--motion-hover-duration) var(--motion-hover-ease);
}

.floating-sidebar__button:hover .floating-sidebar__icon-surface:not(.floating-sidebar__icon-surface--customer),
.floating-sidebar__button:focus-visible .floating-sidebar__icon-surface:not(.floating-sidebar__icon-surface--customer) {
  background: rgba(1, 94, 251, 0.05);
  border-color: rgba(1, 94, 251, 0.1);
}

.floating-sidebar__item--phone:hover .floating-sidebar__icon-surface > img:first-child,
.floating-sidebar__item--wechat:hover .floating-sidebar__icon-surface > img:first-child,
.floating-sidebar__item--phone .floating-sidebar__button:focus-visible .floating-sidebar__icon-surface > img:first-child,
.floating-sidebar__item--wechat .floating-sidebar__button:focus-visible .floating-sidebar__icon-surface > img:first-child {
  opacity: 0;
}

.floating-sidebar__item--phone:hover .floating-sidebar__icon-hover,
.floating-sidebar__item--wechat:hover .floating-sidebar__icon-hover,
.floating-sidebar__item--phone .floating-sidebar__button:focus-visible .floating-sidebar__icon-hover,
.floating-sidebar__item--wechat .floating-sidebar__button:focus-visible .floating-sidebar__icon-hover {
  opacity: 1;
}

.floating-sidebar__icon-surface--customer {
  background: url("../images/sidebar-customer-bg.jpg") center / cover no-repeat;
  border: 0;
}

.floating-sidebar__icon-surface--customer > img:not(.floating-sidebar__icon-hover) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.floating-sidebar__label {
  color: var(--color-text-500);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.floating-sidebar__popover {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-text-900);
  background: #fff;
  border-radius: 8px;
  box-shadow:
    0 8px 18px -12px rgba(26, 35, 60, 0.05),
    0 4px 16px -6px rgba(26, 35, 60, 0.03),
    0 0 1px rgba(26, 35, 60, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity var(--motion-hover-duration) var(--motion-hover-ease),
    visibility 0s linear var(--motion-hover-duration),
    transform var(--motion-hover-duration) var(--motion-hover-ease);
}

.floating-sidebar__item:hover .floating-sidebar__popover,
.floating-sidebar__button:focus-visible + .floating-sidebar__popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.floating-sidebar__popover--phone {
  top: 0;
  right: calc(100% + 10px);
  width: 202px;
  height: 86px;
  gap: 4px;
  padding: 16px 28px;
  text-align: center;
}

.floating-sidebar__popover--phone strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
}

.floating-sidebar__popover--phone span,
.floating-sidebar__popover--wechat span {
  color: var(--color-text-500);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.floating-sidebar__popover--wechat {
  top: 0;
  right: calc(100% + 12px);
  align-items: flex-start;
  width: 128px;
  gap: 8px;
  padding: 8px;
}

.floating-sidebar__popover--wechat > img {
  width: 112px;
  height: 112px;
}

.floating-sidebar__popover--wechat span {
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .floating-sidebar {
    display: none;
  }
}

@media (max-width: 1140px) {
  .site-footer {
    padding: 0 40px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .blaze-footer-shell {
    padding: 8px;
  }

  .blaze-footer,
  .blaze-footer__content {
    min-height: 900px;
  }

  .blaze-footer {
    border-radius: 16px;
  }

  .blaze-footer__cta {
    padding: 96px 24px 72px;
  }

  .blaze-footer__cta h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .site-footer {
    padding: 0 24px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 48px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .site-footer__legal > p:last-child,
  .site-footer__back-to-top {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --motion-hover-duration: 0.01ms;
  }

  .blaze-footer__output {
    display: none;
  }

  .trusted-brands__track {
    animation: none;
    transform: none;
  }

  .trusted-brands__set + .trusted-brands__set {
    display: none;
  }

  .faq-section__list details.is-opening p,
  .faq-section__list details.is-closing p {
    animation: none;
  }

  .icon-action:hover,
  .icon-action:focus-visible,
  .ai-summary__link:hover,
  .ai-summary__link:focus-visible {
    transform: none;
  }

  .header-wechat__popover {
    transition: none;
  }

  .ai-summary__title {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.62));
    background-position: 0 0;
    background-size: 100% 100%;
    animation: none;
  }
}
