/* SocialTouch 新首页 /home/index */

:root {
  --st-orange: #f07122;
  --st-orange-deep: #e85d0c;
  --st-text: #2b2b2b;
  --st-muted: #666;
  --st-header-h: 64px;
  --st-radius: 16px;
}

.st-home-page {
  background: #fff;
  color: var(--st-text);
  padding-top: var(--st-header-h);
  overflow-x: hidden;
}

.st-home-page.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.st-home-page .navbar,
.st-home-page #main-header {
  display: none !important;
}

/* ========== Header ========== */
.st-home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--st-header-h);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.st-home-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.st-home-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.st-home-header__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.st-home-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.st-home-header__brand-cn {
  font-size: 17px;
  font-weight: 700;
  color: var(--st-text);
}

.st-home-header__brand-en {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.st-home-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: space-evenly;
  max-width: 820px;
  margin: 0 auto;
}

.st-home-header__link {
  position: relative;
  color: var(--st-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.st-home-header__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--st-orange);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.st-home-header__link:hover,
.st-home-header__link.is-active {
  color: var(--st-orange);
}

.st-home-header__link:hover::after,
.st-home-header__link.is-active::after {
  transform: scaleX(1);
}

.st-home-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--st-orange);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(240, 113, 34, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.st-home-header__login:hover {
  background: var(--st-orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 93, 12, 0.35);
}

.st-home-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Language switcher (beside login) */
.st-home-lang {
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.st-home-lang__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(240, 113, 34, 0.35);
  border-radius: 999px;
  background: #fff;
  line-height: 1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--st-orange);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.st-home-lang:hover .st-home-lang__title,
.st-home-lang.is-open .st-home-lang__title {
  background: var(--st-orange);
  border-color: var(--st-orange);
  color: #fff;
}

.st-home-lang__list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 112px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.st-home-lang__list a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--st-text);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease, background 0.2s ease;
}

.st-home-lang__list a:last-child {
  border-bottom: 0;
}

.st-home-lang__list a:hover {
  color: var(--st-orange);
  background: #fff7f1;
}

.st-home-lang:hover .st-home-lang__list,
.st-home-lang.is-open .st-home-lang__list {
  max-height: 120px;
  opacity: 1;
  visibility: visible;
}

.st-home-header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
}

.st-home-header__toggle span {
  display: block;
  height: 2px;
  background: var(--st-text);
  border-radius: 1px;
}

.st-home-header__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 8px 24px 20px;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.st-home-header__mobile a {
  position: relative;
  padding: 12px 0 12px 12px;
  color: var(--st-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f3f3f3;
  transition: color 0.2s ease;
}

.st-home-header__mobile a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--st-orange);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.st-home-header__mobile a:hover,
.st-home-header__mobile a.is-active {
  color: var(--st-orange);
}

.st-home-header__mobile a:hover::before,
.st-home-header__mobile a.is-active::before {
  height: 16px;
}

.st-home-header__mobile.is-open {
  display: flex;
}

.st-home-header__login--mobile {
  margin-top: 12px;
  text-align: center;
  border-bottom: none !important;
  padding-left: 0 !important;
}

.st-home-header__login--mobile::before {
  display: none;
}

.st-home-header__mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  padding-top: 4px;
}

.st-home-header__mobile-lang a {
  flex: 1;
  text-align: center;
  border-bottom: none !important;
  color: var(--st-orange);
  font-weight: 600;
  padding-left: 0 !important;
}

.st-home-header__mobile-lang a::before {
  display: none;
}

/* ========== Hero ========== */
.st-home section[id],
.st-home-hero {
  scroll-margin-top: var(--st-header-h);
}

.st-home-hero {
  position: sticky;
  top: var(--st-header-h);
  z-index: 1;
  width: 100%;
  height: calc(100vh - var(--st-header-h));
  height: calc(100dvh - var(--st-header-h));
  min-height: 420px;
  overflow: hidden;
  background: #111 url("/home/kaipingshipinditu.jpg") center / cover no-repeat;
}

.st-home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.st-home-hero__video.is-fallback {
  display: none;
}

