/* ==========================================
   上海合胜计算机科技股份有限公司 - 产品页面图标SVG
   ========================================== */

.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

/* Product detail section */
.product-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.product-detail-section:last-child {
  border-bottom: none;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-detail.reverse {
  direction: rtl;
}

.product-detail.reverse > * {
  direction: ltr;
}

.product-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual .visual-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.product-visual .icon-large {
  font-size: 6rem;
  opacity: 0.15;
  position: absolute;
}

.product-visual .dashboard-mock {
  width: 80%;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  position: relative;
  z-index: 1;
}

.dashboard-mock .mock-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.dashboard-mock .mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.dashboard-mock .mock-dot:first-child { background: #FF4757; }
.dashboard-mock .mock-dot:nth-child(2) { background: #FF9F43; }
.dashboard-mock .mock-dot:nth-child(3) { background: #2ED573; }

.dashboard-mock .mock-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard-mock .mock-chart {
  height: 40px;
  border-radius: 4px;
  background: var(--gray-100);
}

.dashboard-mock .mock-bar {
  height: 60px;
  border-radius: 4px;
  background: linear-gradient(to top, var(--primary), rgba(10,110,255,0.3));
  grid-column: span 2;
}

.dashboard-mock .mock-line {
  height: 50px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0,212,170,0.2), rgba(0,212,170,0.05));
  grid-column: span 3;
}

.product-info h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.product-info p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li .check {
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Product nav tabs */
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.product-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.product-tab:hover,
.product-tab.active {
  background: var(--primary);
  color: var(--white);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-section .btn {
  margin: 0 8px;
}
