/* Vibe Coding私有化交付页面样式 */

body {
  padding-top: 0;
}

.header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* banner区域 */
.banner {
  height: 60vh;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.banner .title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner .sub-title {
  font-size: 24px;
  opacity: 0.9;
}

/* 锚点导航 */
.nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.nav ul {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav ul li a {
  display: block;
  padding: 20px 30px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav ul li a:hover {
  color: #10B981;
  background: #f8f9fa;
}

/* 文章区域 */
.article {
  padding-bottom: 60px;
}

.section {
  padding: 60px 5%;
}

.section.bg-gray {
  background: #f8f9fa;
}

.title-line {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.title-line .title {
  font-size: 36px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.title-line .title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 2px;
}

.title-line a {
  display: block;
  position: absolute;
  top: -100px;
}

/* 什么是Vibe Coding */
.intro {
  max-width: 900px;
  margin: 0 auto;
}

.intro-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.intro-card > p {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #333;
}

.intro-features li i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

/* 服务内容 */
.services {
  max-width: 1400px;
  margin: 0 auto;
}

.service-category {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 30px;
  transition: all 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon i {
  font-size: 32px;
  color: #fff;
}

.service-category h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: bold;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  background: #f0fdf4;
  color: #10B981;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* 服务流程 */
.process {
  max-width: 1200px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.process-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-icon i {
  font-size: 32px;
  color: #fff;
}

.process-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.process-time {
  display: inline-block;
  background: #f0fdf4;
  color: #10B981;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
}

.process-arrow i {
  font-size: 24px;
  color: #10B981;
}

/* 成功案例 */
.cases {
  max-width: 1200px;
  margin: 0 auto;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.case-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.case-icon i {
  font-size: 32px;
  color: #fff;
}

.case-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.case-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 报价模式 */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.pricing-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pricing-icon i {
  font-size: 32px;
  color: #fff;
}

.pricing-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 立即咨询 */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: #fff;
  color: #10B981;
  border: 2px solid #10B981;
}

.btn-secondary:hover {
  background: #10B981;
  color: #fff;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
  .intro-features {
    flex-direction: column;
    gap: 20px;
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 30px;
  }

  .process-arrow {
    display: none;
  }

  .process-item {
    flex: 0 0 calc(33.33% - 30px);
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .banner .title {
    font-size: 36px;
  }

  .banner .sub-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: 40vh;
  }

  .banner .title {
    font-size: 28px;
  }

  .banner .sub-title {
    font-size: 16px;
  }

  .nav ul {
    flex-wrap: wrap;
  }

  .nav ul li a {
    padding: 15px 20px;
    font-size: 14px;
  }

  .title-line .title {
    font-size: 24px;
  }

  .intro-card {
    padding: 30px 20px;
  }

  .intro-card > p {
    font-size: 16px;
  }

  .service-category {
    flex-direction: column;
    text-align: center;
  }

  .category-icon {
    margin: 0 auto;
  }

  .service-list {
    justify-content: center;
  }

  .process-item {
    flex: 0 0 100%;
  }

  .contact-btns {
    flex-direction: column;
  }
}
