@font-face {
  font-family: "Barlow Regular";
  src: url("../../assets/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.about-page {
  background: #ffffff;
}

.about-motion body[data-route="about"] .about-hero__content h1,
.about-motion body[data-route="about"] .about-hero__content p,
.about-motion body[data-route="about"] .about-intro__title,
.about-motion body[data-route="about"] .about-intro__copy > p,
.about-motion body[data-route="about"] .about-intro__badges article,
.about-motion body[data-route="about"] .about-history h2,
.about-motion body[data-route="about"] .about-history__inner,
.about-motion body[data-route="about"] .about-clients h2,
.about-motion body[data-route="about"] .about-clients img,
.about-motion body[data-route="about"] .about-honors h2,
.about-motion body[data-route="about"] .about-honor-tabs,
.about-motion body[data-route="about"] .about-honor-carousel {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.about-motion body[data-route="about"] .about-hero__content h1 {
  transform: translate3d(-42px, 0, 0);
}

.about-motion body[data-route="about"] .about-hero__content p {
  transform: translate3d(28px, 0, 0);
}

.about-motion body[data-route="about"] .about-intro__title {
  transform: translate3d(-28px, 0, 0);
}

.about-motion body[data-route="about"] .about-intro__copy > p {
  transform: translate3d(34px, 0, 0);
}

.about-motion body[data-route="about"] .about-intro__badges article {
  transform: translate3d(0, 18px, 0) scale(0.94);
}

.about-motion body[data-route="about"] .about-history__inner,
.about-motion body[data-route="about"] .about-clients img,
.about-motion body[data-route="about"] .about-honor-carousel {
  opacity: 1;
}

.about-motion body[data-route="about"] .about-history__inner {
  transform: translate3d(0, 20px, 0) scale(0.99);
}

.about-motion body[data-route="about"] .about-clients img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.01);
}

.about-motion body[data-route="about"] .about-honor-carousel {
  transform: translate3d(0, 24px, 0) scale(0.985);
}

@media (prefers-reduced-motion: reduce) {
  .about-motion body[data-route="about"] .about-hero__content h1,
  .about-motion body[data-route="about"] .about-hero__content p,
  .about-motion body[data-route="about"] .about-intro__title,
  .about-motion body[data-route="about"] .about-intro__copy > p,
  .about-motion body[data-route="about"] .about-intro__badges article,
  .about-motion body[data-route="about"] .about-history h2,
  .about-motion body[data-route="about"] .about-history__inner,
  .about-motion body[data-route="about"] .about-clients h2,
  .about-motion body[data-route="about"] .about-clients img,
  .about-motion body[data-route="about"] .about-honors h2,
  .about-motion body[data-route="about"] .about-honor-tabs,
  .about-motion body[data-route="about"] .about-honor-carousel {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

.about-container {
  width: min(1200px, 62.5vw);
  margin: 0 auto;
}

.about-hero {
  position: relative;
  min-height: clamp(430px, 36.46vw, 700px);
  background: url("../../assets/images/about-hero-bg.png") center top / cover no-repeat;
  color: #ffffff;
}

.about-hero__content {
  position: absolute;
  top: 27.2%;
  right: 19.5%;
  width: clamp(220px, 15.6vw, 300px);
  text-align: right;
}

.about-hero h1 {
  margin: 0 0 clamp(18px, 1.35vw, 26px);
  font-size: clamp(30px, 2.08vw, 40px);
  font-weight: 400;
}

.about-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 0.83vw, 16px);
}

.about-intro {
  padding: clamp(84px, 5.73vw, 110px) 0 clamp(72px, 5vw, 96px);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: clamp(188px, 12.5vw, 240px) minmax(0, 1fr);
  gap: clamp(52px, 4.58vw, 88px);
}

.about-intro__title {
  position: relative;
}

.about-intro__title::after {
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: clamp(84px, 5.73vw, 110px);
  background: #d5dbe1;
  content: "";
}

.about-intro__title h2 {
  margin: 0 0 10px;
  color: #1c2430;
  font-size: clamp(28px, 1.88vw, 36px);
  font-weight: 400;
}

.about-intro__title p {
  margin: 0;
  color: #c7ccd2;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.05;
}

.about-intro__copy {
  max-width: 880px;
  color: #727b86;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.95;
}

.about-intro__copy p {
  margin: 0 0 clamp(18px, 1.35vw, 26px);
}

.about-intro__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(30px, 2.34vw, 45px);
}

.about-intro__badges article + article {
  border-left: 1px solid #cfd5db;
  padding-left: clamp(44px, 4.17vw, 80px);
}

.about-intro__badges strong,
.about-intro__badges span {
  display: block;
}

.about-intro__badges strong {
  color: #1d2630;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 600;
}

.about-intro__badges span {
  margin-top: 8px;
  color: #9aa3ad;
}

.about-history {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 3.75vw, 72px) 0 clamp(44px, 2.92vw, 56px);
  background: #eaf4fc;
}

.about-history h2,
.about-clients h2,
.about-honors h2 {
  margin: 0;
  color: #1b2430;
  font-size: clamp(28px, 1.88vw, 36px);
  font-weight: 400;
  text-align: center;
}

