/* New Home Page Styles */

/* 确保header和下拉菜单的z-index足够高，不被hero section覆盖 */
.header {
  z-index: 100 !important;
  position: fixed !important;
}

/* 确保下拉菜单样式不被覆盖 
.header-select-box {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.header-select-product,
.header-select-solution {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  z-index: 1000 !important;
}

.header-select-content {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  opacity: 1 !important;
}

.header-select-content-ul,
.header-select-content-li,
.header-select-content-section {
  background-color: transparent !important;
}

/* 确保下拉菜单内容区域也有白色背景 */
.header-select-content-ul {
  background-color: transparent !important;
}

.header-select-content-cover {
  background-color: transparent !important;
}

/* Hero Section */
.new-hero-section {
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.new-hero-container {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 0 0 12px 12px;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.new-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: url('/frontStatic/cn/image/header/header.png') !important;
}

.new-hero-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: rgba(98, 70, 232, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  /* 禁用动画，避免背景抖动 */
  /* animation: glowPulse 4s ease-in-out infinite; */
  opacity: 0.8;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

.new-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  padding: 184px 24px 0; /* Updated top padding to match 184px requirement */
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start; /* Removed center to allow fixed top margin */
}

.new-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center; /* 还原为center，因为我们通过 container flex-start + padding-top 控制总体高度 */
  justify-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .new-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.new-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
  width: 400px;
}

.new-hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 28px;
  color: #FFFFFF;
}

.new-hero-title-line,
.new-hero-description-line {
  display: block;
}

@media (min-width: 1024px) {
  .new-hero-title {
    font-size: 50px;
    line-height: 60px;
  }

  .new-hero-title-line,
  .new-hero-description-line {
    white-space: nowrap;
  }
}

.new-hero-description {
  font-size: 20px;
  line-height: 29.25px;
  color: #1E293B;
  margin-bottom: 28px;
  font-weight: normal;
  max-width: 420px;
  letter-spacing: normal;
}

@media (min-width: 1024px) {
  .new-hero-description {
    max-width: 720px;
  }
}

.new-hero-description strong {
  font-weight: 500;
}

.new-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 640px) {
  .new-hero-buttons {
    flex-direction: row;
    width: auto;
  }
}

.new-hero-btn-primary,
.new-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 148px;
  height: 48px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.new-hero-btn-primary {
  background-color: #FFFFFF;
  color: #6246E8;
  border: 1px solid #6246E8;
  box-sizing: border-box;
}

.new-hero-btn-primary:hover {
  background-color: #FFFFFF;
  transform: scale(1.02);
}

.new-hero-btn-outline {
  background-color: #1E293B;
  color: #FFFFFF;
  border: none;
}

.new-hero-btn-outline:hover {
  background-color: #1E293B;
  transform: scale(1.02);
}

.new-hero-right {
  position: relative;
  justify-content: center;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: flex;
  }
  .mobile-only {
    display: none;
  }
}

.new-hero-bg-image {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 1400px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  mix-blend-mode: multiply;
  /* 禁用动画，避免背景抖动 */
  /* animation: bgImageFloat 8s ease-in-out infinite; */
}

@keyframes bgImageFloat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05) rotate(2deg);
    opacity: 0.7;
  }
}

.new-hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.2) brightness(0.9);
  /* 禁用动画，避免背景抖动 */
  /* animation: bgImagePulse 6s ease-in-out infinite; */
}

@keyframes bgImagePulse {
  0%, 100% {
    filter: contrast(1.2) brightness(0.9);
  }
  50% {
    filter: contrast(1.3) brightness(1);
  }
}

/* ==================== 首页顶部（含导航栏）匹配设计稿 ==================== */

/* 1) 导航栏浮在 Hero 背景上（仅首页生效） */
body.home-v2 .header {
  background-color: transparent !important;
  backdrop-filter: none !important;
}

body.home-v2 .header-active {
  background-color: transparent !important;
}

/* 首页滚动后恢复为站点标准导航样式：白底、深色文字、紫色logo */
body.home-v2 .header.header-active {
  background-color: #FFFFFF !important;
  backdrop-filter: blur(10px) !important;
}

body.home-v2 .header.header-active .header_logo-image-dark {
  display: block !important;
}

body.home-v2 .header.header-active .header_logo-image-light {
  display: none !important;
}

body.home-v2 .header.header-active .menus-item-text,
body.home-v2 .header.header-active .language-zh,
body.home-v2 .header.header-active .iphone-number {
  color: #1E293B !important;
}

body.home-v2 .header.header-active .menus-item-top {
  filter: none !important;
}

body.home-v2 .header.header-active .iphone-icon {
  filter: none !important;
  opacity: 1;
}

body.home-v2 .header.header-active .demo-button {
  background: #FFFFFF;
  border: 1px solid #6246E8;
}

body.home-v2 .header.header-active .demo-button .menus-item-text {
  color: #6246E8 !important;
}

/* 导航文字/电话/语言切到白色（仅首页），下拉菜单仍保持白底 */
body.home-v2 .header .menus-item-text,
body.home-v2 .header .language-zh,
body.home-v2 .header .iphone-number {
  color: #FFFFFF !important;
}

/* 让下拉箭头在深色背景上可见（简单反色） */
body.home-v2 .header .menus-item-top {
  filter: brightness(0) invert(1);
}

/* Demo 按钮保持可见（白描边/白字） */
body.home-v2 .header .demo-button {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

body.home-v2 .header .demo-button .menus-item-text {
  color: #FFFFFF !important;
}

/* 2) Hero 背景图 cover，铺满到顶部（包含 header 64px） */
.new-hero-section {
  /* 覆盖原本的浅色底 */
  background: #FFFFFF;
}

.new-hero-container {
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: #FFFFFF;
}

.new-hero-grid-bg {
  inset: 0 0 auto 0;
  height: 643px;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* 轻遮罩提升白字可读性 */
.new-hero-container::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 643px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.10) 100%);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .new-hero-glow {
    top: 80px;
    transform: none;
    opacity: 0.18;
  }
}

body.home-v2 .new-hero-content {
  z-index: 1;
  padding-top: 184px; /* Updated top padding to match 184px requirement */
  padding-bottom: 28px;
}

@media (min-width: 1024px) {
  body.home-v2 .new-hero-content {
    /* 桌面端文案第一屏标题距离顶部 184px */
    padding-top: 184px !important;
  }
}

