.comparison-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.competitor-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  background: #14162b;
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active {
  background: linear-gradient(135deg, #ff6f3c, #ff2e88, #7b4dff);
  box-shadow: 0 0 16px rgba(255,110,200,.5);
}

.comparison-story {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.compare-card {
  background: rgba(255,255,255,.04);
  padding: 2rem;
  border-radius: 20px;
}

.compare-card.glow {
  box-shadow: 0 0 40px rgba(255,110,200,.4);
  border: 1px solid rgba(255,110,200,.5);
}

.price-note {
  margin-top: 1rem;
  font-weight: 600;
  color: #ff66cc;
}

.comparison-explain {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th, 
.compare-table td {
  padding: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.compare-table .rhy {
  color: #2ecc71;
  font-weight: 600;
}

.final-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.comparison-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.visible {
  opacity: 1;
  transform: none;
}

@media(max-width: 900px) {
  .compare-cards {
    grid-template-columns: 1fr;
  }
}
