:root {
  --color-header-bg: #faf7f7;
  --color-footer-bg: #027aff;
  --color-primary: #087cff;
  --color-page-bg: #eef3fb;
  --color-text: #151515;
  --color-white: #ffffff;
  --font-sans: "HarmonyOS Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --header-container: 1220px;
  --container: 1240px;
  --page-gutter: clamp(24px, 4vw, 64px);
  --content-width: min(var(--container), calc(100vw - var(--page-gutter) * 2));
  --wide-content-width: min(1548px, calc(100vw - var(--page-gutter) * 2));
  --subpage-hero-height: 401px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: var(--font-sans);
  background: var(--color-page-bg);
}

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

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

main :where(h1, h2, h3, h4, p, figcaption, blockquote, li, b, strong, small) {
  white-space: pre-line;
}

.site-footer :where(h2, h3, p, a, span, strong, small),
.floating-contact__panel :where(h2, p, a, span) {
  white-space: pre-line;
}

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

.site-header {
  width: 100%;
  height: 64px;
  background: var(--color-header-bg);
  position: relative;
  z-index: 20;
}

.site-header__inner {
  width: var(--header-container);
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  color: #111111;
  text-decoration: none;
}

.site-logo__image {
  display: block;
  width: auto;
  height: 28px;
  max-width: 150px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-logo__mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-logo__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.site-logo__text strong {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-logo__text small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.site-logo__fallback {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  height: 100%;
  margin-left: auto;
}

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

.site-nav__link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #202020;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav__dropdown-trigger {
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-sans);
  cursor: pointer;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--color-primary);
}

.site-nav__dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 30;
  min-width: 132px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid rgba(8, 124, 255, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(9, 75, 150, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav__dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(8, 124, 255, 0.08);
  border-top: 1px solid rgba(8, 124, 255, 0.08);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.site-nav__dropdown-menu a {
  position: relative;
  z-index: 1;
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #202020;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav__dropdown-menu a:hover,
.site-nav__dropdown-menu a:focus-visible {
  color: var(--color-primary);
  border-radius: 6px;
  background: rgba(8, 124, 255, 0.08);
}

.site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 12px;
}

.site-nav__item--dropdown:hover .site-nav__dropdown-menu,
.site-nav__item--dropdown:focus-within .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}

.site-header::after {
  display: none;
}

.site-header__toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #151515;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.ai-consult {
  width: 100%;
  height: 240px;
  background:
    url("../img/components/optimized/ai-consult-bg-1980.webp") center / 100% 100% no-repeat,
    #027aff;
  overflow: hidden;
}

.ai-consult__inner {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.ai-consult__robot {
  position: absolute;
  left: 0;
  top: -28px;
  width: 187px;
  height: 283px;
  object-fit: contain;
  transform-origin: 50% 62%;
  filter: drop-shadow(0 14px 18px rgba(0, 44, 129, 0.26));
  animation: ai-robot-float 3.8s ease-in-out infinite;
  will-change: transform;
}

.ai-consult__bubble {
  position: absolute;
  left: 176px;
  top: 48px;
  width: 521px;
  height: 31px;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: rgba(92, 150, 255, 0.94);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.ai-consult__bubble::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 15px solid rgba(92, 150, 255, 0.94);
}

.ai-consult__form {
  position: absolute;
  left: 202px;
  top: 94px;
  width: 870px;
  height: 62px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 20px 0 18px;
  background: var(--color-white);
  border-radius: 10px;
}

.ai-consult__avatar {
  width: 40px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.ai-consult__form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  margin: 0 18px;
  border: 0;
  outline: 0;
  color: #333333;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  background: transparent;
}

.ai-consult__form input::placeholder {
  color: #b4b4b4;
  opacity: 1;
}

.ai-consult__send {
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  color: var(--color-primary);
  background: transparent;
  cursor: pointer;
}

.ai-consult__send img {
  width: 37px;
  height: 31px;
  object-fit: contain;
}

.ai-consult__prompts {
  position: absolute;
  left: 202px;
  top: 174px;
  display: grid;
  grid-template-columns: repeat(3, 224px);
  gap: 27px;
}

.ai-consult__prompts button {
  height: 33px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  background: #35bdf6;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  height: 843px;
  overflow: hidden;
  background:
    url("../img/components/optimized/hero-bg-1980.webp") center top / cover no-repeat,
    #edf4ff;
}

.hero__inner {
  position: relative;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}

.hero__copy {
  position: absolute;
  left: 115px;
  top: 154px;
  z-index: 1;
}

.hero__copy h1 {
  margin: 0;
  color: #080808;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero__copy h1 span {
  display: block;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.hero__cards {
  position: absolute;
  left: 26px;
  top: 513px;
  z-index: 2;
  width: 1189px;
  height: 259px;
  display: grid;
  grid-template-columns: repeat(3, 386px);
  column-gap: 15px;
}

.hero-card {
  width: 386px;
  height: 259px;
  margin: 0;
  padding: 38px 42px 0;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.hero-card__heading {
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-card__icon {
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-card__icon--service {
  width: 71px;
  height: 71px;
}

.hero-card h2 {
  margin: 0;
  color: #080808;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-card__divider {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 27px;
  background: #edf2f8;
}

.hero-card__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 102px;
  height: 3px;
  background: #087cff;
  transform: translateX(-50%);
}

.hero-card--authority .hero-card__divider::after {
  background: #35bdf6;
}

.hero-card p {
  margin: 17px 0 0;
  color: #080808;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero-card--standard {
  padding-left: 32px;
  padding-right: 32px;
}

.solution {
  width: 100%;
  padding: 71px 0 112px;
  background: var(--color-page-bg);
}

.solution__inner {
  width: 1240px;
  margin: 0 auto;
}

.solution__inner h2 {
  margin: 0 0 101px;
  color: #080808;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.solution-map {
  width: 1234px;
  margin: 0 auto;
}

.solution-map img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  user-select: none;
  transform-origin: center;
  transition:
    transform 180ms ease,
    filter 180ms ease;
  will-change: transform;
}

.solution-map img:hover {
  z-index: 5;
  transform: scale(1.035);
  filter:
    drop-shadow(0 10px 18px rgba(31, 104, 212, 0.14))
    drop-shadow(0 0 16px rgba(8, 124, 255, 0.12));
}

.solution-map__roof {
  margin-bottom: 17.25px;
}

.solution-map__headers,
.solution-map__body {
  display: grid;
  grid-template-columns: 202px 813.5px 212px;
  column-gap: 8px;
}

.solution-map__headers {
  margin-bottom: 17.25px;
  align-items: end;
}

.solution-map__body {
  align-items: start;
}

.solution-map__center {
  display: flex;
  flex-direction: column;
  gap: 14.125px;
}

.solution-map__cap-row {
  display: grid;
  grid-template-columns: repeat(2, 399.5px);
  gap: 14.5px;
}

.kox-matrix {
  width: 100%;
  padding: 0 0 111.5px;
  background: var(--color-page-bg);
}

.kox-matrix__inner {
  width: 1267px;
  margin: 0 auto;
}

.kox-matrix__inner h2 {
  margin: 0 0 55px;
  color: #080808;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.kox-matrix__panel {
  width: 1267px;
  margin: 0 auto;
}

.kox-matrix__bar {
  width: 1267px;
  height: 58px;
  object-fit: contain;
}

.kox-matrix__cards {
  width: 1267px;
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  perspective: 1200px;
}

.kox-matrix__card-shell {
  position: relative;
  display: block;
  height: 506px;
  border-radius: 8px;
  isolation: isolate;
  flex: 0 0 auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 260ms ease,
    filter 260ms ease,
    box-shadow 260ms ease;
}

.kox-matrix__card-shell::before {
  display: none;
}

.kox-matrix__card-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 174, 255, 0);
  pointer-events: none;
  transition: box-shadow 260ms ease;
}

.kox-matrix__card-shell:hover {
  transform: translate3d(0, -14px, 0) scale(1.025) rotateX(2deg);
  filter: drop-shadow(0 18px 22px rgba(0, 117, 255, 0.28));
  box-shadow: 0 0 0 1px rgba(63, 207, 255, 0.42), 0 0 26px rgba(0, 140, 255, 0.42), 0 0 54px rgba(0, 119, 255, 0.24);
}

.kox-matrix__card-shell:hover::before {
  display: none;
}

.kox-matrix__card-shell:hover::after {
  box-shadow: inset 0 0 0 1px rgba(82, 218, 255, 0.72), inset 0 0 24px rgba(0, 149, 255, 0.18);
}

.kox-matrix__card {
  width: auto;
  height: 506px;
  object-fit: contain;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.kox-matrix__card-shell:hover .kox-matrix__card {
  filter: brightness(1.08) saturate(1.12) contrast(1.03);
}

.clients-standard {
  /* Tune this carousel here; global container rules should not override it. */
  --clients-standard-width: 1651px;
  --clients-standard-viewport-width: min(var(--clients-standard-width), calc(100vw - var(--page-gutter) * 2));
  --clients-standard-height: 848px;
  --clients-standard-image-width: 1980px;
  --clients-standard-image-height: var(--clients-standard-height);
  --clients-standard-gap: 13px;
  --clients-standard-offset-x: -333px;
  width: 100%;
  padding: 0 0 57px;
  overflow: hidden;
  background: var(--color-page-bg);
}

.clients-standard__inner {
  width: var(--clients-standard-viewport-width);
  max-width: none;
  margin: 0 auto;
}

.clients-standard__inner h2 {
  margin: 0 0 49px;
  color: #080808;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0;
}

.clients-standard__viewport {
  position: relative;
  width: var(--clients-standard-viewport-width);
  height: var(--clients-standard-height);
  overflow: hidden;
}

.clients-standard__viewport::before,
.clients-standard__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 64px;
  height: 100%;
  pointer-events: none;
}

.clients-standard__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(238, 243, 251, 0.24) 0%, rgba(238, 243, 251, 0.1) 45%, rgba(238, 243, 251, 0) 100%);
}

.clients-standard__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(238, 243, 251, 0.24) 0%, rgba(238, 243, 251, 0.1) 45%, rgba(238, 243, 251, 0) 100%);
}

.clients-standard__track {
  width: max-content;
  height: var(--clients-standard-height);
  display: flex;
  align-items: flex-start;
  gap: var(--clients-standard-gap);
  animation: clients-standard-scroll 36s linear infinite;
  will-change: transform;
}

.clients-standard__image {
  width: var(--clients-standard-image-width);
  height: var(--clients-standard-image-height);
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes clients-standard-scroll {
  from {
    transform: translateX(var(--clients-standard-offset-x));
  }

  to {
    transform: translateX(calc(var(--clients-standard-offset-x) - var(--clients-standard-image-width) - var(--clients-standard-gap)));
  }
}

@keyframes ai-robot-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg);
  }
}

@keyframes solution-hero-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.015);
  }

  50% {
    transform: translate3d(-18px, -8px, 0) scale(1.04);
  }
}

.site-footer {
  width: 100%;
  min-height: 695px;
  color: var(--color-white);
  background: var(--color-footer-bg);
}

.site-footer__inner {
  position: relative;
  width: 1244px;
  min-height: 695px;
  margin: 0 auto;
  padding-top: 0;
}

.site-footer__identity {
  width: auto;
}

.site-footer__brand {
  position: absolute;
  left: 0;
  top: 95px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--color-white);
  text-decoration: none;
}