/* 3) 左侧文案与按钮居中、改为白色 */
.new-hero-left {
  align-items: center;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 720px;
  margin: 0 auto;
}

.new-hero-title,
.new-hero-description {
  color: #FFFFFF;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

body.home-v2 .new-hero-title {
  position: relative;
  margin-bottom: 28px;
}



.new-hero-description {
  margin: 0 auto 28px auto;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 1024px) {
  body.home-v2 .new-hero-title {
    font-size: 56px;
    line-height: 60px;
  }

  body.home-v2 .new-hero-description {
    font-size: 20px;
    line-height: 28px;
  }
}

.new-hero-buttons {
  justify-content: center;
  align-items: center;
  gap: 16px;
}

body.home-v2 .new-hero-btn-primary,
body.home-v2 .new-hero-btn-outline {
  width: 148px;
  height: 48px;
  padding: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.home-v2 .new-hero-btn-primary {
  background: #FFFFFF;
  border: 1px solid #6246E8;
  color: #6246E8;
  box-sizing: border-box;
}

body.home-v2 .new-hero-btn-primary:hover {
  background: #FFFFFF;
  color: #6246E8;
  transform: scale(1.02);
}

body.home-v2 .new-hero-btn-outline {
  background: #1E293B;
  border: none;
  color: #FFFFFF;
}

body.home-v2 .new-hero-btn-outline:hover {
  background: #1E293B;
  color: #FFFFFF;
  transform: scale(1.02);
}

body.home-v2 .header-right {
  align-items: center;
  gap: 12px;
}

body.home-v2 .header .language,
body.home-v2 .header .iphone {
  display: inline-flex;
  align-items: center;
}

body.home-v2 .header .language-zh,
body.home-v2 .header .iphone-number {
  color: rgba(255, 255, 255, 0.92) !important;
}

body.home-v2 .header .iphone-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

body.home-v2 .header .consult-button,
body.home-v2 .header .demo-button {
  min-width: 106px;
  height: 34px;
  margin-top: 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1759FF;
  border: 1px solid #1759FF;
  border-radius: 4px;
  box-shadow: none;
  margin-left: 0;
}

body.home-v2 .header .consult-button {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.98);
  margin-left: 12px;
}

body.home-v2 .header .consult-button .menus-item-text {
  color: #1759FF !important;
}

body.home-v2 .header .consult-button:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

body.home-v2 .header .demo-button:hover {
  background: #3D59E8;
  border-color: #3D59E8;
}

body.home-v2 .header .demo-button {
  margin-left: 6px;
}

body.home-v2 .footerHtml .contactForm {
  bottom: 88px;
}

body.home-v2 .footerHtml .goBack {
  bottom: 100px;
}

/* 4) 轮播改成一行平铺横向滚动（desktop） */
.new-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  z-index: 2;
}

.new-hero-carousel {
  position: relative;
  width: 100vw;
  min-width: 0;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -20px;
  padding-top: 20px;
  overflow: hidden;
  cursor: grab;
  z-index: 2;
}

