.hero {
  position: relative;
  min-height: 740px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.02)), url("/assets/index/hero.png") center top / cover no-repeat;
}
.hero-copy {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 238px;
}
.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 4.2vw, 72px);
  line-height: 1.08;
  font-weight: 800;
}
.hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}
.section-inner {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}
.about {
  position: relative;
  padding: 108px 0 134px;
  overflow: hidden;
  background: url("/assets/index/about-bg.png") 50% / cover no-repeat;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: center;
}
.about-visual {
  align-self: end;
}
.about-visual h2 {
  padding-left: 23px;
}
.about-content p {
  margin: 0;
  max-width: 696px;
  color: #2d2f38;
  font-size: 16px;
  line-height: 1.75;
}
.about-content .learn-more {
  margin: 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: #2D60FF;
  font-size: 16px;
}
.about-content .learn-more img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px;
  max-width: 690px;
  margin: 0;
}
.stats::after {
  position: absolute;
  inset: 50%;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid #dbe8f6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  background-image: url("/assets/index/logo-center.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 157.9px 119.5px;
  box-shadow: 0 8px 26px rgba(87, 116, 162, 0.12);
  pointer-events: none;
}
.stats div {
  min-height: 170px;
  padding: 42px 24px;
  text-align: center;
  background: #fff;
  border: 0.5px solid #9cbbf9;
  border-radius: 16px;
}
.stats dt {
  color: #2468F2;
  font-size: 36px;
  font-weight: 700;
}
.stats dd {
  margin: 14px 0 0;
  font-size: 16px;
}
.products {
  padding: 118px 0 106px;
  overflow: hidden;
  background: #fff;
}
.section-title {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto 72px;
  text-align: center;
}
.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.18;
  font-weight: 600;
}
.section-title p {
  margin: 0 auto;
  max-width: 720px;
  color: #818288;
  font-size: 16px;
  line-height: 1.7;
}
.section-title p br {
  display: none;
}
.product-cards {
  position: relative;
  width: 100%;
  height: 620px;
  margin: 0 auto 34px;
  touch-action: pan-y;
}
.product-card {
  --card-x: -220px;
  --card-y: 0px;
  --card-rotate: 0deg;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 440px;
  height: 560px;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(28, 41, 79, 0.18);
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--card-x), var(--card-y)) rotate(var(--card-rotate));
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease, top 0.45s ease;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome、Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
}
.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62));
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card div {
  position: absolute;
  right: 34px;
  bottom: 38px;
  left: 34px;
  z-index: 1;
}
.product-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
}
.product-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.product-card.is-far-left {
  --card-x: -1180px;
  --card-y: 38px;
  --card-rotate: -6deg;
  z-index: 1;
}
.product-card.is-left {
  --card-x: -704px;
  --card-y: 1px;
  --card-rotate: -3deg;
  z-index: 2;
}
.product-card.is-active {
  --card-x: -220px;
  --card-rotate: 0deg;
  z-index: 5;
  top: -12px;
}
.product-card.is-right {
  --card-x: 264px;
  --card-y: 1px;
  --card-rotate: 3deg;
  z-index: 2;
}
.product-card.is-far-right {
  --card-x: 740px;
  --card-y: 38px;
  --card-rotate: 6deg;
  z-index: 1;
}
.product-card.is-hidden-left {
  --card-x: -1660px;
  --card-y: 106px;
  --card-rotate: -9deg;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.product-card.is-hidden-right {
  --card-x: 1220px;
  --card-y: 106px;
  --card-rotate: 9deg;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.product-rail {
  position: relative;
  width: min(1920px, 100%);
  height: clamp(148px, 12.0313vw, 231px);
  margin: 0 auto;
  text-align: center;
}
.product-rail a {
  --rail-x: 0px;
  --rail-y: clamp(72px, 5.7292vw, 110px);
  --rail-icon-y: clamp(-56px, -2.9167vw, -30px);
  position: absolute;
  top: var(--rail-y);
  left: calc(50% + var(--rail-x));
  z-index: 1;
  display: block;
  width: clamp(110px, 9.8958vw, 190px);
  min-height: clamp(58px, 5.2083vw, 100px);
  padding-top: clamp(22px, 1.7188vw, 33px);
  color: #4d5668;
  font-size: clamp(12px, 0.9375vw, 18px);
  line-height: 1.2;
  cursor: pointer;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
  transition: left 0.45s ease, top 0.45s ease, color 0.24s ease, font-size 0.24s ease, padding-top 0.24s ease;
}
.product-rail a::after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: clamp(10px, 0.8333vw, 16px);
  height: clamp(10px, 0.8333vw, 16px);
  content: "";
  background: #fff;
  border: 1px solid #2468F2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.24s ease, height 0.24s ease, border-width 0.24s ease;
}
.product-rail a.is-edge-left {
  --rail-x: clamp(-854px, -44.4792vw, -280px);
  --rail-y: clamp(96px, 9.0625vw, 174px);
  --rail-icon-y: clamp(-54px, -2.8125vw, -30px);
}
.product-rail a.is-hidden-left {
  --rail-x: clamp(-628px, -32.7083vw, -206px);
  --rail-y: clamp(78px, 7.3438vw, 141px);
  --rail-icon-y: clamp(-55px, -2.8646vw, -30px);
}
.product-rail a.is-far-left {
  --rail-x: clamp(-400px, -20.78vw, -164px);
  --rail-y: clamp(70px, 6.5104vw, 125px);
  --rail-icon-y: clamp(-56px, -2.9167vw, -30px);
}
.product-rail a.is-left {
  --rail-x: clamp(-200px, -11vw, -74px);
  --rail-y: clamp(64px, 5.9375vw, 114px);
  --rail-icon-y: clamp(-52px, -2.7083vw, -28px);
}
.product-rail a.is-active {
  --rail-x: 0px;
  --rail-y: clamp(62px, 5.7292vw, 110px);
  --rail-icon-y: clamp(-66px, -3.4375vw, -36px);
}
.product-rail a.is-right {
  --rail-x: clamp(80px, 12.5vw, 240px);
  --rail-y: clamp(64px, 5.9375vw, 114px);
  --rail-icon-y: clamp(-52px, -2.7083vw, -28px);
}
.product-rail a.is-far-right {
  --rail-x: clamp(196px, 24.79vw, 476px);
  --rail-y: clamp(72px, 6.7708vw, 130px);
  --rail-icon-y: clamp(-60px, -3.125vw, -32px);
}
.product-rail a.is-hidden-right {
  --rail-x: clamp(280px, 35.4688vw, 681px);
  --rail-y: clamp(82px, 7.7604vw, 149px);
  --rail-icon-y: clamp(-55px, -2.8646vw, -30px);
}
.product-rail a.is-edge-right {
  --rail-x: clamp(354px, 44.8958vw, 862px);
  --rail-y: clamp(98px, 9.2708vw, 178px);
  --rail-icon-y: clamp(-66px, -3.4375vw, -36px);
}
.product-rail a.is-enter-from-left {
  --rail-x: clamp(-1080px, -56.25vw, -360px);
  --rail-y: clamp(114px, 10.4167vw, 200px);
  --rail-icon-y: clamp(-54px, -2.8125vw, -30px);
}
.product-rail a.is-enter-from-right {
  --rail-x: clamp(480px, 56.25vw, 1080px);
  --rail-y: clamp(114px, 10.4167vw, 200px);
  --rail-icon-y: clamp(-66px, -3.4375vw, -36px);
}
.product-rail a.is-transition-reset {
  transition: none;
}
.product-rail a.is-transition-reset span {
  transition: none;
}
.product-rail span {
  position: absolute;
  top: var(--rail-icon-y);
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(50px, 3.75vw, 72px);
  height: clamp(50px, 3.75vw, 72px);
  color: #aeb9c8;
  font-size: clamp(16px, 1.1458vw, 22px);
  font-weight: 700;
  background: #fff;
  border: 1px solid #ccd9e9;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  transition: top 0.45s ease, width 0.24s ease, height 0.24s ease, color 0.24s ease, border-color 0.24s ease, background 0.24s ease, border-radius 0.24s ease;
}
.product-rail span img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}
.product-rail .is-active {
  color: #2468F2;
  padding-top: clamp(16px, 1.25vw, 24px);
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 700;
}
.product-rail .is-active::after {
  width: clamp(16px, 1.25vw, 24px);
  height: clamp(16px, 1.25vw, 24px);
  border-width: 2px;
}
.product-rail .is-active span {
  width: clamp(64px, 4.5833vw, 88px);
  height: clamp(64px, 4.5833vw, 88px);
  color: #fff;
  font-size: clamp(24px, 1.875vw, 36px);
  border-color: transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, #6fc3ff 0%, #0181ff 100%);
}
.rail-line {
  position: absolute;
  top: clamp(62px, 5.7292vw, 110px);
  left: 50%;
  width: clamp(900px, 115.4167vw, 2216px);
  height: clamp(140px, 17.6042vw, 338px);
  border-top: 1px dashed rgba(45, 96, 255, 0.72);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgba(221, 237, 255, 0) 55.47%, #F5FAFF 100%);
}
.product-controls {
  display: flex;
  justify-content: center;
  gap: 53px;
  margin-top: clamp(5px, 0.4167vw, 8px);
}
.product-nav {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background: #fff;
  border: 1px solid #2468F2;
  border-radius: 50%;
}
.product-nav::before {
  width: 13px;
  height: 13px;
  content: "";
  border-color: #2468F2;
  border-style: solid;
}
.product-nav:hover {
  background: rgba(45, 96, 255, 0.06);
}
.product-nav:focus-visible {
  outline: 3px solid rgba(45, 96, 255, 0.24);
  outline-offset: 3px;
}
.product-nav-prev::before {
  margin-left: 5px;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}
