/* Comparison Table Styles */
.comp-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comp-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.comp-header p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.comp-winner {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comp-table th {
  padding: 1.2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.2);
}

.comp-table th:first-child {
  text-align: left;
  padding-left: 1.5rem;
  min-width: 180px;
}

.comp-table th.highlight {
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(108,63,201,0.12));
  color: var(--cyan-light);
  position: relative;
}

.comp-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comp-table td:first-child {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.comp-table td.highlight {
  background: rgba(6,182,212,0.04);
  color: var(--text-primary);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.comp-table tr:hover td.highlight {
  background: rgba(6,182,212,0.07);
}

.comp-check {
  color: var(--green-light);
  font-weight: 700;
}

.comp-cross {
  color: var(--red);
  opacity: 0.6;
}

.comp-price-row td {
  padding: 1.2rem 1rem;
  font-size: 0.95rem;
}

.comp-price-row td.highlight .comp-final-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  line-height: 1.2;
}

.comp-intro-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

.comp-renews {
  color: var(--red);
  font-weight: 500;
}

.comp-cta-cell {
  padding: 1.5rem 1rem;
  text-align: center;
}

.comp-cta-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  color: #fff;
}

.comp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6,182,212,0.3);
}

.comp-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-footer-note a {
  color: var(--cyan-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .comp-section {
    padding: 2rem 1rem;
  }
  .comp-header h2 {
    font-size: 1.5rem;
  }
  .comp-table td, .comp-table th {
    padding: 0.7rem 0.6rem;
    font-size: 0.82rem;
  }
  .comp-table td:first-child, .comp-table th:first-child {
    padding-left: 0.8rem;
    min-width: 120px;
    font-size: 0.78rem;
  }
  .comp-price-row td.highlight .comp-final-price {
    font-size: 1.2rem;
  }
}
