/* === 服务价格页面专用样式 === */
:root {
  --max: 1100px;
  --radius: 12px;
  --tb-primary: linear-gradient(135deg, #456df0 0%, #a06ce8 35%, #fc60aa 70%, #ff456c 100%);
  --tb-dark: #111;
  --tb-gray: #1a1a1a;
  --tb-light: #333;
  --tb-white: #fff;
  --header-gradient: linear-gradient(135deg, #456df0 0%, #ff456c 75%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", sans-serif;
  line-height: 1.6;
  background-color: var(--tb-dark);
  color: var(--tb-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
}

/* 头部样式 */
header {
  background: var(--header-gradient);
  color: var(--tb-white);
  padding: clamp(30px, 5vw, 50px) 20px;
  text-align: center;
  margin-bottom: 30px;
}

.back-home a {
  color: var(--tb-white);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

/* 服务介绍区域 */
.service-intro {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  text-align: center;
}

.service-intro h1 {
  margin-bottom: 15px;
}

.service-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* 价格表格区域 */
.pricing-tables {
  margin: 50px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 2px solid;
  border-image: var(--tb-primary);
  border-image-slice: 1;
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing-card h3 {
  color: var(--tb-white);
  margin-bottom: 20px;
  font-size: 1.4em;
}

.price {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--tb-white);
  margin-bottom: 25px;
  display: block;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card li {
  color: #ccc;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.pricing-card li:before {
  content: "✓";
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 价格说明区域 */
.price-notes {
  margin: 40px 0;
  text-align: center;
}

.price-notes h3 {
  margin-bottom: 20px;
  color: var(--tb-white);
}

.price-notes ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.price-notes li {
  color: #ccc;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.price-notes li:before {
  content: "•";
  color: var(--tb-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 联系按钮区域 */
.contact-section {
  text-align: center;
  margin: 40px 0;
}

.contact-section h2 {
  margin-bottom: 20px;
  color: var(--tb-white);
}

.contact-btn {
  background: var(--tb-primary);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 80, 0, 0.35);
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 页脚 */
footer {
  background-color: var(--tb-gray);
  color: #aaa;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 25px 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}