/* ============================================
   Comparison Section
   ============================================ */

.comparison-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.comparison-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1.25fr 1.25fr;
  border-bottom: 1px solid var(--border);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row.header {
  background: var(--bg-elevated);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text3);
}

.comp-row.header .comp-cell {
  padding: 20px 24px;
}

.comp-cell {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.comp-cell:first-child {
  color: var(--text2);
  font-weight: 500;
}

.comp-cell.highlight {
  color: var(--primary-light);
  background: rgba(99, 102, 241, 0.05);
}

.comp-cell .check {
  color: var(--success);
  font-weight: 700;
  font-size: 18px;
}

.comp-cell .cross {
  color: var(--error);
  font-size: 18px;
}

.comp-cell .partial {
  color: var(--warning);
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }
  
  .comp-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .comp-cell {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  .comp-row.header .comp-cell {
    padding: 16px;
    font-size: 12px;
  }
}