.new-hero-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.new-hero-carousel-item {
  flex: 0 0 300px;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.new-hero-carousel-item:hover {
  z-index: 3;
  transform: translateY(-20px);
}

.new-hero-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-hero-carousel-controls {
  width: min(100%, 1280px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px auto 0;
  padding: 0 32px;
}

.new-hero-carousel-pagination {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.new-hero-carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(94, 87, 181, 0.18);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.new-hero-carousel-dot.active {
  width: 22px;
  background: #7262FF;
}

.new-hero-carousel-nav {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(114, 98, 255, 0.12);
  color: #5F54CC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.new-hero-carousel-nav:hover {
  background: rgba(114, 98, 255, 0.2);
  color: #4B41B5;
}

/* 旧 3D 轮播不再在首页使用，避免残留样式影响布局（仅 desktop 可见区域） */


@media (max-width: 1024px) {
  .new-hero-grid-bg,
  .new-hero-container::before {
    inset: 0;
    height: auto;
  }

  /* 小屏下右侧本来就隐藏 desktop-only；这里仅做容错 */
  .new-hero-carousel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
  }

  .new-hero-carousel-item {
    flex-basis: 180px;
  }

  .new-hero-carousel-controls {
    display: none;
  }
}

/* Home V2 Hero Redesign (2026-04) */
body.home-v2 .new-hero-section {
  background: #0A0A2A;
  overflow: hidden;
}

body.home-v2 .new-hero-container {
  min-height: 800px;
  border-radius: 0;
  box-shadow: none;
  background: url('/frontStatic/cn/image/newIndex/hero-top.png') center top / cover no-repeat;
}

body.home-v2 .new-hero-container::before {
  display: none !important;
}

body.home-v2 .new-hero-content {
  max-width: 1310px;
  padding: 184px 0 0;
  display: block;
}

body.home-v2 .new-hero-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

body.home-v2 .new-hero-left {
  width: 534px;
  max-width: 534px;
  min-height: 360px;
  margin: 0;
  align-items: flex-start;
  text-align: left;
}

body.home-v2 .new-hero-title {
  margin: 0 0 28px;
  line-height: 0;
}

body.home-v2 .new-hero-title-line {
  display: block;
  font-family: 'Public Sans', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-size: 56px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

body.home-v2 .new-hero-title-line:nth-child(1) {
  color: #FFFFFF;
}

body.home-v2 .new-hero-title-line:nth-child(2) {
  background: linear-gradient(90deg, #519CFF 0%, #FFBEFD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.home-v2 .new-hero-title-line:nth-child(3) {
  color: #FFFFFF;
}

body.home-v2 .new-hero-description {
  margin: 0 0 28px;
  max-width: 534px;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: none;
}

body.home-v2 .new-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

body.home-v2 .new-hero-btn-primary,
body.home-v2 .new-hero-btn-outline {
  width: 150px;
  height: 48px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

body.home-v2 .new-hero-right {
  width: 712px;
  max-width: 712px;
  min-height: 446px;
  display: flex;
  justify-content: center;
}

body.home-v2 .new-hero-showcase {
  width: 658px;
  height: 446px;
  position: relative;
}

body.home-v2 .new-hero-switch-bottom-btn {
  width: 310px;
  height: 30px;
  border: 0;
  border-radius: 3px;
  background: rgba(24, 30, 56, 0.9);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.home-v2 .new-hero-switch-bottom-btn.is-active {
  background: linear-gradient(90deg, #4F46E5 0%, #6D5BFF 100%);
  color: #FFFFFF;
}

body.home-v2 .new-hero-showcase-frame {
  position: relative;
  width: 658px;
  height: 445px;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(112, 95, 255, 0.45);
  background: rgba(14, 10, 51, 0.18);
}

body.home-v2 .new-hero-showcase-topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 658px;
  height: 38px;
  border-radius: 18px 18px 0 0;
  background: rgba(11, 8, 43, 0.9);
  border-bottom: 1px solid rgba(146, 128, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  box-sizing: border-box;
  z-index: 4;
}

body.home-v2 .new-hero-topbar-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.home-v2 .new-hero-topbar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

body.home-v2 .new-hero-topbar-dots span:nth-child(1) { background: #FF5F57; }
body.home-v2 .new-hero-topbar-dots span:nth-child(2) { background: #FEBC2E; }
body.home-v2 .new-hero-topbar-dots span:nth-child(3) { background: #28C840; }

body.home-v2 .new-hero-topbar-title {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  margin-left: 12px;
  margin-right: auto;
}

body.home-v2 .new-hero-topbar-live {
  color: #00E774;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
}

body.home-v2 .new-hero-showcase-image {
  position: absolute;
  left: 0;
  top: 38px;
  width: 658px;
  height: 340px;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.home-v2 .new-hero-showcase-image.is-active {
  opacity: 1;
}

body.home-v2 .new-hero-float-card {
  position: absolute;
  height: 52px;
  border-radius: 12px;
  background: rgba(84, 76, 144, 0.72);
  border: 1px solid rgba(153, 137, 255, 0.48);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 0 14px;
  box-sizing: border-box;
  z-index: 3;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(20, 11, 68, 0.28);
}

body.home-v2 .new-hero-float-value {
  display: block;
  margin: 0;
  color: #B39AFF;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

body.home-v2 .new-hero-float-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
}

body.home-v2 .new-hero-float-copy b {
  display: block;
  margin: 0;
  color: #B39AFF;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}

body.home-v2 .new-hero-float-copy em {
  display: block;
  font-style: normal;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 12px;
  font-weight: 400;
}

body.home-v2 .new-hero-float-card-left {
  top: 134px;
  left: -80px;
  width: 181px;
}

body.home-v2 .new-hero-float-card-right {
  top: 318px;
  right: -81px;
  width: 158px;
  padding: 0 12px;
  gap: 8px;
}

body.home-v2 .new-hero-float-card-right .new-hero-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #FFD44D;
  font-size: 16px;
  line-height: 16px;
}

body.home-v2 .new-hero-float-card-right .new-hero-float-copy {
  margin-left: 0;
}

body.home-v2 .new-hero-float-card-right .new-hero-float-copy b {
  color: #C0A6FF;
  font-size: 11px;
  line-height: 14px;
}

body.home-v2 .new-hero-float-card-right .new-hero-float-copy em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 12px;
}

body.home-v2 .new-hero-switch-bottom-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 658px;
  height: 67px;
  border-radius: 0 0 18px 18px;
  padding: 8px 12px 14px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(15, 10, 46, 0.1) 0%, rgba(15, 10, 46, 0.92) 78%, rgba(15, 10, 46, 0.95) 100%);
  border-top: 1px solid rgba(138, 116, 255, 0.3);
  z-index: 4;
}

body.home-v2 .new-hero-switch-progress {
  width: 634px;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 9px;
  transition: margin-bottom 0.25s ease;
}

body.home-v2 .new-hero-switch-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #54B6FF 0%, #8F74FF 100%);
}

body.home-v2 .new-hero-switch-progress-bar.is-animating {
  animation: heroSwitchProgress 5s linear forwards;
}

@keyframes heroSwitchProgress {
  from { width: 0%; }
  to { width: 100%; }
}

body.home-v2 .new-hero-switch-bottom {
  width: 634px;
  display: grid;
  grid-template-columns: 310px 310px;
  column-gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.home-v2 .new-hero-showcase:hover .new-hero-switch-bottom {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home-v2 .new-hero-showcase:hover .new-hero-switch-progress {
  margin-bottom: 9px;
}

@media (max-width: 1024px) {
  body.home-v2 .new-hero-container {
    width: 100%;
    max-width: 100%;
  }

  body.home-v2 .new-hero-content {
    padding: 140px 20px 40px;
  }

  body.home-v2 .new-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-v2 .new-hero-right {
    width: 100%;
    max-width: 658px;
    margin: 36px auto 0;
    min-height: auto;
  }

  body.home-v2 .new-hero-showcase {
    width: 100%;
    height: auto;
  }

  body.home-v2 .new-hero-showcase-frame {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  body.home-v2 .new-hero-showcase-topbar {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }

  body.home-v2 .new-hero-showcase-image {
    position: relative;
    top: 38px;
    width: 100%;
    height: auto;
    aspect-ratio: 658 / 340;
    left: 0;
  }

  body.home-v2 .new-hero-float-card {
    display: none;
  }

  body.home-v2 .new-hero-switch-progress,
  body.home-v2 .new-hero-switch-bottom {
    width: 100%;
  }

  body.home-v2 .new-hero-switch-bottom {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }

  body.home-v2 .new-hero-switch-bottom-btn {
    width: 100%;
  }

  body.home-v2 .new-hero-title-line {
    line-height: 48px;
  }

  body.home-v2 .new-hero-description {
    max-width: 100%;
  }

  body.home-v2 .new-hero-buttons {
    justify-content: center;
  }
}

/* Testimonials Section */
.new-testimonials-section {
  padding: 80px 0 0;
  overflow: hidden;
  background: white;
  border-top: 1px solid rgba(213, 216, 214, 0.05);
}

.new-testimonials-header {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .new-testimonials-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.new-testimonials-title {
  font-size: 36px;
  font-weight: bold;
  color: #1E293B;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .new-testimonials-title {
    font-size: 36px;
  }
}

.new-testimonials-title .text-green {
  color: #6246E8;
}

.new-testimonials-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.new-testimonials-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6246E8;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
}

.new-testimonials-link:hover {
  color: #6246E8;
}

.new-testimonials-tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(213, 216, 214, 0.1);
  padding-bottom: 4px;
}

.new-testimonial-tab {
  padding: 16px 16px 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: none;
  border: none;
  cursor: pointer;
  color: #6B7280;
  position: relative;
}

.new-testimonial-tab:hover {
  color: #1E293B;
}

.new-testimonial-tab.active {
  color: #6246E8;
}

.new-testimonial-tab.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6246E8;
}

.new-testimonials-scroll {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 48px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.new-testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.new-testimonials-scroll {
  mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
}

.new-testimonials-wrapper {
  display: flex;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  width: max-content;
}

.new-testimonial-card {
  width: 85vw;
  flex-shrink: 0;
  background: #F8F9FB;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #1E293B;
  transition: all 0.3s;
  border: 1px solid transparent;
  box-shadow: 2px 4px 12px 0px rgba(5, 39, 19, 0.20);
}

@media (min-width: 768px) {
  .new-testimonial-card {
    width: 820px;
    height: 356px;
    flex-direction: row;
  }
}

.new-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 8px 20px 0px rgba(5, 39, 19, 0.25);
}

.new-testimonial-image {
  width: 100%;
  height: 300px;
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .new-testimonial-image {
    width: 400px;
  }
}

.new-testimonial-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.new-testimonial-card:hover .new-testimonial-image img {
  transform: scale(1.05);
}

.new-testimonial-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.new-testimonial-company {
  width: auto;
  min-width: 82px;
  height: 32px;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #1E293B;
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
  white-space: nowrap;
}

.new-testimonial-company img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.new-testimonial-quote {
  max-width: 410px;
  font-size: 14px;
  line-height: 22.75px;
  font-weight: normal;
  color: #1E293B;
  margin-bottom: 24px;
  font-family: sans-serif;
}

.new-testimonial-btn {
  width: 193px;
  height: 46px;
  border-radius: 9999px;
  background: #6246E8;
  color: white;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -4px rgba(98, 70, 232, 0.2), 0 10px 15px -3px rgba(98, 70, 232, 0.2);
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}

.new-testimonial-btn:hover {
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

/* AI Agents & Robots Section */
.new-agents-robots-section {
  padding: 0 0 0 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(213, 216, 214, 0.05);
  overflow-x: clip;
}

.new-agents-block,
.new-robots-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.new-agents-robots-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.new-agents-robots-toggle {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.new-agents-robots-header {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 24px;
}

.new-agents-robots-header .new-section-title {
  margin-bottom: 16px;
}

.new-agents-robots-header .new-section-subtitle {
  margin: 0;
}

.new-agents-robots-toggle[role="tablist"] {
  width: fit-content;
  background: rgba(98, 70, 232, 0.08);
  border-radius: 999px;
  padding: 8px;
}

.new-agents-robots-toggle-btn {
  border: 0;
  background: transparent;
  color: #1e293b;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.new-agents-robots-toggle-btn:hover {
  color: #6246e8;
}

#aiAgentsToggle:checked ~ .new-agents-robots-toggle label[for="aiAgentsToggle"],
#aiRobotsToggle:checked ~ .new-agents-robots-toggle label[for="aiRobotsToggle"] {
  background: #6246e8;
  color: #ffffff;
  padding: 15px 24px;
  box-shadow: 0 2px 2px rgba(11, 71, 13, 0.2);
}

.new-agents-block.is-hidden,
.new-robots-block.is-hidden {
  display: none;
}

#aiAgentsToggle:checked ~ #agentsContentBlock {
  display: block;
}

#aiAgentsToggle:checked ~ #robotsContentBlock {
  display: none;
}

#aiRobotsToggle:checked ~ #agentsContentBlock {
  display: none;
}

#aiRobotsToggle:checked ~ #robotsContentBlock {
  display: block;
}

.new-agents-block {
  margin-bottom: 0;
}

.new-section-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 32px;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(89.77deg, #519CFF 0%, #6E30FF 48.56%, #4D50F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

@media (min-width: 768px) {
  .new-section-title {
    font-size: 48px;
  }
}

.new-agents-content,
.new-robots-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

@media (min-width: 1024px) {
  .new-agents-content {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    min-height: 572px;
  }
  .new-robots-content {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    min-height: 572px;
  }
}

.new-agents-list,
.new-robots-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  gap: 12px;
}

@media (min-width: 1024px) {
  .new-agents-list {
    width: 520px;
    max-width: 520px;
    flex: 0 0 520px;
    height: 572px;
    gap: 0;
  }
  .new-robots-list {
    width: 520px;
    max-width: 520px;
    flex: 0 0 520px;
    height: 572px;
    gap: 0;
  }
}

.new-agent-card,
.new-robot-card {
  cursor: pointer;
  padding: 16px 20px 20px;
  border-radius: 12px;
  border: 1px solid #D5D8D6;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  width: 100%;
}

.new-agent-card:hover,
.new-robot-card:hover {
  border-color: #D5D8D6;
}

.new-agent-card.active,
.new-robot-card.active {
  background: white;
  border-color: #6246E8;
  z-index: 10;
  transform: none;
  box-shadow: 2px 2px 4px 0px rgba(36, 179, 94, 0.15);
}

@media (min-width: 1024px) {
  .new-agent-card,
  .new-robot-card {
    width: 520px;
    height: 78px;
    min-height: 78px;
    max-height: 78px;
    overflow: hidden;
  }
  .new-agent-card.active,
  .new-robot-card.active {
    height: auto;
    min-height: 134px;
    max-height: none;
  }
}

.new-agent-header,
.new-robot-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-agent-icon,
.new-robot-icon {
  flex-shrink: 0;
}

.new-agent-title,
.new-robot-title {
  flex: 1;
}

.new-agent-explore,
.new-robot-explore {
  flex-shrink: 0;
  margin-left: auto;
}

.new-agent-icon,
.new-robot-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: #F2F0FD;
  color: #6246E8;
}

.new-agent-icon svg,
.new-robot-icon svg {
  width: 16px;
  height: 16px;
}

.new-agent-card:hover .new-agent-icon,
.new-robot-card:hover .new-robot-icon {
  background: #6246E8;
  color: #FFFFFF;
}

.new-agent-card:hover .new-agent-icon svg [stroke],
.new-robot-card:hover .new-robot-icon svg [stroke],
.new-agent-card.active:hover .new-agent-icon.active svg [stroke],
.new-robot-card.active:hover .new-robot-icon.active svg [stroke] {
  stroke: #FFFFFF !important;
}

.new-agent-card:hover .new-agent-icon svg [fill]:not([fill="none"]),
.new-robot-card:hover .new-robot-icon svg [fill]:not([fill="none"]),
.new-agent-card.active:hover .new-agent-icon.active svg [fill]:not([fill="none"]),
.new-robot-card.active:hover .new-robot-icon.active svg [fill]:not([fill="none"]) {
  fill: #FFFFFF !important;
}

.new-agent-icon.active,
.new-robot-icon.active {
  background: #F2F0FD;
  color: #6246E8;
}

.new-agent-card.active:hover .new-agent-icon.active,
.new-robot-card.active:hover .new-robot-icon.active {
  background: #6246E8;
}

.new-agent-title,
.new-robot-title {
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
  color: #1E293B;
  flex: 1;
  margin: 0;
}

.new-agent-card.active .new-agent-title,
.new-robot-card.active .new-robot-title {
  color: #6246E8;
}

.new-agent-explore,
.new-robot-explore {
  color: #1759FF;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-10px);
}

.new-agent-card:hover .new-agent-explore,
.new-robot-card:hover .new-robot-explore {
  opacity: 1;
  transform: translateX(0);
}

.new-agent-explore:hover,
.new-robot-explore:hover {
  color: #1759FF;
}

.new-agent-desc,
.new-robot-desc {
  color: #6B7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  margin-left: 44px;
  margin-top: 4px;
}

.new-agent-features,
.new-robot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
  margin-left: 44px;
}

.new-agent-tag,
.new-robot-tag {
  height: 23px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  color: #4B5563;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
}

.new-agent-card.active .new-agent-tag,
.new-robot-card.active .new-robot-tag,
.new-agent-card:hover .new-agent-tag,
.new-robot-card:hover .new-robot-tag {
  background: #F2F0FD;
  color: #6246E8;
}

.new-agents-image,
.new-robots-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .new-agents-image {
    width: 860px;
    flex: 0 0 860px;
    height: 572px;
    min-width: 0;
    margin-right: 0;
  }
  .new-robots-image {
    width: 860px;
    flex: 0 0 860px;
    height: 630px;
    min-width: 0;
    margin-right: 0;
  }
}

.new-agents-image-container,
.new-robots-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #ebf0ff 0%, #ffffff 47%, #ebf0ff 100%);
  height: clamp(320px, 42vw, 500px);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px 0 rgba(30, 41, 59, 0.1);
  width: 100%;
  max-width: 760px;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .new-agents-image-container,
  .new-robots-image-container {
    width: 860px;
    max-width: 860px;
    height: 572px;
    padding: 48px 68px 0;
  }

  /* Robot container: taller + uniform padding for equal spacing on all 4 sides */
  .new-robots-image-container {
    height: 630px;
    padding: 28px;
  }
}