.product-nav-next::before {
  margin-right: 5px;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.cases {
  padding: 112px 0 72px;
  background: linear-gradient(180deg, #fff 0%, #e6f2ff 24%, #ddedff 100%);
}
.case-showcase {
  display: flex;
  gap: 12px;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 500px;
}
.case-card {
  position: relative;
  flex: 0 0 183px;
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  background: #101827;
  transition: flex-basis 0.38s ease, flex-grow 0.38s ease;
  outline: none;
}
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.73));
}
.case-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(45, 96, 255, 0.32);
}
.case-card.is-active {
  flex: 1 1 820px;
}
.case-card.is-active .case-overlay {
  left: 32px;
  right: 32px;
}
.case-card.is-active .case-heading {
  flex-direction: row;
  margin-bottom: 24px;
}
.case-card.is-active .case-logo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}
.case-card.is-active h3 {
  width: calc(100% - 80px);
  text-align: left;
  margin: 0;
  font-size: 22px;
}
.case-card.is-active p,
.case-card.is-active ul {
  display: block;
}
.case-card.is-active .primary-link {
  display: inline-flex;
}
.case-card h3 {
  width: 130px;
  text-align: center;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}
.case-card p,
.case-card li {
  font-size: 15px;
  line-height: 1.7;
}
.case-card p {
  display: none;
  max-width: 520px;
  margin: 0 0 20px;
}
.case-card ul {
  display: none;
  margin: 0 0 24px;
  padding-left: 20px;
  max-width: 560px;
}
.case-card .primary-link {
  display: none;
}
.case-overlay {
  position: absolute;
  right: 18px;
  bottom: 34px;
  left: 18px;
  z-index: 1;
  transition: left 0.38s ease, right 0.38s ease;
}
.case-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.case-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}
.case-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 44px;
  color: #fff;
  font-size: 16px;
  border-radius: 100px;
  background: linear-gradient(90deg, #0150ff 0%, #003dff 52%, #02a8ff 100%);
}
.clients {
  padding: 0 0 50px;
  background: linear-gradient(180deg, #ddedff 0%, #e6f2ff 100%);
}
.client-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto 56px;
}
.client-logo-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.client-logo-row img {
  width: 220px;
  height: 88px;
  object-fit: cover;
}
.client-logos-mobile {
  display: none;
}
.client-logo-marquee {
  overflow: hidden;
}
.client-logo-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.client-logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 220px;
  width: 220px;
  height: 88px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.client-logo-track img {
  display: block;
  max-width: 174px;
  max-height: 40px;
  object-fit: contain;
}
.client-logo-marquee:nth-child(1) {
  margin-left: -89px;
}
.client-logo-marquee:nth-child(2) {
  margin-left: 13px;
}
.client-logo-marquee:nth-child(3) {
  margin-left: -155px;
}
.more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 64px;
  margin: 0 auto;
  color: #2468F2;
  border: 1px solid #2468F2;
  border-radius: 100px;
}
.news {
  padding: 50px 0 118px;
  background: linear-gradient(0deg, rgba(239, 246, 255, 0.59) 0%, #ddedff 48%, #e6f2ff 100%);
}
.news .section-title {
  margin-bottom: 60px;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto 64px;
}
.news-card {
  display: grid;
  align-items: stretch;
  min-height: 270px;
  padding: 36px 24px 26px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(36, 104, 242, 0);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover {
  box-shadow: 0 16px 36px rgba(36, 104, 242, 0.16);
  transform: translateY(-2px);
}
.news-card-with-image {
  grid-template-columns: minmax(0, 1fr) 311px;
  gap: 20px;
}
.news-card h3 {
  margin: 0 0 16px;
  color: #000;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}
.news-card p {
  margin: 0 0 16px;
  color: #818288;
  font-size: 16px;
  line-height: 1.5;
}
.news-card time {
  display: block;
  margin-top: auto;
  color: #818288;
  font-size: 14px;
  line-height: 1.35;
}
.news-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.news-thumb {
  align-self: center;
  width: 311px;
  height: 175px;
  object-fit: cover;
  border-radius: 16px;
}
.news-thumb-mobile {
  display: none;
}
.news-more {
  width: 164px;
  height: 56px;
}
@media (max-width: 980px) {
  .hero {
    min-height: 405px;
    background-position: 58% top;
  }
  .hero-copy {
    width: calc(100% - 36px);
    padding-top: 150px;
  }
  .hero h1 {
    margin-bottom: 14px;
    font-size: 28px;
  }
  .hero p {
    max-width: 270px;
    font-size: 15px;
    line-height: 1.65;
  }
  .section-inner,
  .section-title,
  .case-showcase,
  .client-logos,
  .news-list {
    width: 100%;
  }
  .about {
    padding: 64px 0 0;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 90%;
    align-items: stretch;
  }
  .about-visual {
    width: 100%;
    margin-top: -46px;
    position: relative;
  }
  .about-visual h2 {
    padding: 0;
    margin: 23px 0 0;
    text-align: left;
    color: #212123;
    font-size: 1.125rem;
    font-weight: 600;
  }
  .about-visual .img-box {
    width: 22.45394rem;
    height: 11.64872rem;
    position: absolute;
    top: 4.2rem;
    left: 5.82rem;
    display: inline-block;
  }
  .about-visual .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
  }
  .about-content {
    z-index: 1;
  }
  .about-content p {
    width: 16.5rem;
    font-size: 0.7125rem;
    line-height: 1.125rem;
    color: #212123;
  }
  .about-content .learn-more {
    margin: 1.3rem 0 2.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.8125rem;
  }
  .about-content .learn-more img {
    width: 12px;
    height: 12px;
    object-fit: contain;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .stats::after {
    display: none;
  }
  .stats div {
    min-height: 112px;
    padding: 22px 10px;
    border-radius: 10px;
  }
  .stats dt {
    font-size: 28px;
  }
  .stats dd {
    margin-top: 10px;
    font-size: 14px;
  }
  .products {
    display: flex;
    flex-direction: column;
    padding: 68px 0 42px;
    overflow: hidden;
  }
  .section-title {
    margin-bottom: 42px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 13px;
  }
  .section-title p br {
    display: inline;
  }
  .products .section-title {
    order: 0;
    margin-bottom: clamp(38px, 10.1333vw, 76px);
  }
  .products .section-title h2 {
    margin-bottom: clamp(6px, 1.6vw, 12px);
    font-size: clamp(24px, 6.4vw, 48px);
    line-height: 1.333;
  }
  .products .section-title p {
    max-width: none;
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.333;
  }
  .product-cards {
    order: 2;
    position: relative;
    display: block;
    height: clamp(280px, 74.6667vw, 560px);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .product-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(220px, 58.6667vw, 440px);
    height: clamp(280px, 74.6667vw, 560px);
    border-radius: clamp(12px, 3.2vw, 24px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) !important;
    transition: left 0.45s ease, opacity 0.45s ease;
  }
  .product-card.is-left,
  .product-card.is-active,
  .product-card.is-right {
    opacity: 1 !important;
    pointer-events: auto;
    top: 0 !important;
  }
  .product-card.is-hidden-left {
    left: calc(50% - clamp(687px, 182.9vw, 1371.75px));
  }
  .product-card.is-far-left {
    left: calc(50% - clamp(458px, 121.9334vw, 914.5px));
  }
  .product-card.is-left {
    left: calc(50% - clamp(229px, 60.9667vw, 457.25px));
  }
  .product-card.is-right {
    left: calc(50% + clamp(229px, 61.1333vw, 458.5px));
  }
  .product-card.is-far-right {
    left: calc(50% + clamp(458px, 122.2666vw, 917px));
  }
  .product-card.is-hidden-right {
    left: calc(50% + clamp(687px, 183.3999vw, 1375.5px));
  }
  .product-card div {
    right: clamp(16px, 4.2667vw, 32px);
    bottom: clamp(16px, 4.2667vw, 32px);
    left: clamp(16px, 4.2667vw, 32px);
  }
  .product-card h3 {
    margin-bottom: clamp(8px, 2.1333vw, 16px);
    font-size: clamp(17px, 4.5333vw, 34px);
    line-height: 1.3235;
  }
  .product-card p {
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.333;
  }
  .product-rail {
    order: 1;
    position: relative;
    display: block;
    height: clamp(138px, 36.6667vw, 275px);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .product-rail a {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: clamp(92px, 24.5333vw, 184px);
    min-width: 0;
    min-height: clamp(100px, 26.6667vw, 200px);
    padding-top: 0;
    color: #212123;
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.1;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: left 0.45s ease, top 0.45s ease, opacity 0.45s ease, color 0.24s ease, font-size 0.24s ease, padding-top 0.24s ease;
  }
  .product-rail a::after {
    display: block;
    top: clamp(77.5px, 21.6667vw, 155px);
    width: clamp(8px, 2.1333vw, 16px);
    height: clamp(8px, 2.1333vw, 16px);
    border-width: 1px;
  }
  .product-rail a.is-left,
  .product-rail a.is-active,
  .product-rail a.is-right {
    opacity: 1;
    pointer-events: auto;
  }
  .product-rail a.is-edge-left {
    left: -50%;
    top: clamp(32px, 8.5333vw, 64px);
  }
  .product-rail a.is-hidden-left {
    left: -16.7227%;
    top: clamp(24px, 6.4vw, 48px);
  }
  .product-rail a.is-far-left {
    left: 0;
    top: clamp(16px, 4.2667vw, 32px);
  }
  .product-rail a.is-left {
    left: 16.7227%;
    top: clamp(10.22px, 2.7253vw, 20.44px);
  }
  .product-rail a.is-active {
    top: -6px;
    left: 50%;
    width: clamp(92px, 24.5333vw, 184px);
    min-height: clamp(108px, 28.8vw, 216px);
    padding-top: 0;
    color: #2468F2;
    font-size: clamp(14px, 3vw, 28px);
    font-weight: 700;
  }
  .product-rail a.is-active::after {
    top: clamp(79.92px, 23.633vw, 159.85px);
    width: clamp(12px, 3.2vw, 24px);
    height: clamp(12px, 3.2vw, 24px);
    border-width: 2px;
  }
  .product-rail a.is-right {
    left: 83.3893%;
    top: clamp(10.22px, 2.7253vw, 20.44px);
  }
  .product-rail a.is-far-right {
    left: 100%;
    top: clamp(16px, 4.2667vw, 32px);
  }
  .product-rail a.is-hidden-right {
    left: 116.7227%;
    top: clamp(24px, 6.4vw, 48px);
  }
  .product-rail a.is-edge-right {
    left: 150%;
    top: clamp(32px, 8.5333vw, 64px);
  }
  .product-rail a.is-enter-from-left {
    left: -50%;
    top: clamp(32px, 8.5333vw, 64px);
  }
  .product-rail a.is-enter-from-right {
    left: 150%;
    top: clamp(32px, 8.5333vw, 64px);
  }
  .product-rail span {
    position: static;
    display: grid;
    width: clamp(36px, 9.6vw, 72px);
    height: clamp(36px, 9.6vw, 72px);
    margin: 0 auto clamp(9px, 2.4667vw, 18.5px);
    color: #aeb9c8;
    font-size: clamp(14px, 3.7333vw, 28px);
    border-radius: clamp(6px, 1.6vw, 12px);
    transform: none;
  }
  .product-rail span img {
    width: 23px;
    height: 23px;
  }
  .product-rail .is-active span {
    width: clamp(44px, 11.7333vw, 88px);
    height: clamp(44px, 11.7333vw, 88px);
    margin-bottom: clamp(8px, 2.1333vw, 16px);
    font-size: clamp(18px, 4.8vw, 36px);
    border-radius: clamp(8px, 2.1333vw, 16px);
  }
  .product-controls {
    display: none;
  }
  .rail-line {
    top: clamp(84.54px, 22.544vw, 169.08px);
    left: 50%;
    right: auto;
    width: clamp(508.34px, 135.5568vw, 1016.68px);
    height: clamp(122.54px, 32.6763vw, 245.07px);
    border-top: 1px dashed rgba(45, 96, 255, 0.72);
    transform: translateX(-50%);
  }
  .cases {
    padding: 62px 0 34px;
  }
  .case-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .case-card,
  .featured-case {
    min-height: 250px;
  }
  .case-card {
    border-radius: 0;
  }
  .case-card:not(.featured-case) p {
    display: block;
  }
  .case-card:not(.featured-case) .case-overlay {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }
  .case-card h3 {
    width: 100%;
    text-align: left;
    font-size: 19px;
  }
  .case-card p,
  .case-card li {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
  }
  .case-card ul {
    display: none;
  }
  .case-overlay {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }
  .case-heading {
    gap: 10px !important;
    flex-direction: row;
    margin-bottom: 10px !important;
  }
  .case-logo,
  .case-card.is-active .case-logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }
  .primary-link {
    display: none !important;
  }
  .clients {
    padding: 0 0 30px;
  }
  .client-logos-desktop {
    display: none;
  }
  .client-logos-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0 0 40px;
    overflow: hidden;
  }
  .client-logo-marquee:nth-child(1) {
    margin-left: -45px;
  }
  .client-logo-marquee:nth-child(2) {
    margin-left: 6px;
  }
  .client-logo-marquee:nth-child(3) {
    margin-left: -77px;
  }
  .client-logo-track {
    gap: 10px;
    animation: clientMarqueeLeft 30s linear infinite;
  }
  .client-logo-track span {
    flex-basis: 110px;
    width: 110px;
    height: 44px;
  }
  .client-logo-track img {
    width: 110px;
    max-height: 46px;
  }
  .client-logo-marquee:nth-child(1) .client-logo-track {
    animation-name: clientMarqueeRight;
  }
  .client-logo-marquee:nth-child(2) .client-logo-track {
    animation-duration: 20s;
  }
  .client-logo-marquee:nth-child(3) .client-logo-track {
    animation-name: clientMarqueeRight;
    animation-duration: 22s;
  }
  .more-button {
    width: 138px;
    height: 44px;
    font-size: 14px;
  }
  .news {
    padding: 30px 0 72px;
  }
  .news .section-title {
    margin-bottom: 30px;
  }
  .news .section-title h2 {
    font-size: 28px;
  }
  .news .section-title p {
    max-width: none;
    font-size: 13px;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
  }
  .news-card {
    min-height: 111px;
    grid-template-columns: minmax(0, 1fr);
    padding: 20px 24px;
    border-radius: 8px;
  }
  .news-card-with-image,
  .news-card-mobile-image {
    grid-template-columns: minmax(0, 1fr) 125px;
    gap: 14px;
    align-items: center;
  }
  .news-card-desktop-image {
    grid-template-columns: minmax(0, 1fr);
  }
  .news-card-desktop-image .news-thumb {
    display: none;
  }
  .news-card h3 {
    display: -webkit-box;
    margin-bottom: 22px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .news-card p {
    display: none;
  }
  .news-card time {
    font-size: 12px;
  }
  .news-thumb,
  .news-thumb-mobile {
    display: block;
    width: 125px;
    height: 70px;
    border-radius: 8px;
  }
  .news-more {
    width: 110px;
    height: 34px;
    font-size: 15px;
  }
}
@keyframes clientMarqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}
@keyframes clientMarqueeRight {
  from {
    transform: translateX(calc(-50% - 5px));
  }
  to {
    transform: translateX(0);
  }
}
