
.optimized-image[data-v-091b2266] {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--optimized-image-background, #111827);
}
.optimized-image picture[data-v-091b2266],
.optimized-image picture img[data-v-091b2266] {
  display: block;
  width: 100%;
  height: 100%;
}
.optimized-image picture[data-v-091b2266] {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.optimized-image picture img[data-v-091b2266] {
  object-fit: var(--optimized-image-fit);
  object-position: var(--optimized-image-position);
}
.optimized-image.is-loaded picture[data-v-091b2266] {
  opacity: 1;
}
.optimized-image__placeholder[data-v-091b2266] {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    var(--optimized-image-placeholder-start, #111827) 20%,
    var(--optimized-image-placeholder-highlight, #1f2937) 40%,
    var(--optimized-image-placeholder-start, #111827) 60%
  );
  background-size: 220% 100%;
  animation: image-loading-091b2266 1.35s ease-in-out infinite;
}
.optimized-image.is-loaded .optimized-image__placeholder[data-v-091b2266],
.optimized-image.has-error .optimized-image__placeholder[data-v-091b2266] {
  opacity: 0;
  animation: none;
}
.optimized-image__error[data-v-091b2266] {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  background: #111827;
}
@keyframes image-loading-091b2266 {
0% { background-position: 100% 0;
}
100% { background-position: -100% 0;
}
}
@media (prefers-reduced-motion: reduce) {
.optimized-image picture[data-v-091b2266],
  .optimized-image__placeholder[data-v-091b2266] {
    transition: none;
    animation: none;
}
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  background-image: 
    linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
    radial-gradient(circle at top right, rgba(0, 122, 255, 0.1), transparent 50%),
    radial-gradient(circle at bottom left, rgba(122, 0, 255, 0.1), transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 122, 255, 0.05) 2px, rgba(0, 122, 255, 0.05) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 122, 255, 0.05) 2px, rgba(0, 122, 255, 0.05) 4px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
}
.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Logo墙图片样式 */
.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-media,
.evolution-image > .optimized-image,
.video-thumbnail > .optimized-image,
.feedback-image > .optimized-image {
  width: 100%;
  height: 100%;
}

/* 案例图片样式 */
.feedback-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* evolution区域图片样式 */
.evolution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@keyframes shine {
0% {
    transform: translateX(-100%) rotate(45deg);
}
100% {
    transform: translateX(100%) rotate(45deg);
}
}

/* 响应式样式 */

/* 触摸交互优化 */
@media (hover: none) and (pointer: coarse) {
  /* 增大触摸目标大小 */
a, button {
    min-width: 44px;
    padding: 8px 16px;
}
  
  /* 增大按钮点击区域 */
.btn-free-trial {
    padding: 12px 24px;
}
}

/* 大屏幕设备 */
@media (max-width: 1200px) {
.container {
    max-width: 960px;
}
.evolution-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
}

/* 中等屏幕设备 */
@media (max-width: 992px) {
.container {
    max-width: 720px;
}
.hero-text h2 {
    font-size: 60px;
}
.hero-text p {
    font-size: 35px;
}
.evolution-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}
.agent-intro-content {
    flex-direction: column;
}
.agent-text,
  .agent-video {
    flex: 1 1 100%;
}
}

/* 小屏幕设备 */
@media (max-width: 768px) {
.container {
    max-width: 540px;
}
  
  /* 调整banner文字位置，避免与图片文字重叠 */
.hero-text {
    top: auto;
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
}
  
  /* 调整banner文字大小 */
.hero-text h2 {
    font-size: 40px;
}
.hero-text p {
    font-size: 25px;
}
  
  /* 优化evolution区域响应式 */
.evolution-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}
  
  /* 优化agent-intro区域响应式 */
.agent-intro-content {
    flex-direction: column;
}
.agent-text,
  .agent-video {
    flex: 1 1 100%;
}
}