.st-home-hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

/* 内容层：从上往下盖住 sticky hero，顶部左右圆角 */
.st-home-body {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .st-home-hero {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .st-home-body {
    z-index: auto;
  }
}

/* ========== Placeholder ========== */
.st-home-placeholder {
  padding: 80px 24px;
  background: #fafafa;
  text-align: center;
}

.st-home-placeholder--light {
  background: #fff;
}

.st-home-placeholder__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: var(--st-text);
}

.st-home-placeholder__desc {
  margin: 0;
  color: var(--st-muted);
  font-size: 15px;
}

/* ========== Cases grid ========== */
.st-home-cases {
  padding: 28px 12px 80px;
  background: #fff;
}

.st-home-cases__inner {
  width: 100%;
  margin: 0 auto;
}

.st-home-cases__heading {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.st-home-cases__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-home-cases__row {
  --row-h: calc((100vh - var(--st-header-h) + 170px) / 2);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  height: var(--row-h);
  min-height: 180px;
  box-sizing: border-box;
}

.st-home-cases__row.is-full {
  justify-content: flex-start;
}

.st-home-cases__row.is-partial {
  justify-content: center;
}

.st-home-cases__empty {
  text-align: center;
  color: var(--st-muted);
  padding: 48px 0;
}

.st-home-cases__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--st-radius);
  background: #eee;
  text-decoration: none;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

/* 满行：按宽高比 flex-grow 铺满，无虚位 */
.st-home-cases__row.is-full .st-home-cases__item {
  flex: var(--aspect, 1) 1 0;
}

.st-home-cases__row.is-full .st-home-cases__img {
  object-fit: cover;
}

/* 小图与大图一致：cover 铺满裁切 */
.st-home-cases__row.is-full .st-home-cases__item--small .st-home-cases__img,
.st-home-cases__row.is-partial .st-home-cases__item--small .st-home-cases__img,
.st-home-cases__item--small .st-home-cases__img {
  object-fit: cover;
}

/* 不满行：整组居中，图间无空档，两侧留白；按比例定宽 */
.st-home-cases__row.is-partial .st-home-cases__item {
  flex: 0 0 auto;
  width: calc(var(--aspect, 1) * var(--row-h));
  max-width: calc((100% - (var(--row-count, 1) - 1) * 12px) * var(--aspect, 1) / var(--row-sum-aspect, 1));
}

.st-home-cases__row.is-partial .st-home-cases__img {
  object-fit: cover;
}

.st-home-cases__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.st-home-cases__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.st-home-cases__name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) {
  .st-home-cases__overlay {
    opacity: 0;
    transform: translateY(8px);
  }

  .st-home-cases__item:hover .st-home-cases__overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .st-home-cases__item:hover .st-home-cases__img {
    transform: scale(1.04);
  }
}

/* ========== About ========== */
.st-home-about {
  position: relative;
  background: var(--st-orange);
  color: #fff;
  overflow: hidden; /* 裁切超出 logo，高度由文案区决定 */
}

.st-home-about__inner {
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 420px;
}

.st-home-about__content {
  position: relative;
  z-index: 2;
  flex: 1 1 55%;
  max-width: 620px;
}

.st-home-about__title {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.st-home-about__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.st-home-about__text p {
  margin: 0;
  font-weight: 400;
}

.st-home-about__logo-wrap {
  flex: 1 1 40%;
  align-self: stretch;
  min-height: 280px;
  /* 仅占位；logo 相对 .st-home-about 绝对定位，避免撑高容器 */
  pointer-events: none;
}

.st-home-about__logo {
  /* 脱离文档流；约 1/3 超出 #about 右侧并由 overflow:hidden 裁切 */
  --st-about-logo-size: min(680px, 78vw);
  position: absolute;
  top: 50%;
  right: calc(var(--st-about-logo-size) * -0.33);
  width: var(--st-about-logo-size);
  max-width: none;
  height: auto;
  margin-top: calc(var(--st-about-logo-size) * -0.5);
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .st-home-about__logo {
    will-change: auto;
  }
}

/* ========== Awards timeline ========== */
.st-home-awards {
  background: #fff;
  padding: 72px 0 80px;
}

.st-home-awards__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.st-home-awards__heading {
  margin: 0 0 36px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--st-text);
}

