/* ==================== 企业AI解决方案页面样式 ==================== */

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

.eas-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;
}

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

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

.eas-breadcrumb {
  margin-bottom: 8px;
}

.eas-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.eas-breadcrumb-arrow {
  width: 16px;
  height: 16px;
}

.eas-category-tag {
  display: inline-block;
  color: #64c8ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.eas-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
  line-height: 1.2;
}

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

.eas-hero-description p {
  margin: 0;
}

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

.eas-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;
}

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

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

.eas-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;
}

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

.eas-metrics {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

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

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

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

.eas-dashboard-visual {
  position: relative;
  width: 100%;
  height: 500px;
  background: #1a2332;
  border-radius: 16px;
  border: none;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(100, 200, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(100, 200, 255, 0.1);
  overflow: hidden;
}

.eas-dashboard-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(10, 26, 46, 0.4) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

.eas-dashboard-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}

.eas-dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
}

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

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

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

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

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

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

.eas-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(100, 200, 255, 0.2);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.eas-feature-detailed-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  gap: 24px;
  border: 1px solid rgba(100, 200, 255, 0.2);
  transition: all 0.3s ease;
}

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

.eas-feature-detailed-icon {
  width: 56px;
  height: 56px;
  color: #64c8ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.eas-feature-detailed-content {
  flex: 1;
}

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

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

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

.eas-scenarios-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;
}

.eas-scenarios-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

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

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

.eas-scenarios-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.eas-divider-line {
  width: 40px;
  height: 1px;
  background: #64c8ff;
}

.eas-divider-circle {
  width: 8px;
  height: 8px;
  background: #64c8ff;
  border-radius: 50%;
}

.eas-scenarios-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.eas-scenario-summary-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(100, 200, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.eas-scenario-summary-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #64c8ff;
  transform: translateY(-2px);
}

.eas-scenario-summary-icon {
  width: 56px;
  height: 56px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 8px;
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(100, 200, 255, 0.3);
}

.eas-scenario-summary-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.eas-scenario-summary-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.eas-scenarios-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.eas-scenario-detailed-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.3s ease;
}

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

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

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

.eas-scenario-effects {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

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

.eas-process-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
  text-align: left;
}

.eas-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.eas-process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.eas-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  border-top: 2px dashed rgba(100, 200, 255, 0.3);
  z-index: 1;
}

.eas-process-number {
  width: 64px;
  height: 64px;
  background: #64c8ff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.eas-process-content {
  flex: 1;
}

.eas-process-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.eas-process-step-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.eas-process-arrow {
  width: 24px;
  height: 24px;
  color: #64c8ff;
  flex-shrink: 0;
  display: none;
}

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

.eas-cta-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;
}

.eas-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eas-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 20px 0;
}

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

.eas-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.eas-cta-btn-primary {
  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;
}

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

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

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

.eas-cta-phone-icon {
  width: 20px;
  height: 20px;
}

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

  .eas-dashboard-visual {
    height: 400px;
  }

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

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

  .eas-scenarios-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .eas-process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eas-process-step:not(:last-child)::after {
    display: none;
  }

  .eas-process-step::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 32px;
    width: 2px;
    height: 32px;
    border-left: 2px dashed rgba(100, 200, 255, 0.3);
  }

  .eas-process-step:last-child::before {
    display: none;
  }

  .eas-cta-contact-info {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

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

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

  .eas-hero-title {
    font-size: 36px;
  }

  .eas-hero-description {
    font-size: 16px;
  }

  .eas-metrics {
    gap: 32px;
  }

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

  .eas-dashboard-visual {
    height: 300px;
  }

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

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

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

  .eas-hero-actions,
  .eas-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  /* 移动端横向滚动特性网格 */
  .eas-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;
  }

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

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

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

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

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