.new-agents-image-container img,
.new-robots-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  image-rendering: auto;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .new-agents-image-container img,
  .new-robots-image-container img {
    width: 100%;
    height: auto;
    object-fit: fill;
    border-radius: 8px;
    margin: 0;
    display: block;
  }

  /* Robot images: contain to prevent cropping text, uniform 8px radius */
  .new-robots-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }
}

/* Keep agent1 fully visible while retaining cover behavior for other images */
.new-agents-overlay,
.new-robots-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.new-agents-overlay::before,
.new-robots-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(to top, rgba(5, 33, 104, 0.8) 0%, rgba(5, 33, 104, 0.2) 50%, rgba(5, 33, 104, 0) 100%);
}

@media (min-width: 1024px) {
  .new-robots-content {
    align-items: center;
    gap: 20px;
  }

  .new-robots-list {
    min-height: 630px;
    height: 630px;
    justify-content: center;
    gap: 20px;
    align-self: center;
  }
}

.new-agents-badge,
.new-robots-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #1759ff;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.new-agents-overlay-title,
.new-robots-overlay-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.new-agents-overlay-desc,
.new-robots-overlay-desc {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Product Matrix Section */
.new-products-section {
  background: #FFFFFF;
  margin-top:40px;
}

.new-products-section + .new-products-section {
  padding-top: 0;
  margin-top: -16px;
}

.new-products-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.new-products-tab-groups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.new-products-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(98, 70, 232, 0.1);
  padding: 4px;
  border-radius: 9999px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  margin: 0;
}

