:root {
  --shared-ac-red: #d7000f;
  --shared-ac-ink: #1a0404;
  --shared-ac-dark: #14363f;
  --shared-ac-copy: #333333;
  --shared-ac-outfit: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shared-title-band-height: 653px;
  --shared-title-band-gradient: linear-gradient(90deg, rgba(20, 105, 251, 0.92) 0%, rgba(20, 105, 251, 0.84) 34%, rgba(20, 105, 251, 0.36) 62%, rgba(20, 105, 251, 0) 100%);
  --shared-title-band-image: none;
  --shared-count-up-duration: 5000ms;
  --ac-red: #d7000f;
      --ac-red-deep: #c20a17;
      --ac-ink: #1a0404;
      --ac-dark: #14363f;
      --ac-copy: #333333;
      --ac-muted: #666666;
      --ac-soft: #999999;
      --ac-line: #dddddd;
      --ac-panel: #ffffff;
      --ac-bg: #fefefe;
      --ac-shell: 1640px;
      --ac-radius-xl: 40px;
      --ac-radius-lg: 32px;
      --ac-shadow: 0 24px 60px rgba(13, 36, 46, 0.08);
      --ac-outfit: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      --ac-yahei: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

.shared-display-title {
  margin: 0;
  color: var(--shared-ac-ink);
  font-weight: 700;
  letter-spacing: 0;
}

.shared-display-title--hero {
  font-size: 68px;
  font-weight: 400;
  line-height: 1.32;
}

.shared-display-title--section {
  color: #0e232d;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.shared-title-band {
  position: relative;
  isolation: isolate;
}

.shared-title-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  max-width: 1920px;
  height: var(--shared-title-band-height);
  transform: translateX(-50%);
  background: var(--shared-title-band-gradient), var(--shared-title-band-image) center top / cover no-repeat;
  pointer-events: none;
}

.shared-title-band--values {
  --shared-title-band-image: url("../static/img/about-values-title-band.png");
}

.shared-display-title--on-band {
  max-width: 470px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.62;
  letter-spacing: 0.08em;
}

.shared-count-up-number {
  display: block;
  font-family: var(--shared-ac-outfit);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}


body {
  font-family: "Outfit", "Microsoft YaHei", Arial, sans-serif;
}

.page-root {
  width: 100%;
}

.primary-action {
  position: relative;
  overflow: hidden;
  transition: color var(--motion-interaction, 0.35s) ease, box-shadow var(--motion-interaction, 0.35s) ease;
}

.primary-action::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #fff;
  transition: width var(--motion-interaction, 0.35s) ease;
  z-index: 0;
}

.primary-action > span {
  position: relative;
  z-index: 1;
}

.primary-action:hover::before,
.primary-action:focus::before {
  width: 100%;
}

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}


@media (max-width: 1429.98px) and (min-width: 1090px) {
  .shared-display-title--hero {
    font-size: 58px;
  }

  .shared-title-band {
    --shared-title-band-height: 760px;
  }
}

@media (max-width: 1089.98px) and (min-width: 972px) {
  .shared-display-title--hero {
    font-size: 50px;
  }

  .shared-title-band {
    --shared-title-band-height: 820px;
  }
}

@media (max-width: 971.98px) and (min-width: 762px) {
  .shared-display-title--hero {
    font-size: 40px;
  }

  .shared-title-band {
    --shared-title-band-height: 860px;
  }

  .shared-display-title--on-band {
    max-width: 360px;
    font-size: 34px;
  }
}

