
[data-v-dc308ecc] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 全局字体统一标准 */
[data-v-dc308ecc]:root {
  /* 字体设置 */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-family-code: 'Courier New', monospace;
  --font-family-serif: Georgia, serif;
  
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 32px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --font-size-body: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  
  --line-height-title: 1.2;
  --line-height-body: 1.5;
  --line-height-sm: 1.4;
  
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-normal: 400;
  
  /* 颜色设置 */
  --color-primary: #00aaff;
  --color-secondary: #7a00ff;
  --color-tertiary: #00ffaa;
  --color-background: #0a0a0a;
  --color-surface: #1a1a2e;
  --color-surface-alt: #16213e;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.85);
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-border: rgba(0, 170, 255, 0.2);
  --color-border-light: rgba(0, 170, 255, 0.1);
  
  /* 渐变设置 */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-secondary: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  --gradient-text: linear-gradient(135deg, var(--color-text-primary), var(--color-primary), var(--color-secondary));
  --gradient-text-simple: linear-gradient(135deg, var(--color-text-primary), var(--color-primary));
  --gradient-background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 50%, var(--color-surface-alt) 100%);
  --gradient-card: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(26, 32, 44, 0.9));
  
  /* 阴影设置 */
  --shadow-sm: 0 4px 15px rgba(0, 170, 255, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 170, 255, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 170, 255, 0.5);
  --shadow-xl: 0 15px 40px rgba(0, 170, 255, 0.6);
  
  /* 透明度设置 */
  --opacity-light: 0.1;
  --opacity-medium: 0.2;
  --opacity-dark: 0.3;
}
body[data-v-dc308ecc] {
  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: #333;
  background-color: #0a0a0a;
  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;
}

/* 标题样式统一 */
h1[data-v-dc308ecc] {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}
h2[data-v-dc308ecc] {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.875rem;
}
h3[data-v-dc308ecc] {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.75rem;
}
h4[data-v-dc308ecc] {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.625rem;
}
h5[data-v-dc308ecc] {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}
h6[data-v-dc308ecc] {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-title);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

/* 正文和辅助文字样式 */
p[data-v-dc308ecc] {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  margin-bottom: 1rem;
}
.text-sm[data-v-dc308ecc] {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.text-xs[data-v-dc308ecc] {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-sm);
}

/* 代码和引用样式 */
code[data-v-dc308ecc], pre[data-v-dc308ecc] {
  font-family: var(--font-family-code);
}
blockquote[data-v-dc308ecc] {
  font-family: var(--font-family-serif);
}