.new-product-tab {
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6B7280;
  flex: 0 0 auto;
}

@media (min-width: 1024px) {
  .new-products-tabs {
    flex-wrap: nowrap;
    overflow-x: visible;
  }
}

.new-product-tab:hover {
  color: #1E293B;
}

.new-product-tab.active {
  background: #6246E8;
  color: white;
  box-shadow: none;
}

.new-products-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 24px;
  min-height: 0;
  border: none;
  margin-top:60px;
}

@media (min-width: 768px) {
  .new-products-content {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .new-products-content {
    padding: 0;
  }
}

.new-product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .new-product-card {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    height: 540px;
    min-height: 540px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(138.4deg, #DDE6FF 0%, #FFFFFF 47.5%, #DDE6FF 100%);
    box-shadow: 2px 4px 9px 0px rgba(18, 8, 66, 0.2);
  }
}

.new-product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 8px;
}

@media (min-width: 1024px) {
  .new-product-info {
    background: #ffffff;
    width: 520px;
    flex: 0 0 520px;
    padding: 48px;
    gap: 0;
    height: 540px;
    min-height: 540px;
  }
}

.new-product-info::before {
  content: '';
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: #6246E8;
  background-image: var(--product-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 8px 20px rgba(98, 70, 232, 0.18);
}

@media (min-width: 1024px) {
  .new-product-info::before {
    margin-bottom: 24px;
  }
}

.new-product-card[data-suite="Observability Platform"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/keguance.svg');
}

.new-product-card[data-suite="APM"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/APM.svg');
}

.new-product-card[data-suite="Log Monitoring"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/rizhijiankong.svg');
}

.new-product-card[data-suite="ITSM"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/ITSM.svg');
}

.new-product-card[data-suite="CMDB"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/CMDB.svg');
}

.new-product-card[data-suite="ITAM"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/ITAM.svg');
}

.new-product-card[data-suite="DCIM"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/DCIM.svg');
}

.new-product-card[data-suite="jkb"] .new-product-info {
  --product-icon: url('/frontStatic/cn/image/newIndex/jkb.svg');
}

.new-product-icon {
  width: 48px;
  height: 48px;
  background: #6246E8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(98, 70, 232, 0.16);
}

.new-product-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #6246E8;
  letter-spacing: 0;
  margin: 0;
}

