/* ==================== 网站建设页面样式 ==================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wd-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.2) 70%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 26, 46, 0.4) 0%,
      transparent 15%,
      transparent 85%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(
      to right,
      rgba(10, 26, 46, 0.3) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.3) 100%
    );
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}

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

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

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

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

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

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

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

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

.wd-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);
}

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

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

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

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

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

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

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

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

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

.wd-scenarios-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 200px;
}

.wd-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(100, 200, 255, 0.3);
}

.wd-divider-highlight {
  width: 80px;
  height: 2px;
  background: #64c8ff;
  margin: 0 12px;
}

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

@media (min-width: 1200px) {
  .wd-scenarios-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .wd-scenarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wd-scenario-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;
}

.wd-scenario-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);
}

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

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

.wd-scenario-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-align: center;
}

.wd-scenario-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* 为什么选择我们的服务部分 */
.wd-why-choose-section {
  padding: 100px 0;
  background: #0f1722;
  position: relative;
}

.wd-why-choose-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 60px 0;
  text-align: left;
}

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

.wd-benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

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

.wd-benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.wd-benefit-content {
  flex: 1;
}

.wd-benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

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

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

.wd-process-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 60px 0;
  text-align: left;
}

.wd-process-steps {
  display: flex;
  align-items: stretch;
  gap: 24px;
  position: relative;
}

.wd-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  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.2);
  transition: all 0.3s ease;
  position: relative;
}

.wd-process-step: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);
}

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

.wd-process-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.wd-process-connector {
  width: 2px;
  background: linear-gradient(180deg, rgba(100, 200, 255, 0.2) 0%, rgba(100, 200, 255, 0.5) 50%, rgba(100, 200, 255, 0.2) 100%);
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  margin: 0 -12px;
  z-index: 0;
}

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

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

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

.wd-cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(100, 200, 255, 0.3);
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(100, 200, 255, 0.3);
}

.wd-cta-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

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

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

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

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

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

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

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

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

.wd-commitment {
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-commitment-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}

.wd-commitment-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.wd-commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
}

.wd-commitment-icon {
  width: 24px;
  height: 24px;
  color: #64c8ff;
  flex-shrink: 0;
}

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

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

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

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

  .wd-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wd-process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .wd-process-connector {
    width: 2px;
    height: 32px;
    margin: -16px auto;
    transform: rotate(90deg);
  }

  .wd-commitment-items {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

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

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

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

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

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

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

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

  /* 移动端为什么选择我们部分字体调整 */
  .wd-why-choose-title {
    font-size: 28px;
  }

  .wd-benefit-title {
    font-size: 18px;
  }

  .wd-benefit-description {
    font-size: 14px;
  }

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

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

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

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

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

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

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

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

  /* 移动端场景网格每行2个 */
  .wd-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* 移动端流程步骤每行2个 */
  .wd-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wd-process-connector {
    display: none;
  }

  /* 移动端承诺项每行3个 */
  .wd-commitment-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-items: center;
  }
}