/* 超小屏幕设备 */
@media (max-width: 576px) {
.container {
    max-width: 100%;
    padding: 0 15px;
}
  
  /* 进一步调整banner文字大小 */
.hero-text h2 {
    font-size: 30px;
}
.hero-text p {
    font-size: 20px;
}
  
  /* 调整section-title大小 */
.section-title {
    font-size: 24px;
    margin-bottom: 40px;
}
  
  /* 调整evolution-card大小 */
.evolution-card {
    padding: 20px;
}
.evolution-image {
    min-height: 200px;
}
  
  /* 确保在超小屏幕上也是垂直排列 */
.evolution-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}
}
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  text-align: center;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}
.banner-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2730 / 653;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.hero-text {
  position: absolute;
  top: 74%;
  right: 7%;
  z-index: 2;
  text-align: right;
  color: white;
}
.hero-text p {
  font-size: 45px;
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 170, 255, 0.3), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(122, 0, 255, 0.3), transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 170, 0.2), transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 170, 255, 0.1) 0px,
    transparent 1px,
    transparent 49px,
    rgba(0, 170, 255, 0.1) 50px
  );
  animation: slide 20s linear infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff, #00aaff, #7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
  animation: glow 3s ease-in-out infinite alternate;
}
.hero p {
  font-size: 45px;
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes pulse {
0%, 100% {
    opacity: 0.5;
}
50% {
    opacity: 1;
}
}
@keyframes slide {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50px);
}
}
@keyframes glow {
from {
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
to {
    text-shadow: 0 0 40px rgba(0, 170, 255, 0.8), 0 0 60px rgba(122, 0, 255, 0.6);
}
}
@keyframes shine {
0% {
    transform: translateX(-100%) rotate(45deg);
}
100% {
    transform: translateX(100%) rotate(45deg);
}
}
.evolution {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  overflow: hidden;
  margin-top: -5px;
}
.evolution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 170, 255, 0.1), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(122, 0, 255, 0.1), transparent 50%);
}
.evolution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.evolution-card {
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.2);
}
.evolution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.evolution-card:hover::before {
  left: 100%;
}
.evolution-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.4);
}
.evolution-card.primary {
  background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 50%, #0a2342 100%);
  border-color: rgba(0, 170, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.2);
}
.evolution-card.secondary {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  border-color: rgba(122, 0, 255, 0.4);
  box-shadow: 0 15px 40px rgba(122, 0, 255, 0.2);
}
.evolution-card.tertiary {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-color: rgba(0, 255, 170, 0.4);
  box-shadow: 0 15px 40px rgba(0, 255, 170, 0.2);
}
.evolution-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
  position: relative;
  z-index: 2;
}
.evolution-description {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
  z-index: 2;
}
.evolution-image {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
.evolution-card.primary .evolution-title {
  background: linear-gradient(135deg, #00aaff, #0088cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.evolution-card.secondary .evolution-title {
  color: white;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
.evolution-card.tertiary .evolution-title {
  background: linear-gradient(135deg, #00ffaa, #00cc88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Agent Mockup */
.chat-interface {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-header {
  background: #312727;
  color: white;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 10px rgba(122, 0, 255, 0.3);
  line-height: 1.2;
}
.chat-message {
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 13px;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.chat-message.bot {
  background: rgba(0, 170, 255, 0.15);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #a0aec0;
  border: 1px solid rgba(0, 170, 255, 0.2);
  margin-top: 0px;
}
.chat-message.user {
  background: rgba(0, 255, 170, 0.15);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #a0aec0;
  border: 1px solid rgba(0, 255, 170, 0.2);
  margin-top: 5px;
}
.message-content {
  font-size: 13px;
  line-height: 1.2;
}
.message-avatar {
  font-size: 32px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.bot-avatar {
  background: linear-gradient(135deg, #00aaff, #7a00ff);
}
.user-avatar {
  background: linear-gradient(135deg, #00ffaa, #00cc88);
}
.chat-input {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 25px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  color: #a0aec0;
  transition: all 0.2s ease;
}
.chat-input input:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}
.chat-input button {
  background: gray;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(122, 0, 255, 0.3);
}
.chat-input button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(122, 0, 255, 0.4);
}

/* Agent Intro Section */
.agent-intro {
  padding: 80px 0 10px;
  background: rgba(15, 23, 42, 0.8);
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.agent-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.agent-intro:hover::before {
  left: 100%;
}
.agent-intro:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 170, 255, 0.25);
}
.agent-intro-content {
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.agent-text {
  flex: 1;
  position: relative;
}
.quote-mark {
  font-size: 140px;
  color: rgba(0, 170, 255, 0.1);
  position: absolute;
  top: -50px;
  left: -30px;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
}
.agent-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}
.agent-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 1;
}
.agent-feature {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 35px 0;
  position: relative;
  z-index: 1;
  padding-left: 20px;
  border-left: 3px solid #00aaff;
}
.btn-free-trial {
  background: linear-gradient(135deg, #00aaff, #7a00ff);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.3);
  text-decoration: none;
  margin-bottom: 5px;
  display: inline-block;
}
.btn-free-trial::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
  opacity: 0;
}
.btn-free-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
}
.btn-free-trial:hover::before {
  opacity: 1;
}
.agent-video {
  flex: 1;
  max-width: 550px;
  position: relative;
  z-index: 2;
}
.video-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #000;
  border: 1px solid rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.video-placeholder:hover {
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.4);
  transform: scale(1.02);
}
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-thumbnail:hover img {
  transform: scale(1.05);
}






/* Customer Feedback Section */
.customer-feedback {
  padding: 0px 0 50px;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  overflow: hidden;
}
.customer-feedback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 170, 255, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(122, 0, 255, 0.1), transparent 50%);
  z-index: 1;
}
.feedback-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}
.feedback-card {
  display: flex;
  gap: 30px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 170, 255, 0.2);
  z-index: 2;
}
.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}
.feedback-card:hover::before {
  left: 100%;
}
.feedback-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}
.logo-blue {
  background: #0288d1;
  color: white;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Microsoft YaHei', sans-serif;
}
.logo-green {
  background: #388e3c;
  color: white;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Microsoft YaHei', sans-serif;
}
.trusted-companies {
  padding: 30px 0;
  background: rgba(10, 10, 10, 0.8);
  overflow: hidden;
  position: relative;
}
.trusted-companies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.05), transparent 70%);
  z-index: 1;
}
.trusted-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffffff, #00aaff, #7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  position: relative;
  z-index: 2;
}
.logo-wall {
  position: relative;
  overflow: hidden;
}
.logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  animation: scroll linear infinite;
  position: relative;
}
.logo-item {
  flex: 0 0 120px;
  height: 60px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(0, 170, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.logo-media {
  background: #ffffff;
  --optimized-image-background: #ffffff;
  --optimized-image-placeholder-start: #ffffff;
  --optimized-image-placeholder-highlight: #f1f5f9;
}

/* 该圆形徽标的原始 JPG 四角自带黑底，裁成圆形后露出卡片白底。 */
.logo-media--round picture img {
  clip-path: ellipse(25% 50% at center);
}
.logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 170, 255, 0.3);
  border-color: rgba(0, 170, 255, 0.4);
  color: #00aaff;
}
.logo-wall {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.left-scroll {
  animation-direction: alternate;
}
.right-scroll {
  animation-direction: alternate-reverse;
}
@keyframes scroll {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
}
}
.logo-row.left-scroll {
  animation-duration: 30s;
}
.logo-row.right-scroll {
  animation-duration: 35s;
}
.logo-wall::before,
.logo-wall::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 1;
  pointer-events: none;
}
.logo-wall::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}
.logo-wall::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}
@media (max-width: 768px) {
.trusted-title {
    font-size: 24px;
}
.logo-item {
    flex: 0 0 100px;
    height: 50px;
    font-size: 12px;
    margin: 0 10px;
}
.logo-wall::before,
  .logo-wall::after {
    width: 80px;
}
}
.feedback-image {
  width: 65%;
  min-width: 320px;
}
.feedback-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedback-content {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.company-logo {
  margin-bottom: 10px;
}
.huaxia-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-red {
  background: #e53935;
  color: white;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Microsoft YaHei', sans-serif;
}
.logo-icon-text {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Microsoft YaHei', sans-serif,cursive;
}
.feedback-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 2;
}
.used-products {
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.products-label {
  font-size: 14px;
  color: #00aaff;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.used-products .product-tag {
  background: rgba(0, 170, 255, 0.1);
  color: #00aaff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.used-products .product-tag:hover {
  background: rgba(0, 170, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.performance-metrics {
  display: flex;
  gap: 40px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.performance-metrics .metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.performance-metrics .metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.performance-metrics .metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 992px) {
.feedback-card {
    flex-direction: column;
}
.feedback-image {
    width: 100%;
    max-height: 300px;
    min-width: unset;
}
.feedback-content {
    width: 100%;
    padding: 30px;
}
.performance-metrics {
    flex-direction: column;
    gap: 20px;
}
}
@media (max-width: 768px) {
.hero h1 {
    font-size: 32px;
}
.hero p {
    font-size: 16px;
}
.hero-text {
    top: 80px;
    right: 25px;
}
.hero-text h2 {
    font-size: 24px;
}
.hero-text p {
    font-size: 16px;
    line-height: 0;
}
.case-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.metrics {
    grid-template-columns: 1fr;
}
.evolution-card {
    padding: 20px;
}
.evolution-title {
    font-size: 24px;
}
.mockup {
    max-width: 100%;
}
.evolution {
    margin-top: -200px;
}
.evolution-grid {
    margin-top: 20px;
}
.hero {
    height: 296px;
    margin-top: 61px;
}
.agent-video {
    max-width: 100%;
}
.video-thumbnail {
    height: auto;
    max-height: 300px;
}
.video-thumbnail img {
    object-fit: contain;
    height: auto;
}
}



