/* ===== Pro Page Styles ===== */

/* Base container width */
.tengzhi-section-pad {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
}

/* Hero Banner */
.tengzhi-pro-hero {
  background: linear-gradient(135deg, #78C950 0%, #5ab840 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tengzhi-pro-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.tengzhi-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.tengzhi-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.tengzhi-hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  line-height: 1.6;
}

.tengzhi-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.tengzhi-stat-item {
  text-align: center;
}

.tengzhi-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.tengzhi-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

/* Section Header */
.tengzhi-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tengzhi-section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(120,201,80,0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tengzhi-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.tengzhi-section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Product Versions (管简单/客多多) */
.tengzhi-product-versions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.tengzhi-version-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
}

.tengzhi-version-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tengzhi-version-featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(120,201,80,0.05), rgba(90,184,64,0.05));
}

.tengzhi-version-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tengzhi-badge-standard {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.tengzhi-badge-enterprise {
  background: linear-gradient(135deg, var(--primary-color), #5ab840);
}

.tengzhi-badge-overseas {
  background: linear-gradient(135deg, #FFD85A, #ffed4a);
  color: #333;
}

.tengzhi-version-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(120,201,80,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.tengzhi-version-icon svg {
  width: 32px;
  height: 32px;
}

.tengzhi-version-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.tengzhi-version-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tengzhi-version-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.tengzhi-version-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tengzhi-version-features li:last-child {
  border-bottom: none;
}

.tengzhi-version-features li i {
  position: absolute;
  left: 0;
  color: var(--primary-color);
  width: 20px;
  height: 20px;
}

.tengzhi-version-price {
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

.tengzhi-price-label {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tengzhi-price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 4px;
}

.tengzhi-price-unit {
  font-size: 14px;
  color: var(--text-light);
}

.tengzhi-version-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tengzhi-version-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.tengzhi-btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.tengzhi-btn-primary:hover {
  background: #5ab840;
  border-color: #5ab840;
}

/* Industry Products Grid */
.tengzhi-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.tengzhi-industry-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.tengzhi-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tengzhi-industry-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.tengzhi-industry-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tengzhi-industry-main-icon {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

.tengzhi-industry-content {
  padding: 32px;
}

.tengzhi-industry-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(120,201,80,0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tengzhi-industry-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.tengzhi-industry-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tengzhi-industry-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.tengzhi-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(120,201,80,0.05);
  border-radius: 8px;
}

.tengzhi-highlight-item i {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.tengzhi-highlight-item span {
  font-size: 14px;
  color: var(--text-dark);
}

.tengzhi-industry-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tengzhi-industry-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Workshop Grid */
.tengzhi-workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.tengzhi-workshop-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.tengzhi-workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tengzhi-workshop-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), #5ab840);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.tengzhi-workshop-icon svg {
  width: 32px;
  height: 32px;
}

.tengzhi-workshop-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.tengzhi-workshop-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

.tengzhi-workshop-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.tengzhi-wf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(120,201,80,0.05);
  border-radius: 8px;
}

.tengzhi-wf-item i {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.tengzhi-wf-item span {
  font-size: 13px;
  color: var(--text-dark);
}

.tengzhi-workshop-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tengzhi-workshop-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Custom Service Grid */
.tengzhi-custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.tengzhi-custom-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.tengzhi-custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tengzhi-custom-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tengzhi-custom-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), #5ab840);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.tengzhi-custom-icon svg {
  width: 28px;
  height: 28px;
}

.tengzhi-custom-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.tengzhi-custom-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tengzhi-custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.tengzhi-custom-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tengzhi-custom-list li:last-child {
  border-bottom: none;
}

.tengzhi-custom-list li i {
  position: absolute;
  left: 0;
  color: var(--primary-color);
  width: 18px;
  height: 18px;
}

.tengzhi-custom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(0,0,0,0.05);
}

.tengzhi-custom-tag {
  padding: 6px 14px;
  background: rgba(120,201,80,0.1);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.tengzhi-custom-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tengzhi-custom-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* CTA Section */
.tengzhi-section-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 60px;
  text-align: center;
}

.tengzhi-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.tengzhi-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.tengzhi-cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.tengzhi-cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.tengzhi-cta-btn-primary,
.tengzhi-cta-btn-secondary {
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tengzhi-cta-btn-primary {
  background: var(--accent-color);
  color: #333;
}

.tengzhi-cta-btn-primary:hover {
  background: #ffed4a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,216,90,0.4);
}

.tengzhi-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.tengzhi-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tengzhi-section-pad {
    padding: 60px 40px;
  }
  
  .tengzhi-pro-hero {
    padding: 80px 40px;
  }
  
  .tengzhi-product-versions,
  .tengzhi-industry-grid,
  .tengzhi-workshop-grid,
  .tengzhi-custom-grid {
    grid-template-columns: 1fr;
  }
  
  .tengzhi-hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .tengzhi-section-pad {
    padding: 40px 20px;
  }
  
  .tengzhi-pro-hero {
    padding: 60px 20px;
    min-height: 350px;
  }
  
  .tengzhi-hero-title {
    font-size: 32px;
  }
  
  .tengzhi-hero-subtitle {
    font-size: 16px;
  }
  
  .tengzhi-hero-stats {
    gap: 30px;
  }
  
  .tengzhi-stat-number {
    font-size: 36px;
  }
  
  .tengzhi-section-title {
    font-size: 28px;
  }
  
  .tengzhi-version-card,
  .tengzhi-workshop-card,
  .tengzhi-custom-card {
    padding: 28px;
  }
  
  .tengzhi-version-name,
  .tengzhi-workshop-title,
  .tengzhi-custom-title {
    font-size: 20px;
  }
  
  .tengzhi-price-value {
    font-size: 28px;
  }
  
  .tengzhi-workshop-features {
    grid-template-columns: 1fr;
  }
  
  .tengzhi-cta-title {
    font-size: 28px;
  }
  
  .tengzhi-cta-btn-group {
    flex-direction: column;
  }
  
  .tengzhi-cta-btn-primary,
  .tengzhi-cta-btn-secondary {
    width: 100%;
  }
}