.st-home-awards__scroller {
  overflow: visible;
  padding-bottom: 12px;
}

.st-home-awards__track {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  padding: 8px 0 16px;
  position: relative;
}

.st-home-awards__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  position: relative;
  padding-right: 0px;
  padding-left: 14px;
  box-sizing: border-box;
}

/* 左低右高阶梯 */
.st-home-awards__item--1 { padding-top: 140px; }
.st-home-awards__item--2 { padding-top: 105px; }
.st-home-awards__item--3 { padding-top: 70px; }
.st-home-awards__item--4 { padding-top: 35px; }
.st-home-awards__item--5 { padding-top: 0; padding-right: 8px; }

/* 列竖线：五列均有，水平对齐橙点中心；从圆点下方起画到列底，不穿点 */
.st-home-awards__item--1::before,
.st-home-awards__item--2::before,
.st-home-awards__item--3::before,
.st-home-awards__item--4::before,
.st-home-awards__item--5::before {
  content: '';
  position: absolute;
  left: calc(14px + 15px / 2 - 1px);
  bottom: 0;
  width: 2px;
  background: rgba(240, 113, 34, 0.35);
}

/* top = 该列 padding-top + 圆点高 15px + 间隙 6px */
.st-home-awards__item--1::before { top: calc(140px + 15px + 6px); }
.st-home-awards__item--2::before { top: calc(105px + 15px + 6px); }
.st-home-awards__item--3::before { top: calc(70px + 15px + 6px); }
.st-home-awards__item--4::before { top: calc(35px + 15px + 6px); }
.st-home-awards__item--5::before { top: calc(0px + 15px + 6px); }

.st-home-awards__marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}

.st-home-awards__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--st-orange);
  flex-shrink: 0;
}

.st-home-awards__stem {
  display: none;
}

.st-home-awards__body {
  padding-left: 16px;
  padding-right: 8px;
}

.st-home-awards__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.st-home-awards__img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.st-home-awards__item--5 .st-home-awards__img {
  max-width: 180px;
}

/* ========== Insight ========== */
.st-home-insight {
  background: #f8f9fa;
  padding: 72px 24px 96px;
  text-align: center;
}

.st-home-insight__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.st-home-insight__title {
  display: inline-block;
  margin: 0;
  font-size: 40px;
  color: #111;
}

.st-home-insight__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--st-orange);
  border-radius: 2px;
}

.st-home-insight__subtitle {
  margin: 10px 0 28px;
  font-size: 18px;
  color: var(--st-muted);
}

.st-home-insight__stat-label {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--st-muted);
}

.st-home-insight__stat {
  margin: 0 0 32px;
  font-size: 22px;
  color: #111;
}

.st-home-insight__stat strong {
  font-size: 36px;
  font-weight: 800;
}

.st-home-insight__stat-main {
  display: block;
}

.st-home-insight__stat-gold {
  display: block;
  margin: 8px 0 0;
  background: linear-gradient(180deg, #f5d06a 0%, #f07122 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.st-home-insight__stat-gold strong {
  color: inherit;
  -webkit-text-fill-color: inherit;
}

.st-home-insight__marquee {
  overflow: hidden;
  margin: 0 auto 36px;
  max-width: 900px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.st-home-insight__marquee-track {
  display: flex;
  width: max-content;
  gap: 0px;
  animation: st-marquee 28s linear infinite;
}

.st-home-insight__award-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  padding: 0 12px;
  border: none;
  background: transparent;
  white-space: nowrap;
}

.st-home-insight__award-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

@keyframes st-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.st-home-insight__desc {
  margin: 0 auto 40px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--st-muted);
}

.st-home-insight__videos {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-x pinch-zoom;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.st-home-insight__videos::-webkit-scrollbar {
  display: none;
}

.st-home-insight__videos.is-dragging,
.st-home-insight__videos:active {
  cursor: grabbing;
  scroll-snap-type: none;
}

.st-home-insight__videos-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0 16px;
  width: max-content;
  box-sizing: border-box;
}

