/* 产品中心页面样式 */

/* 主要内容区域 */
main {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
}

/* 页面头部 */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header h1 {
  font-size: var(--font-size-xxxl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
  font-size: var(--font-size-lg);
  color: var(--text-white);
  opacity: 0.9;
  max-width: 1400px;
  margin: 0 auto;
  line-height: var(--line-height-lg);
}

/* 内容区域 */
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xxl) var(--spacing-md);
}

/* 产品网格 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.product-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.3);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-lg);
  display: block;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-icon {
  transform: scale(1.1);
}

.product-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.product-description {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-md);
  margin-bottom: var(--spacing-lg);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.product-actions .btn {
  min-width: 120px;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
}

/* 产品分类标签 */
.product-category {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 特色产品高亮 */
.featured-product {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--primary-light) 100%);
}

.featured-product::before {
  transform: scaleX(1);
}

.featured-product .product-title {
  color: var(--primary-color);
}

/* 产品统计信息 */
.products-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: 0;
  border: 1px solid rgba(22, 119, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-xxxl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.stat-label {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
}

/* 产品特性列表 */
.product-features {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.product-features h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.product-features h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  border-color: rgba(22, 119, 255, 0.3);
}

.feature-icon {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
  display: block;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-md);
}

/* 定价表格 */
.pricing-section {
  margin: var(--spacing-xxl) 0;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-lg) 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
  min-width: 800px;
}

.pricing-table th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
  padding: var(--spacing-md) var(--spacing-sm);
  text-align: center;
  border: 1px solid var(--border-light);
  font-size: var(--font-size-sm);
}

.pricing-table td {
  padding: var(--spacing-sm);
  text-align: center;
  border: 1px solid var(--border-light);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--bg-secondary);
}

.pricing-table tbody tr:hover {
  background: var(--primary-light);
}

.pricing-table .btn-sm {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  margin: 0 var(--spacing-xs);
}

.pricing-notes {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pricing-notes h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.pricing-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-notes li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.pricing-notes li:last-child {
  border-bottom: none;
}

.pricing-notes strong {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

/* FAQ部分 */
.faq-section,
.product-faq {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.faq-section {
  margin: var(--spacing-xxl) 0;
}

.faq-section h2,
.product-faq h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.faq-section h2::after,
.product-faq h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.faq-list {
  margin-top: var(--spacing-lg);
}

.faq-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(22, 119, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: var(--spacing-lg);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  cursor: pointer;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.faq-answer {
  padding: var(--spacing-lg);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-lg);
  background: var(--bg-primary);
}

.faq-answer p {
  margin: 0;
}

.faq-question.active {
  background: var(--primary-light);
  color: var(--primary-color);
}

.faq-answer {
  display: none;
}

.faq-question.active + .faq-answer {
  display: block;
}

/* 产品优势 */
.product-advantages {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.product-advantages h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.product-advantages h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.product-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-advantages li {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-lg);
  position: relative;
  padding-left: var(--spacing-xl);
}

.product-advantages li:last-child {
  border-bottom: none;
}

.product-advantages li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

/* 应用场景 */
.application-scenarios {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.application-scenarios h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.application-scenarios h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.scenario-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  border-color: rgba(22, 119, 255, 0.3);
}

.scenario-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.scenario-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-md);
  margin: 0;
}

/* 技术架构 */
.technical-architecture {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.technical-architecture h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.technical-architecture h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.technical-architecture p {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-lg);
  margin-bottom: var(--spacing-md);
}

.technical-architecture ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technical-architecture li {
  padding: var(--spacing-sm) 0;
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-md);
  position: relative;
  padding-left: var(--spacing-lg);
}

.technical-architecture li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

/* 代理服务套餐 */
.proxy-service-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.proxy-service-section h2 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.proxy-service-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.proxy-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.proxy-service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid rgba(22, 119, 255, 0.2);
  border-radius: 0;
  padding: var(--spacing-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.proxy-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.proxy-service-header {
  margin-bottom: var(--spacing-md);
}

.proxy-service-header h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.proxy-service-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-xs);
}

.price-amount {
  font-size: var(--font-size-xxxl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.price-unit {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
}

.proxy-service-description {
  margin-top: var(--spacing-md);
}

.proxy-service-description p {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-md);
  margin: 0;
}

/* 产品内容区域 */
.product-content {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(22, 119, 255, 0.15);
  border-radius: 0;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.product-content h2,
.product-content h3 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.product-content p {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: var(--line-height-lg);
  margin-bottom: var(--spacing-md);
}

/* 响应式设计 */
@media (max-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: var(--font-size-xxl);
  }
  
  .page-header p {
    font-size: var(--font-size-md);
  }
  
  .content-wrapper {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }
  
  .product-card {
    padding: var(--spacing-lg);
  }
  
  .product-icon {
    width: 100px;
    height: 100px;
  }
  
  .product-title {
    font-size: var(--font-size-lg);
  }
  
  .product-description {
    font-size: var(--font-size-sm);
    min-height: 50px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-actions .btn {
    width: 100%;
    min-width: auto;
  }
  
  .products-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
  }
  
  .stat-number {
    font-size: var(--font-size-xxl);
  }
  
  .stat-label {
    font-size: var(--font-size-sm);
  }
  
  .product-features {
    padding: var(--spacing-lg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .feature-item {
    padding: var(--spacing-sm);
  }
  
  .pricing-table {
    font-size: var(--font-size-xs);
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: var(--spacing-xs);
  }
  
  .faq-question {
    padding: var(--spacing-md);
    font-size: var(--font-size-sm);
  }
  
  .faq-answer {
    padding: var(--spacing-md);
    font-size: var(--font-size-xs);
  }

  .product-advantages,
  .application-scenarios,
  .technical-architecture,
  .proxy-service-section {
    padding: var(--spacing-lg);
  }

  .scenarios-grid,
  .proxy-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: var(--spacing-xl) 0;
  }
  
  .page-header h1 {
    font-size: var(--font-size-xl);
  }
  
  .content-wrapper {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .product-card {
    padding: var(--spacing-md);
  }
  
  .product-icon {
    width: 80px;
    height: 80px;
  }
  
  .product-title {
    font-size: var(--font-size-md);
  }
  
  .product-description {
    font-size: var(--font-size-xs);
    min-height: 40px;
  }
  
  .products-stats {
    grid-template-columns: 1fr;
    padding: var(--spacing-md);
  }
  
  .stat-number {
    font-size: var(--font-size-xl);
  }
  
  .product-features {
    padding: var(--spacing-md);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    align-self: center;
  }
  
  .pricing-table {
    min-width: 600px;
  }
  
  .pricing-notes {
    padding: var(--spacing-md);
  }
  
  .faq-question {
    padding: var(--spacing-sm);
    font-size: var(--font-size-xs);
  }
  
  .faq-answer {
    padding: var(--spacing-sm);
    font-size: var(--font-size-xs);
  }

  .product-advantages,
  .application-scenarios,
  .technical-architecture,
  .proxy-service-section {
    padding: var(--spacing-md);
  }

  .scenarios-grid,
  .proxy-service-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .price-amount {
    font-size: var(--font-size-xxl);
  }
}
