/* AI Ecosystem Section Styles */

/* 主区域背景 */
.ai-ecosystem-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.ai-ecosystem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* 公司定位卡片 */
.ai-position-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ai-position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.3) !important;
}

.ai-icon {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 使命卡片 */
.ai-mission-card {
  background: rgba(245, 87, 108, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid #f5576c !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ai-mission-card:hover {
  background: rgba(245, 87, 108, 0.15);
  transform: translateX(5px);
}

.ai-mission-text {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #fff 0%, #ffdde1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 总结框 */
.ai-summary-box {
  background: linear-gradient(90deg, rgba(245, 87, 108, 0.2) 0%, rgba(79, 172, 254, 0.2) 50%, rgba(67, 233, 123, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ai-summary-box::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.5s ease;
}

.ai-summary-box:hover::before {
  left: 100%;
}

.ai-summary-box:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 响应式优化 */
@media (max-width: 768px) {
  .ai-position-card .card-body {
    padding: 2rem 1.5rem !important;
  }
  
  .ai-mission-text {
    font-size: 1.2rem;
  }
  
  .ai-summary-box {
    padding: 1.5rem;
  }
  
  .ai-icon {
    font-size: 36px;
  }
}