.st-home-insight__videos-empty {
  width: 100%;
  padding: 40px;
  color: var(--st-muted);
}

.st-home-insight__video-card {
  /* 宽高由 JS 按 7 槽满宽写入，默认回退 150×245 */
  --st-video-scale: 1;
  --st-video-card-w: 150px;
  --st-video-card-h: 245px;
  position: relative;
  flex: 0 0 var(--st-video-card-w);
  width: var(--st-video-card-w);
  height: var(--st-video-card-h);
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1a2744;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
  transform: scale(var(--st-video-scale));
  transform-origin: center center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  backface-visibility: hidden;
}

/* coverflow 档位：只用 transform 缩放，不改 margin，避免布局抖动 */
.st-home-insight__video-card.is-pos-0 {
  --st-video-scale: 1;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.st-home-insight__video-card.is-pos-1 {
  --st-video-scale: 0.84; /* 126/150 */
  z-index: 2;
}

.st-home-insight__video-card.is-pos-2 {
  --st-video-scale: 0.72; /* 108/150 */
  z-index: 1;
}

.st-home-insight__video-card.is-pos-3 {
  --st-video-scale: 0.64; /* 96/150 */
  z-index: 0;
}

.st-home-insight__video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.st-home-insight__video-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.st-home-insight__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .st-home-insight__video-play {
    opacity: 0;
  }

  .st-home-insight__video-card:hover .st-home-insight__video-play {
    opacity: 1;
  }
}

.st-home-insight__video-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--st-orange);
}

/* ========== IP Universe ========== */
.st-home-ip {
  background: #fff;
  padding: 64px 0 64px;
  overflow: hidden;
}

.st-home-ip__intro {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 130px auto 48px;
  padding: 0 24px;
  box-sizing: border-box;
}

.st-home-ip__intro-copy {
  flex: 1 1 45%;
  max-width: 480px;
  text-align: center;
}

.st-home-ip__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.st-home-ip__brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

.st-home-ip__intro-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  text-align: left;
}

.st-home-ip__intro-visual {
  flex: 1 1 55%;
  text-align: center;
}

.st-home-ip__site-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.st-home-ip__site-screen {
  position: absolute;
  z-index: 0;
  /* 对准电脑透明屏，可按实图微调 */
  top: 5%;
  left: 12%;
  width: 76%;
  height: 82%;
  overflow: hidden;
  border-radius: 10px 10px 4px 4px;
  background: #000;
  pointer-events: none;
}

.st-home-ip__site-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.st-home-ip__site-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
}

.st-home-ip__site-caption {
  margin: 12px 0 0;
  font-size: 13px;
  color: #999;
}

.st-home-ip__rows {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.st-home-ip__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 16px;
}

.st-home-ip__row:last-child {
  margin-bottom: 0;
}

.st-home-ip__label {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  background: #fde8df80;
  color: #222;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  z-index: 2;
}

.st-home-ip__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 120px;
}

.st-home-ip__track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.st-home-ip__track--rtl {
  animation: st-ip-rtl 40s linear infinite;
}

.st-home-ip__track--ltr {
  animation: st-ip-ltr 40s linear infinite;
}

.st-home-ip__viewport:hover .st-home-ip__track {
  animation-play-state: paused;
}

.st-home-ip__card {
  flex: 0 0 192px;
  width: 192px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.st-home-ip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes st-ip-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes st-ip-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ========== Creative better ========== */
.st-home-creative {
  background: #fff;
  padding: 72px 24px 96px;
  text-align: center;
}

.st-home-creative__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.st-home-creative__title {
  display: inline-block;
  margin: 0;
  font-size: 40px;
  color: #111;
}

.st-home-creative__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--st-orange);
  border-radius: 2px;
}

.st-home-creative__subtitle {
  margin: 12px 0 36px;
  font-size: 18px;
  color: var(--st-muted);
}

.st-home-creative__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  text-align: left;
}

.st-home-creative__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 4px 2px;
}

