/* ==================== 智能客服页面样式 ==================== */

/* Hero区域：左右分栏布局 */
.ics-hero-section {
  background: linear-gradient(180deg, #000000 0%, #0a1a2e 50%, #000000 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.ics-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(100, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.ics-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ics-hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ics-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.ics-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ics-breadcrumb a:hover {
  color: #64c8ff;
}

.ics-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.ics-hero-title {
  margin: 0;
}

.ics-title-main {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
}

.ics-title-sub {
  font-size: 48px;
  font-weight: 700;
  color: #64c8ff;
  display: block;
  line-height: 1.2;
}

.ics-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.ics-metrics {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.ics-metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ics-metric-value {
  font-size: 36px;
  font-weight: 700;
  color: #64c8ff;
  line-height: 1.2;
}

.ics-metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ics-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ics-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #64c8ff;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ics-hero-btn-primary:hover {
  background: #236be4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(100, 200, 255, 0.3);
}

.ics-btn-arrow {
  width: 20px;
  height: 20px;
}

.ics-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.ics-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.ics-hero-right {
  position: relative;
}

.ics-hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ics-monitor {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: rgba(26, 35, 50, 0.8);
  border-radius: 16px;
  border: 2px solid rgba(100, 200, 255, 0.2);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.ics-monitor-screen {
  width: 100%;
  height: 100%;
  background: #1a2332;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.ics-chatbot-character {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #64c8ff 0%, #236be4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ics-chatbot-character::before {
  content: '';
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
}

.ics-chat-bubbles {
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ics-chat-bubble {
  background: rgba(100, 200, 255, 0.2);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 70%;
  border: 1px solid rgba(100, 200, 255, 0.3);
}

/* 核心特点部分 */
.ics-features-section {
  padding: 100px 0;
  background: #1a2332;
  position: relative;
}

.ics-features-header {
  text-align: center;
  margin-bottom: 60px;
}

.ics-features-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 16px 0;
}

.ics-features-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
}

.ics-features-divider {
  width: 120px;
  height: 2px;
  background: #64c8ff;
  margin: 0 auto;
  border-radius: 1px;
}

.ics-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ics-feature-card {
  background: rgba(26, 35, 50, 0.6);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.ics-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(26, 35, 50, 0.8);
}

.ics-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ics-feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.ics-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.ics-feature-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* 功能优势详解部分 */
.ics-advantages-section {
  padding: 100px 0;
  background: #101828;
  position: relative;
}

.ics-advantages-header {
  margin-bottom: 60px;
}

.ics-advantages-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ics-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ics-advantage-card {
  background: rgba(26, 35, 50, 0.6);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.ics-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(26, 35, 50, 0.8);
}

.ics-advantage-icon {
  width: 56px;
  height: 56px;
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ics-advantage-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.ics-advantage-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.ics-advantage-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* 应用场景部分 */
.ics-scenarios-section {
  padding: 100px 0;
  background: #1a2332;
  position: relative;
}

.ics-scenarios-header {
  text-align: center;
  margin-bottom: 60px;
}

.ics-scenarios-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 16px 0;
}

.ics-scenarios-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.ics-scenarios-subtitle::before,
.ics-scenarios-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #64c8ff;
}

.ics-scenarios-subtitle::before {
  left: -60px;
}

.ics-scenarios-subtitle::after {
  right: -60px;
}

.ics-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.ics-scenario-card {
  background: rgba(26, 35, 50, 0.6);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.ics-scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(26, 35, 50, 0.8);
}

.ics-scenario-icon {
  width: 56px;
  height: 56px;
  color: #64c8ff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ics-scenario-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.ics-scenario-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.ics-scenario-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.ics-scenario-functions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ics-scenario-function-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.ics-check-icon {
  width: 20px;
  height: 20px;
  color: #64c8ff;
  flex-shrink: 0;
}

.ics-other-scenarios {
  margin-top: 60px;
}

.ics-other-scenarios-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.ics-other-scenarios-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ics-other-scenario-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  background: rgba(26, 35, 50, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ics-other-scenario-item:hover {
  background: rgba(26, 35, 50, 0.8);
  border-color: #64c8ff;
  transform: translateY(-2px);
}

/* 实施流程部分 */
.ics-process-section {
  padding: 100px 0;
  background: #101828;
  position: relative;
}

.ics-process-header {
  margin-bottom: 60px;
}

.ics-process-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ics-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ics-process-step {
  background: rgba(26, 35, 50, 0.6);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 200, 255, 0.1);
  position: relative;
}

.ics-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(26, 35, 50, 0.8);
}

.ics-step-number {
  width: 64px;
  height: 64px;
  background: #64c8ff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.ics-step-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.ics-step-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* CTA部分 */
.ics-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1a2e 0%, #1a2332 100%);
  position: relative;
}

.ics-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ics-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.ics-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  line-height: 1.7;
}

.ics-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #64c8ff;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ics-cta-button:hover {
  background: #236be4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(100, 200, 255, 0.4);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .ics-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ics-hero-visual {
    height: 400px;
  }

  .ics-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ics-advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ics-scenarios-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ics-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ics-hero-section {
    padding: 20px 0 80px;
    margin-top: 0;
  }

  .ics-hero-wrapper {
    margin-top: 0;
  }

  .ics-title-main,
  .ics-title-sub {
    font-size: 36px;
  }

  .ics-metrics {
    gap: 24px;
  }

  .ics-metric-value {
    font-size: 28px;
  }

  .ics-features-section,
  .ics-advantages-section,
  .ics-scenarios-section,
  .ics-process-section,
  .ics-cta-section {
    padding: 60px 0;
  }

  .ics-features-title,
  .ics-advantages-title,
  .ics-scenarios-title,
  .ics-process-title,
  .ics-cta-title {
    font-size: 32px;
  }

  .ics-process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ics-hero-actions {
    flex-direction: column;
  }

  .ics-hero-btn-primary,
  .ics-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* 移动端隐藏右侧区域 */
  .ics-hero-right {
    display: none;
  }

  /* 移动端横向滚动特性网格 */
  .ics-features-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ics-features-grid::-webkit-scrollbar {
    height: 4px;
  }

  .ics-features-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .ics-features-grid::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .ics-features-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .ics-feature-card {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }

  /* 移动端横向滚动优势网格 */
  .ics-advantages-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ics-advantages-grid::-webkit-scrollbar {
    height: 4px;
  }

  .ics-advantages-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .ics-advantages-grid::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .ics-advantages-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .ics-advantage-card {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }

  /* 移动端横向滚动场景网格 */
  .ics-scenarios-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ics-scenarios-grid::-webkit-scrollbar {
    height: 4px;
  }

  .ics-scenarios-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .ics-scenarios-grid::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .ics-scenarios-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .ics-scenario-card {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }

  /* 移动端横向滚动流程步骤 */
  .ics-process-steps {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ics-process-steps::-webkit-scrollbar {
    height: 4px;
  }

  .ics-process-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .ics-process-steps::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .ics-process-steps::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .ics-process-step {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }
}