/* 动画和过渡效果 */
@keyframes fadeInUp-dc308ecc {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeInLeft-dc308ecc {
from {
    opacity: 0;
    transform: translateX(-30px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes fadeInRight-dc308ecc {
from {
    opacity: 0;
    transform: translateX(30px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes pulse-dc308ecc {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.7;
}
}
@keyframes glow-dc308ecc {
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);
}
}

/* 滚动动画类 */
.animate-fade-in[data-v-dc308ecc] {
  opacity: 0;
  animation: fadeInUp-dc308ecc 0.8s ease-out forwards;
}
.animate-fade-in-left[data-v-dc308ecc] {
  opacity: 0;
  animation: fadeInLeft-dc308ecc 0.8s ease-out forwards;
}
.animate-fade-in-right[data-v-dc308ecc] {
  opacity: 0;
  animation: fadeInRight-dc308ecc 0.8s ease-out forwards;
}
.animate-pulse[data-v-dc308ecc] {
  animation: pulse-dc308ecc 2s ease-in-out infinite;
}
.animate-glow[data-v-dc308ecc] {
  animation: glow-dc308ecc 2s ease-in-out infinite alternate;
}

/* 延迟动画类 */
.delay-100[data-v-dc308ecc] {
  animation-delay: 0.1s;
}
.delay-200[data-v-dc308ecc] {
  animation-delay: 0.2s;
}
.delay-300[data-v-dc308ecc] {
  animation-delay: 0.3s;
}
.delay-400[data-v-dc308ecc] {
  animation-delay: 0.4s;
}
.delay-500[data-v-dc308ecc] {
  animation-delay: 0.5s;
}

/* 平滑过渡效果 */
.smooth-transition[data-v-dc308ecc] {
  transition: all 0.3s ease;
}
.smooth-transition-slow[data-v-dc308ecc] {
  transition: all 0.5s ease;
}
img[data-v-dc308ecc] {
  max-width: 100%;
  height: auto;
  display: block;
}
.container[data-v-dc308ecc] {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}
header[data-v-dc308ecc] {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 122, 255, 0.15);
  border-bottom: 1px solid rgba(0, 122, 255, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
nav[data-v-dc308ecc] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}
.mobile-menu-btn[data-v-dc308ecc] {
  display: none;
  cursor: pointer;
  z-index: 1000;
}
.menu-icon[data-v-dc308ecc] {
  width: 30px;
  height: 20px;
  position: relative;
}
.menu-icon[data-v-dc308ecc]::before,
.menu-icon[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-icon[data-v-dc308ecc]::before {
  top: 0;
}
.menu-icon[data-v-dc308ecc]::after {
  bottom: 0;
}
.menu-icon[data-v-dc308ecc]::before {
  box-shadow: 0 8px 0 #fff;
}
.logo-container[data-v-dc308ecc] {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo[data-v-dc308ecc] {
  height: 40px;
  width: auto;
  object-fit: contain;
  transform: scale(1.5);
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.logo-text[data-v-dc308ecc] {
  color: white;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.logo[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00aaff, #7a00ff, #00aaff);
  z-index: -1;
  animation: borderRotate-dc308ecc 4s linear infinite;
}
@keyframes borderRotate-dc308ecc {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}
.nav-links[data-v-dc308ecc] {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-links a[data-v-dc308ecc] {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: larger;
  font-family: 'Microsoft YaHei', sans-serif;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a[data-v-dc308ecc]:hover {
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}
.nav-links a[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #7a00ff);
  transition: width 0.3s ease;
}
.nav-links a[data-v-dc308ecc]:hover::after {
  width: 100%;
}
.btn-primary[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00aaff, #7a00ff);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-primary[data-v-dc308ecc]::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-dc308ecc 3s infinite;
  opacity: 0;
}
.btn-primary[data-v-dc308ecc]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}
.btn-primary[data-v-dc308ecc]:hover::before {
  opacity: 1;
}
@keyframes shine-dc308ecc {
0% {
    transform: translateX(-100%) rotate(45deg);
}
100% {
    transform: translateX(100%) rotate(45deg);
}
}

/* 响应式样式 */
@media (max-width: 768px) {
  /* 调小立即咨询按钮 */
.btn-primary[data-v-dc308ecc] {
    padding: 8px 16px;
    font-size: 14px;
}
  
  /* 调整banner文字位置，避免与图片文字重叠 */
.hero-text[data-v-dc308ecc] {
    top: auto;
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
}
  
  /* 调整banner文字大小 */
.hero-text h2[data-v-dc308ecc] {
    font-size: 48px;
}
.hero-text p[data-v-dc308ecc] {
    font-size: 16px;
}
  
  /* 显示移动端菜单按钮 */
.mobile-menu-btn[data-v-dc308ecc] {
    display: block;
}
  
  /* 隐藏桌面端导航链接 */
.nav-links[data-v-dc308ecc] {
    display: none;
}
  
  /* 移动端菜单激活状态 */
.nav-links.mobile-active[data-v-dc308ecc] {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 50%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.15);
    border-top: 1px solid rgba(0, 122, 255, 0.2);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-height: none;
    height: auto;
}
}
.hero[data-v-dc308ecc] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  height: 650px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.banner-image[data-v-dc308ecc] {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.hero-text[data-v-dc308ecc] {
  position: absolute;
  top: 5%;
  right: 15%;
  z-index: 2;
  text-align: right;
  color: white;
}
.hero-text h2[data-v-dc308ecc] {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, #00aaff, #7a00ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
.hero-text p[data-v-dc308ecc] {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.hero[data-v-dc308ecc]::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-dc308ecc 8s ease-in-out infinite;
}
.hero[data-v-dc308ecc]::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-dc308ecc 20s linear infinite;
}
.hero-content[data-v-dc308ecc] {
  position: relative;
  z-index: 2;
}
.hero h1[data-v-dc308ecc] {
  font-size: 56px;
  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-dc308ecc 3s ease-in-out infinite alternate;
}
.hero p[data-v-dc308ecc] {
  font-size: 45px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.0;
}
@keyframes pulse-dc308ecc {
0%, 100% {
    opacity: 0.5;
}
50% {
    opacity: 1;
}
}
@keyframes slide-dc308ecc {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50px);
}
}
@keyframes glow-dc308ecc {
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);
}
}

/* Tech Decoration Elements */
.tech-decoration[data-v-dc308ecc] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.grid-lines[data-v-dc308ecc] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 170, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove-dc308ecc 20s linear infinite;
}
@keyframes gridMove-dc308ecc {
0% {
    background-position: 0 0;
}
100% {
    background-position: 50px 50px;
}
}
.particle[data-v-dc308ecc] {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.8), rgba(122, 0, 255, 0.4));
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
  animation: float-dc308ecc 6s ease-in-out infinite;
}
.particle-1[data-v-dc308ecc] {
  width: 10px;
  height: 10px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle-2[data-v-dc308ecc] {
  width: 8px;
  height: 8px;
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}
.particle-3[data-v-dc308ecc] {
  width: 12px;
  height: 12px;
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}
.particle-4[data-v-dc308ecc] {
  width: 6px;
  height: 6px;
  top: 40%;
  right: 25%;
  animation-delay: 3s;
}
.particle-5[data-v-dc308ecc] {
  width: 14px;
  height: 14px;
  top: 70%;
  left: 30%;
  animation-delay: 4s;
}
@keyframes float-dc308ecc {
0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
}
50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
}
}
.industries[data-v-dc308ecc] {
  padding: 100px 0;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
}
.industries[data-v-dc308ecc]::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%);
}
.section-title[data-v-dc308ecc] {
  text-align: center;
  font-size: 40px;
  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;
}
.industry-grid[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.industry-item[data-v-dc308ecc] {
  background: rgba(15, 23, 42, 0.8);
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.2);
}
.industry-item[data-v-dc308ecc]::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;
}
.industry-item[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.industry-item[data-v-dc308ecc]:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}
.industry-item h3[data-v-dc308ecc] {
  font-size: 18px;
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
  position: relative;
  z-index: 2;
  margin: 0;
}
.more-cases[data-v-dc308ecc] {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.more-cases a[data-v-dc308ecc] {
  color: #00aaff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 12px 30px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 25px;
  background: rgba(0, 170, 255, 0.1);
  display: inline-block;
}
.more-cases a[data-v-dc308ecc]:hover {
  background: rgba(0, 170, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.3);
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}
.cases[data-v-dc308ecc] {
  padding: 100px 0;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
}
.cases[data-v-dc308ecc]::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%);
}
.case-card[data-v-dc308ecc] {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.2);
  z-index: 2;
}
.case-card[data-v-dc308ecc]::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;
}
.case-card[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.case-card[data-v-dc308ecc]:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}
.case-header[data-v-dc308ecc] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 170, 255, 0.2);
}
.case-title[data-v-dc308ecc] {
  font-size: 28px;
  color: white;
  background: linear-gradient(135deg, #ffffff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-title-link[data-v-dc308ecc] {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}
.case-title-link:hover .case-title[data-v-dc308ecc] {
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
.case-company[data-v-dc308ecc] {
  font-size: 20px;
  color: #00aaff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.case-description[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
}
.products-used[data-v-dc308ecc] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.product-tag[data-v-dc308ecc] {
  background: rgba(0, 170, 255, 0.15);
  color: #00aaff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.product-tag[data-v-dc308ecc]:hover {
  background: rgba(0, 170, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}
.metrics[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.metric-item[data-v-dc308ecc] {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  transition: all 0.3s ease;
}
.metric-item[data-v-dc308ecc]:hover {
  background: rgba(0, 170, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.2);
}
.metric-value[data-v-dc308ecc] {
  font-size: 32px;
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
  font-family: 'Courier New', monospace;
}
.metric-label[data-v-dc308ecc] {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.products[data-v-dc308ecc] {
  padding: 100px 0;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
}
.products[data-v-dc308ecc]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(122, 0, 255, 0.05), transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(0, 170, 255, 0.05), transparent 70%);
}
.product-grid[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}
.product-card[data-v-dc308ecc] {
  background: rgba(15, 23, 42, 0.8);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.2);
}
.product-card[data-v-dc308ecc]::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;
}
.product-card[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.product-card[data-v-dc308ecc]:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}
.product-card h3[data-v-dc308ecc] {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}
.product-card p[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
footer[data-v-dc308ecc] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
footer[data-v-dc308ecc]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00aaff, #7a00ff, transparent);
  animation: gradientMove-dc308ecc 4s linear infinite;
}
@keyframes gradientMove-dc308ecc {
0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}
.footer-grid[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.footer-section h4[data-v-dc308ecc] {
  font-size: 20px;
  margin-bottom: 25px;
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
  position: relative;
  padding-bottom: 10px;
}
.footer-section h4[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #7a00ff);
}
.footer-section ul[data-v-dc308ecc] {
  list-style: none;
}
.footer-section ul li[data-v-dc308ecc] {
  margin-bottom: 15px;
}
.footer-section ul li a[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}
.footer-section ul li a[data-v-dc308ecc]::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #00aaff;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer-section ul li a[data-v-dc308ecc]:hover {
  color: #00aaff;
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}
.footer-section ul li a[data-v-dc308ecc]:hover::before {
  opacity: 1;
  transform: translateX(5px);
}
.footer-bottom[data-v-dc308ecc] {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}
.footer-bottom a[data-v-dc308ecc] {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}
.footer-bottom[data-v-dc308ecc]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.5), transparent);
}
.evolution[data-v-dc308ecc] {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  overflow: hidden;
}
.evolution[data-v-dc308ecc]::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[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.evolution-card[data-v-dc308ecc] {
  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[data-v-dc308ecc]::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[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.evolution-card[data-v-dc308ecc]:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.4);
}
.evolution-card.primary[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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);
}
.stage-badge[data-v-dc308ecc] {
  display: inline-block;
  background: linear-gradient(135deg, #00aaff, #7a00ff);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.stage-badge[data-v-dc308ecc]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.5);
}
.evolution-title[data-v-dc308ecc] {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
  position: relative;
  z-index: 2;
}
.evolution-description[data-v-dc308ecc] {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.evolution-image[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00aaff, #0088cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.evolution-card.secondary .evolution-title[data-v-dc308ecc] {
  color: white;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
.evolution-card.tertiary .evolution-title[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00ffaa, #00cc88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mockup[data-v-dc308ecc] {
  background: #1a1a2e;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.2);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
}
.mockup[data-v-dc308ecc]:hover {
  box-shadow: 0 12px 40px rgba(0, 170, 255, 0.3);
  transform: scale(1.02);
}
.window[data-v-dc308ecc] {
  width: 100%;
}
.window-header[data-v-dc308ecc] {
  background: linear-gradient(90deg, #0a192f, #172a45);
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0, 170, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.window-header[data-v-dc308ecc]::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 15px 0 0 #ffbd2e, 30px 0 0 #27ca3f;
}
.window-title[data-v-dc308ecc] {
  font-size: 14px;
  font-weight: 600;
  color: #00aaff;
  margin-left: 10px;
}
.window-content[data-v-dc308ecc] {
  padding: 24px;
  min-height: 220px;
  background: #0f172a;
}

/* RPA Mockup */
.rpa-mockup .window-content[data-v-dc308ecc] {
  display: flex;
  gap: 18px;
}
.sidebar[data-v-dc308ecc] {
  width: 30%;
  background: rgba(0, 170, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 170, 255, 0.2);
}
.sidebar-item[data-v-dc308ecc] {
  padding: 10px 14px;
  margin-bottom: 10px;
  background: rgba(0, 170, 255, 0.15);
  border-radius: 6px;
  font-size: 12px;
  color: #00aaff;
  border-left: 3px solid #00aaff;
  transition: all 0.2s ease;
}
.sidebar-item[data-v-dc308ecc]:hover {
  background: rgba(0, 170, 255, 0.25);
  transform: translateX(2px);
}
.main-content[data-v-dc308ecc] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.action-box[data-v-dc308ecc] {
  background: rgba(0, 255, 170, 0.15);
  padding: 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #00ffaa;
  text-align: center;
  border: 1px solid rgba(0, 255, 170, 0.3);
}
.input-field[data-v-dc308ecc] {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #a0aec0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.button[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00aaff, #7a00ff);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 170, 255, 0.3);
}
.button[data-v-dc308ecc]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.4);
}

/* IPA Mockup */
.ipa-mockup .window-content[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: center;
}
.app-icon[data-v-dc308ecc] {
  font-size: 36px;
  text-align: center;
  padding: 20px;
  background: rgba(122, 0, 255, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(122, 0, 255, 0.3);
  transition: all 0.2s ease;
}
.app-icon[data-v-dc308ecc]:hover {
  background: rgba(122, 0, 255, 0.25);
  transform: scale(1.05);
}
.ocr-preview[data-v-dc308ecc] {
  grid-column: 1 / -1;
  background: rgba(122, 0, 255, 0.15);
  padding: 18px;
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid rgba(122, 0, 255, 0.3);
}
.ocr-text[data-v-dc308ecc] {
  font-size: 14px;
  color: #aa88ff;
  font-weight: 500;
}

/* Agent Mockup */
.chat-interface[data-v-dc308ecc] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-header[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 13px;
  line-height: 1.2;
}
.chat-message.bot[data-v-dc308ecc] {
  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: 5px;
}
.chat-message.user[data-v-dc308ecc] {
  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: 0px;
}
.message-content[data-v-dc308ecc] {
  font-size: 13px;
  line-height: 1.2;
}
.message-avatar[data-v-dc308ecc] {
  font-size: 32px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.bot-avatar[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00aaff, #7a00ff);
}
.user-avatar[data-v-dc308ecc] {
  background: linear-gradient(135deg, #00ffaa, #00cc88);
}
.chat-message[data-v-dc308ecc] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.chat-input[data-v-dc308ecc] {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-input input[data-v-dc308ecc] {
  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[data-v-dc308ecc]:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}
.chat-input button[data-v-dc308ecc] {
  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[data-v-dc308ecc]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(122, 0, 255, 0.4);
}

/* Agent Intro Section */
.agent-intro[data-v-dc308ecc] {
  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[data-v-dc308ecc]::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[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.agent-intro[data-v-dc308ecc]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 170, 255, 0.25);
}
.agent-intro-content[data-v-dc308ecc] {
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.agent-text[data-v-dc308ecc] {
  flex: 1;
  position: relative;
}
.quote-mark[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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);
}
.btn-free-trial[data-v-dc308ecc]::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-dc308ecc 3s infinite;
  opacity: 0;
}
.btn-free-trial[data-v-dc308ecc]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
}
.btn-free-trial[data-v-dc308ecc]:hover::before {
  opacity: 1;
}
.agent-video[data-v-dc308ecc] {
  flex: 1;
  max-width: 550px;
  position: relative;
  z-index: 2;
}
.video-placeholder[data-v-dc308ecc] {
  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[data-v-dc308ecc]:hover {
  box-shadow: 0 20px 50px rgba(0, 170, 255, 0.4);
  transform: scale(1.02);
}
.video-thumbnail[data-v-dc308ecc] {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.video-thumbnail img[data-v-dc308ecc] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-thumbnail:hover img[data-v-dc308ecc] {
  transform: scale(1.05);
}
.play-button[data-v-dc308ecc] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 170, 255, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}
.play-button[data-v-dc308ecc]:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 170, 255, 1);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.6);
}
.play-button svg[data-v-dc308ecc] {
  width: 40px;
  height: 40px;
}
.play-button svg circle[data-v-dc308ecc] {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-dc308ecc 2s ease-in-out infinite;
}
@keyframes draw-dc308ecc {
0% {
    stroke-dashoffset: 100;
}
50% {
    stroke-dashoffset: 0;
}
100% {
    stroke-dashoffset: -100;
}
}
.video-controls[data-v-dc308ecc] {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 20px;
  border-top: 1px solid rgba(0, 170, 255, 0.3);
}
.video-timeline[data-v-dc308ecc] {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.video-timeline[data-v-dc308ecc]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 170, 255, 0.3), rgba(122, 0, 255, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-timeline[data-v-dc308ecc]:hover::before {
  opacity: 1;
}
.timeline-progress[data-v-dc308ecc] {
  height: 100%;
  background: linear-gradient(90deg, #00aaff, #7a00ff);
  border-radius: 4px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}
.timeline-progress[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-dc308ecc 2s infinite;
}
@keyframes shimmer-dc308ecc {
0% {
    transform: translateX(-100%);
}
100% {
    transform: translateX(100%);
}
}
.video-info[data-v-dc308ecc] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-time[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: 'Courier New', monospace;
}
.video-icons[data-v-dc308ecc] {
  display: flex;
  gap: 15px;
}
.video-icons .icon[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.video-icons .icon[data-v-dc308ecc]:hover {
  color: #00aaff;
  background: rgba(0, 170, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.3);
}
@media (max-width: 1200px) {
.evolution-grid[data-v-dc308ecc] {
    grid-template-columns: 1fr;
}
.evolution-card[data-v-dc308ecc] {
    max-width: 600px;
    margin: 0 auto;
}
.agent-intro-content[data-v-dc308ecc] {
    flex-direction: column;
    text-align: left;
}
.agent-video[data-v-dc308ecc] {
    max-width: 100%;
    width: 100%;
}
.video-thumbnail[data-v-dc308ecc] {
    height: 300px;
}
.feedback-card[data-v-dc308ecc] {
    flex-direction: column;
}
.feedback-image[data-v-dc308ecc] {
    width: 100%;
    max-height: 300px;
}
.feedback-content[data-v-dc308ecc] {
    width: 100%;
}
}

/* Customer Feedback Section */
.customer-feedback[data-v-dc308ecc] {
  padding: 0px 0 50px;
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  overflow: hidden;
}
.customer-feedback[data-v-dc308ecc]::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;
}
.industry-tabs[data-v-dc308ecc] {
  display: flex;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.tab[data-v-dc308ecc] {
  background: white;
  border: 2px solid #ff9800;
  color: #ff9800;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab.active[data-v-dc308ecc] {
  background: #ff9800;
  color: white;
}
.tab[data-v-dc308ecc]:hover {
  background: #ff9800;
  color: white;
  transform: translateY(-2px);
}
.tab.more-cases[data-v-dc308ecc] {
  border-color: #e0e0e0;
  color: #666;
}
.tab.more-cases[data-v-dc308ecc]:hover {
  border-color: #ff9800;
  background: #ff9800;
  color: white;
}
.feedback-cards[data-v-dc308ecc] {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}
.feedback-card[data-v-dc308ecc] {
  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[data-v-dc308ecc]::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[data-v-dc308ecc]:hover::before {
  left: 100%;
}
.feedback-card[data-v-dc308ecc]:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 170, 255, 0.3);
}
.logo-blue[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  padding: 30px 0;
  background: rgba(10, 10, 10, 0.8);
  overflow: hidden;
  position: relative;
}
.trusted-companies[data-v-dc308ecc]::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[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  position: relative;
  overflow: hidden;
}
.logo-row[data-v-dc308ecc] {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  animation: scroll-dc308ecc linear infinite;
  position: relative;
}
.logo-item[data-v-dc308ecc] {
  flex: 0 0 120px;
  height: 60px;
  background: rgba(15, 23, 42, 0.8);
  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;
  background-color: white
}
.logo-item[data-v-dc308ecc]: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[data-v-dc308ecc] {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.left-scroll[data-v-dc308ecc] {
  animation-direction: alternate;
}
.right-scroll[data-v-dc308ecc] {
  animation-direction: alternate-reverse;
}
@keyframes scroll-dc308ecc {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
}
}
.logo-row.left-scroll[data-v-dc308ecc] {
  animation-duration: 30s;
}
.logo-row.right-scroll[data-v-dc308ecc] {
  animation-duration: 35s;
}
.logo-wall[data-v-dc308ecc]::before,
.logo-wall[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 1;
  pointer-events: none;
}
.logo-wall[data-v-dc308ecc]::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}
.logo-wall[data-v-dc308ecc]::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}
@media (max-width: 768px) {
.trusted-title[data-v-dc308ecc] {
    font-size: 24px;
}
.logo-item[data-v-dc308ecc] {
    flex: 0 0 100px;
    height: 50px;
    font-size: 12px;
    margin: 0 10px;
}
.logo-wall[data-v-dc308ecc]::before,
  .logo-wall[data-v-dc308ecc]::after {
    width: 80px;
}
}
.feedback-image[data-v-dc308ecc] {
  width: 65%;
  min-width: 320px;
}
.feedback-image img[data-v-dc308ecc] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedback-image video[data-v-dc308ecc] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.feedback-content[data-v-dc308ecc] {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.company-logo[data-v-dc308ecc] {
  margin-bottom: 10px;
}
.huaxia-logo[data-v-dc308ecc] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-red[data-v-dc308ecc] {
  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[data-v-dc308ecc] {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Microsoft YaHei', sans-serif,cursive;
}
.feedback-text[data-v-dc308ecc] {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 2;
}
.used-products[data-v-dc308ecc] {
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.products-label[data-v-dc308ecc] {
  font-size: 14px;
  color: #00aaff;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
}
.product-tags[data-v-dc308ecc] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.used-products .product-tag[data-v-dc308ecc] {
  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[data-v-dc308ecc]:hover {
  background: rgba(0, 170, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.performance-metrics[data-v-dc308ecc] {
  display: flex;
  gap: 40px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.performance-metrics .metric[data-v-dc308ecc] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.performance-metrics .metric-value[data-v-dc308ecc] {
  font-size: 24px;
  font-weight: 700;
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}
.performance-metrics .metric-label[data-v-dc308ecc] {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
@media (max-width: 992px) {
.industry-tabs[data-v-dc308ecc] {
    justify-content: flex-start;
}
.feedback-card[data-v-dc308ecc] {
    flex-direction: column;
}
.feedback-image[data-v-dc308ecc] {
    width: 100%;
    max-height: 300px;
    min-width: unset;
}
.feedback-content[data-v-dc308ecc] {
    width: 100%;
    padding: 30px;
}
.performance-metrics[data-v-dc308ecc] {
    flex-direction: column;
    gap: 20px;
}
}
@media (max-width: 768px) {
.hero h1[data-v-dc308ecc] {
    font-size: 32px;
}
.hero p[data-v-dc308ecc] {
    font-size: 16px;
}
.hero-text[data-v-dc308ecc] {
    top: 10px;
    right: 20px;
}
.hero-text h2[data-v-dc308ecc] {
    font-size: 24px;
}
.hero-text p[data-v-dc308ecc] {
    font-size: 16px;
    line-height: 0;
}
.mobile-menu-btn[data-v-dc308ecc] {
    display: block;
}
.nav-links[data-v-dc308ecc] {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(0, 170, 255, 0.2);
    padding: 100px 20px;
    gap: 20px;
    z-index: 999;
}
.nav-links.mobile-active[data-v-dc308ecc] {
    right: 0;
}
.nav-links li[data-v-dc308ecc] {
    margin: 0;
}
.nav-links a[data-v-dc308ecc] {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 170, 255, 0.1);
}
.case-header[data-v-dc308ecc] {
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.metrics[data-v-dc308ecc] {
    grid-template-columns: 1fr;
}
.evolution-card[data-v-dc308ecc] {
    padding: 20px;
}
.evolution-title[data-v-dc308ecc] {
    font-size: 24px;
}
.mockup[data-v-dc308ecc] {
    max-width: 100%;
}
.evolution[data-v-dc308ecc] {
    margin-top: -200px;
}
.evolution-grid[data-v-dc308ecc] {
    margin-top: 20px;
}
.hero[data-v-dc308ecc] {
    height: 400px;
}
}

/* Footer Styles */
footer[data-v-dc308ecc] {
  background: rgba(10, 10, 20, 0.95);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
}
.footer-grid[data-v-dc308ecc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-section h4[data-v-dc308ecc] {
  color: #00aaff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-section h4[data-v-dc308ecc]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #7a00ff);
}
.footer-section ul[data-v-dc308ecc] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li[data-v-dc308ecc] {
  margin-bottom: 12px;
}
.footer-section ul li a[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-section ul li a[data-v-dc308ecc]:hover {
  color: #00aaff;
  padding-left: 5px;
}
.footer-bottom[data-v-dc308ecc] {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p[data-v-dc308ecc] {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

/* Mobile Footer Responsive */
@media (max-width: 768px) {
.footer-grid[data-v-dc308ecc] {
    grid-template-columns: 1fr;
    gap: 30px;
}
.footer-section ul[data-v-dc308ecc] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}
.footer-section ul li[data-v-dc308ecc] {
    margin-bottom: 0;
}
.footer-section ul li a[data-v-dc308ecc] {
    font-size: 14px;
    padding: 5px 10px;
    background: rgba(0, 170, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 170, 255, 0.2);
}
.footer-section ul li a[data-v-dc308ecc]:hover {
    padding-left: 10px;
    background: rgba(0, 170, 255, 0.2);
}
}