.about-history__inner {
  position: relative;
  width: 100%;
  height: clamp(330px, 21.88vw, 420px);
  margin: clamp(46px, 3.13vw, 60px) auto 0;
  --history-card-width: clamp(200px, 14.57vw, 280px);
  --history-line-height: 8px;
  --history-line-offset: clamp(10px, 0.78vw, 15px);
  --history-number-size: clamp(96px, 7.9vw, 152px);
  --history-number-top: clamp(116px, 7.34vw, 141px);
  --history-line-top: calc(var(--history-number-top) + var(--history-number-size) - var(--history-line-height) - var(--history-line-offset));
}

.about-history-swiper {
  position: relative;
  height: 100%;
  overflow: visible;
}

.about-history-slide {
  position: relative;
  height: 100%;
}

.about-history-year {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.about-history-year::after {
  position: absolute;
  top: var(--history-line-top);
  left: 0;
  z-index: 3;
  width: 100%;
  height: var(--history-line-height);
  background: #aebdcd;
  content: "";
  transition: background 0.25s ease;
}

.about-history-slide.is-active .about-history-year::after {
  background: #ffd100;
}

.about-history-number {
  position: absolute;
  top: var(--history-number-top);
  left: clamp(20px, 5.2vw, 100px);
  z-index: 1;
  color: #aebdcd;
  font-family: "Barlow Regular", "Source Han Sans CN";
  font-size: var(--history-number-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transition: color 0.25s ease;
}

.about-history-slide.is-active .about-history-number {
  color: #ffd100;
}

.about-history-arrow {
  position: absolute;
  top: clamp(166px, 10.9vw, 209px);
  left: clamp(276px, 22.4vw, 430px);
  z-index: 4;
  color: #aebdcd;
  font-family: "Barlow Regular", "Source Han Sans CN";
  font-size: clamp(54px, 4.17vw, 80px);
  font-weight: 400;
  line-height: 1;
  transition: color 0.25s ease;
}

.about-history-slide.is-active .about-history-arrow {
  color: #ffd100;
}

.about-history-card {
  position: absolute;
  z-index: 5;
  width: var(--history-card-width);
  min-height: clamp(78px, 5.83vw, 112px);
  padding: clamp(13px, 0.94vw, 18px) clamp(16px, 1.25vw, 24px);
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(68, 92, 118, 0.15);
  transition: border-color 0.25s ease;
}

.about-history-card::after {
  position: absolute;
  left: 32px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  content: "";
}

.about-history-card strong,
.about-history-card span {
  display: block;
}

.about-history-card strong {
  margin-bottom: clamp(6px, 0.52vw, 10px);
  color: #1f2a36;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 600;
}

.about-history-card span {
  color: #87929f;
  font-size: clamp(9px, 0.57vw, 11px);
  line-height: 1.5;
}

.about-history-card--top {
  top: 0;
  left: clamp(18px, 5.4vw, 104px);
  border-bottom: 5px solid transparent;
}

.about-history-card--top::after {
  bottom: -11px;
  border-top: 11px solid #ffffff;
}

.about-history-card--bottom {
  top: clamp(268px, 16.1vw, 309px);
  left: clamp(18px, 4.95vw, 95px);
  border-top: 5px solid transparent;
}

.about-history-card--bottom::after {
  top: -11px;
  border-bottom: 11px solid #ffffff;
}

.about-history-slide.is-active .about-history-card--top {
  border-bottom-color: #ffd800;
}

.about-history-slide.is-active .about-history-card--bottom {
  border-top-color: #ffd800;
}

.about-history-slide.is-active .about-history-card--top::after {
  border-top-color: #ffd800;
}

.about-history-slide.is-active .about-history-card--bottom::after {
  border-bottom-color: #ffd800;
}

.about-clients {
  padding: clamp(128px, 8.85vw, 170px) 0 clamp(130px, 9.38vw, 180px);
}

.about-clients img {
  width: min(100%, 1202px);
  margin: clamp(74px, 5.21vw, 100px) auto 0;
}

.about-honors {
  padding: clamp(112px, 7.81vw, 150px) 0 clamp(122px, 8.54vw, 164px);
  background: #eef0f2;
}

.about-honor-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(54px, 4.17vw, 80px);
  margin: clamp(58px, 4.17vw, 80px) 0 clamp(68px, 4.69vw, 90px);
  color: #808891;
  font-size: clamp(14px, 0.94vw, 18px);
}

.about-honor-tabs__all,
.about-honor-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 0;
  padding: 0 0 10px;
  color: inherit;
  background: transparent;
  font: inherit;
}

.about-honor-tabs__all {
  cursor: default;
}

.about-honor-tab {
  cursor: pointer;
}

.about-honor-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #1d5f95;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.about-honor-tab.is-active {
  color: #1b2430;
  font-weight: 600;
}

.about-honor-tab.is-active::after {
  transform: scaleX(1);
}

.about-honor-carousel {
  position: relative;
  --swiper-navigation-color: #111820;
  --swiper-navigation-size: clamp(24px, 1.67vw, 32px);
}