.st-home-creative__card {
  flex: 0 0 320px;
  width: 320px;
  min-height: 700px;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 18px 18px 0;
  box-sizing: border-box;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.st-home-creative__year {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: left;
}

.st-home-creative__cover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}

.st-home-creative__cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f3f3;
}

.st-home-creative__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  text-align: center;
}

.st-home-creative__slogan {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-align: center;
  line-height: 1.45;
}

.st-home-creative__highlight {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  text-align: left;
  align-self: start;
  width: 100%;
}

.st-home-creative__awards {
  position: relative;
  margin: 0 -18px;
  padding: 26px 18px 16px;
  height: 200px;
  box-sizing: border-box;
  background: #f5f5f5;
  border-radius: 0 0 14px 14px;
  align-self: stretch;
  overflow: visible;
}

.st-home-creative__trophy {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.st-home-creative__trophy-img {
  display: block;
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.st-home-creative__award-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-home-creative__award-list li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--st-orange);
  font-weight: 600;
}

.st-home-creative__award-list li:last-child {
  margin-bottom: 0;
}

.st-home-creative__award-name {
  order: 1;
  flex: 0 1 auto;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.st-home-creative__award-list li::after {
  content: '';
  order: 2;
  flex: 1;
  border-bottom: 1px dotted rgba(240, 113, 34, 0.55);
  transform: translateY(-3px);
  min-width: 16px;
}

.st-home-creative__award-level {
  order: 3;
  flex: 0 0 auto;
}

.st-home-creative__banner {
  margin: 40px auto 0;
  max-width: 1100px;
  text-align: center;
}

.st-home-creative__banner-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.st-home-creative__banner-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  background: #000;
}

/* ========== Execution ========== */
.st-home-exec {
  background: #f8f9fa;
  padding: 72px 24px 96px;
  text-align: center;
}

.st-home-exec__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.st-home-exec__title {
  display: inline-block;
  margin: 0;
  font-size: 40px;
  color: #111;
}

.st-home-exec__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--st-orange);
  border-radius: 2px;
}

.st-home-exec__subtitle {
  margin: 12px 0 40px;
  font-size: 18px;
  color: var(--st-muted);
}

.st-home-exec__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  text-align: left;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-sizing: border-box;
}

.st-home-exec__row:last-child {
  margin-bottom: 0;
}

.st-home-exec__row--reverse .st-home-exec__media {
  order: 2;
}

.st-home-exec__row--reverse .st-home-exec__body {
  order: 1;
}

.st-home-exec__media {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
}

.st-home-exec__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.st-home-exec__body {
  min-width: 0;
}

.st-home-exec__heading {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.45;
}

.st-home-exec__item {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

.st-home-exec__item:last-child {
  margin-bottom: 0;
}

.st-home-exec__item strong {
  color: #222;
  font-weight: 700;
}

/* ========== Capability / Fanli ========== */
.st-home-capability {
  background: #fff;
  padding: 72px 24px 96px;
  text-align: center;
}

.st-home-capability__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.st-home-capability__title {
  display: inline-block;
  margin: 0;
  font-size: 40px;
  color: #111;
}

.st-home-capability__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--st-orange);
  border-radius: 2px;
}

.st-home-capability__subtitle {
  margin: 12px 0 40px;
  font-size: 18px;
  color: var(--st-muted);
}

.st-home-capability__main {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}

.st-home-capability__intro {
  text-align: center;
}

.st-home-capability__intro-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.st-home-capability__intro-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}

.st-home-capability__awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  /* 固定可视 2 行：单卡约 82px + gap 12px */
  height: 176px;
  max-height: 176px;
  overflow: hidden;
}

.st-home-capability__award-col {
  min-height: 0;
  height: 176px;
  max-height: 176px;
  overflow: hidden;
}

.st-home-capability__award-track {
  display: flex;
  flex-direction: column;
  animation: st-fanli-up 18s linear infinite;
  will-change: transform;
}

.st-home-capability__award-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.st-home-capability__awards:hover .st-home-capability__award-track {
  animation-play-state: paused;
}