@media (min-width: 1024px) {
  .new-product-name {
    margin-bottom: 20px;
  }
}

.new-product-tagline {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1E293B;
}

@media (min-width: 1024px) {
  .new-product-tagline {
    margin-bottom: 8px;
  }
}

.new-product-desc {
  font-size: 16px;
  line-height: 22px;
  font-family: Microsoft YaHei Semibold;
  color: #1E293B;
  margin: 0;
}

@media (min-width: 1024px) {
  .new-product-desc {
    margin-bottom: 36px;
  }
}

.new-product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

@media (min-width: 1024px) {
  .new-product-features {
    gap: 8px;
    padding: 0;
    margin-bottom: 0;
  }
}

.new-product-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.new-product-feature::before {
  content: '';
  width: 13px;
  height: 10px;
  flex: 0 0 13px;
  margin-top: 5px;
  background: url('/frontStatic/cn/image/newIndex/Symbol.svg') center/contain no-repeat;
}

.new-product-feature span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1E293B;
}

.new-product-btn {
  background: #6246E8;
  border: none;
  border-radius: 9999px;
  height: 36px;
  width: 138px;
  padding: 0 16px;
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin-top: auto;
}

.new-product-btn:hover {
  background: #6246E8;
}

.new-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .new-product-image {
    flex: 1;
    height: 100%;
    overflow: visible;
    padding: 73px 106px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.new-product-image > div {
  position: relative;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 600 / 335;
  width: 100%;
  height: auto;
  max-height: 100%;
  border: none;
  box-shadow: 0 0 0 4px #ffffff;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .new-products-content {
    min-height: auto;
  }
}

.new-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s;
  border-radius: 0;
  border: none;
}

.new-product-image:hover img {
  transform: scale(1.05);
}

/* Solutions Section */
.new-solutions-section {
  background: white;
  padding: 96px 0;
}

.new-solutions-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.new-solutions-header > div {
  text-align: left;
  max-width: 768px;
  width: 100%;
}

.new-solutions-title {
  font-size: 36px;
  color: #1E293B;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .new-solutions-title {
    font-size: 36px;
  }
}

.new-solutions-subtitle {
  font-size: 20px;
  color: #6B7280;
  line-height: 1.625;
  font-weight: normal;
}

.new-solutions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6246E8;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  margin-top: 32px;
  width: 100%;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .new-solutions-link {
    position: absolute;
    right: 24px;
    bottom: 8px;
    margin-top: 0;
    width: auto;
  }
}

.new-solutions-link:hover {
  color: #6246E8;
}

.new-solutions-scroll {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 64px;
  margin-top: 64px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.new-solutions-scroll::-webkit-scrollbar {
  display: none;
}

.new-solutions-scroll {
  mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
}

.new-solutions-wrapper {
  display: flex;
  gap: 40px;
  padding: 0 40px;
  width: max-content;
}

.new-solution-card {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.new-solution-card:hover {
  box-shadow: 0 20px 40px -12px rgba(98, 70, 232, 0.4);
}

.new-solution-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(213, 216, 214, 0.05);
}

.new-solution-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(98, 70, 232, 0.1);
  mix-blend-mode: overlay;
  z-index: 10;
  pointer-events: none;
}

.new-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s;
  opacity: 0.9;
}

.new-solution-card:hover img {
  transform: scale(1.1);
}

.new-solution-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  pointer-events: none;
  z-index: 20;
}

.new-solution-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 30;
}

.new-solution-title {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Resources Section */
.new-resources-section {
  background: white;
  padding: 96px 0;
}

.new-resources-header {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .new-resources-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.new-resources-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #1E293B;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .new-resources-title {
    font-size: 36px;
  }
}

.new-resources-subtitle {
  color: #6B7280;
  font-size: 20px;
  max-width: 640px;
  line-height: 1.625;
  font-weight: normal;
}

.new-resources-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #6246E8;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .new-resources-link {
    margin-top: 0;
  }
}

.new-resources-link:hover {
  color: #6246E8;
}

.new-resources-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .new-resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.new-resource-card {
  background: white;
  border: 1px solid rgba(213, 216, 214, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.new-resource-card:hover {
  box-shadow: 0 20px 40px -12px rgba(98, 70, 232, 0.2);
  transform: translateY(-8px);
  border-color: rgba(98, 70, 232, 0.3);
}

.new-resource-image {
  height: 168px;
  overflow: hidden;
  position: relative;
}

.new-resource-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(98, 70, 232, 0.1);
  mix-blend-mode: overlay;
  z-index: 10;
  pointer-events: none;
}

.new-resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
  opacity: 0.9;
}

.new-resource-card:hover .new-resource-image img {
  transform: scale(1.05);
}

.new-resource-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0.6;
  z-index: 20;
}

.new-resource-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.new-resource-title {
  font-size: 24px;
  font-weight: bold;
  color: #1E293B;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.new-resource-card:hover .new-resource-title {
  color: #6246E8;
}

.new-resource-desc {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 32px;
  flex-grow: 1;
  font-weight: normal;
}

.new-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6246E8;
  font-weight: bold;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.3s;
}

.new-resource-link:hover {
  gap: 12px;
}

.new-resource-link::after {
  content: '→';
  transition: transform 0.3s;
}

.new-resource-link:hover::after {
  transform: translateX(4px);
}

/* Home V2 overrides */
.new-hero-container {
  min-height: 620px;
}

.new-trust-section {
  background: #FFFFFF;
  padding: 86px 0 120px; /* 上间距86 下间距120 */
  overflow: hidden;
}

.new-trust-container {
  max-width: 1440px; /* 扩展为1440px以支持全屏显示 */
  margin: 0 auto;
  padding: 0;
}

.new-trust-title {
  margin: 0 0 47px; /* 标题与logo间距47px */
  text-align: center;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0;
  color: #1E293B;
  font-weight: 600;
}

.new-trust-logos {
  --trust-logo-gap: 30px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 8px 0;
}