.site-footer__brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 190px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer__brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer__brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.site-footer__brand-text strong {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer__brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-footer__brand-fallback {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer__logo {
  position: absolute;
  left: 0;
  top: 95px;
  width: 175px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__contact {
  position: absolute;
  left: 1px;
  top: 192px;
  width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer__contact p {
  margin: 0;
}

.site-footer__codes {
  position: absolute;
  left: 1px;
  top: 287px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 21px;
}

.site-footer__code {
  width: 126px;
  margin: 0;
  text-align: center;
}

.site-footer__code img {
  width: 126px;
  height: 126px;
  border-radius: 6px;
  object-fit: contain;
}

.site-footer__code figcaption {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__nav {
  position: absolute;
  left: 519px;
  top: 109px;
  display: grid;
  grid-template-columns: 130px 150px 130px 130px;
  column-gap: 64px;
  align-items: start;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  min-width: 96px;
}

.site-footer__title {
  margin: 0 0 51px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__column a + a {
  margin-top: 33px;
}

.site-footer__divider {
  position: absolute;
  left: 1px;
  top: 475px;
  width: 777px;
  height: 1px;
  background: rgba(255, 255, 255, 0.88);
}

.site-footer__address {
  position: absolute;
  left: 1px;
  top: 499px;
  width: 790px;
}

.site-footer__address h2 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.site-footer__address-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 58px;
  row-gap: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  white-space: nowrap;
}

.site-footer__address-grid p {
  margin: 0;
  white-space: nowrap;
}

.floating-contact {
  position: fixed;
  right: clamp(20px, 2.5vw, 36px);
  top: 50%;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #253a5f;
  transform: translateY(-50%);
  max-width: calc(100vw - 40px);
  pointer-events: none;
}

.floating-contact__panels {
  position: relative;
  width: clamp(240px, 24vw, 328px);
  min-height: 124px;
  pointer-events: none;
}

.floating-contact__panel {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(100%, 320px);
  min-height: 124px;
  padding: 30px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(31, 97, 199, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(14px, -50%, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.floating-contact__panel--wechat {
  width: min(220px, 100%);
  height: 272px;
  padding: 26px 18px 22px;
  text-align: center;
}

.floating-contact__panel--wechat h2 {
  margin: 0 0 20px;
  color: #253a5f;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.floating-contact__panel--wechat img {
  width: 138px;
  height: 138px;
  margin: 0 auto;
  object-fit: contain;
}

.floating-contact__panel--wechat p {
  margin: 19px 0 0;
  color: #101010;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.floating-contact__panel--phone {
  width: min(100%, 320px);
  min-height: 124px;
  height: auto;
  padding: clamp(22px, 2vw, 30px) clamp(18px, 2vw, 24px) clamp(18px, 1.8vw, 22px);
}

.floating-contact__panel--phone h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #253a5f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.floating-contact__panel--phone p {
  margin: 15px 0 0;
  color: #1686ff;
  max-width: 100%;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.floating-contact__rail {
  width: 70px;
  min-height: 138px;
  padding: 10px 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(31, 97, 199, 0.22);
  pointer-events: auto;
}

.floating-contact__button {
  position: relative;
  width: 70px;
  height: 59px;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #253a5f;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.floating-contact__button + .floating-contact__button::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: #e8eef7;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible,
.floating-contact__button.is-active {
  color: #1686ff;
  background: rgba(22, 134, 255, 0.07);
  outline: none;
}

.floating-contact__icon,
.floating-contact__panel-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.floating-contact__panel-icon {
  width: 20px;
  height: 20px;
}

.floating-contact svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tech-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}

.tech-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 124, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 124, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 72%);
  animation: tech-grid-drift 18s linear infinite;
}

.site-header,
.site-footer,
.floating-contact {
  z-index: 90;
}

.site-header {
  box-shadow: 0 1px 0 rgba(8, 124, 255, 0.08);
}

.site-logo__image,
.site-logo__mark {
  filter: drop-shadow(0 0 8px rgba(8, 124, 255, 0.2));
}

.site-nav__link {
  position: relative;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.8);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  width: 22px;
}

.tech-hero {
  position: relative;
  isolation: isolate;
}

.tech-hero::before,
.tech-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tech-hero::before {
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(8, 124, 255, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(8, 124, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(8, 124, 255, 0.1) 47% 48%, transparent 49% 100%);
  background-size: 120px 120px, 120px 120px, 360px 360px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 78%);
  animation: tech-grid-drift 20s linear infinite;
}

.tech-hero::after {
  display: none;
}

.ai-consult__inner,
.hero__inner,
.solution-page-hero__inner,
.operation-hero__inner,
.industry-hero__inner,
.honors-hero__inner,
.about-founder__inner,
.industry-case > *,
.solution-page-map > *,
.news-hero h1,
.news-hero p {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  z-index: 2;
}

.ai-consult.tech-hero::before,
.industry-case.tech-hero::before {
  opacity: 0.2;
}

.tech-card {
  position: relative;
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.tech-card::before,
.tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.tech-card::before {
  display: none;
}

.tech-card::after {
  background:
    radial-gradient(circle at var(--glint-x, 50%) var(--glint-y, 50%), rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(31, 139, 255, 0.08) 48%, transparent 58%);
  mix-blend-mode: screen;
}

.tech-card:hover {
  transform: translate3d(0, -4px, 0);
  filter: saturate(1.05);
}

.tech-card:hover::after {
  opacity: 1;
}

.operation-card.tech-card:hover,
.news-card.tech-card:hover,
.about-value-card.tech-card:hover {
  box-shadow: 0 14px 30px rgba(31, 104, 212, 0.1);
}

.kox-matrix__card-shell.tech-card:hover {
  box-shadow: none;
}

.honors-award.tech-card::before,
.honors-award.tech-card::after,
.industry-metrics article.tech-card::before,
.industry-metrics article.tech-card::after {
  border-radius: 8px;
}

.honors-award.tech-card::before,
.honors-award.tech-card::after {
  display: none;
  content: none;
}

.honors-award.tech-card:hover {
  transform: none;
  filter: none;
}

.honors-award.tech-card:hover img {
  transform: scale(1.045);
  filter:
    drop-shadow(0 10px 12px rgba(44, 65, 104, 0.22))
    drop-shadow(0 0 16px rgba(8, 124, 255, 0.16));
}

.tech-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--tech-delay, 0ms);
}

.tech-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

main > section:first-child.tech-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.tech-control {
  position: relative;
  overflow: hidden;
}

.tech-control::before {
  display: none;
}

.tech-control:hover::before,
.tech-control:focus-visible::before {
  left: 135%;
}

.solution-map.tech-card,
.hero-card.tech-card {
  border-radius: 8px;
}

.solution-map.tech-card:hover {
  transform: none;
  filter: none;
}

.solution-map.tech-card::after {
  display: none;
}

.solution-map.tech-card::before,
.hero-card.tech-card::before {
  display: none;
}

.industry-metrics article {
  overflow: hidden;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

@keyframes tech-grid-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 120px 120px, 120px 120px, 360px 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .tech-layer::before,
  .tech-hero::before,
  .tech-hero::after,
  .site-footer::before {
    animation: none;
  }

  .tech-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tech-card,
  .tech-control::before {
    transition: none;
  }
}

.solution-page {
  background: #020617;
  color: #ffffff;
}

.solution-page--claw {
  min-height: 1000px;
  overflow: hidden;
}

.claw-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  padding: clamp(58px, 7vw, 88px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(124, 58, 237, 0.16), transparent 46%),
    linear-gradient(135deg, #050816 0%, #111827 46%, #050816 100%);
}

.claw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(124, 58, 237, 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.claw-hero__glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(44px);
  opacity: 0.32;
}

.claw-hero__glow--one {
  left: 9%;
  top: 18%;
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.46);
}

.claw-hero__glow--two {
  right: 12%;
  bottom: 14%;
  width: 380px;
  height: 380px;
  background: rgba(124, 58, 237, 0.42);
}

.claw-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.92fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: center;
}

.claw-hero__copy {
  min-width: 0;
}

.claw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 15px;
  border: 1px solid rgba(96, 165, 250, 0.52);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.22);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.claw-badge svg,
.claw-button svg,
.claw-feature-card svg,
.claw-skill-card svg,
.claw-skill-comparison svg,
.claw-testimonial-card svg,
.claw-scenario-card svg,
.claw-summary-card svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.claw-hero h1 {
  margin: 28px 0 22px;
  color: #ffffff;
  font-size: clamp(46px, 4.6vw, 72px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.claw-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #3b82f6, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
}

.claw-hero__subtitle {
  margin: 0 0 14px;
  color: #d1d5db;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.45;
}

.claw-hero__meta {
  margin: 0 0 36px;
  color: #9ca3af;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.claw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 168px;
  min-height: 58px;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.claw-button:hover,
.claw-button:focus-visible {
  transform: translateY(-2px);
}

.claw-button--primary {
  background: #1d4ed8;
  box-shadow: 0 18px 34px rgba(29, 78, 216, 0.34);
}

.claw-button--primary:hover,
.claw-button--primary:focus-visible {
  background: #2563eb;
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.44);
}

.claw-button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.claw-button--ghost:hover,
.claw-button--ghost:focus-visible {
  border-color: rgba(147, 197, 253, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.claw-hero__visual {
  display: flex;
  justify-content: flex-start;
}

.claw-visual {
  position: relative;
  width: min(38vw, 620px);
  min-width: 390px;
  aspect-ratio: 1;
  transform: translateX(-40px);
  border: 2px solid rgba(59, 130, 246, 0.26);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(30, 64, 175, 0.34));
  box-shadow:
    inset 0 0 55px rgba(96, 165, 250, 0.1),
    0 0 90px rgba(59, 130, 246, 0.22);
}

.claw-visual::before {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.claw-visual__image-wrap {
  width: calc(100% - 44px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(30, 64, 175, 0.22));
}

.claw-visual__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.claw-visual__bubble {
  position: absolute;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.34);
}

.claw-visual__bubble--chat {
  top: 7%;
  right: 11%;
  width: 64px;
  height: 64px;
  grid-template-columns: repeat(2, 12px);
  gap: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  animation: claw-float 4.5s ease-in-out infinite;
}

.claw-visual__bubble--chat i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.claw-visual__bubble--chart {
  left: 10%;
  bottom: 12%;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  transform: rotate(12deg);
}

.claw-visual__bubble--spark {
  left: 13%;
  top: 12%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.claw-features {
  padding: clamp(46px, 5vw, 64px) 0;
  background: #020617;
}

.claw-features__inner {
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 32px);
}

.claw-feature-card {
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(30, 64, 175, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.claw-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.54);
  background: rgba(30, 64, 175, 0.46);
}

.claw-feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.28);
}

.claw-feature-card__icon-svg {
  width: 30px;
  height: 30px;
}

.claw-feature-card__icon-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.claw-feature-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.claw-feature-card p {
  min-height: 100px;
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.72;
}

.claw-skills {
  padding: clamp(70px, 7vw, 104px) 0 clamp(42px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 4%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(124, 58, 237, 0.14), transparent 32%),
    #020617;
}

.claw-skills__inner,
.claw-skill-comparison__inner {
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto;
}

.claw-skills__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.claw-skills__categories span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(147, 197, 253, 0.13);
  border-radius: 14px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.claw-skills__categories b {
  font-size: 15px;
  font-weight: 800;
}

.claw-skills__categories em {
  min-width: 36px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.28);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.claw-skills__head {
  margin-bottom: 42px;
  text-align: center;
}

.claw-skills__head h2,
.claw-skill-comparison h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.22;
}

.claw-skills__head p,
.claw-skill-comparison > .claw-skill-comparison__inner > p {
  max-width: 760px;
  margin: 0 auto;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.65;
}

.claw-skills__head small {
  display: block;
  margin-top: 10px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

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

.claw-skill-card {
  min-width: 0;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.claw-skill-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.46);
  background: rgba(30, 64, 175, 0.34);
}

.claw-skill-card h3 {
  min-height: 50px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.38;
}

.claw-skill-card p {
  min-height: 48px;
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
}

.claw-skill-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-bottom: 18px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.3;
}

.claw-skill-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

.claw-skill-card__meta b {
  font-size: 14px;
}

.claw-skill-card__star {
  width: 16px;
  height: 16px;
  color: #facc15;
  fill: currentColor;
  stroke: currentColor;
}

.claw-skill-card__effect {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #60a5fa;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.claw-skill-card__zap {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.claw-skill-comparison {
  padding: 32px 0 54px;
  background: #020617;
}

.claw-skill-comparison__inner {
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgba(147, 197, 253, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 31, 58, 0.78));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.claw-skill-comparison h2 {
  font-size: clamp(28px, 2.6vw, 38px);
}

.claw-skill-comparison__table-wrap {
  margin-top: 34px;
  overflow-x: auto;
}

.claw-skill-comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.claw-skill-comparison th,
.claw-skill-comparison td {
  padding: 17px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.claw-skill-comparison th {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 900;
}

.claw-skill-comparison th:first-child,
.claw-skill-comparison td:first-child {
  text-align: left;
}

.claw-skill-comparison td strong,
.claw-skill-comparison td small {
  display: block;
}

.claw-skill-comparison td strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.claw-skill-comparison td small {
  margin-top: 4px;
  color: rgba(248, 113, 113, 0.78);
  font-size: 12px;
}

.claw-skill-comparison td span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.3;
}

.claw-skill-comparison .is-old {
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
}

.claw-skill-comparison .is-new {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.13);
  font-weight: 800;
}

.claw-skill-comparison td b {
  color: #4ade80;
  font-size: 20px;
  font-weight: 900;
}

.claw-testimonials {
  padding: clamp(42px, 4vw, 56px) 0 clamp(54px, 5vw, 72px);
  overflow: hidden;
  background: #020617;
}

.claw-testimonials__head {
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto 38px;
  text-align: center;
}

.claw-testimonials__head h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.25;
}

.claw-testimonials__head h2 span {
  color: #60a5fa;
}

.claw-testimonials__head p {
  max-width: 800px;
  margin: 0 auto;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.7;
}

.claw-testimonials__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.claw-testimonials__viewport::before,
.claw-testimonials__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(130px, 10vw);
  height: 100%;
  pointer-events: none;
}

.claw-testimonials__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #020617, rgba(2, 6, 23, 0));
}

.claw-testimonials__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #020617, rgba(2, 6, 23, 0));
}

.claw-testimonials__track {
  display: flex;
  width: max-content;
  animation: claw-testimonial-marquee 42s linear infinite;
  will-change: transform;
}

.claw-testimonial-card {
  flex: 0 0 320px;
  width: 320px;
  min-height: 238px;
  margin: 0 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.claw-testimonial-card__quote {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: #60a5fa;
}

.claw-testimonial-card > p {
  min-height: 78px;
  margin: 0 0 18px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
}

.claw-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.claw-testimonial-card__author > span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.claw-testimonial-card strong,
.claw-testimonial-card small {
  display: block;
}

.claw-testimonial-card strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
}

.claw-testimonial-card small {
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.claw-scenarios {
  position: relative;
  padding: clamp(72px, 7vw, 112px) 0 clamp(48px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 18%, rgba(124, 58, 237, 0.16), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.16), transparent 36%),
    #111322;
}

.claw-scenarios::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(124, 58, 237, 0.12) 1px, transparent 1px);
  background-size: 82px 82px;
}

.claw-scenarios__inner,
.claw-scenario-summary__inner,
.claw-brand-tags__inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto;
}

.claw-scenarios__head {
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

.claw-scenarios__head h2,
.claw-scenario-summary h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1.22;
}

.claw-scenarios__head p {
  margin: 0;
  color: #a7adbd;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}

.claw-scenarios__list {
  display: grid;
  gap: 28px;
}

.claw-scenario-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 26px;
  background: rgba(30, 31, 58, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.claw-scenario-card__title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.claw-scenario-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: #c084fc;
}

.claw-scenario-card__icon svg {
  width: 34px;
  height: 34px;
}

.claw-scenario-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.claw-scenario-card__title p {
  margin: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
}

.claw-scenario-card__block {
  margin-top: 28px;
}

.claw-scenario-card__block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.claw-scenario-card__block--pain h4 {
  color: #f87171;
}

.claw-scenario-card__block--pain h4 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
}

.claw-scenario-card__block--solution h4 {
  color: #4ade80;
}

.claw-scenario-card__mini-icon {
  width: 17px;
  height: 17px;
}

.claw-scenario-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.claw-scenario-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.65;
}

.claw-scenario-list-item--pain {
  color: #9ca3af;
}

.claw-scenario-list-item--pain > span {
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  margin-top: 11px;
  border-radius: 50%;
  background: #f87171;
}

.claw-scenario-list-item__icon {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: #4ade80;
}

.claw-scenario-card__result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.claw-scenario-card__promise,
.claw-scenario-card__quote,
.claw-scenario-metric {
  border: 1px solid rgba(147, 197, 253, 0.08);
  background: rgba(15, 23, 42, 0.36);
}

.claw-scenario-card__promise {
  padding: 26px;
  border-radius: 18px;
}

.claw-scenario-card__promise > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #facc15;
  font-size: 15px;
  font-weight: 900;
}

.claw-scenario-card__zap {
  width: 24px;
  height: 24px;
}

.claw-scenario-card__promise strong {
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.claw-scenario-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.claw-scenario-metric {
  display: grid;
  gap: 4px;
  min-height: 104px;
  align-content: center;
  padding: 16px 10px;
  border-radius: 13px;
  text-align: center;
}

.claw-scenario-metric span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

.claw-scenario-metric del {
  color: #f87171;
  font-size: 14px;
  line-height: 1.3;
}

.claw-scenario-metric strong {
  color: #4ade80;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.claw-scenario-card__quote {
  margin: 0;
  padding: 26px;
  border-radius: 18px;
}

.claw-scenario-card__quote blockquote {
  margin: 0 0 20px;
  color: #d1d5db;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
}

.claw-scenario-card__quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.claw-scenario-card__quote figcaption > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 15px;
  font-weight: 900;
}

.claw-scenario-card__quote strong,
.claw-scenario-card__quote small {
  display: block;
}