.st-home-capability__award-item {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  height: 82px;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

.st-home-capability__award-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes st-fanli-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-home-capability__award-track {
    animation: none;
  }
}

.st-home-capability__video {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.st-home-capability__video-el {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  background: #111;
}

.st-home-capability__video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* ========== Clients ========== */
.st-home-clients {
  background: #F8F9FA;
  padding: 72px 24px 96px;
  text-align: center;
}

.st-home-clients__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.st-home-clients__title {
  display: inline-block;
  margin: 0 0 36px;
  font-size: 40px;
  color: #000000;
}

.st-home-clients__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--st-orange);
  border-radius: 2px;
}

/* 按整图 1030px 实测：8 列圆心间距 136，首尾圆心 38/990，类别行需略宽于图片以对齐 */
.st-home-clients__cats {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px 0;
  width: calc(100% * 1088 / 1030);
  margin: 0 0 20px;
  margin-left: calc(100% * -30 / 1030);
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.st-home-clients__cats li {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.st-home-clients__board {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.st-home-clients__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px 16px;
}

.st-home-clients__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.st-home-clients__cat {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  line-height: 1.4;
  white-space: nowrap;
}

.st-home-clients__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
}

.st-home-clients__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== Contact ========== */
.st-home-contact {
  background: #F5F5F5;
  padding: 72px 24px 96px;
}

.st-home-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.st-home-contact__info {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.st-home-contact__title {
  margin: 0 0 36px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--st-orange);
}

.st-home-contact__tabs {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 0 28px;
  padding: 0 0 14px;
  border-bottom: 1px solid #ddd;
}

.st-home-contact__tab {
  position: relative;
  margin: 0;
  padding: 0 0 14px;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.2;
  color: #999;
  cursor: pointer;
  outline: none;
}

.st-home-contact__tab:hover {
  color: var(--st-text);
}

.st-home-contact__tab.is-active {
  color: var(--st-text);
  font-weight: 600;
}

.st-home-contact__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 3px;
  background: var(--st-orange);
  border-radius: 2px;
}

.st-home-contact__detail {
  margin-top: 8px;
}

.st-home-contact__address,
.st-home-contact__phone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--st-muted);
}

.st-home-contact__address .glyphicon,
.st-home-contact__phone .glyphicon {
  flex: none;
  margin-top: 4px;
  color: var(--st-orange);
  font-size: 14px;
}

.st-home-contact__phone a {
  color: var(--st-muted);
  text-decoration: none;
}

.st-home-contact__phone a:hover {
  color: var(--st-orange);
}

.st-home-contact__map-wrap {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e8;
  min-height: 320px;
}

.st-home-contact__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.st-home-contact__map-unlock {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  margin: 0;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.st-home-contact__map-unlock.is-hidden {
  display: none;
}

/* ========== Home footer ========== */
.st-home-footer {
  background: #fff;
  border-top: 1px solid rgba(138, 145, 157, 0.24);
}

.st-home-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  box-sizing: border-box;
}

.st-home-footer__left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.st-home-footer__title {
  margin-bottom: 20px;
  font-size: 18px;
  color: rgba(19, 20, 28, 0.9);
  line-height: 26px;
}

.st-home-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 56px;
}

.st-home-footer__links a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(19, 20, 28, 0.9);
  line-height: 22px;
  text-decoration: none;
}

.st-home-footer__links a:hover {
  color: var(--st-orange);
}

.st-home-footer__links img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.st-home-footer__copyright {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 42px;
  font-size: 12px;
  color: rgba(19, 20, 28, 0.6);
  line-height: 20px;
}

.st-home-footer__copyright a {
  color: rgba(19, 20, 28, 0.6);
  text-decoration: none;
}

.st-home-footer__copyright a:hover {
  color: rgba(19, 20, 28, 0.9);
}

.st-home-footer__copy-text a {
  margin-left: 12px;
}

.st-home-footer__beian {
  display: inline-flex;
  align-items: center;
}

.st-home-footer__beian img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.st-home-footer__qrcode {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
}

.st-home-footer__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: rgba(19, 20, 28, 0.6);
  line-height: 22px;
}