.new-trust-logos::before,
.new-trust-logos::after {
  display: none;
}

.new-trust-logos-track {
  display: flex;
  align-items: center;
  gap: var(--trust-logo-gap);
  width: max-content;
  animation: trustLogosMarquee 36s linear infinite;
}

.new-trust-logo-item {
  flex: 0 0 auto;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-trust-logo-item img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
}

@keyframes trustLogosMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--trust-logo-gap) / 2)));
  }
}

.new-agents-robots-section {
  background: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 0;
}

.new-agents-robots-header {
  margin: 0 auto 60px;
}

.new-section-subtitle {
  margin: 0 0 28px;
  color: #1e293b;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.new-agents-robots-section .new-agent-card.active,
.new-agents-robots-section .new-robot-card.active {
  border-color: #6246e8;
  box-shadow: 2px 2px 8px rgba(98, 70, 232, 0.2);
}

.new-agents-robots-section .new-agent-icon,
.new-agents-robots-section .new-robot-icon,
.new-agents-robots-section .new-agent-icon.active,
.new-agents-robots-section .new-robot-icon.active,
.new-agents-robots-section .new-agent-card.active .new-agent-title,
.new-agents-robots-section .new-robot-card.active .new-robot-title {
  color: #6246e8;
}

.new-agents-robots-section .new-agent-explore,
.new-agents-robots-section .new-robot-explore {
  color: #1759FF;
}

.new-agents-robots-section .new-agent-card:hover .new-agent-icon,
.new-agents-robots-section .new-robot-card:hover .new-robot-icon,
.new-agents-robots-section .new-agent-card.active:hover .new-agent-icon.active,
.new-agents-robots-section .new-robot-card.active:hover .new-robot-icon.active {
  background: #6246E8;
  color: #FFFFFF;
}

.new-agents-robots-section .new-agent-card:hover .new-agent-icon svg [stroke],
.new-agents-robots-section .new-robot-card:hover .new-robot-icon svg [stroke],
.new-agents-robots-section .new-agent-card.active:hover .new-agent-icon.active svg [stroke],
.new-agents-robots-section .new-robot-card.active:hover .new-robot-icon.active svg [stroke] {
  stroke: #FFFFFF !important;
}

.new-agents-robots-section .new-agent-card:hover .new-agent-icon svg [fill]:not([fill="none"]),
.new-agents-robots-section .new-robot-card:hover .new-robot-icon svg [fill]:not([fill="none"]),
.new-agents-robots-section .new-agent-card.active:hover .new-agent-icon.active svg [fill]:not([fill="none"]),
.new-agents-robots-section .new-robot-card.active:hover .new-robot-icon.active svg [fill]:not([fill="none"]) {
  fill: #FFFFFF !important;
}

.new-agents-list,
.new-robots-list,
.new-agent-card,
.new-robot-card {
  width: 100%;
}

@media (min-width: 1024px) {
  .new-agents-robots-section .new-agents-content {
    gap: 60px;
    align-items: flex-start;
    min-height: auto;
  }

  .new-agents-robots-section .new-agents-list,
  .new-agents-robots-section .new-robots-list {
    width: 520px;
    max-width: 520px;
    flex: 0 0 520px;
    justify-content: flex-start;
    gap: 28px;
    height: auto;
  }

  .new-agents-robots-section .new-agent-card {
    width: 520px;
    height: 152px;
    min-height: 152px;
    max-height: 152px;
    overflow: hidden;
  }

  .new-agents-robots-section .new-agents-image,
  .new-agents-robots-section .new-agents-image-container {
    width: 860px;
    max-width: 860px;
    flex: 0 0 860px;
  }

  .new-agents-robots-section .new-agents-image {
    height: 512px;
  }

  .new-agents-robots-section .new-agents-image-container {
    height: 512px;
    padding: 24px;
  }
}

.new-products-hub {
  background: #ffffff;
  padding-top: 152px;

}

.new-products-hub-header {
  max-width: 1440px;
  margin: 0 auto 16px;
  text-align: center;
  padding: 0 64px;
}

.new-products-hub-header h2 {
  margin: 0 0 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  color: #1F2A28;
}

.new-products-hub-header p {
  margin: 0;
  color: #4b5563;
}

.new-products-section {
  background: transparent;
}

.new-products-section-second {
  margin-top: -6px;
}

.new-innovation-section {
  background: #FFFFFF;
  padding-top: 152px;
  padding-bottom: 72px;
}

.new-innovation-container {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 266px;
  padding: 28px 120px 28px 120px;
  border-radius: 12px;
  background-color: #ece9ff;
  background-image: url('/frontStatic/cn/image/newIndex/frame1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.new-innovation-copy {
  max-width: 680px;
  text-align: center;
}

.new-innovation-container h2 {
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1667;
  letter-spacing: 0;
  background: linear-gradient(90deg, #519cff 0%, #6e30ff 49%, #4d50f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.new-innovation-container p {
  margin: 0;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.5;
}

.new-innovation-container img {
  position: absolute;
  right: 46px;
  top: 50%;
  width: 135px;
  height: 139px;
  transform: translateY(-50%);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(94, 73, 219, 0.18));
}

.new-insights-section {
  background: #FFFFFF;
  padding: 24px 0 0;
}

.new-insights-header,
.new-feedback-header {
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
}

.new-insights-header {
  position: relative;
  justify-content: center;
  min-height: 88px;
}

.new-insights-heading-group {
  text-align: center;
}

.new-insights-header h2,
.new-feedback-header h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #1f2937;
}

.new-insights-header p {
  margin: 10px 0 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
}

.new-insights-header a,
.new-feedback-header a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.new-insights-link {
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.new-insights-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.new-insight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 196px;
  padding: 34px 18px 24px;
  border-radius: 8px;
  text-decoration: none;
  background-color: #6436f7;
  background-image: url('/frontStatic/cn/image/newIndex/hybj.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.new-insight-card:hover,
.new-insight-card:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 22px 40px rgba(53, 34, 136, 0.32);
}

.new-insight-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.new-insight-card p {
  margin: 0 0 28px;
  max-width: 290px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.new-insight-card span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.new-feedback-section {
  height: auto;
  min-height: 680px;
  background: #e5ecf6;
  padding: 72px 0 56px;
  overflow: hidden;
}

.new-feedback-section .new-feedback-header {
  position: relative;
  justify-content: center;
  align-items: flex-start;
  min-height: 96px;
  margin-bottom: 44px;
}

.new-feedback-heading-group {
  text-align: center;
}

.new-feedback-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #5f54f7;
  font-size: 14px;
  line-height: 1;
}

.new-feedback-heading-group h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
  color: #323f4f;
  position: relative;
  display: inline-block;
  z-index: 1;
}


.new-feedback-link {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #5f54f7;
  font-size: 14px;
  line-height: 1.43;
  font-weight: 600;
  text-decoration: none;
}

.new-feedback-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-feedback-row {
  overflow: hidden;
}

.new-feedback-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: feedbackMarquee 62s linear infinite;
  will-change: transform;
}