.claw-scenario-card__quote strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.claw-scenario-card__quote small {
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.claw-scenario-summary {
  padding: 26px 0 46px;
  background: #111322;
}

.claw-scenario-summary__stats {
  text-align: center;
}

.claw-scenario-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.claw-summary-card {
  min-height: 160px;
  padding: 28px 18px;
  border: 1px solid rgba(147, 197, 253, 0.08);
  border-radius: 15px;
  background: rgba(30, 31, 58, 0.62);
  text-align: center;
}

.claw-summary-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 13px;
  color: #60a5fa;
}

.claw-summary-card svg {
  width: 34px;
  height: 34px;
}

.claw-summary-card strong,
.claw-summary-card small {
  display: block;
}

.claw-summary-card strong {
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
}

.claw-summary-card small {
  margin-top: 6px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

.claw-brand-tags {
  padding: 12px 0 clamp(72px, 7vw, 100px);
  background: #111322;
}

.claw-brand-tags__inner {
  text-align: center;
}

.claw-brand-tags p {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 17px;
  line-height: 1.7;
}

.claw-brand-tags p span {
  color: #60a5fa;
  font-weight: 900;
}

.claw-brand-tags__inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0.82;
}

.claw-brand-tags__inner > div span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
}

@keyframes claw-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes claw-testimonial-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Solutions page */
.solutions-page {
  min-height: 1000px;
  background: #eef3fb;
}

.solutions-hero {
  position: relative;
  width: 100%;
  height: 721px;
  overflow: hidden;
  background:
    url("../img/components/optimized/solution-page-hero-1980.webp") center top / max(1980px, 100%) auto no-repeat,
    #087cff;
}

.solutions-hero__inner {
  position: relative;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}

.solutions-hero h1 {
  position: absolute;
  left: 0;
  top: 243px;
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.solutions-hero p {
  position: absolute;
  left: 0;
  top: 325px;
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.solutions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 42px;
  border-radius: 4px;
  color: #ffffff;
  background: #35bdf6;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.solutions-button:hover,
.solutions-button:focus-visible {
  transform: translateY(-2px);
  background: #42c8ff;
  box-shadow: 0 12px 22px rgba(0, 114, 224, 0.18);
}

.solutions-hero .solutions-button {
  position: absolute;
  left: 0;
  top: 386px;
}

.solutions-overview {
  width: 100%;
  padding: 56px 0 72px;
  background: #eef3fb;
}

.solutions-overview__inner {
  width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.solutions-overview h2 {
  margin: 0;
  color: #080808;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.solutions-overview__lead {
  width: 980px;
  margin: 27px auto 0;
  color: #151515;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

.solutions-grid {
  width: 1054px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 34px 32px;
}

.solutions-card {
  position: relative;
  min-height: 284px;
  padding: 34px 40px 30px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(38, 89, 160, 0.06);
  text-align: left;
  transition:
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.solutions-card:hover,
.solutions-card:focus-within {
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(38, 89, 160, 0.1);
}

.solutions-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(9, 45, 86, 0.11);
}

.solutions-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b7cff 0%, #33c8ff 100%);
}

.solutions-card__icon svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-card__icon img {
  width: 29px;
  height: 29px;
  display: block;
  object-fit: contain;
}

.solutions-card__head h3 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.solutions-card ul {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #595f67;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.solutions-card li {
  margin: 0;
  white-space: nowrap;
}

.solutions-card__cta {
  position: absolute;
  left: 50%;
  top: 151px;
  z-index: 3;
  width: 116px;
  height: 38px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #ffffff;
  background: #087cff;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background-color 180ms ease;
}

.solutions-card__cta:hover,
.solutions-card__cta:focus-visible {
  background: #006ee8;
}

.solutions-card:hover ul,
.solutions-card:focus-within ul {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.solutions-card:hover .solutions-card__cta,
.solutions-card:focus-within .solutions-card__cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.solutions-advantages {
  width: 100%;
  padding: 0 0 72px;
  background: #eef3fb;
}

.solutions-advantages__inner {
  width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.solutions-advantages h2 {
  margin: 0 0 48px;
  color: #080808;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.solutions-advantages__grid {
  width: 1187px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 281px);
  gap: 21px;
}

.solutions-advantage-card {
  width: 281px;
  min-height: 366px;
  padding: 50px 45px 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(38, 89, 160, 0.05);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.solutions-advantage-card:hover {
  transform: translate3d(0, -4px, 0);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(38, 89, 160, 0.09);
}

.solutions-advantage-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #087cff;
}

.solutions-advantage-card__icon svg {
  width: 48px;
  height: 48px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-advantage-card__icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.solutions-advantage-card:nth-child(1) .solutions-advantage-card__icon,
.solutions-advantage-card:nth-child(3) .solutions-advantage-card__icon {
  color: #20c8e8;
}

.solutions-advantage-card h3 {
  margin: 0;
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.solutions-advantage-card__line {
  width: 100%;
  height: 1px;
  margin: 26px auto 27px;
  background: rgba(9, 45, 86, 0.11);
}

.solutions-advantage-card p {
  margin: 0;
  color: #6a7079;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .solutions-button,
  .solutions-card,
  .solutions-advantage-card,
  .solutions-card ul,
  .solutions-card__cta {
    transition: none;
  }

  .solutions-button:hover,
  .solutions-button:focus-visible,
  .solutions-card:hover,
  .solutions-advantage-card:hover {
    transform: none;
  }
}

/* Operation strategy page */
.operation-page {
  min-height: 1000px;
  background: var(--color-page-bg);
}

.operation-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: url("../img/components/optimized/operation-hero-1980.webp") center top / 1980px 560px no-repeat;
}

.operation-hero__inner {
  position: relative;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}

.operation-hero h1 {
  position: absolute;
  left: 53px;
  top: 184px;
  margin: 0;
  color: #050505;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.operation-hero p {
  position: absolute;
  left: 53px;
  top: 281px;
  margin: 0;
  color: #080808;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.operation-content {
  width: 100%;
  padding: 40px 0 86px;
  background: var(--color-page-bg);
}

.operation-tabs {
  width: 1192px;
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(248, 250, 255, 0.92);
}

.operation-tabs__item {
  position: relative;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.operation-tabs__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22px;
  width: 1px;
  height: 68px;
  background: rgba(0, 0, 0, 0.18);
}

.operation-tabs__item:last-child::after,
.operation-tabs__item.is-active::after,
.operation-tabs__item:has(+ .operation-tabs__item.is-active)::after {
  display: none;
}

.operation-tabs__item.is-active {
  color: #ffffff;
  background: #087cff;
  border-radius: 8px;
  font-size: 20px;
}

.operation-tabs__item:hover {
  color: #087cff;
}

.operation-tabs__item.is-active:hover {
  color: #ffffff;
}

.operation-tabs__item:active {
  transform: scale(0.985);
}

.operation-articles {
  width: 1224px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 280px);
  column-gap: 34px;
  row-gap: 54px;
}

.operation-empty {
  width: var(--content-width);
  margin: 48px auto 0;
  color: rgba(8, 8, 8, 0.56);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.operation-card-link[hidden],
.operation-card[hidden],
.operation-empty[hidden] {
  display: none !important;
}

.operation-card {
  display: flex;
  flex-direction: column;
  width: 280px;
  height: 360px;
  padding: 14px 13px 18px;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.operation-card__cover {
  width: 262px;
  height: 159px;
  object-fit: cover;
  border-radius: 3px;
}

.operation-card h2 {
  min-height: 48px;
  margin: 7px 0 0;
  overflow: hidden;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.operation-card__excerpt {
  flex: 0 0 81px;
  width: 247px;
  height: 81px;
  margin: 3px auto 0;
  padding: 17px 16px 0;
  overflow: hidden;
  color: #757575;
  background: #f9f9f9;
  border-radius: 3px;
  font-family: "OPPOSans", var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
}

.operation-card__keywords {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  max-height: 116px;
  margin: 18px 2px 0;
  padding-top: 14px;
  overflow: hidden;
  border-top: 1px solid #edf2f7;
}

.operation-card__keyword {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(8, 124, 255, 0.16);
  border-radius: 999px;
  color: #087cff;
  background: #f1f7ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.operation-card__keyword:nth-child(3n + 2) {
  color: #0a9c80;
  border-color: rgba(10, 156, 128, 0.18);
  background: #effbf8;
}

.operation-card__keyword:nth-child(3n) {
  color: #4d63d8;
  border-color: rgba(77, 99, 216, 0.18);
  background: #f4f6ff;
}

.operation-card__author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: auto 0 0 3px;
  color: #8d8d8d;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.operation-card__avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #dbeefe;
}

.operation-card__avatar img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  object-position: center top;
}

/* About page */
.about-page {
  background: var(--color-page-bg);
}

.about-hero {
  position: relative;
  width: 100%;
  height: clamp(220px, 17vw, 320px);
  min-height: 0;
  overflow: hidden;
  background: #eef3fb url("../img/components/optimized/about-hero-bg-1978.webp") center center / contain no-repeat;
}

.about-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--about-hero-media-position, center 34%);
  background: #eef3fb;
  pointer-events: none;
  user-select: none;
}

.about-hero__video::-webkit-media-controls {
  display: none !important;
}

.about-hero h1 {
  --about-hero-title-left: clamp(236px, 24.6vw, 336px);
  position: absolute;
  z-index: 1;
  left: var(--about-hero-title-left);
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(604px, 63.18vw, 863px);
  height: 48px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030303;
  font-family: "阿里妈妈方圆体 VF", "Alimama FangYuanTi VF", var(--font-sans);
  font-size: clamp(34px, 4.03vw, 55px);
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0;
}

.about-intro {
  width: 100%;
  height: 904px;
  background: var(--color-page-bg);
}

.about-intro__inner {
  width: 1162px;
  margin: 0 auto;
  padding-top: 101px;
}

.about-intro__row {
  display: grid;
  grid-template-columns: 520px 594px;
  column-gap: 48px;
  align-items: start;
}

.about-intro__copy h2,
.about-history__inner h2,
.about-founder__inner h2,
.about-office__inner h2 {
  margin: 0;
  color: #030303;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-intro__copy p {
  margin: 37px 0 0;
  color: #111111;
  font-size: 18px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0;
}

.about-intro__copy p + p {
  margin-top: 5px;
}

.about-intro__visual {
  width: 594px;
  height: 369px;
  object-fit: cover;
}

.about-values {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, 274px);
  column-gap: 18px;
}

.about-value-card {
  width: 274px;
  height: 302px;
  padding: 37px 27px 0;
  border-radius: 16px;
  background: #ffffff;
}

.about-value-card img {
  width: 37px;
  height: 38px;
  object-fit: contain;
}

.about-value-card h3 {
  margin: 36px 0 0;
  color: #030303;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.about-value-card strong {
  display: block;
  margin-top: 22px;
  color: #e6e6e6;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.about-value-card p {
  margin: 26px 0 0;
  color: #69717f;
  font-size: 15px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0;
}

.about-history {
  width: 100%;
  height: 1112px;
  overflow: hidden;
  background: #f8fbff;
}

.about-history__inner {
  width: 1548px;
  margin: 0 auto;
  padding-top: 80px;
}

.about-history__inner h2,
.about-history__inner p {
  width: var(--content-width);
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.about-history__inner p {
  margin-top: 24px;
  margin-bottom: 0;
  color: #030303;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-history__inner img {
  width: 1548px;
  height: 689px;
  margin-top: 113px;
  object-fit: contain;
}

.about-history--scroll-pan {
  position: relative;
}

.about-history__pan-image {
  transform: translate3d(var(--history-pan-x, 0px), 0, 0);
  transition: none;
  will-change: transform;
}

.about-founder {
  width: 100%;
  height: 469px;
  background: var(--color-page-bg);
}

.about-founder__inner {
  position: relative;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding-top: 71px;
}

.about-founder__bio {
  width: 820px;
  margin-top: 121px;
  margin-left: 0;
}

.about-founder__bio h3 {
  margin: 0;
  color: #030303;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-founder__bio p {
  margin: 36px 0 0;
  color: #111111;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0;
}

.about-founder__portrait {
  position: absolute;
  right: -27px;
  top: 84px;
  width: 341px;
  height: 390px;
  object-fit: contain;
}

.about-method {
  width: 100%;
  height: auto;
  padding: 56px 0 64px;
  background: #f8fbff;
}

.about-method__inner {
  width: 1120px;
  margin: 0 auto;
  padding-top: 0;
}

.about-method__inner p {
  width: min(1080px, 100%);
  margin: 0;
  color: #111111;
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0;
}

.about-method__inner img {
  width: 708px;
  height: 499px;
  margin: 48px auto 0;
  object-fit: contain;
}

.about-office {
  width: 100%;
  height: auto;
  padding: 76px 0 72px;
  background: var(--color-page-bg);
  overflow: hidden;
}

.about-office__inner {
  width: 1980px;
  margin: 0 auto;
  padding-top: 0;
}

.about-office__inner h2 {
  width: 1162px;
  margin: 0 auto;
}

.about-office__carousel {
  position: relative;
  width: 1980px;
  height: 277px;
  margin-top: 56px;
  overflow: hidden;
}

.about-office__carousel::before,
.about-office__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.about-office__carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-page-bg) 0%, rgba(238, 243, 251, 0) 100%);
}

.about-office__carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-page-bg) 0%, rgba(238, 243, 251, 0) 100%);
}

.about-office__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: about-office-marquee 24s linear infinite;
  will-change: transform;
}

.about-office__track img {
  width: 421px;
  height: 277px;
  flex: 0 0 auto;
  object-fit: cover;
}

.about-cta,
.site-bottom-cta,
.industry-cta {
  width: 100%;
  padding: clamp(42px, 3.1vw, 56px) var(--page-gutter) clamp(46px, 3.4vw, 62px);
  background: var(--color-page-bg);
  text-align: center;
}

.about-cta__inner,
.site-bottom-cta__inner {
  width: var(--content-width);
  max-width: var(--container);
  margin: 0 auto;
}

.about-cta h2,
.site-bottom-cta h2,
.industry-cta h2 {
  margin: 0;
  color: #030303;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-cta p,
.site-bottom-cta p,
.industry-cta p {
  margin: 16px 0 0;
  color: #111111;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.about-cta__button,
.site-bottom-cta__button,
.industry-cta .industry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 136px;
  height: 52px;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: 4px;
  background: #35bdf6;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(53, 189, 246, 0.18);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.about-cta__button:hover,
.about-cta__button:focus-visible,
.site-bottom-cta__button:hover,
.site-bottom-cta__button:focus-visible,
.industry-cta .industry-button:hover,
.industry-cta .industry-button:focus-visible {
  transform: translateY(-2px);
  background: #087cff;
  box-shadow: 0 18px 36px rgba(8, 124, 255, 0.22);
}

@keyframes about-office-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-2205px, 0, 0);
  }
}