.st-home-footer__qr img {
  width: 144px;
  height: 144px;
  margin-bottom: 12px;
  object-fit: contain;
}

/* ========== Modal ========== */
.st-home-modal[hidden] {
  display: none !important;
}

.st-home-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.st-home-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.st-home-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #111;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.st-home-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.st-home-modal__title {
  margin: 0 40px 12px 0;
  color: #fff;
  font-size: 16px;
}

.st-home-modal__video {
  width: 100%;
  max-height: 70vh;
  background: #000;
  border-radius: 8px;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .st-home-header__nav {
    display: none;
  }

  .st-home-header__actions {
    display: none;
  }

  .st-home-header__toggle {
    display: flex;
  }
}

@media (max-width: 992px) {
  .st-home-about,
  .st-home-awards,
  .st-home-insight,
  .st-home-ip,
  .st-home-creative,
  .st-home-exec,
  .st-home-capability,
  .st-home-clients,
  .st-home-contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .st-home-about__inner {
    padding: 48px 16px;
    min-height: 0;
  }

  .st-home-awards {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .st-home-insight,
  .st-home-creative,
  .st-home-exec,
  .st-home-capability,
  .st-home-clients,
  .st-home-contact {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .st-home-insight__title,
  .st-home-creative__title,
  .st-home-exec__title,
  .st-home-capability__title,
  .st-home-clients__title,
  .st-home-contact__title,
  .st-home-about__title {
    font-size: 32px;
  }

  .st-home-about__text {
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  .st-home-contact__inner {
    flex-direction: column;
    gap: 32px;
  }

  .st-home-contact__info {
    flex: none;
    max-width: none;
  }

  .st-home-contact__map-wrap {
    width: 100%;
    min-height: 280px;
    padding-bottom: 56%;
  }

  .st-home-about__inner {
    flex-direction: column;
    text-align: center;
  }

  .st-home-about__logo-wrap {
    width: 100%;
    min-height: 220px;
    flex: none;
  }

  .st-home-about__logo {
    --st-about-logo-size: min(420px, 88vw);
    right: calc(var(--st-about-logo-size) * -0.33);
    margin-top: calc(var(--st-about-logo-size) * -0.5);
  }

  .st-home-ip__intro {
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
    margin-bottom: 36px;
  }

  .st-home-ip__intro-copy {
    max-width: none;
  }

  .st-home-ip__label {
    flex-basis: 90px;
    width: 90px;
    height: 90px;
    font-size: 14px;
    padding: 8px;
  }

  .st-home-ip__viewport {
    height: 90px;
    -webkit-overflow-scrolling: touch;
  }

  .st-home-ip__card {
    flex-basis: 144px;
    width: 144px;
    height: 90px;
  }

  .st-home-cases__grid {
    gap: 12px;
  }

  .st-home-cases__row {
    --row-h: 180px;
    height: var(--row-h);
    min-height: 180px;
    flex-wrap: wrap;
  }

  .st-home-cases__row.is-full .st-home-cases__item,
  .st-home-cases__row.is-partial .st-home-cases__item {
    flex: 1 1 calc(50% - 6px);
    width: auto;
    max-width: none;
    height: var(--row-h);
  }

  .st-home-cases__row.is-full .st-home-cases__img,
  .st-home-cases__row.is-partial .st-home-cases__img,
  .st-home-cases__row.is-full .st-home-cases__item--small .st-home-cases__img,
  .st-home-cases__row.is-partial .st-home-cases__item--small .st-home-cases__img {
    object-fit: cover;
  }

  .st-home-awards__track {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .st-home-awards__item,
  .st-home-awards__item--1,
  .st-home-awards__item--2,
  .st-home-awards__item--3,
  .st-home-awards__item--4,
  .st-home-awards__item--5 {
    max-width: none;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .st-home-awards__item--1::before,
  .st-home-awards__item--2::before,
  .st-home-awards__item--3::before,
  .st-home-awards__item--4::before,
  .st-home-awards__item--5::before {
    display: none;
  }

  .st-home-clients__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 12px;
  }

  .st-home-clients__cats {
    grid-template-columns: repeat(4, 1fr);
  }

  .st-home-exec__row,
  .st-home-exec__row--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
  }

  .st-home-exec__row--reverse .st-home-exec__media,
  .st-home-exec__row--reverse .st-home-exec__body {
    order: initial;
  }

  .st-home-capability__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .st-home-footer__inner {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }

  .st-home-footer__copyright {
    padding-top: 28px;
  }

  .st-home-footer__qrcode {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .st-home-footer__qr img {
    width: 100px;
    height: 100px;
  }

  .st-home-page #btt1.free-tool {
    width: 48px !important;
    height: auto !important;
    right: 12px !important;
    bottom: 88px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .st-home-hero {
    min-height: 280px;
    height: calc(100vh - var(--st-header-h));
    height: calc(100svh - var(--st-header-h));
    height: calc(100dvh - var(--st-header-h));
  }

  .st-home-body {
    border-radius: 20px 20px 0 0;
  }

  .st-home-about__inner {
    padding: 40px 16px;
  }

  .st-home-insight,
  .st-home-ip,
  .st-home-creative,
  .st-home-exec,
  .st-home-capability,
  .st-home-clients,
  .st-home-contact {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .st-home-cases__row {
    --row-h: 220px;
    height: auto;
    min-height: 0;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .st-home-cases__row.is-full .st-home-cases__item,
  .st-home-cases__row.is-partial .st-home-cases__item {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    height: var(--row-h);
  }

  .st-home-cases__row.is-full .st-home-cases__img,
  .st-home-cases__row.is-partial .st-home-cases__img,
  .st-home-cases__row.is-full .st-home-cases__item--small .st-home-cases__img,
  .st-home-cases__row.is-partial .st-home-cases__item--small .st-home-cases__img {
    object-fit: cover;
  }

  .st-home-insight__stat-gold {
    display: block;
    margin: 8px 0 0;
  }

  .st-home-insight__title,
  .st-home-creative__title,
  .st-home-exec__title,
  .st-home-capability__title,
  .st-home-clients__title,
  .st-home-contact__title {
    font-size: 28px;
  }

  .st-home-insight__subtitle,
  .st-home-creative__subtitle,
  .st-home-exec__subtitle,
  .st-home-capability__subtitle {
    font-size: 15px;
  }

  .st-home-about__title {
    font-size: 28px;
  }

  .st-home-clients__title {
    margin-bottom: 28px;
  }

  .st-home-contact__tabs {
    gap: 24px;
  }

  .st-home-contact__tab {
    font-size: 16px;
  }

  .st-home-contact__address,
  .st-home-contact__phone {
    font-size: 14px;
  }

  .st-home-contact__map-wrap {
    min-height: 240px;
  }

  .st-home-insight__videos {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
  }

  .st-home-creative__scroller {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .st-home-creative__card {
    flex-basis: 260px;
    width: 260px;
    min-height: 680px;
  }

  .st-home-exec__row,
  .st-home-exec__row--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
  }

  .st-home-exec__row--reverse .st-home-exec__media,
  .st-home-exec__row--reverse .st-home-exec__body {
    order: initial;
  }

  .st-home-exec__img {
    height: 200px;
  }

  .st-home-exec__heading {
    font-size: 16px;
  }

  .st-home-capability__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .st-home-capability__award-item {
    height: 72px;
  }

  .st-home-capability__awards,
  .st-home-capability__award-col {
    height: 156px;
    max-height: 156px;
  }

  .st-home-capability__video,
  .st-home-capability__video-el,
  .st-home-capability__video-placeholder {
    min-height: 200px;
  }

  .st-home-clients__cats {
    display: none;
  }

  .st-home-clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .st-home-clients__cat {
    white-space: normal;
    font-size: 13px;
  }

  .st-home-clients__logo {
    width: 68px;
    height: 68px;
  }

  .st-home-footer__links {
    gap: 12px 24px;
  }

  .st-home-footer__qrcode {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }

  .st-home-footer__qr img {
    width: 88px;
    height: 88px;
  }

  .st-home-footer__qr span {
    font-size: 12px;
  }
}