.new-feedback-row-second .new-feedback-track {
  animation-duration: 66s;
  animation-delay: -14s;
}

.new-feedback-card {
  width: 386px;
  flex: 0 0 386px;
  min-height: 164px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid #d0d6f6;
  background: #f5f6f8;
  padding: 22px 26px 18px;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.new-feedback-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #2f3c4d;
}

.new-feedback-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.new-feedback-meta span {
  color: #425266;
  font-size: 14px;
  line-height: 1.4;
}

.new-feedback-badge {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.new-feedback-stars {
  width: 93px;
  height: 14px;
  object-fit: contain;
}

.new-feedback-logo {
  width: auto;
  height: 20px;
  object-fit: contain;
}

.new-feedback-card-avatar .new-feedback-avatar-layout {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 18px;
}

.new-feedback-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
}

@keyframes feedbackMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (max-width: 1024px) {
  .new-feedback-section {
    height: auto;
    min-height: 640px;
    padding: 64px 0 56px;
  }

  .new-feedback-heading-group h2 {
    font-size: 40px;
  }

  .new-feedback-card {
    width: 360px;
    flex-basis: 360px;
  }
}

@media (max-width: 640px) {
  .new-feedback-section {
    min-height: 0;
    padding: 52px 0 56px;
  }

  .new-feedback-section .new-feedback-header {
    min-height: 0;
    margin-bottom: 28px;
  }

  .new-feedback-link {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .new-feedback-heading-group {
    text-align: left;
  }

  .new-feedback-heading-group h2 {
    font-size: 34px;
  }

  .new-feedback-card {
    width: calc(100vw - 56px);
    flex-basis: calc(100vw - 56px);
    min-height: 0;
  }

  .new-feedback-track {
    animation-duration: 52s;
  }
}

.new-solutions-section {
  background: #FFFFFF;
  padding-top: 72px;
}

.new-solutions-header {
  margin-bottom: 36px;
}

.new-solutions-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}

.new-solutions-subtitle {
  text-align: center;
  font-size: 16px;
}

.new-solutions-link {
  right: 24px;
  top: 8px;
  bottom: auto;
}

.new-solutions-scroll {
  margin-top: 0;
  padding-bottom: 28px;
}

.new-solutions-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: auto;
  gap: 10px;
}

.new-solution-card {
  width: calc((100% - 50px) / 6);
  min-width: 180px;
  height: 420px;
}

.new-solution-overlay {
  left: 16px;
  bottom: 20px;
  right: 16px;
}

.new-solution-title {
  font-size: 26px;
  font-weight: 600;
}

.new-bottom-cta {
  background: #ffffff;
  text-align: center;
  padding: 152px 24px 152px;
}

.new-bottom-cta h2 {
  margin: 0 0 40px;
  color: #1e293b;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0;
}

.new-bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.new-bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  height: 62px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.new-bottom-cta-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.new-bottom-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.new-bottom-cta-btn:focus-visible {
  outline: 2px solid #6246e8;
  outline-offset: 2px;
}

.new-bottom-cta-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.new-bottom-cta-btn-primary {
  background: #6246e8;
}

.new-bottom-cta-btn-primary:hover {
  background: #5b40db;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(98, 70, 232, 0.25);
}

.new-bottom-cta-btn-secondary {
  background: #1e293b;
}

.new-bottom-cta-btn-secondary:hover {
  background: #182537;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(30, 41, 59, 0.28);
}

@media (max-width: 1024px) {
  .new-insights-grid,
  .new-feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-insights-header {
    min-height: 0;
    padding-top: 32px;
  }

  .new-insights-link {
    top: 0;
  }

  .new-trust-logos-track {
    animation-duration: 30s;
  }

  .new-trust-logos {
    --trust-logo-gap: 27px;
  }

  .new-trust-logo-item {
    min-width: 100px;
  }

  .new-trust-logo-item img {
    height: 34px;
    max-width: 150px;
  }


  .new-insights-header h2,
  .new-feedback-header h2,
  .new-solutions-title,
  .new-bottom-cta h2 {
    font-size: 36px;
  }

  .new-solution-card {
    width: 240px;
  }
}

@media (max-width: 640px) {
  .new-bottom-cta-actions {
    flex-wrap: wrap;
  }

  .new-bottom-cta-btn {
    width: 200px;
  }

  .new-insights-grid,
  .new-feedback-grid {
    grid-template-columns: 1fr;
  }

  .new-insights-header,
  .new-feedback-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .new-insights-header {
    padding-top: 0;
    min-height: 0;
  }

  .new-insights-link {
    position: static;
    order: 2;
  }

  .new-insights-heading-group {
    text-align: left;
  }

  .new-insights-header p {
    margin-top: 8px;
  }

  .new-insight-card {
    min-height: 176px;
  }

  .new-trust-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .new-trust-logos::before,
  .new-trust-logos::after {
    display: none;
  }

  .new-trust-logos-track {
    animation-duration: 26s;
  }

  .new-trust-logos {
    --trust-logo-gap: 22px;
  }

  .new-trust-logo-item {
    min-width: 80px;
  }

  .new-trust-logo-item img {
    height: 28px;
    max-width: 120px;
  }

  .new-innovation-container {
    min-height: 0;
    padding: 28px 24px;
  }

  .new-innovation-copy {
    max-width: none;
    text-align: center;
    padding-right: 56px;
  }

  .new-innovation-container h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .new-innovation-container p {
    font-size: 14px;
  }

  .new-innovation-container img {
    right: 20px;
    top: 24px;
    width: 54px;
    height: 54px;
    transform: none;
  }
}