/* Industry page */
.industry-page {
  background: var(--color-page-bg);
}

.industry-hero {
  position: relative;
  width: 100%;
  height: 561px;
  overflow: hidden;
  background: url("../img/components/optimized/industry-hero-bg-1999.webp") center top / 1999px 561px no-repeat;
}

.industry-hero__inner {
  position: relative;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}

.industry-hero__copy {
  position: absolute;
  left: 24px;
  top: 192px;
  z-index: 2;
}

.industry-hero h1 {
  margin: 0;
  color: #050505;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.industry-hero p {
  margin: 29px 0 0;
  color: #080808;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.industry-button {
  width: 135px;
  height: 43px;
  margin-top: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #ffffff;
  background: #35bdf6;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.industry-button:hover {
  transform: translateY(-2px);
  background: #087cff;
  box-shadow: 0 12px 22px rgba(8, 124, 255, 0.2);
}

.industry-hero__brand-carousel {
  position: absolute;
  right: -23px;
  top: 92px;
  width: 914px;
  height: 409px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 10%,
    rgba(0, 0, 0, 1) 24%,
    rgba(0, 0, 0, 1) 76%,
    rgba(0, 0, 0, 0.35) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 10%,
    rgba(0, 0, 0, 1) 24%,
    rgba(0, 0, 0, 1) 76%,
    rgba(0, 0, 0, 0.35) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.industry-hero__brand-track {
  --industry-brand-overlap: 32px;
  --industry-brand-tile-width: 914px;
  --industry-brand-tile-height: 409px;
  width: max-content;
  height: var(--industry-brand-tile-height);
  display: flex;
  align-items: flex-start;
  animation: industry-hero-brand-scroll 28s linear infinite;
  will-change: transform;
}

.industry-hero__brands {
  width: var(--industry-brand-tile-width);
  height: var(--industry-brand-tile-height);
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.industry-hero__brands + .industry-hero__brands {
  margin-left: calc(-1.3 * var(--industry-brand-overlap));
}

@keyframes industry-hero-brand-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--industry-brand-tile-width) + 1.3 * var(--industry-brand-overlap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-hero__brand-track {
    animation: none;
    transform: none;
  }
}

.industry-case {
  position: relative;
  width: 100%;
  height: clamp(748px, 41.565vw, 823px);
  overflow: hidden;
  background: url("../img/components/optimized/industry-case-bg-1980.webp") center top / 1980px 919px no-repeat;
}

.industry-tabs {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: calc(100vw - var(--page-gutter) * 2);
  height: 105px;
  margin: 31px auto 0;
  display: inline-flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  scrollbar-width: none;
}

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

.industry-tabs__item {
  position: relative;
  flex: 0 0 auto;
  min-width: max-content;
  height: 100%;
  padding: 0 clamp(34px, 3.2vw, 58px);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181818;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.industry-tabs__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  width: 1px;
  height: 58px;
  background: rgba(0, 0, 0, 0.13);
}

.industry-tabs__item:last-child::after,
.industry-tabs__item.is-active::after,
.industry-tabs__item:has(+ .industry-tabs__item.is-active)::after {
  display: none;
}

.industry-tabs__item:hover {
  color: #027aff;
  background: rgba(255, 255, 255, 0.22);
}

.industry-tabs__item:active {
  transform: scale(0.985);
}

.industry-tabs__item.is-active {
  color: #ffffff;
  background: #027aff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 17px;
  opacity: 1;
}

.industry-tabs__item.is-active:hover {
  color: #ffffff;
}

.industry-case__content {
  position: relative;
  z-index: 2;
  width: 1240px;
  margin: 91px auto 0;
}

.industry-case__content h2 {
  margin: 0;
  color: #070707;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.industry-case__content p {
  width: 530px;
  margin: 26px 0 0;
  color: #151515;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.industry-metrics {
  width: 490px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 232px);
  gap: 11px 17px;
}