.about-honor-swiper {
  width: min(100%, 1195px);
  margin: 0 auto;
  overflow: hidden;
}

.about-honor-carousel .swiper-button-prev,
.about-honor-carousel .swiper-button-next {
  color: #111820;
}

.about-honor-carousel .swiper-button-prev {
  left: clamp(-58px, -3.13vw, -36px);
}

.about-honor-carousel .swiper-button-next {
  right: clamp(-58px, -3.13vw, -36px);
}

.about-honor-swiper img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .about-container {
    width: min(920px, 88vw);
  }
}

@media (max-width: 767px) {
  .about-container {
    width: var(--mobile-content-width);
  }

  .about-hero {
    min-height: 520px;
    background-position: 50% top;
  }

  .about-hero__content {
    position: static;
    width: var(--mobile-content-width);
    margin: 0 auto;
    padding-top: 112px;
    text-align: right;
  }

  .about-hero h1 {
    margin-bottom: 16px;
    font-size: 31px;
  }

  .about-hero p {
    font-size: 13px;
  }

  .about-intro {
    padding: 58px 0 54px;
  }

  .about-intro__inner {
    display: block;
  }

  .about-intro__title {
    margin-bottom: 30px;
    border-bottom: 1px solid #d3d8de;
    padding-bottom: 18px;
  }

  .about-intro__title::after {
    display: none;
  }

  .about-intro__title h2 {
    font-size: 28px;
  }

  .about-intro__copy {
    font-size: 13px;
    line-height: 1.85;
  }

  .about-intro__badges {
    width: 100%;
  }

  .about-intro__badges article + article {
    padding-left: 20px;
  }

  .about-intro__badges strong {
    font-size: 18px;
  }

  .about-history {
    min-height: 0;
    padding: 50px 0 60px;
  }

  .about-history h2,
  .about-clients h2,
  .about-honors h2 {
    width: var(--mobile-content-width);
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.5;
  }

  .about-history__inner {
    display: block;
    width: 100%;
    height: 314px;
    margin-top: 30px;
    overflow: hidden;
    padding-left: calc((100% - var(--mobile-content-width)) / 2);
    --history-card-width: 100%;
    --history-number-size: clamp(70px, 21vw, 92px);
  }

  .about-history-swiper {
    overflow: visible;
  }

  .about-history-slide {
    height: 100%;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .about-history-slide:not(.swiper-slide-active) {
    opacity: 0.62;
    transform: scale(0.96);
    transform-origin: left center;
  }

  .about-history-year {
    display: flex;
    flex-direction: column;
    min-height: 288px;
    border: 1px solid rgba(34, 72, 104, 0.1);
    border-radius: 8px;
    padding: 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    box-shadow: 0 14px 30px rgba(48, 78, 110, 0.12);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .about-history-year::after {
    display: none;
  }

  .about-history-year::before {
    order: 1;
    width: fit-content;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 3px 9px;
    color: #8aa0b5;
    background: rgba(32, 102, 159, 0.08);
    content: "YEAR";
    font-family: "Barlow Regular", "Source Han Sans CN";
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .about-history-number {
    position: static;
    order: 2;
    left: 0;
    margin-bottom: 22px;
    color: #aebdcd;
    font-size: var(--history-number-size);
    line-height: 0.9;
    text-shadow: none;
  }

  .about-history-arrow {
    display: none;
  }

  .about-history-card,
  .about-history-card--top,
  .about-history-card--bottom {
    position: static;
    order: 3;
    left: 0;
    width: 100%;
    min-height: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-history-card--top::after,
  .about-history-card--bottom::after {
    display: none;
  }

  .about-history-slide.is-active .about-history-year {
    border-color: rgba(255, 209, 0, 0.46);
    box-shadow: 0 18px 38px rgba(48, 78, 110, 0.16), inset 0 4px 0 #ffd800;
  }

  .about-history-slide.is-active .about-history-year::before {
    color: #876f00;
    background: rgba(255, 216, 0, 0.2);
  }

  .about-history-slide.is-active .about-history-card--top,
  .about-history-slide.is-active .about-history-card--bottom {
    border-color: transparent;
  }

  .about-history-card strong {
    margin-bottom: 12px;
    color: #1e2c3a;
    font-size: 17px;
    line-height: 1.45;
  }

  .about-history-card span {
    color: #6f7f8e;
    font-size: 13px;
    line-height: 1.75;
  }

  .about-clients {
    padding: 68px 0 78px;
  }

  .about-clients img {
    margin-top: 42px;
  }

  .about-honors {
    padding: 66px 0 78px;
  }

  .about-honor-tabs {
    justify-content: flex-start;
    gap: 30px;
    width: var(--mobile-content-width);
    margin: 34px auto 42px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-honor-tabs::-webkit-scrollbar {
    display: none;
  }

  .about-honor-tabs__all,
  .about-honor-tab {
    flex: 0 0 auto;
    font-size: 14px;
    white-space: nowrap;
  }

  .about-honor-carousel .swiper-button-prev,
  .about-honor-carousel .swiper-button-next {
    display: none;
  }
}