@media (max-width: 761.98px) {
  .shared-display-title--hero {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.24;
  }

  .shared-title-band {
    --shared-title-band-height: 820px;
  }

  .shared-display-title--on-band {
    max-width: 280px;
    font-size: 26px;
  }

  .shared-count-up-number {
    font-size: 28px;
  }

  .shared-display-title--section {
    font-size: 24px;
  }
}


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

    button {
      font: inherit;
    }

    a,
    a:hover,
    a:focus {
      color: inherit;
      text-decoration: none;
    }

    .about-company-page {
      overflow: hidden;
      background: #fff;
    }

    .about-company-page__shell {
      width: min(calc(100% - 48px), var(--ac-shell));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .about-company-page__eyebrow {
      display: inline-block;
      margin: 0 0 20px;
      color: var(--ac-red);
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
    }

    .about-company-page__section-title {
      margin: 0;
      color: #0e232d;
      font-size: 48px;
      font-weight: 700;
      letter-spacing: 0.12em;
      line-height: 1;
    }

    .about-company-page__section-subtitle {
      display: block;
      margin-top: 18px;
      font-family: var(--ac-outfit);
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      color: #101010;
    }

    .ac-hero {
      padding: 112px 0 0;
      background: #fff;
    }

    .ac-hero__top {
      display: grid;
      grid-template-columns: minmax(520px, 1fr) minmax(520px, 885px);
      gap: 72px;
      align-items: start;
    }

    .ac-hero__title {
      margin: 0;
      color: var(--ac-ink);
      font-size: 68px;
      font-weight: 400;
      line-height: 1.32;
      letter-spacing: 0;
    }

    .ac-hero__copy {
      padding-top: 4px;
      font-size: 16px;
      line-height: 1.875;
      color: var(--ac-copy);
    }

    .ac-hero__copy p {
      margin: 0 0 14px;
    }

    .ac-hero__copy p:last-child {
      margin-bottom: 0;
    }

    .ac-hero__tabs {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 54px;
      padding: 9px 10px;
      border-radius: 999px;
      background: linear-gradient(180deg, #fdf2f2 0%, #f9e9e9 100%);
    }

    .ac-hero__tab {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 999px;
      background-color: transparent;
      background-image: linear-gradient(var(--ac-red), var(--ac-red));
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 0 100%;
      color: var(--ac-dark);
      padding: 10px 16px;
      min-width: 88px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      text-decoration: none;
      appearance: none;
      -webkit-appearance: none;
      -webkit-tap-highlight-color: transparent;
      transition: color 0.35s ease, background-size 0.35s ease;
    }

    .ac-hero__tab:visited,
    .ac-hero__tab:hover,
    .ac-hero__tab:active {
      color: var(--ac-dark);
      text-decoration: none;
    }

    .ac-hero__tab:hover {
      background-size: 100% 100%;
      color: #fff;
    }

    .ac-hero__tab:focus {
      outline: none;
      background-size: 100% 100%;
      color: #fff;
    }

    .ac-hero__tab:focus-visible {
      box-shadow: none;
    }

    .ac-hero__tab.is-active {
      background-color: var(--ac-red);
      background-size: 100% 100%;
      color: #fff;
    }

    .ac-hero__tab.is-active:visited,
    .ac-hero__tab.is-active:hover,
    .ac-hero__tab.is-active:active {
      color: #fff;
    }

    .ac-hero__intro,
    .ac-hero__copy,
    .ac-hero__media,
    .ac-story__block,
    .ac-values__title,
    .ac-values__stats,
    .ac-values__card,
    .ac-history__heading,
    .ac-history__stage,
    .ac-history__rail,
    .ac-patents__content,
    .ac-patents__figure {
      opacity: 0;
      transform: translateY(28px);
      animation: ac-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      will-change: transform, opacity;
    }

    .ac-hero__intro {
      animation-delay: 0.06s;
    }

    .ac-hero__copy {
      animation-delay: 0.14s;
    }

    .ac-hero__media {
      animation-delay: 0.22s;
    }

    .ac-story__block:first-child {
      animation-delay: 0.18s;
    }

    .ac-story__block:last-child {
      animation-delay: 0.26s;
    }

    .ac-values__title {
      animation-delay: 0.12s;
    }

    .ac-values__stats {
      animation-delay: 0.2s;
    }

    .ac-values__card:nth-child(1) {
      animation-delay: 0.18s;
    }

    .ac-values__card:nth-child(2) {
      animation-delay: 0.26s;
    }

    .ac-values__card:nth-child(3) {
      animation-delay: 0.34s;
    }

    .ac-history__heading {
      animation-delay: 0.12s;
    }

    .ac-history__stage {
      animation-delay: 0.2s;
    }

    .ac-history__rail {
      animation-delay: 0.28s;
    }

    .ac-patents__content {
      animation-delay: 0.14s;
    }

    .ac-patents__figure {
      animation-delay: 0.24s;
    }

    .ac-values__card,
    .ac-history__slide-unit,
    .ac-patents__logo,
    .ac-hero__media img {
      transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    }

    .ac-values__card:hover,
    .ac-history__slide-unit:hover {
      transform: translateY(-4px);
    }

    .ac-patents__logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 26px rgba(13, 36, 46, 0.08);
    }

    @keyframes ac-fade-up {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

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

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

      .ac-hero__intro,
      .ac-hero__copy,
      .ac-hero__media,
      .ac-story__block,
      .ac-values__title,
      .ac-values__stats,
      .ac-values__card,
      .ac-history__heading,
      .ac-history__stage,
      .ac-history__rail,
      .ac-patents__content,
      .ac-patents__figure {
        opacity: 1;
        transform: none;
        animation: none;
      }

      .ac-values__card,
      .ac-history__slide-unit,
      .ac-patents__logo,
      .ac-hero__media img,
      .ac-hero__tab {
        transition: none;
      }
    }

    .ac-hero__media {
      position: relative;
      margin-top: 113px;
      margin-bottom: -152px;
      border-radius: var(--ac-radius-xl);
      overflow: hidden;
      z-index: 3;
    }

    .ac-hero__media img {
      width: 100%;
      height: auto;
    }

    .ac-hero__play {
      position: absolute;
      top: 50%;
      left: 51.3%;
      width: 84px;
      height: 84px;
      margin: -42px 0 0 -42px;
      border: 0;
      border-radius: 50%;
      background: rgba(215, 0, 15, 0.84);
      box-shadow: 0 24px 48px rgba(215, 0, 15, 0.24);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
      pointer-events: auto;
    }

    .ac-hero__play::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 53%;
      transform: translate(-50%, -50%);
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 26px solid #fff;
      transition: transform 0.3s ease;
    }

    .ac-hero__play:hover {
      transform: scale(1.08);
      background: rgba(215, 0, 15, 0.94);
      box-shadow: 0 30px 56px rgba(215, 0, 15, 0.28);
    }

    .ac-hero__play:hover::before {
      transform: translate(-50%, -50%) scale(1.08);
    }

    .ac-story {
      position: relative;
      padding: 356px 0 61px;
      background: #fff;
    }

    .ac-story::before {
      content: "OYANG";
      position: absolute;
      left: 50%;
      bottom: 48px;
      transform: translateX(-50%);
      font-family: var(--ac-outfit);
      font-size: clamp(140px, 20vw, 280px);
      font-weight: 700;
      line-height: 1;
      color: rgba(20, 54, 63, 0.04);
      letter-spacing: 0.06em;
      white-space: nowrap;
      pointer-events: none;
    }

    .ac-story__grid {
      display: grid;
      grid-template-columns: minmax(0, 788px) minmax(0, 766px);
      justify-content: space-between;
      gap: 86px;
    }

    .ac-story__block {
      position: relative;
    }

    .ac-story__heading {
      margin: 0 0 45px;
      font-size: 32px;
      font-weight: 700;
      line-height: 1.5;
      color: #101010;
    }

    .ac-story__heading--right {
      margin-bottom: 13px;
      font-size: 24px;
      line-height: 32px;
    }

    .ac-story__block p {
      margin: 0 0 18px;
      font-size: 20px;
      line-height: 1.6;
      color: var(--ac-copy);
    }

    .ac-story__block p:last-child {
      margin-bottom: 0;
    }

    .ac-story__highlight {
      color: var(--ac-red);
      font-weight: 700;
    }

    .ac-values {
      position: relative;
      padding: 77px 0 123px;
      background: #fff;
    }

    .ac-values::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1920px;
      height: 653px;
      background:
        linear-gradient(90deg, rgba(20, 105, 251, 0.92) 0%, rgba(20, 105, 251, 0.84) 34%, rgba(20, 105, 251, 0.36) 62%, rgba(20, 105, 251, 0) 100%),
        url("/wp-content/uploads/2026/04/001-ece65e8461736ae6fa5000b631419856-a73bdde6-0123-4828-a798-f82c7c2af2b8.png") center top / cover no-repeat;
      pointer-events: none;
    }

    .ac-values__title {
      position: relative;
      margin: 0 0 0 -7px;
      max-width: 470px;
      color: #fff;
      font-size: 42px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.62;
    }

    .ac-values__stats {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 250px));
      gap: 28px 28px;
      width: fit-content;
      margin-top: 43px;
    }

    .ac-values__stat {
      min-height: 140px;
      padding: 28px 20px 22px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(6px);
      color: #fff;
      text-align: center;
    }

    .ac-values__number {
      display: block;
      font-family: var(--ac-outfit);
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      color: #fff;
    }

    .ac-values__label {
      display: block;
      margin-top: 16px;
      font-size: 18px;
      line-height: 1.2;
      color: #fff;
    }

    .ac-values__cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 528px));
      gap: 28px;
      margin-top: 64px;
    }

    .ac-values__card {
      height: 303px;
      padding: 71px 58px 8px 40px;
      border-radius: var(--ac-radius-xl);
      background: #fff;
      color: var(--ac-muted);
      box-shadow: var(--ac-shadow);
    }

    .ac-values__card.is-accent {
      background: var(--ac-red);
      color: #fff;
      box-shadow: 0 28px 60px rgba(215, 0, 15, 0.18);
    }

    .ac-values__card-title {
      margin: 0;
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
      color: var(--ac-red);
    }

    .ac-values__card.is-accent .ac-values__card-title {
      color: #fff;
    }

    .ac-values__card-kicker {
      display: block;
      margin-top: 5px;
      font-family: var(--ac-outfit);
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1;
      color: rgba(102, 102, 102, 0.7);
    }

    .ac-values__card.is-accent .ac-values__card-kicker {
      color: rgba(255, 255, 255, 0.96);
    }

    .ac-values__card-body {
      margin: 54px 0 0;
      font-size: 22px;
      line-height: 32px;
      letter-spacing: 0.05em;
      color: inherit;
    }

    .ac-history {
      position: relative;
      padding: 18px 0 195px;
      background: #fff;
    }

    .ac-history::before {
      content: "";
      position: absolute;
      left: -120px;
      top: 52px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(20, 54, 63, 0.06) 0%, rgba(20, 54, 63, 0) 70%);
      pointer-events: none;
    }

    .ac-history__heading {
      text-align: center;
    }

    .ac-history__badge {
      display: inline-block;
      position: relative;
      width: 60px;
      height: 60px;
      border-radius: 10px;
      background: linear-gradient(135deg, #d70010 0%, #ff7257 45%, #ffffff 100%);
      transform: translateY(-6px);
      vertical-align: middle;
      z-index: 0;
    }

    .ac-history__heading h2 {
      display: inline-block;
      position: relative;
      vertical-align: middle;
      z-index: 1;
      margin-left: -22px;
    }

    .ac-history__heading .about-company-page__section-subtitle {
      position: relative;
      z-index: 1;
    }

    .ac-history__stage {
      position: relative;
      width: 1920px;
      height: 556px;
      margin-top: 111px;
      margin-left: calc(50% - 816px);
      /* overflow: hidden; */
    }

    .ac-history__track {
      height: 100%;
    }

    .ac-history__slide {
      position: relative;
      width: 1076px;
      height: 556px;
      padding: 0 0 46px;
    }

    .ac-history__slide-unit {
      display: grid;
      grid-template-columns: repeat(2, 528px);
      column-gap: 20px;
      width: 1076px;
      height: 510px;
      padding: 0;
      border-radius: var(--ac-radius-xl);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 16px 28px rgba(13, 36, 46, 0.08);
    }

    .ac-history__slide-image,
    .ac-history__slide-card {
      height: 510px;
      background: #fff;
    }

    .ac-history__slide-card {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 52px 44px 41px 55px;
    }

    .ac-history__slide-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ac-history__year {
      margin: 0 0 111px;
      font-family: var(--ac-outfit);
      font-size: 86px;
      font-weight: 400;
      line-height: 0.9;
      color: var(--ac-red);
    }

    .ac-history__title {
      margin: 0 0 30px;
      font-size: 32px;
      line-height: 32px;
      font-weight: 700;
      color: #101010;
    }

    .ac-history__text {
      margin: 0;
      font-size: 18px;
      line-height: 28px;
      color: #999999;
    }

    .ac-history__rail {
      position: relative;
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      overflow-x: auto;
      overflow-y: hidden;
      min-height: 67px;
      margin-top: 38px;
      padding: 0 0 12px;
      scroll-behavior: smooth;
      cursor: grab;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }

    .ac-history__rail.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
    }

    .ac-history__rail::-webkit-scrollbar {
      display: none;
    }

    .ac-history__rail-item {
      position: relative;
      z-index: 1;
      flex: 0 0 20%;
      min-width: 180px;
      padding: 0;
      border: 0;
      background: transparent;
      text-align: left;
      color: #999999;
    }

    .ac-history__rail-item::before {
      content: "";
      position: absolute;
      top: 47px;
      left: 19px;
      z-index: 1;
      width: 31px;
      height: 3px;
      background: #ffffff;
    }

    .ac-history__rail-item::after {
      content: "";
    position: absolute;
    top: 47px;
    left: 64px;
    z-index: 0;
    width: 80%;
    height: 1px;
    background: #dddddd;
    }

    .ac-history__rail-item:last-child::after {
      display: none;
    }

    .ac-history__rail-item.is-disabled {
      cursor: default;
    }

    .ac-history__rail-year {
      display: block;
      position: relative;
      z-index: 2;
      left: 1px;
      font-family: var(--ac-outfit);
      font-size: 28px;
      font-weight: 400;
      line-height: 30px;
      color: currentColor;
    }

    .ac-history__rail-dot {
      display: block;
      position: absolute;
      top: 40px;
      left: 27px;
      z-index: 2;
      width: 15px;
      height: 15px;
      border-radius: 3px;
      background: currentColor;
    }

    .ac-history__rail-item.is-active {
      color: var(--ac-dark);
    }

    .ac-history__rail-item.is-active .ac-history__rail-dot {
      background: var(--ac-red);
    }

    .ac-patents {
      position: relative;
      min-height: 662px;
      padding: 101px 0 78px;
      background: #fefefe;
      overflow: hidden;
    }

    .ac-patents__content {
      max-width: 560px;
      position: relative;
      z-index: 2;
    }

    .ac-patents__headline {
      display: grid;
      grid-template-columns: 4px 1fr;
      gap: 22px;
      align-items: start;
      margin-bottom: 58px;
    }

    .ac-patents__line {
      width: 4px;
      height: 94px;
      border-radius: 999px;
      background: var(--ac-red);
      margin-top: 2px;
    }

    .ac-patents__headline h2 {
      margin: 0;
      font-size: 36px;
      line-height: 1.32;
      font-weight: 700;
      color: #333333;
    }

    .ac-patents__count {
      display: flex;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 28px;
      color: var(--ac-red);
    }

    .ac-patents__count strong {
      font-family: var(--ac-outfit);
      font-size: 62px;
      font-weight: 700;
      line-height: 1;
    }

    .ac-patents__count span {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.1;
      color: #666666;
      transform: translateY(-10px);
    }

    .ac-patents__copy {
      margin: 0;
      font-size: 20px;
      line-height: 1.6;
      color: #666666;
    }

    .ac-patents__logos {
      display: flex;
      gap: 29px;
      margin-top: 41px;
    }

    .ac-patents__logo {
      width: 82px;
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ac-line);
      border-radius: 14px;
      background: #fff;
    }

    .ac-patents__logo img {
      max-width: 65px;
      max-height: 60px;
      object-fit: contain;
    }

    .ac-patents__figure {
      position: absolute;
      top: -157px;
      right: -140px;
      width: min(892px, 46.5vw);
      height: 721px;
      margin: 0;
      z-index: 1;
    }

    .ac-patents__figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 1549.98px) and (min-width: 1430px) {
      .about-company-page__shell {
        width: min(calc(100% - 40px), var(--ac-shell));
      }

      .ac-hero__top {
        grid-template-columns: minmax(440px, 1fr) minmax(500px, 1fr);
        gap: 56px;
      }

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

      .ac-history__stage {
        width: calc(100vw - 24px);
        margin-left: calc(50% - 50vw + 12px);
      }

      .ac-patents__figure {
        right: -88px;
        width: min(820px, 45vw);
      }
    }

    @media (max-width: 1429.98px) and (min-width: 1090px) {
      .about-company-page__shell {
        width: min(calc(100% - 36px), var(--ac-shell));
      }

      .ac-hero {
        padding-top: 96px;
      }

      .ac-hero__top {
        grid-template-columns: minmax(380px, 1fr) minmax(440px, 1fr);
        gap: 44px;
      }

      .ac-hero__title {
        font-size: 58px;
      }

      .ac-story__grid {
        gap: 52px;
      }

      .ac-values::before {
        height: 760px;
      }

      .ac-values__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        max-width: 806px;
      }

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

      .ac-values__card {
        padding: 56px 36px 24px;
      }

      .ac-history {
        padding-bottom: 160px;
      }

      .ac-history__stage {
        width: calc(100vw - 32px);
        margin-left: calc(50% - 50vw + 16px);
      }

      .ac-history__slide {
        width: min(1020px, calc(100vw - 96px));
      }

      .ac-history__slide-unit {
        width: 100%;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      }

      .ac-history__slide-card {
        padding: 52px 36px 36px 40px;
      }

      .ac-patents__figure {
        top: -120px;
        right: -64px;
        width: min(700px, 43vw);
      }
    }

    @media (max-width: 1089.98px) and (min-width: 972px) {
      .about-company-page__shell {
        width: min(calc(100% - 32px), var(--ac-shell));
      }

      .ac-hero {
        padding-top: 88px;
      }

      .ac-hero__top,
      .ac-story__grid,
      .ac-values__cards {
        grid-template-columns: 1fr;
      }

      .ac-hero__top {
        gap: 44px;
      }

      .ac-hero__title {
        font-size: 50px;
      }

      .ac-hero__tabs {
        margin-top: 36px;
      }

      .ac-hero__media {
        margin-top: 84px;
        margin-bottom: -116px;
      }

      .ac-story__heading {
        font-size: 38px;
      }

      .ac-story__heading--right {
        font-size: 28px;
      }

      .ac-values::before {
        height: 820px;
      }

      .ac-values__stats {
        grid-template-columns: repeat(2, minmax(0, 250px));
        max-width: 528px;
      }

      .ac-values__cards {
        max-width: 760px;
        gap: 20px;
      }

      .ac-history {
        padding-top: 88px;
      }

      .ac-history__stage {
        width: auto;
        height: auto;
        margin-top: 72px;
        margin-left: 0;
        overflow: visible;
      }

      .ac-history__slide {
        width: min(920px, 100%);
        height: auto;
        padding-bottom: 24px;
      }

      .ac-history__slide-unit {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
      }

      .ac-history__slide-image {
        min-height: 360px;
      }

      .ac-history__slide-card {
        min-height: 390px;
      }

      .ac-patents {
        min-height: 0;
        padding-bottom: 40px;
      }

      .ac-patents__figure {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 48px;
      }
    }

    @media (max-width: 971.98px) and (min-width: 762px) {
      .about-company-page__shell {
        width: min(calc(100% - 28px), var(--ac-shell));
      }

      .ac-hero {
        padding-top: 20px;
      }

      .ac-hero__top,
      .ac-story__grid,
      .ac-values__cards {
        grid-template-columns: 1fr;
      }

      .ac-hero__top {
        gap: 20px;
      }

      .ac-hero__title {
        font-size: 40px;
      }

      .ac-hero__copy {
        font-size: 14px;
      }

      .ac-hero__tabs {
        gap: 8px;
        margin-top: 20px;
      }

      .ac-hero__media {
        margin-top: 20px;
        margin-bottom: -20px;
      }

      .ac-story,
      .ac-values,
      .ac-history,
      .ac-patents {
        padding-top: 20px;
      }

      .ac-history {
        padding-bottom: 20px;
      }

      .ac-patents {
        padding-top: 20px;
        padding-bottom: 20px;
        min-height: 0;
      }

      .ac-patents__content {
        max-width: 100%;
      }

      .ac-values {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .ac-story__heading,
      .ac-story__heading--right {
        font-size: 28px;
        line-height: 1.45;
      }

      .ac-values::before {
        height: 860px;
      }

      .ac-values__title {
        font-size: 34px;
        max-width: 360px;
      }

      .ac-values__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        width: 100%;
        max-width: 528px;
      }

      .ac-values__stat {
        min-height: 0;
        padding: 20px 16px 18px;
      }

      .ac-values__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 20px;
      }

      .ac-values__card {
        height: auto;
        padding: 20px 20px 20px;
        min-height: 0;
      }

      .ac-values__card:last-child {
        grid-column: 1 / -1;
      }

      .ac-values__card-title {
        font-size: 24px;
      }

      .ac-values__card-kicker {
        font-size: 14px;
      }

      .ac-values__card-body {
        margin-top: 20px;
        font-size: 16px;
        line-height: 24px;
      }

      .ac-history__heading h2 {
        font-size: 32px;
      }

      .ac-history__badge {
        width: 42px;
        height: 42px;
      }

      .ac-history__heading .about-company-page__section-subtitle {
        margin-top: 10px;
        font-size: 16px;
      }

      .ac-history__stage {
        width: auto;
        height: auto;
        margin-top: 20px;
        margin-left: 0;
        overflow: visible;
      }

      .ac-history__slide {
        width: 100%;
        height: auto;
        padding-bottom: 12px;
      }

      .ac-history__slide-unit {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
      }

      .ac-history__slide-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
      }

      .ac-history__slide-card {
        height: auto;
        min-height: 0;
        padding: 20px 20px 20px;
      }

      .ac-history__year {
        margin-bottom: 20px;
        font-size: 44px;
      }

      .ac-history__title {
        font-size: 20px;
        margin-bottom: 12px;
      }

      .ac-history__text {
        font-size: 14px;
        line-height: 22px;
      }

      .ac-history__rail {
        margin-top: 16px;
        padding-bottom: 8px;
      }

      .ac-history__rail-item {
        flex-basis: 120px;
        min-width: 120px;
      }

      .ac-history__rail-year {
        font-size: 22px;
      }

      .ac-patents__headline {
        gap: 14px;
        margin-bottom: 16px;
      }

      .ac-patents__headline h2 {
        font-size: 24px;
      }

      .ac-patents__line {
        height: 72px;
      }

      .ac-patents__count {
        gap: 10px;
        margin-bottom: 12px;
      }

      .ac-patents__count strong {
        font-size: 36px;
      }

      .ac-patents__count span {
        font-size: 16px;
        transform: translateY(-4px);
      }

      .ac-patents__copy {
        font-size: 15px;
        line-height: 24px;
      }

      .ac-patents__logos {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 16px;
      }

      .ac-patents__logo {
        width: 68px;
        height: 68px;
      }

      .ac-patents__logo img {
        max-width: 52px;
        max-height: 46px;
      }

      .ac-patents__figure {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 20px;
      }
    }

    @media (max-width: 761.98px) {
      .about-company-page__shell {
        width: min(calc(100% - 20px), var(--ac-shell));
      }

      .ac-hero {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .ac-hero__top,
      .ac-story__grid,
      .ac-values__cards {
        grid-template-columns: 1fr;
      }

      .ac-hero__top {
        gap: 20px;
      }

      .ac-hero__tabs {
        gap: 6px;
        margin-top: 20px;
      }

      .ac-hero__media {
        margin-top: 20px;
        margin-bottom: -20px;
      }

      .ac-hero__title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.24;
      }

      .ac-hero__copy,
      .ac-story__block p {
        font-size: 15px;
        line-height: 1.72;
      }

      .ac-story {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .ac-history {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .ac-story__grid {
        gap: 20px;
      }

      .ac-story__heading,
      .ac-story__heading--right {
        font-size: 22px;
        line-height: 1.45;
      }

      .ac-story__block p {
        margin-bottom: 12px;
      }

      .ac-values::before {
        height: 820px;
      }

      .ac-values {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .ac-patents {
        min-height: 0;
      }

      .ac-values__title {
        font-size: 22px;
        max-width: 280px;
      }

      .ac-values__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
      }

      .ac-values__stat {
        min-height: 0;
        padding: 16px 10px 14px;
      }

      .ac-values__number {
        font-size: 22px;
      }

      .ac-values__label {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.3;
      }

      .ac-values__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 20px;
        gap: 12px;
      }

      .ac-values__card {
        height: auto;
        padding: 20px 16px 20px;
        min-height: 0;
      }

      .ac-values__card:last-child {
        grid-column: 1 / -1;
      }

      .ac-values__card-title {
        font-size: 18px;
      }

      .ac-values__card-kicker {
        font-size: 12px;
        margin-top: 4px;
      }

      .ac-values__card-body {
        margin-top: 20px;
        font-size: 14px;
        line-height: 22px;
      }

      .about-company-page__section-title,
      .ac-history__heading h2 {
        font-size: 24px;
      }

      .ac-history__heading h2 {
        margin-left: -16px;
      }

      .ac-history__badge {
        width: 36px;
        height: 36px;
      }

      .ac-history__heading .about-company-page__section-subtitle {
        margin-top: 8px;
        font-size: 14px;
      }

      .ac-history__stage {
        width: auto;
        height: auto;
        margin-top: 20px;
        margin-left: 0;
        overflow: visible;
      }

      .ac-history__slide {
        width: 100%;
        height: auto;
        padding-bottom: 10px;
      }

      .ac-history__slide-unit {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
      }

      .ac-history__slide-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
      }

      .ac-history__slide-card {
        height: auto;
        min-height: 0;
        padding: 16px 12px 16px;
      }

      .ac-history__year {
        margin-bottom: 16px;
        font-size: 32px;
      }

      .ac-history__title {
        font-size: 16px;
        margin-bottom: 10px;
      }

      .ac-history__text {
        font-size: 13px;
        line-height: 20px;
      }

      .ac-history__rail {
        margin-top: 14px;
        padding-bottom: 8px;
      }

      .ac-history__rail-item {
        flex-basis: 96px;
        min-width: 96px;
      }

      .ac-history__rail-year {
        font-size: 18px;
      }

      .ac-patents {
        padding-top: 20px;
        padding-bottom: 20px;
        min-height: 0;
      }

      .ac-patents__content {
        max-width: 100%;
      }

      .ac-patents__headline {
        gap: 12px;
        margin-bottom: 16px;
      }

      .ac-patents__headline h2 {
        font-size: 20px;
      }

      .ac-patents__line {
        height: 52px;
      }

      .ac-patents__count {
        gap: 8px;
        margin-bottom: 10px;
      }

      .ac-patents__count strong {
        font-size: 30px;
      }

      .ac-patents__count span {
        font-size: 14px;
        transform: translateY(-2px);
      }

      .ac-patents__copy {
        font-size: 14px;
        line-height: 22px;
      }

      .ac-patents__logos {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
      }

      .ac-patents__logo {
        width: 52px;
        height: 52px;
      }

      .ac-patents__logo img {
        max-width: 38px;
        max-height: 34px;
      }

      .ac-patents__figure {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 20px;
      }
		.ac-hero__tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        border-radius: 20px;
    	}
    }

    @media (max-width: 560px) {
      .ac-values__cards {
        grid-template-columns: 1fr;
      }

      .ac-values__card:last-child {
        grid-column: auto;
      }
	
		
    }