.industry-metrics article {
  width: 232px;
  height: 89px;
  padding-top: 17px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.industry-metrics strong {
  display: block;
  color: #080808;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.industry-metrics span {
  display: block;
  margin-top: 13px;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.industry-clients {
  width: 100%;
  height: 80px;
  background: #ffffff;
}

.industry-clients__inner {
  width: 1240px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 33px;
}

.industry-clients__inner span {
  flex: 0 0 auto;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.industry-clients__inner img {
  width: 1213px;
  height: 61px;
  object-fit: contain;
  transform: scale(0.86);
  transform-origin: left center;
}

.industry-cta {
  height: auto;
  min-height: 0;
}

/* Honors page */
.honors-page {
  background: var(--color-page-bg);
}

.honors-hero {
  position: relative;
  width: 100%;
  height: 561px;
  overflow: hidden;
  background: url("../img/components/optimized/honors-hero-1980.webp") center top / 1980px 561px no-repeat;
}

.honors-hero__inner {
  position: relative;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}

.honors-hero h1 {
  position: absolute;
  left: 78px;
  top: 190px;
  margin: 0;
  color: #ffe4a6;
  font-size: 47px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.honors-hero p {
  position: absolute;
  left: 78px;
  top: 281px;
  margin: 0;
  color: #fff1c9;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.honors-overview {
  width: 100%;
  padding: 79px 0 122px;
  background: var(--color-page-bg);
}

.honors-overview__inner {
  width: 1240px;
  margin: 0 auto;
}

.honors-overview__inner h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0;
}

.honors-overview__inner h2::before,
.honors-overview__inner h2::after {
  content: "";
  position: relative;
  top: 7px;
  display: inline-block;
  width: 28.5px;
  height: 64px;
  margin: 0 18px;
  background: center / contain no-repeat;
  opacity: 1;
  vertical-align: baseline;
}

.honors-overview__inner h2::before {
  background-image: url("../img/组@2x (1).png");
}

.honors-overview__inner h2::after {
  background-image: url("../img/组@2x.png");
}

.honors-tabs {
  width: min(1192px, var(--content-width));
  height: auto;
  margin: 102px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.honors-tabs__item {
  flex: 0 0 min(223px, calc((100vw - var(--page-gutter) * 2 - 40px) / 5));
  width: min(223px, calc((100vw - var(--page-gutter) * 2 - 40px) / 5));
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 9.79px;
  color: #050505;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.honors-tabs__item:hover {
  color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(8, 124, 255, 0.1);
}

.honors-tabs__item.is-active {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 12px 26px rgba(8, 124, 255, 0.18);
}

.honors-tabs__item.is-active:hover {
  color: #ffffff;
}

.honors-tabs__item:active {
  transform: scale(0.985);
}

.honors-grid {
  width: var(--content-width);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  align-items: stretch;
}

.honors-award {
  position: relative;
  width: 100%;
  min-height: 326px;
  height: 326px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #d7d7d7 0%, #eeeeee 63%, #ffffff 63%, #ffffff 100%);
  box-shadow: none;
  text-align: center;
  cursor: default;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.honors-award img {
  display: block;
  position: relative;
  z-index: 99;
  max-width: 76%;
  margin: 37px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(31, 43, 66, 0.16));
  transform-origin: center center;
  transition: transform 180ms ease, filter 180ms ease;
}

.honors-award--certificate img {
  width: 182px;
  height: 182px;
}

.honors-award--trophy img {
  width: 176px;
  height: 198px;
}

.honors-award--cup img {
  width: 190px;
  height: 190px;
}

.honors-award--cup-large img {
  width: 202px;
  height: 202px;
}

.honors-award:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(42, 57, 82, 0.1);
}

.honors-award:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 13px 16px rgba(31, 43, 66, 0.2));
}

.honors-award figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 124px;
  margin: 0;
  padding: 54px 30px 22px;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.96);
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.honors-empty {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.honors-tabs__item[hidden],
.honors-award[hidden],
.honors-empty[hidden] {
  display: none !important;
}

/* News page */
.news-page {
  min-height: 2083px;
  background:
    url("../img/components/optimized/news-page-bg-1978.webp") center top / 1978px 1894px no-repeat,
    linear-gradient(180deg, #e9fbff 0%, #eef3fb 72%, #eef3fb 100%);
}

.news-hero {
  width: 100%;
  height: 300px;
  padding-top: 108px;
  text-align: center;
}

.news-hero h1 {
  margin: 0;
  color: #050505;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.news-hero p {
  margin: 24px 0 0;
  color: #050505;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.news-list {
  width: 100%;
  padding-bottom: 91px;
}

.news-list__grid {
  width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 384px);
  column-gap: 34px;
  row-gap: 34px;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 384px;
  height: 378px;
  margin: 0;
  padding: 20px 20px 38px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.news-card__cover {
  width: 344px;
  height: 230px;
  object-fit: cover;
}

.news-card h2 {
  min-height: 48px;
  margin: 23px 0 0;
  overflow: hidden;
  color: #050505;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card p {
  flex: 0 0 auto;
  width: 260px;
  margin: 10px auto 0;
  overflow: hidden;
  color: #8d8d8d;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card-link:hover .news-card,
.article-card-link:focus-visible .news-card,
.article-card-link:hover .operation-card,
.article-card-link:focus-visible .operation-card {
  transform: translateY(-4px);
}

.operation-card-link {
  height: 100%;
}

.operation-card-link .operation-card {
  height: 100%;
}

.article-detail-page {
  min-height: 900px;
  padding: 80px 0 120px;
  background: #eef3fb;
}

.article-detail {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  border-radius: 18px;
  padding: 52px 64px 64px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(8, 124, 255, 0.1);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-detail__breadcrumb {
  display: flex;
  gap: 10px;
  color: #667085;
  font-size: 16px;
}

.article-detail__breadcrumb a {
  color: #087cff;
}

.article-detail__header {
  margin-top: 28px;
}

.article-detail__category {
  margin: 0 0 14px;
  color: #087cff;
  font-size: 18px;
  font-weight: 600;
}

.article-detail h1 {
  margin: 0;
  color: #111827;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.22;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-detail__subtitle {
  margin: 18px 0 0;
  color: #475467;
  font-size: 22px;
  line-height: 1.55;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-detail__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: #667085;
  font-size: 16px;
}

.article-detail__meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.article-detail__cover {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  margin: 40px auto;
  border-radius: 14px;
  object-fit: contain;
}

.article-detail__body {
  color: #27364a;
  font-size: 19px;
  line-height: 1.9;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-detail__body p {
  margin: 0 0 22px;
}

.article-detail__body p,
.article-detail__body h1,
.article-detail__body h2,
.article-detail__body h3,
.article-detail__body h4,
.article-detail__body h5,
.article-detail__body h6,
.article-detail__body div,
.article-detail__body span {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-detail__body img {
  max-width: 100%;
  margin: 32px auto;
  border-radius: 12px;
}

.article-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.article-detail__tags span {
  border-radius: 999px;
  padding: 7px 12px;
  background: #eef6ff;
  color: #087cff;
  font-size: 15px;
}

.article-detail__cta {
  margin-top: 48px;
  border-radius: 16px;
  padding: 34px;
  background: linear-gradient(135deg, #087cff 0%, #35bdf6 100%);
  color: #ffffff;
}

.article-detail__cta h2 {
  margin: 0;
  font-size: 30px;
}

.article-detail__cta p {
  margin: 12px 0 0;
  font-size: 18px;
}

.article-detail__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 999px;
  padding: 12px 24px;
  background: #ffffff;
  color: #087cff;
  font-size: 17px;
  font-weight: 700;
}

.honor-preview {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(2, 8, 23, 0.7);
}

.honor-preview.is-open {
  display: flex;
}

.honor-preview img {
  max-width: min(760px, 80vw);
  max-height: 76vh;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.honor-preview p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.honor-preview__close {
  position: absolute;
  right: 34px;
  top: 28px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* PC laptop compatibility: keep the current desktop design, but let it fit 1366+ viewports. */
.site-header__inner,
.ai-consult__inner,
.hero__inner,
.solution__inner,
.kox-matrix__inner,
.site-footer__inner,
.solution-page-hero__inner,
.solutions-hero__inner,
.solutions-overview__inner,
.solutions-advantages__inner,
.operation-hero__inner,
.operation-tabs,
.operation-articles,
.news-list__grid,
.about-intro__inner,
.about-founder__inner,
.about-method__inner,
.industry-hero__inner,
.industry-case__content,
.industry-clients__inner,
.honors-hero__inner,
.honors-overview__inner,
.honors-tabs,
.honors-grid,
.article-detail {
  width: var(--content-width);
  max-width: var(--container);
}

.site-header__inner {
  gap: clamp(28px, 3vw, 56px);
  padding: 0;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  gap: clamp(22px, 2.3vw, 42px);
}

.site-nav__link {
  white-space: nowrap;
}

.site-nav__dropdown-menu {
  left: 50%;
  width: max-content;
  min-width: 118px;
  transform: translateX(-50%);
}

.ai-consult__form {
  width: min(870px, calc(var(--content-width) - 330px));
}

.ai-consult__prompts {
  width: min(728px, calc(var(--content-width) - 330px));
  grid-template-columns: repeat(3, minmax(0, 224px));
}

.ai-consult__prompts button {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__copy {
  left: clamp(32px, 9vw, 115px);
}

.hero__cards {
  left: 0;
  right: 0;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(14px, 1.4vw, 20px);
}

.hero-card {
  width: auto;
  min-width: 0;
  padding-right: clamp(24px, 3vw, 42px);
  padding-left: clamp(24px, 3vw, 42px);
}

.hero-card h2 {
  font-size: clamp(24px, 2.1vw, 30px);
}

.hero-card p {
  max-width: 100%;
}

.solution-map {
  width: 100%;
  max-width: 100%;
}

.kox-matrix__panel {
  width: min(1267px, var(--content-width));
  max-width: var(--content-width);
}

.kox-matrix__bar,
.kox-matrix__cards {
  width: 100%;
  max-width: 100%;
}

.solution-map__headers,
.solution-map__body {
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 3.62fr) minmax(160px, 0.95fr);
  column-gap: clamp(8px, 0.8vw, 18px);
}

.solution-map__body {
  height: auto;
  min-height: 445px;
}

.solution-map__col,
.solution-map__center {
  min-width: 0;
}

.solution-map__item {
  width: 100%;
  min-width: 0;
}

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

.solution-map__center-card {
  min-width: 0;
}

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

.kox-matrix__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.kox-matrix__card-shell {
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 239 / 506;
}

.kox-matrix__card {
  width: 100%;
  height: 100%;
}

.clients-standard {
  --clients-standard-height: clamp(520px, 42.9vw, 848px);
}

.clients-standard__track {
  height: var(--clients-standard-height);
}

.clients-standard__image {
  height: var(--clients-standard-image-height);
  width: auto;
  max-width: none;
}

.site-footer__inner {
  left: auto;
}

.site-footer__brand,
.site-footer__columns,
.site-footer__contact {
  max-width: 100%;
}

.solution-page-matrix__image,
.solution-page-kox__image,
.about-history__image,
.about-method__image {
  width: 100%;
  height: auto;
}

.solution-page-cta__image {
  width: min(592px, var(--content-width));
  max-width: calc(100vw - var(--page-gutter) * 2);
  height: auto;
}

.solutions-grid {
  width: min(1054px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-card {
  width: auto;
  min-width: 0;
}

.solutions-card__points {
  width: 100%;
}

.solutions-advantages__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}

.solutions-advantage-card {
  width: auto;
  min-width: 0;
}

.operation-tabs,
.honors-tabs {
  max-width: 1192px;
}

.operation-articles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.operation-card {
  width: auto;
  min-width: 0;
}

.operation-card__cover,
.news-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 174;
}

.news-list__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 34px);
}

.news-card {
  width: auto;
  min-width: 0;
}

.about-intro__row {
  grid-template-columns: minmax(0, 520px) minmax(0, 594px);
}

.about-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 25px);
}

.about-value-card {
  width: auto;
  min-width: 0;
}

.about-history__inner {
  width: var(--wide-content-width);
  max-width: 1548px;
}

.about-history {
  height: auto;
  min-height: 640px;
}

.about-office__inner,
.about-office__carousel {
  width: 100%;
  max-width: 100%;
}

.about-office h2 {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.industry-hero__brand-carousel {
  right: 0;
  width: min(791px, calc(var(--content-width) - 320px));
  max-width: 74%;
}

.industry-hero__brand-track {
  min-width: 0;
}

.industry-tabs {
  max-width: calc(100vw - var(--page-gutter) * 2);
}

.industry-case__main {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 456px);
  column-gap: clamp(32px, 5vw, 72px);
}

.industry-clients__inner img {
  flex: 1 1 auto;
  min-width: 0;
  width: min(100%, 1213px);
  transform: none;
}

.honors-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  max-width: var(--container);
}

.honors-award {
  width: auto;
  min-width: 0;
}

.honors-award__image {
  width: min(100%, 205px);
  height: auto;
  aspect-ratio: 205 / 164;
}

.article-detail__cover {
  width: auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1599px) {
  :root {
    --page-gutter: clamp(32px, 4vw, 56px);
  }

  .site-header__inner {
    gap: clamp(24px, 2.5vw, 40px);
  }

  .site-nav {
    gap: clamp(20px, 2vw, 32px);
  }

  .hero {
    min-height: 760px;
  }

  .hero__copy h1 {
    font-size: clamp(50px, 4.8vw, 66px);
  }

  .hero-card {
    min-height: 232px;
  }

  .solution {
    padding-top: 92px;
  }

  .solutions-advantages__grid {
    gap: 22px;
  }

  .claw-scenario-card {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 30px;
  }

  .claw-scenario-card__promise,
  .claw-scenario-card__quote {
    padding: 22px;
  }

  .claw-scenario-card__metrics {
    gap: 12px;
  }

  .claw-skills__grid {
    gap: 18px;
  }

  .claw-skill-card {
    padding: 22px;
  }

  .claw-skill-comparison__inner {
    border-radius: 24px;
  }

  .claw-scenario-metric strong {
    font-size: 18px;
  }

  .operation-hero,
  .news-hero,
  .honors-hero,
  .industry-hero,
  .solutions-hero,
  .solution-page-hero {
    min-height: 470px;
  }

  .operation-list,
  .news-list,
  .honors-awards,
  .industry-case {
    padding-top: 72px;
  }
}

@media (max-width: 1366px) {
  :root {
    --page-gutter: 48px;
  }

  .site-header__inner {
    height: 64px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav__link {
    font-size: 15px;
  }

  .site-footer__contact {
    width: 440px;
    font-size: 18px;
    white-space: normal;
  }

  .site-footer__codes {
    gap: 14px;
  }

  .site-footer__nav {
    left: 500px;
    grid-template-columns: repeat(4, minmax(100px, max-content));
    column-gap: 34px;
  }

  .site-footer__title {
    margin-bottom: 42px;
    font-size: 22px;
  }

  .site-footer__column a {
    font-size: 18px;
  }

  .ai-consult {
    padding-top: 28px;
  }

  .ai-consult__inner {
    padding-left: 118px;
  }

  .ai-consult__robot {
    left: 18px;
  }

  .ai-consult__form,
  .ai-consult__prompts {
    width: min(820px, calc(var(--content-width) - 280px));
  }

  .hero {
    min-height: 720px;
  }

  .hero__copy {
    top: 96px;
  }

  .hero__copy h1 {
    font-size: 54px;
    line-height: 1.14;
  }

  .hero__cards {
    bottom: 32px;
  }

  .hero-card {
    min-height: 222px;
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero-card h2 {
    font-size: 26px;
  }

  .hero-card p {
    font-size: 15px;
  }

  .solution-map__headers,
  .solution-map__body {
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 3.55fr) minmax(150px, 0.9fr);
  }

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

  .solutions-grid {
    gap: 24px;
  }

  .solutions-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .solutions-card h2 {
    font-size: 22px;
  }

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

  .claw-scenarios {
    padding-top: 72px;
  }

  .claw-scenario-card {
    grid-template-columns: 1fr;
    padding: 30px;
    border-radius: 22px;
  }

  .claw-scenario-card__title {
    margin-bottom: 24px;
  }

  .claw-scenario-card__block {
    margin-top: 22px;
  }

  .claw-scenario-card__result {
    justify-content: flex-start;
  }

  .claw-scenario-card__metrics,
  .claw-scenario-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .claw-skills__categories {
    gap: 10px;
    margin-bottom: 36px;
  }

  .claw-skills__categories span {
    min-height: 42px;
    padding: 0 14px;
  }

  .claw-skills__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .claw-skill-card {
    min-height: 238px;
    padding: 20px;
  }

  .claw-skill-card h3 {
    font-size: 17px;
  }

  .claw-skill-comparison th,
  .claw-skill-comparison td {
    padding-right: 12px;
    padding-left: 12px;
  }

  .claw-summary-card {
    min-height: 138px;
    padding: 22px 16px;
  }

  .operation-articles {
    gap: 22px;
  }

  .news-list__grid {
    gap: 24px;
  }

  .about-history {
    min-height: 560px;
  }

  .industry-case__main {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    column-gap: 36px;
  }

  .industry-hero__brand-carousel {
    width: min(820px, calc(var(--content-width) - 300px));
  }

  .honors-grid {
    gap: 22px;
  }

  .floating-contact {
    right: 24px;
  }
}

/* Compact first screens except home, honors, and 01 CLAW pages. */
.solutions-hero,
.operation-hero,
.about-hero,
.industry-hero,
.news-hero {
  height: var(--subpage-hero-height);
  min-height: var(--subpage-hero-height);
}

.solutions-hero {
  background:
    url("../img/components/optimized/solution-page-hero-1980.webp") center center / cover no-repeat,
    #087cff;
}

.solutions-hero h1 {
  top: 126px;
  font-size: clamp(34px, 3vw, 44px);
}

.solutions-hero p {
  top: 190px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.solutions-hero .solutions-button {
  top: 254px;
}

.operation-hero {
  background: url("../img/components/optimized/operation-hero-1980.webp") center center / cover no-repeat;
}

.operation-hero h1 {
  top: 132px;
  font-size: clamp(34px, 3.2vw, 44px);
}

.operation-hero p {
  top: 218px;
  font-size: clamp(20px, 2vw, 26px);
}

.about-hero {
  height: var(--subpage-hero-height);
  min-height: var(--subpage-hero-height);
}

.industry-hero {
  background: url("../img/components/optimized/industry-hero-bg-1999.webp") center center / cover no-repeat;
}

.industry-hero__copy {
  top: 126px;
}

.industry-hero h1 {
  font-size: clamp(32px, 3vw, 42px);
}

.industry-hero p {
  margin-top: 20px;
  font-size: clamp(18px, 1.55vw, 22px);
}

.industry-button {
  margin-top: 24px;
}

.industry-hero__brand-carousel {
  top: 48px;
  height: 305px;
}

.industry-hero__brand-track,
.industry-hero__brands {
  height: var(--industry-brand-tile-height);
}

.industry-hero__brand-track {
  --industry-brand-tile-width: 682px;
  --industry-brand-tile-height: 305px;
}

.industry-hero__brands {
  width: var(--industry-brand-tile-width);
}

.news-hero {
  padding-top: 144px;
}

.news-hero h1 {
  font-size: clamp(36px, 3.2vw, 46px);
}

.news-hero p {
  margin-top: 18px;
  font-size: clamp(19px, 1.7vw, 23px);
}

/* Industry case reference layout */
.industry-case {
  --industry-case-base-height: 700px;
  --industry-case-section-height: var(--industry-case-base-height);
  height: auto;
  min-height: var(--industry-case-section-height);
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(80% 72% at 50% 44%, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 242, 0.96) 42%, rgba(226, 221, 217, 0.94) 100%);
}

.industry-case:has(.industry-metrics article:nth-child(5)) {
  --industry-case-section-height: 980px;
}

.industry-case:has(.industry-metrics article:nth-child(7)) {
  --industry-case-section-height: 1100px;
}

.industry-case:has(.industry-metrics article:nth-child(9)) {
  --industry-case-section-height: 1220px;
}

.industry-case.tech-hero::before {
  display: none;
}

.industry-tabs {
  position: absolute;
  left: 50%;
  top: clamp(22px, 1.52vw, 30px);
  z-index: 5;
  width: fit-content;
  max-width: calc(100vw - var(--page-gutter) * 2);
  height: clamp(76px, 5.3vw, 105px);
  margin: 0;
  display: inline-flex;
  transform: translateX(-50%);
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  box-shadow: none;
  scrollbar-width: none;
}

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

.industry-tabs__item {
  flex: 0 0 auto;
  min-width: max-content;
  height: 100%;
  padding: 0 clamp(34px, 3.2vw, 58px);
  font-size: 15px;
  white-space: nowrap;
}

.industry-tabs__item::after {
  top: 24px;
  height: calc(100% - 48px);
  background: rgba(0, 0, 0, 0.16);
}

.industry-tabs__item.is-active {
  min-width: max-content;
  height: 100%;
  border-radius: 8px;
  background: #027aff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 17px;
}

.industry-case__main {
  --industry-case-content-top: clamp(176px, 11.616vw, 230px);
  --industry-case-content-left: 215px;
  --industry-case-content-width: 580px;
  --industry-case-content-gap: clamp(32px, 2.828vw, 56px);
  --industry-case-visual-right: clamp(120px, 11.717vw, 232px);
  --industry-case-visual-width: clamp(500px, 31.111vw, 616px);
  --industry-case-visual-height: calc(var(--industry-case-visual-width) * 384 / 616);
  --industry-case-visual-top: clamp(226px, 14.646vw, 290px);
  position: relative;
  z-index: 3;
  display: block;
  width: min(1980px, 100%);
  max-width: 1980px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: clamp(62px, 7.57vw, 150px);
  min-height: max(var(--industry-case-section-height), calc(var(--industry-case-visual-top) + var(--industry-case-visual-height) + 32px));
}

.industry-case__content {
  position: absolute;
  top: var(--industry-case-content-top);
  left: var(--industry-case-content-left);
  z-index: 3;
  width: min(var(--industry-case-content-width), calc(100% - var(--industry-case-content-left) - var(--industry-case-visual-width) - var(--industry-case-visual-right) - var(--industry-case-content-gap)));
  max-width: min(var(--industry-case-content-width), calc(100% - var(--industry-case-content-left) - var(--industry-case-visual-width) - var(--industry-case-visual-right) - var(--industry-case-content-gap)));
  margin: 0;
  padding: 0;
}

.industry-case__badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  margin-bottom: clamp(8px, 0.6vw, 12px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.industry-case__badge:has(.industry-case__badge-image) {
  width: clamp(76px, 5.51vw, 109px);
  height: clamp(29px, 2.12vw, 42px);
  border-radius: clamp(4px, 0.303vw, 6px);
  background: var(--industry-case-badge-bg, #ffffff);
  box-shadow: 0 5px 14px rgba(35, 31, 28, 0.08);
}

.industry-case__badge-image {
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 8px);
  object-fit: contain;
}

.industry-case__badge-text {
  display: block;
  width: min(338px, 100%);
  height: 48px;
  color: #979797;
  font-family: "HarmonyOS Sans SC", var(--font-sans);
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0;
  white-space: nowrap;
}

.industry-case__badge:has(.industry-case__badge-image) .industry-case__badge-text {
  color: #6a5841;
  font-size: clamp(8px, 0.8vw, 11px);
  font-weight: 700;
  line-height: 1;
}

.industry-case__visual {
  position: absolute;
  top: var(--industry-case-visual-top);
  right: var(--industry-case-visual-right);
  z-index: 2;
  flex: 0 0 auto;
  width: var(--industry-case-visual-width);
  min-width: var(--industry-case-visual-width);
  max-width: var(--industry-case-visual-width);
  height: var(--industry-case-visual-height);
  min-height: var(--industry-case-visual-height);
  max-height: var(--industry-case-visual-height);
  perspective: 1200px;
}

.industry-case__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(var(--industry-case-visual-width) * -0.136);
  z-index: 0;
  width: min(calc(var(--industry-case-visual-width) * 1.373), calc(100vw - var(--page-gutter) * 2));
  height: calc(var(--industry-case-visual-width) * 0.104);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(40, 40, 40, 0.32) 0%, rgba(120, 120, 120, 0.16) 42%, rgba(216, 216, 216, 0) 72%);
  filter: blur(10px);
  opacity: 0.82;
  pointer-events: none;
}

.industry-case__visual-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: clamp(24px, 2.17vw, 43px);
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  transform-origin: center center;
  box-shadow: none;
  background: #ffffff;
}

.industry-case__content {
  pointer-events: auto;
}

.industry-case__content > .industry-case__badge,
.industry-case__content > h2,
.industry-case__content > p,
.industry-case__content .industry-metrics article {
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  will-change: transform, opacity;
}

.industry-case__visual .industry-case__visual-image {
  transition:
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease;
  will-change: transform, opacity;
}

.industry-case__content.is-slide-enter,
.industry-case__content.is-slide-exit {
  pointer-events: none;
}

.industry-case__content.is-slide-enter > .industry-case__badge,
.industry-case__content.is-slide-enter > h2,
.industry-case__content.is-slide-enter > p,
.industry-case__content.is-slide-enter .industry-metrics article,
.industry-case__content.is-slide-exit > .industry-case__badge,
.industry-case__content.is-slide-exit > h2,
.industry-case__content.is-slide-exit > p,
.industry-case__content.is-slide-exit .industry-metrics article {
  opacity: 0;
  pointer-events: none;
}

.industry-case__visual.is-slide-enter {
  pointer-events: none;
}

.industry-case__visual.is-slide-exit {
  pointer-events: none;
}

.industry-case__content.is-slide-enter.from-right > .industry-case__badge,
.industry-case__content.is-slide-enter.from-right > h2,
.industry-case__content.is-slide-enter.from-right > p,
.industry-case__content.is-slide-enter.from-right .industry-metrics article,
.industry-case__content.is-slide-exit.to-right > .industry-case__badge,
.industry-case__content.is-slide-exit.to-right > h2,
.industry-case__content.is-slide-exit.to-right > p,
.industry-case__content.is-slide-exit.to-right .industry-metrics article,
.industry-case__visual.is-slide-exit.to-right .industry-case__visual-image {
  transform: translateX(var(--industry-case-slide-distance, 72px));
}

.industry-case__content.is-slide-enter.from-left > .industry-case__badge,
.industry-case__content.is-slide-enter.from-left > h2,
.industry-case__content.is-slide-enter.from-left > p,
.industry-case__content.is-slide-enter.from-left .industry-metrics article,
.industry-case__content.is-slide-exit.to-left > .industry-case__badge,
.industry-case__content.is-slide-exit.to-left > h2,
.industry-case__content.is-slide-exit.to-left > p,
.industry-case__content.is-slide-exit.to-left .industry-metrics article,
.industry-case__visual.is-slide-exit.to-left .industry-case__visual-image {
  transform: translateX(calc(var(--industry-case-slide-distance, 72px) * -1));
}

.industry-case__content.is-slide-enter.is-slide-active > .industry-case__badge,
.industry-case__content.is-slide-enter.is-slide-active > h2,
.industry-case__content.is-slide-enter.is-slide-active > p,
.industry-case__content.is-slide-enter.is-slide-active .industry-metrics article {
  opacity: 1;
  transform: translateX(0);
}

.industry-case__visual.is-slide-exit .industry-case__visual-image,
.industry-case__visual.is-slide-enter .industry-case__visual-image {
  opacity: 0;
}

.industry-case__visual.is-slide-enter .industry-case__visual-image {
  transform: translateX(36px) scale(0.985);
}

.industry-case__visual.is-slide-enter.from-left .industry-case__visual-image {
  transform: translateX(-36px) scale(0.985);
}

.industry-case__visual.is-slide-enter.is-slide-active .industry-case__visual-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.industry-case__content.is-slide-enter > h2,
.industry-case__content.is-slide-exit > h2 {
  transition-delay: 35ms;
}

.industry-case__content.is-slide-enter > p,
.industry-case__content.is-slide-exit > p {
  transition-delay: 70ms;
}

.industry-case__content.is-slide-enter .industry-metrics article,
.industry-case__content.is-slide-exit .industry-metrics article {
  transition-delay: 105ms;
}

.industry-case__content.is-slide-enter .industry-metrics article:nth-child(2),
.industry-case__content.is-slide-exit .industry-metrics article:nth-child(2) {
  transition-delay: 130ms;
}

.industry-case__content.is-slide-enter .industry-metrics article:nth-child(3),
.industry-case__content.is-slide-exit .industry-metrics article:nth-child(3) {
  transition-delay: 155ms;
}

.industry-case__content.is-slide-enter .industry-metrics article:nth-child(4),
.industry-case__content.is-slide-exit .industry-metrics article:nth-child(4) {
  transition-delay: 180ms;
}

.industry-case__visual.is-slide-enter,
.industry-case__visual.is-slide-exit {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .industry-case__content > .industry-case__badge,
  .industry-case__content > h2,
  .industry-case__content > p,
  .industry-case__content .industry-metrics article,
  .industry-case__visual,
  .industry-case__visual .industry-case__visual-image {
    transition: none;
  }
}

.industry-metrics article {
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.industry-case__content h2 {
  width: auto;
  max-width: none;
  margin: 0;
  color: var(--industry-case-title-color, #040000);
  font-size: clamp(24px, 1.768vw, 35px);
  font-weight: 700;
  line-height: clamp(32px, 2.273vw, 45px);
  letter-spacing: 0;
  white-space: nowrap;
}

.industry-case__content p {
  width: min(100%, 580px);
  margin: clamp(12px, 0.91vw, 18px) 0 0;
  color: var(--industry-case-description-color, #040000);
  font-size: clamp(14px, 1.01vw, 20px);
  font-weight: 400;
  line-height: clamp(24px, 1.768vw, 35px);
  letter-spacing: 0;
}

.industry-metrics {
  width: min(100%, 580px);
  margin-top: clamp(26px, 2.32vw, 46px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 0.56vw, 11px) clamp(10px, 0.86vw, 17px);
}

.industry-metrics article {
  width: auto;
  min-height: clamp(76px, 5.05vw, 100px);
  height: auto;
  padding: clamp(11px, 0.9vw, 18px) clamp(10px, 0.73vw, 14px) clamp(10px, 0.76vw, 15px);
  border-radius: clamp(9px, 0.71vw, 14px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow-wrap: anywhere;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.industry-metrics article:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px) scale(1.018);
}

.industry-metrics article:active {
  transform: translateY(-1px) scale(1.006);
}

.industry-metrics strong {
  display: block;
  color: var(--industry-case-metric-value-color, #000000);
  font-size: clamp(23px, 1.515vw, 30px);
  font-weight: 600;
  line-height: 1.2;
}

.industry-metrics span {
  display: block;
  margin-top: clamp(3px, 0.253vw, 5px);
  color: var(--industry-case-metric-label-color, #000000);
  font-size: clamp(12px, 0.758vw, 15px);
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
}

@media (min-width: 761px) {
  .site-header__inner {
    width: min(var(--header-container), calc(100vw - var(--page-gutter) * 2));
    max-width: var(--header-container);
  }

  .site-logo__image {
    height: var(--desktop-logo-height, 28px);
    max-width: var(--desktop-logo-width, 150px);
  }

  .floating-contact {
    right: var(--desktop-floating-right, 64px);
  }

  .ai-consult {
    --home-ai-robot-width: 176px;
    --home-ai-control-left: 202px;
    --home-ai-form-width: 870px;
    --home-ai-bubble-width: 521px;
    --home-ai-prompt-width: 224px;
    --home-ai-prompt-gap: 11px;
    --home-ai-row-gap: 14px;
    padding-top: 0;
    background-position: center center;
    background-size: cover;
  }

  .ai-consult__inner {
    padding-left: 0;
    display: grid;
    grid-template-columns:
      var(--home-ai-control-left)
      minmax(0, min(var(--home-ai-form-width), calc(100% - var(--home-ai-control-left))));
    grid-template-rows: 31px 62px 33px;
    align-content: center;
    justify-content: center;
    row-gap: var(--home-ai-row-gap);
  }

  .ai-consult__robot {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1 / 4;
    justify-self: center;
    align-self: center;
    width: var(--home-ai-robot-width);
    height: auto;
    max-height: calc(100% - 12px);
  }

  .ai-consult__bubble {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 2;
    grid-row: 1;
    width: min(100%, var(--home-ai-bubble-width));
  }

  .ai-consult__form {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 2;
    grid-row: 2;
    width: 100%;
  }

  .ai-consult__prompts {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 2;
    grid-row: 3;
    width: min(
      calc(var(--home-ai-prompt-width) * 3 + var(--home-ai-prompt-gap) * 2),
      100%
    );
    grid-template-columns: repeat(3, minmax(0, var(--home-ai-prompt-width)));
    column-gap: var(--home-ai-prompt-gap);
  }

  .hero {
    --home-hero-height: 843px;
    --home-hero-title-left: 115px;
    --home-hero-title-top: 154px;
    --home-hero-cards-bottom: 70px;
    --home-hero-card-gap: 15px;
    --home-hero-card-padding-x: 34px;
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
  }

  .hero__copy {
    left: var(--home-hero-title-left);
    top: var(--home-hero-title-top);
  }

  .hero__cards {
    top: auto;
    bottom: var(--home-hero-cards-bottom);
    height: auto;
    column-gap: var(--home-hero-card-gap);
  }

  .hero-card {
    height: auto;
    min-height: 259px;
    padding-right: var(--home-hero-card-padding-x);
    padding-left: var(--home-hero-card-padding-x);
  }

  .clients-standard__track {
    width: max-content;
  }

  .claw-hero {
    --claw-hero-gap: 64px;
    --claw-visual-min: 390px;
    --claw-visual-width: min(38vw, 620px);
    --claw-visual-shift: -40px;
  }

  .claw-hero__inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(var(--claw-visual-min), 0.92fr);
    gap: var(--claw-hero-gap);
  }

  .claw-hero__visual {
    width: var(--claw-visual-width);
    min-width: var(--claw-visual-min);
    transform: translateX(var(--claw-visual-shift));
  }

  .claw-skills__grid {
    grid-template-columns: repeat(var(--claw-skill-cols, 4), minmax(0, 1fr));
  }

  .claw-scenario-card {
    grid-template-columns: minmax(0, 1fr) minmax(var(--claw-scenario-result-min, 390px), 0.9fr);
  }

  .claw-skill-comparison__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .claw-skill-comparison table {
    min-width: 760px;
  }

  .solutions-hero {
    --solutions-hero-height: var(--subpage-hero-height);
    --solutions-hero-title-top: 126px;
    --solutions-hero-text-top: 190px;
    --solutions-hero-button-top: 254px;
    --solutions-hero-bg-position: center center;
    height: var(--solutions-hero-height);
    min-height: var(--solutions-hero-height);
    background-position: var(--solutions-hero-bg-position);
  }

  .solutions-hero h1 {
    top: var(--solutions-hero-title-top);
  }

  .solutions-hero p {
    top: var(--solutions-hero-text-top);
  }

  .solutions-hero .solutions-button {
    top: var(--solutions-hero-button-top);
  }

  .solutions-grid {
    width: min(1054px, 100%);
    grid-template-columns: repeat(var(--solutions-service-cols, 3), minmax(0, 1fr));
  }

  .solutions-card {
    width: auto;
  }

  .solutions-card li {
    white-space: normal;
  }

  .solutions-advantages__grid {
    width: 100%;
    grid-template-columns: repeat(var(--solutions-advantage-cols, 4), minmax(0, 1fr));
  }

  .solutions-advantage-card {
    width: auto;
  }

  .operation-hero {
    --operation-hero-height: var(--subpage-hero-height);
    --operation-hero-title-top: 132px;
    --operation-hero-text-top: 218px;
    --operation-hero-bg-position: center center;
    height: var(--operation-hero-height);
    min-height: var(--operation-hero-height);
    background-position: var(--operation-hero-bg-position);
  }

  .operation-hero h1 {
    top: var(--operation-hero-title-top);
  }

  .operation-hero p {
    top: var(--operation-hero-text-top);
  }

  .operation-tabs,
  .industry-tabs,
  .honors-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .operation-tabs::-webkit-scrollbar,
  .industry-tabs::-webkit-scrollbar,
  .honors-tabs::-webkit-scrollbar {
    display: none;
  }

  .operation-articles {
    width: var(--content-width);
    grid-template-columns: repeat(var(--operation-article-cols, 4), minmax(0, 1fr));
    gap: var(--operation-article-row-gap, 54px) var(--operation-article-col-gap, 34px);
  }

  .operation-card-link {
    min-width: 0;
  }

  .operation-card,
  .operation-card-link .operation-card {
    width: 100%;
    height: auto;
    min-height: 360px;
  }

  .operation-card__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 262 / 159;
  }

  .operation-card__title,
  .operation-card h2 {
    display: -webkit-box;
    min-height: auto;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-hero {
    --news-hero-height: 300px;
    --news-hero-padding-top: 108px;
    --news-hero-bg-position: center center;
    height: var(--news-hero-height);
    min-height: var(--news-hero-height);
    padding-top: var(--news-hero-padding-top);
    background-position: var(--news-hero-bg-position);
  }

  .news-list__grid {
    width: var(--content-width);
    grid-template-columns: repeat(var(--news-card-cols, 3), minmax(0, 1fr));
    gap: var(--news-card-gap, 34px);
  }

  .news-card-link {
    min-width: 0;
  }

  .news-card {
    width: 100%;
    height: auto;
    min-height: 378px;
  }

  .news-card__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 344 / 230;
  }

  .news-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .about-hero {
    --about-hero-height: var(--subpage-hero-height);
    --about-hero-title-left: clamp(236px, 17.5vw, 336px);
    --about-hero-title-top: 50%;
    --about-hero-title-width: clamp(604px, 45vw, 863px);
    --about-hero-title-transform: translateY(-50%);
    --about-hero-media-position: center 34%;
    height: var(--about-hero-height);
    min-height: var(--about-hero-height);
  }

  .about-hero__video,
  .about-hero__background {
    object-position: var(--about-hero-media-position);
  }

  .about-hero h1 {
    left: var(--about-hero-title-left);
    top: var(--about-hero-title-top);
    width: var(--about-hero-title-width);
    transform: var(--about-hero-title-transform);
  }

  .about-values {
    grid-template-columns: repeat(var(--about-value-cols, 4), minmax(0, 1fr));
  }

  .about-office__carousel {
    max-width: 100%;
  }

  .industry-hero {
    --industry-hero-height: var(--subpage-hero-height);
    --industry-hero-bg-position: center center;
    --industry-hero-carousel-width: min(682px, max(500px, calc(var(--content-width) - 420px)));
    --industry-hero-carousel-height: calc(var(--industry-hero-carousel-width) * 409 / 914);
    --industry-hero-carousel-right: 0px;
    --industry-hero-carousel-top: 48px;
    height: var(--industry-hero-height);
    min-height: var(--industry-hero-height);
    background-position: var(--industry-hero-bg-position);
  }

  .industry-hero__brand-carousel {
    top: var(--industry-hero-carousel-top);
    right: var(--industry-hero-carousel-right);
    width: var(--industry-hero-carousel-width);
    height: var(--industry-hero-carousel-height);
    max-width: none;
  }

  .industry-hero__brand-track {
    --industry-brand-overlap: calc(var(--industry-hero-carousel-width) * 0.035);
    --industry-brand-tile-width: var(--industry-hero-carousel-width);
    --industry-brand-tile-height: var(--industry-hero-carousel-height);
  }

  .industry-case__content {
    max-width: 580px;
  }

  .industry-metrics {
    grid-template-columns: repeat(var(--industry-metric-cols, 2), minmax(0, 1fr));
  }

  .honors-hero {
    --honors-hero-height: var(--subpage-hero-height);
    --honors-hero-bg-position: center center;
    height: var(--honors-hero-height);
    min-height: var(--honors-hero-height);
    background-position: var(--honors-hero-bg-position);
  }

  .honors-grid {
    width: var(--content-width);
    grid-template-columns: repeat(var(--honors-award-cols, 4), minmax(0, 1fr));
    gap: var(--honors-award-gap, 42px);
  }

  .honors-award {
    min-width: 0;
  }
}

@media (min-width: 761px) and (max-width: 1536px) {
  .hero {
    --home-hero-height: 760px;
    --home-hero-title-left: 88px;
    --home-hero-title-top: 132px;
    --home-hero-cards-bottom: 48px;
  }

  .ai-consult {
    --home-ai-control-left: 188px;
    --home-ai-form-width: 830px;
  }

  .claw-hero {
    --claw-hero-gap: 46px;
    --claw-visual-width: min(36vw, 560px);
    --claw-visual-shift: -18px;
  }

  .industry-hero {
    --industry-hero-carousel-width: 660px;
  }

}

@media (min-width: 761px) and (max-width: 1366px) {
  :root {
    --header-container: 1180px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav__link {
    font-size: 14px;
  }

  .site-logo__image {
    --desktop-logo-height: 25px;
    --desktop-logo-width: 132px;
  }

  .floating-contact {
    --desktop-floating-right: 24px;
  }

  .hero {
    --home-hero-height: 720px;
    --home-hero-title-left: 64px;
    --home-hero-title-top: 118px;
    --home-hero-card-gap: 12px;
    --home-hero-card-padding-x: 26px;
  }

  .hero__copy h1 {
    font-size: 54px;
  }

  .hero__copy p {
    font-size: 23px;
  }

  .ai-consult {
    --home-ai-robot-left: 8px;
    --home-ai-robot-width: 156px;
    --home-ai-control-left: 172px;
    --home-ai-form-width: 780px;
    --home-ai-prompt-width: 210px;
  }

  .claw-hero {
    --claw-hero-gap: 34px;
    --claw-visual-min: 330px;
    --claw-visual-width: min(34vw, 470px);
    --claw-visual-shift: 0px;
  }

  .claw-scenario-card {
    grid-template-columns: 1fr;
  }

  .solutions-hero {
    --solutions-hero-bg-position: 54% center;
  }

  .operation-hero {
    --operation-hero-bg-position: 54% center;
  }

  .operation-articles {
    --operation-article-cols: 3;
    --operation-article-col-gap: 26px;
  }

  .about-hero {
    --about-hero-title-left: 50%;
    --about-hero-title-width: min(760px, calc(100vw - 96px));
    --about-hero-title-transform: translate(-50%, -50%);
    --about-hero-media-position: 58% 34%;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .industry-hero {
    --industry-hero-bg-position: 54% center;
    --industry-hero-carousel-width: min(620px, calc(var(--content-width) - 410px));
    --industry-hero-carousel-right: -8px;
  }

  .honors-grid {
    --honors-award-cols: 3;
    --honors-award-gap: 28px;
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  :root {
    --page-gutter: 32px;
    --header-container: 1120px;
  }

  .site-nav {
    gap: 13px;
  }

  .site-nav__link {
    font-size: 13px;
  }

  .site-logo__image {
    --desktop-logo-height: 23px;
    --desktop-logo-width: 122px;
  }

  .hero {
    --home-hero-height: 690px;
    --home-hero-title-left: 48px;
    --home-hero-title-top: 108px;
    --home-hero-cards-bottom: 34px;
    --home-hero-card-padding-x: 22px;
  }

  .hero__copy h1 {
    font-size: 48px;
  }

  .hero__copy p {
    font-size: 21px;
  }

  .ai-consult {
    --home-ai-robot-left: 0px;
    --home-ai-robot-width: 142px;
    --home-ai-control-left: 154px;
    --home-ai-form-width: 720px;
    --home-ai-prompt-width: 196px;
  }

  .claw-hero {
    --claw-hero-gap: 24px;
    --claw-visual-min: 300px;
    --claw-visual-width: min(32vw, 400px);
  }

  .claw-skills__grid {
    --claw-skill-cols: 3;
  }

  .solutions-advantages__grid {
    --solutions-advantage-cols: 3;
  }

  .about-hero h1 {
    font-size: 44px;
  }

  .about-values {
    --about-value-cols: 2;
  }

  .industry-hero {
    --industry-hero-carousel-width: min(600px, calc(var(--content-width) - 400px));
  }
}

@media (min-width: 1101px) and (max-width: 1536px) {
  .site-footer {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .site-footer__inner {
    position: relative;
    display: grid;
    width: var(--content-width);
    min-height: auto;
    grid-template-columns: minmax(340px, 0.88fr) minmax(560px, 1.12fr);
    gap: 34px clamp(38px, 4vw, 60px);
  }

  .site-footer__identity,
  .site-footer__brand,
  .site-footer__contact,
  .site-footer__codes,
  .site-footer__nav,
  .site-footer__divider,
  .site-footer__address {
    position: static;
    width: auto;
  }

  .site-footer__identity {
    display: grid;
    align-content: start;
    gap: 24px;
  }

  .site-footer__brand {
    justify-self: start;
  }

  .site-footer__brand-logo {
    height: 40px;
    max-width: 170px;
  }

  .site-footer__contact {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.55;
    white-space: normal;
  }

  .site-footer__codes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-footer__code {
    width: 108px;
  }

  .site-footer__code img {
    width: 108px;
    height: 108px;
  }

  .site-footer__code figcaption {
    margin-top: 8px;
    font-size: 13px;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    column-gap: clamp(20px, 3vw, 42px);
    row-gap: 26px;
    align-items: start;
  }

  .site-footer__title {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .site-footer__column a {
    font-size: 17px;
  }

  .site-footer__column a + a {
    margin-top: 22px;
  }

  .site-footer__divider {
    grid-column: 1 / -1;
    height: 1px;
    margin-top: 2px;
  }

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

  .site-footer__address h2 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .site-footer__address-grid {
    grid-template-columns: repeat(2, max-content);
    column-gap: clamp(38px, 5vw, 70px);
    row-gap: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .site-footer {
    padding: 42px 0 36px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(312px, 0.82fr) minmax(520px, 1.18fr);
    gap: 28px 34px;
  }

  .site-footer__identity {
    gap: 20px;
  }

  .site-footer__brand-logo {
    height: 36px;
    max-width: 154px;
  }

  .site-footer__contact {
    font-size: 16px;
    line-height: 1.5;
  }

  .site-footer__codes {
    gap: 12px;
  }

  .site-footer__code {
    width: 94px;
  }

  .site-footer__code img {
    width: 94px;
    height: 94px;
  }

  .site-footer__code figcaption {
    font-size: 12px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(4, minmax(88px, 1fr));
    column-gap: 18px;
  }

  .site-footer__title {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .site-footer__column a {
    font-size: 16px;
  }

  .site-footer__column a + a {
    margin-top: 18px;
  }

  .site-footer__address h2 {
    font-size: 22px;
  }

  .site-footer__address-grid {
    column-gap: 36px;
    font-size: 14px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  :root {
    --page-gutter: 24px;
    --header-container: 980px;
  }

  .site-header__inner {
    column-gap: 18px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav__link {
    font-size: 12px;
  }

  .site-logo__image {
    --desktop-logo-height: 22px;
    --desktop-logo-width: 112px;
  }

  .floating-contact {
    --desktop-floating-right: -12px;
    transform: translateY(-50%) scale(0.78);
    transform-origin: right center;
  }

  .site-footer {
    min-height: auto;
    padding: 56px 0 38px;
  }

  .site-footer__inner {
    position: relative;
    display: grid;
    width: var(--content-width);
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__identity,
  .site-footer__brand,
  .site-footer__contact,
  .site-footer__codes,
  .site-footer__nav,
  .site-footer__divider,
  .site-footer__address {
    position: static;
    width: auto;
  }

  .site-footer__identity {
    display: grid;
    gap: 22px;
  }

  .site-footer__contact {
    max-width: 760px;
  }

  .site-footer__codes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

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

  .site-footer__divider {
    margin: 0;
  }

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

  .site-footer__address-grid {
    grid-template-columns: 1fr;
    white-space: normal;
  }

  .site-footer__address-grid p {
    white-space: normal;
  }

  .hero {
    --home-hero-height: 660px;
    --home-hero-title-left: 34px;
    --home-hero-title-top: 96px;
    --home-hero-cards-bottom: 28px;
    --home-hero-card-gap: 10px;
    --home-hero-card-padding-x: 18px;
  }

  .hero__copy h1 {
    font-size: 42px;
  }

  .hero__copy p {
    font-size: 19px;
  }

  .hero-card {
    min-height: 238px;
  }

  .hero-card h2 {
    font-size: 20px;
  }

  .hero-card p {
    font-size: 13px;
  }

  .ai-consult {
    --home-ai-robot-width: 128px;
    --home-ai-control-left: 138px;
    --home-ai-form-width: 620px;
    --home-ai-prompt-width: 178px;
    --home-ai-prompt-gap: 9px;
  }

  .ai-consult__submit {
    width: 112px;
  }

  .claw-hero__inner {
    grid-template-columns: 1fr;
  }

  .claw-hero__visual {
    justify-self: center;
    max-width: 420px;
  }

  .claw-skills__grid {
    --claw-skill-cols: 2;
  }

  .solutions-grid {
    --solutions-service-cols: 2;
  }

  .solutions-advantages__grid {
    --solutions-advantage-cols: 2;
  }

  .operation-tabs,
  .honors-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .industry-tabs {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: calc(100vw - var(--page-gutter) * 2);
  }

  .operation-tabs__item,
  .honors-tabs__item {
    flex: 0 0 auto;
    min-width: 132px;
  }

  .industry-tabs__item {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .operation-articles {
    --operation-article-cols: 2;
    --operation-article-col-gap: 24px;
  }

  .news-list__grid {
    --news-card-cols: 2;
    --news-card-gap: 24px;
  }

  .about-hero {
    --about-hero-title-width: min(680px, calc(100vw - 72px));
    --about-hero-media-position: 62% 34%;
  }

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

  .about-intro__row,
  .about-method__inner {
    grid-template-columns: 1fr;
  }

  .about-office__track img {
    width: min(38vw, 360px);
    height: auto;
  }

  .industry-hero {
    --industry-hero-carousel-width: min(560px, calc(var(--content-width) - 388px));
    --industry-hero-carousel-right: -18px;
    --industry-hero-carousel-top: 54px;
  }

  .industry-case__main {
    --industry-case-content-left: 56px;
    --industry-case-content-width: 430px;
    --industry-case-content-gap: 28px;
    --industry-case-visual-right: 50px;
    --industry-case-visual-width: 360px;
    --industry-case-visual-top: 230px;
  }

  .industry-case__content {
    max-width: 430px;
  }

  .industry-case__content h2 {
    max-width: 100%;
    white-space: normal;
  }

  .industry-metrics {
    --industry-metric-cols: 2;
  }

  .honors-grid {
    --honors-award-cols: 2;
    --honors-award-gap: 24px;
  }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .site-footer {
    padding: 42px 0 34px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(278px, 0.82fr) minmax(430px, 1.18fr);
    gap: 28px;
  }

  .site-footer__identity {
    gap: 18px;
  }

  .site-footer__brand-logo {
    height: 34px;
    max-width: 148px;
  }

  .site-footer__contact {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.48;
  }

  .site-footer__codes {
    gap: 10px;
  }

  .site-footer__code {
    width: 86px;
  }

  .site-footer__code img {
    width: 86px;
    height: 86px;
  }

  .site-footer__code figcaption {
    margin-top: 7px;
    font-size: 12px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 14px;
  }

  .site-footer__title {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .site-footer__column a {
    font-size: 15px;
  }

  .site-footer__column a + a {
    margin-top: 16px;
  }

  .site-footer__divider,
  .site-footer__address {
    grid-column: 1 / -1;
  }

  .site-footer__address h2 {
    font-size: 22px;
  }

  .site-footer__address-grid {
    grid-template-columns: repeat(2, max-content);
    column-gap: 26px;
    row-gap: 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-footer__address-grid p {
    white-space: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 800px) {
  .site-footer {
    padding: 42px 0 34px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .site-footer__brand-logo {
    height: 34px;
    max-width: 148px;
  }

  .site-footer__contact {
    font-size: 15px;
  }

  .site-footer__code {
    width: 88px;
  }

  .site-footer__code img {
    width: 88px;
    height: 88px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
  }

  .site-footer__title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .site-footer__column a {
    font-size: 15px;
  }

  .site-footer__column a + a {
    margin-top: 15px;
  }

  .site-footer__address h2 {
    font-size: 22px;
  }
}

/* Laptop responsiveness only: keep the 1980px+ reference layout untouched. */
@media (min-width: 761px) and (max-width: 1979px) {
  :root {
    --laptop-section-y: 72px;
    --laptop-card-gap: 24px;
  }

  .site-header__inner,
  .ai-consult__inner,
  .hero__inner,
  .solution__inner,
  .kox-matrix__inner,
  .site-footer__inner,
  .solution-page-hero__inner,
  .solutions-hero__inner,
  .solutions-overview__inner,
  .solutions-advantages__inner,
  .operation-hero__inner,
  .operation-tabs,
  .operation-articles,
  .news-list__grid,
  .about-intro__inner,
  .about-history__inner,
  .about-founder__inner,
  .about-method__inner,
  .industry-hero__inner,
  .industry-case__main,
  .industry-clients__inner,
  .honors-hero__inner,
  .honors-overview__inner,
  .honors-tabs,
  .honors-grid,
  .article-detail {
    width: var(--content-width);
    max-width: var(--container);
  }

  .site-header__inner {
    gap: clamp(22px, 2vw, 48px);
  }

  .site-nav {
    min-width: 0;
    gap: clamp(18px, 1.7vw, 34px);
  }

  .site-nav__item--dropdown::after {
    left: 0;
    right: 0;
  }

  .site-footer__code {
    width: 128px;
  }

  .site-footer__code img {
    width: 108px;
    height: 108px;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer__code figcaption {
    width: max-content;
    max-width: 132px;
    margin-right: auto;
    margin-left: auto;
    white-space: normal;
    line-height: 1.35;
  }

  .site-footer__address-grid {
    max-width: 100%;
  }

  .site-footer__address-grid p {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-contact {
    right: var(--desktop-floating-right, 48px);
  }

  .solution {
    padding-top: var(--laptop-section-y);
    padding-bottom: calc(var(--laptop-section-y) + 16px);
  }

  .solution__inner h2,
  .kox-matrix__inner h2,
  .clients-standard__inner h2 {
    margin-bottom: 44px;
    font-size: 38px;
    line-height: 1.24;
  }

  .solution-map,
  .kox-matrix__panel {
    width: 100%;
    max-width: 100%;
  }

  .solution-map__headers,
  .solution-map__body {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 3.55fr) minmax(0, 0.96fr);
  }

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

  .solution-map img,
  .kox-matrix__bar,
  .kox-matrix__card {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .kox-matrix {
    padding-bottom: calc(var(--laptop-section-y) + 8px);
  }

  .kox-matrix__cards {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1vw, 18px);
  }

  .kox-matrix__card-shell {
    width: 100%;
    height: auto;
    aspect-ratio: 239 / 506;
  }

  .clients-standard {
    --clients-standard-height: min(848px, calc(var(--clients-standard-viewport-width) * 0.514));
    --clients-standard-image-height: var(--clients-standard-height);
    padding-bottom: 48px;
  }

  .clients-standard__image {
    width: auto;
    height: var(--clients-standard-image-height);
  }

  .claw-features,
  .claw-skills,
  .claw-scenarios,
  .claw-testimonials,
  .claw-skill-comparison,
  .claw-scenario-summary,
  .claw-brand-tags {
    padding-top: var(--laptop-section-y);
    padding-bottom: var(--laptop-section-y);
  }

  .claw-skills__grid {
    grid-template-columns: repeat(var(--claw-skill-cols, 4), minmax(0, 1fr));
    gap: var(--laptop-card-gap);
  }

  .claw-skill-card,
  .claw-testimonial-card,
  .claw-scenario-card {
    min-width: 0;
  }

  .claw-skill-card h3,
  .claw-skill-card p,
  .claw-testimonial-card p,
  .claw-testimonial-card strong,
  .claw-testimonial-card small,
  .claw-scenario-card h3,
  .claw-scenario-card p {
    overflow-wrap: anywhere;
  }

  .claw-scenario-card {
    gap: 30px;
  }

  .claw-scenario-card__metrics,
  .claw-scenario-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-overview,
  .solutions-advantages,
  .operation-list,
  .news-list,
  .honors-awards {
    padding-top: var(--laptop-section-y);
    padding-bottom: var(--laptop-section-y);
  }

  .solutions-grid,
  .solutions-advantages__grid,
  .operation-articles,
  .news-list__grid,
  .honors-grid {
    width: var(--content-width);
    max-width: var(--container);
  }

  .solutions-grid {
    grid-template-columns: repeat(var(--solutions-service-cols, 3), minmax(0, 1fr));
  }

  .solutions-advantages__grid {
    grid-template-columns: repeat(var(--solutions-advantage-cols, 4), minmax(0, 1fr));
  }

  .solutions-card,
  .solutions-advantage-card,
  .operation-card,
  .news-card,
  .honors-award {
    width: 100%;
    min-width: 0;
  }

  .solutions-overview__lead,
  .solutions-card,
  .solutions-advantage-card,
  .operation-card h2,
  .operation-card p,
  .news-card h2,
  .news-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .operation-articles {
    grid-template-columns: repeat(var(--operation-article-cols, 4), minmax(0, 1fr));
  }

  .news-list__grid {
    grid-template-columns: repeat(var(--news-card-cols, 3), minmax(0, 1fr));
  }

  .operation-card__cover,
  .news-card__cover,
  .honors-award__image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .operation-card__cover {
    aspect-ratio: 262 / 159;
  }

  .news-card__cover {
    aspect-ratio: 344 / 230;
  }

  .about-hero {
    --about-hero-height: 360px;
    height: var(--about-hero-height);
    min-height: var(--about-hero-height);
  }

  .about-hero h1 {
    left: 50%;
    top: 50%;
    width: min(880px, calc(100vw - var(--page-gutter) * 2));
    height: auto;
    justify-content: center;
    transform: translate(-50%, -50%);
    line-height: 1.14;
    text-align: center;
    text-shadow:
      0 2px 14px rgba(238, 243, 251, 0.96),
      0 0 4px rgba(255, 255, 255, 0.95);
  }

  .about-hero__video,
  .about-hero__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-intro {
    height: auto;
    padding: 64px 0 58px;
  }

  .about-intro__inner {
    padding-top: 0;
  }

  .about-intro__row {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 42px;
  }

  .about-intro__visual,
  .about-history__inner img,
  .about-method__inner img,
  .about-founder__portrait {
    max-width: 100%;
    height: auto;
  }

  .about-values {
    grid-template-columns: repeat(var(--about-value-cols, 4), minmax(0, 1fr));
    gap: 18px;
    margin-top: 52px;
  }

  .about-value-card {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 286px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .about-value-card h3,
  .about-value-card strong,
  .about-value-card p {
    overflow-wrap: anywhere;
  }

  .about-history {
    height: auto;
    min-height: 0;
    padding: 62px 0 56px;
  }

  .about-history__inner {
    width: var(--wide-content-width);
    max-width: 1548px;
    padding-top: 0;
  }

  .about-history__inner img {
    width: 100%;
    margin-top: 42px;
  }

  .about-founder {
    height: auto;
    min-height: 528px;
    overflow: hidden;
  }

  .about-founder__inner {
    width: var(--content-width);
    height: auto;
    min-height: 500px;
    padding-top: 58px;
  }

  .about-founder__bio {
    width: min(820px, calc(100% - 300px));
  }

  .about-founder__portrait {
    top: auto;
    bottom: 0;
    width: auto;
    height: min(390px, calc(100% - 82px));
  }

  .about-method,
  .about-office,
  .about-cta,
  .site-bottom-cta,
  .industry-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-method__inner img {
    width: min(620px, 100%);
    margin-top: 34px;
  }

  .about-office__inner,
  .about-office__carousel {
    width: 100%;
    max-width: 100%;
  }

  .industry-hero__brand-carousel {
    width: var(--industry-hero-carousel-width);
    max-width: none;
  }

  .industry-case {
    min-height: var(--industry-case-section-height);
    height: auto;
  }

  .industry-case__main {
    width: min(1980px, 100%);
    max-width: 1980px;
  }

  .industry-case__content h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .industry-case__content p {
    max-width: 100%;
  }

  .industry-metrics {
    grid-template-columns: repeat(var(--industry-metric-cols, 2), minmax(0, 1fr));
  }

  .industry-metrics article {
    width: auto;
    min-width: 0;
  }

  .industry-case__visual-image {
    width: 100%;
    height: 100%;
  }

  .industry-clients {
    overflow: hidden;
  }

  .industry-clients__inner {
    gap: 24px;
  }

  .industry-clients__inner img {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: auto;
    max-height: 61px;
    transform: none;
  }
}

@media (min-width: 1537px) and (max-width: 1979px) {
  :root {
    --page-gutter: 64px;
    --laptop-section-y: 76px;
  }

  .site-footer__inner {
    width: min(1440px, calc(100vw - var(--page-gutter) * 2));
    max-width: 1440px;
  }

  .industry-case__main {
    --industry-case-content-left: min(10.86vw, 215px);
    --industry-case-visual-right: min(9.6vw, 190px);
  }
}

@media (min-width: 1367px) and (max-width: 1536px) {
  :root {
    --page-gutter: 56px;
    --laptop-section-y: 70px;
  }

  .hero__copy h1 {
    font-size: 58px;
  }

  .clients-standard {
    --clients-standard-height: 620px;
  }

  .industry-case__main {
    --industry-case-content-left: 128px;
    --industry-case-content-width: 540px;
    --industry-case-visual-right: 96px;
    --industry-case-visual-width: 520px;
  }
}

@media (min-width: 1281px) and (max-width: 1366px) {
  :root {
    --page-gutter: 48px;
    --laptop-section-y: 64px;
  }

  .clients-standard {
    --clients-standard-height: 586px;
  }

  .solution__inner h2,
  .kox-matrix__inner h2,
  .clients-standard__inner h2 {
    font-size: 36px;
  }

  .solutions-advantages__grid {
    --solutions-advantage-cols: 3;
  }

  .claw-scenario-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .about-hero {
    --about-hero-height: 340px;
  }

  .industry-case__main {
    --industry-case-content-left: 96px;
    --industry-case-content-width: 500px;
    --industry-case-visual-right: 72px;
    --industry-case-visual-width: 470px;
  }

  .industry-metrics strong {
    font-size: 26px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  :root {
    --page-gutter: 36px;
    --laptop-section-y: 58px;
  }

  .clients-standard {
    --clients-standard-height: 548px;
  }

  .solution__inner h2,
  .kox-matrix__inner h2,
  .clients-standard__inner h2 {
    font-size: 34px;
    margin-bottom: 38px;
  }

  .hero-card {
    min-height: 210px;
  }

  .claw-skills__grid {
    --claw-skill-cols: 3;
  }

  .solutions-advantages__grid {
    --solutions-advantage-cols: 3;
  }

  .operation-articles {
    --operation-article-cols: 3;
  }

  .about-hero {
    --about-hero-height: 320px;
  }

  .about-values {
    --about-value-cols: 4;
  }

  .about-intro__copy h2,
  .about-history__inner h2,
  .about-founder__inner h2,
  .about-office__inner h2 {
    font-size: 38px;
  }

  .about-intro__copy p,
  .about-founder__bio p,
  .about-method__inner p {
    line-height: 30px;
  }

  .about-value-card {
    min-height: 264px;
    padding: 28px 18px 22px;
  }

  .about-value-card h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .about-value-card strong {
    margin-top: 18px;
    font-size: 30px;
  }

  .about-value-card p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.85;
  }

  .industry-case {
    --industry-case-section-height: 760px;
  }

  .industry-case__main {
    --industry-case-content-left: 64px;
    --industry-case-content-width: 460px;
    --industry-case-visual-right: 48px;
    --industry-case-visual-width: 420px;
    --industry-case-visual-top: 248px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  :root {
    --page-gutter: 28px;
    --laptop-section-y: 52px;
  }

  .floating-contact {
    --desktop-floating-right: 12px;
  }

  .site-nav__dropdown-menu {
    left: auto;
    right: 0;
    transform: translate3d(0, 8px, 0);
  }

  .site-nav__dropdown-menu::before {
    left: auto;
    right: 18px;
    transform: rotate(45deg);
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown-menu,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown-menu {
    transform: translate3d(0, 0, 0);
  }

  .clients-standard {
    --clients-standard-height: 500px;
  }

  .solution__inner h2,
  .kox-matrix__inner h2,
  .clients-standard__inner h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .solution-map__headers,
  .solution-map__body {
    column-gap: 8px;
  }

  .kox-matrix__cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .claw-skills__grid {
    --claw-skill-cols: 2;
  }

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

  .about-hero {
    --about-hero-height: 300px;
  }

  .about-intro__row {
    grid-template-columns: 1fr;
  }

  .about-intro__visual {
    width: min(100%, 594px);
  }

  .about-values {
    --about-value-cols: 4;
  }

  .about-value-card {
    min-height: 244px;
    padding: 24px 16px 20px;
  }

  .about-value-card h3 {
    margin-top: 24px;
    font-size: 26px;
  }

  .about-value-card strong {
    margin-top: 16px;
    font-size: 25px;
  }

  .about-value-card p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .about-founder__bio {
    width: min(680px, 100%);
  }

  .about-founder__portrait {
    opacity: 0.22;
  }

  .about-method__inner img {
    width: min(560px, 100%);
  }

  .industry-case {
    --industry-case-section-height: 880px;
  }

  .industry-case__main {
    --industry-case-content-left: 50px;
    --industry-case-content-top: 156px;
    --industry-case-content-width: calc(100% - 100px);
    --industry-case-visual-right: 50px;
    --industry-case-visual-width: min(520px, calc(100% - 100px));
    --industry-case-visual-top: 520px;
  }

  .industry-case__content {
    width: var(--industry-case-content-width);
    max-width: var(--industry-case-content-width);
  }

  .industry-metrics {
    width: min(580px, 100%);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  :root {
    --page-gutter: 24px;
    --laptop-section-y: 48px;
  }

  .floating-contact {
    --desktop-floating-right: 8px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav__dropdown-menu {
    left: auto;
    right: 0;
    transform: translate3d(0, 8px, 0);
  }

  .site-nav__dropdown-menu::before {
    left: auto;
    right: 18px;
    transform: rotate(45deg);
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown-menu,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown-menu {
    transform: translate3d(0, 0, 0);
  }

  .site-nav__link {
    font-size: 11px;
  }

  .clients-standard {
    --clients-standard-height: 456px;
  }

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

  .hero-card {
    min-height: 220px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-card h2 {
    font-size: 19px;
  }

  .hero-card p {
    font-size: 12px;
  }

  .solution__inner h2,
  .kox-matrix__inner h2,
  .clients-standard__inner h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .claw-skills__grid,
  .solutions-grid,
  .solutions-advantages__grid,
  .operation-articles,
  .news-list__grid,
  .honors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    --about-hero-height: 280px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-values {
    --about-value-cols: 4;
  }

  .about-value-card {
    min-height: 228px;
    padding: 22px 14px 18px;
  }

  .about-value-card h3 {
    margin-top: 22px;
    font-size: 24px;
  }

  .about-value-card strong {
    margin-top: 14px;
    font-size: 22px;
  }

  .about-value-card p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
  }

  .about-founder__bio {
    width: 100%;
  }

  .about-founder__portrait {
    display: none;
  }

  .about-founder,
  .about-founder__inner {
    min-height: 380px;
  }

  .about-office__track img {
    width: 320px;
  }

  .industry-case {
    --industry-case-section-height: 900px;
  }

  .industry-tabs__item {
    padding-right: 34px;
    padding-left: 34px;
  }

  .industry-case__main {
    --industry-case-content-left: 42px;
    --industry-case-content-top: 150px;
    --industry-case-content-width: calc(100% - 84px);
    --industry-case-visual-right: 42px;
    --industry-case-visual-width: min(500px, calc(100% - 84px));
    --industry-case-visual-top: 540px;
  }

  .industry-case__content {
    width: var(--industry-case-content-width);
    max-width: var(--industry-case-content-width);
  }
}

@media (max-width: 760px) {
  .about-hero h1 {
    --about-hero-title-left: 50%;
    left: 50%;
    width: min(863px, calc(100vw - 48px));
    height: auto;
    display: block;
    transform: translate(-50%, -50%);
    line-height: 1.1;
  }

  .about-intro__inner,
  .about-history__inner,
  .about-founder__inner,
  .about-method__inner,
  .about-office__inner {
    width: calc(100vw - 82px);
    margin-right: auto;
    margin-left: auto;
  }

  .about-intro__row {
    width: 100%;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .about-intro__copy,
  .about-history__inner h2,
  .about-history__inner p,
  .about-founder__inner h2,
  .about-founder__bio,
  .about-method__inner p,
  .about-office__inner h2 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .about-founder__bio {
    margin-top: 72px;
  }

  .about-method__inner p {
    margin-top: 0;
  }
}
