/* Comparison Page Specific Styles */

/* Hero */
.comparison-hero {
  background: linear-gradient(135deg, #2a1a4d 0%, #1a0f2e 100%);
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

.comparison-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.comparison-hero .hero-subtitle {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

/* Comparison Sections */
.comparison-sections {
  padding: 4rem 0;
  background: #f8f9fa;
}

.comparison-block {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-block:last-child {
  margin-bottom: 0;
}

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

.comparison-header h2 {
  font-size: 2.25rem;
  color: #2a1a4d;
  margin-bottom: 0.5rem;
}

.comparison-tagline {
  font-size: 1.1rem;
  color: #6c757d;
  font-style: italic;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.comparison-column {
  border-radius: 8px;
  overflow: hidden;
}

.column-header {
  padding: 1.5rem;
  text-align: center;
}

.column-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.competitor-column .column-header {
  background: #6c757d;
}

.csurface-column .column-header {
  background: linear-gradient(135deg, #36d0ea 0%, #2a9fb8 100%);
}

.column-content {
  padding: 2rem;
  background: #f8f9fa;
  min-height: 400px;
}

.column-content h4 {
  font-size: 1.15rem;
  color: #2a1a4d;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.column-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-content ul li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

.competitor-column .column-content ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
}

.csurface-column .column-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.citation {
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
  margin-top: 1.5rem;
}

/* Metrics Section */
.metrics-section {
  padding: 4rem 0;
  background: white;
}

.metrics-section h2 {
  font-size: 2.5rem;
  color: #2a1a4d;
  text-align: center;
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #36d0ea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(54, 208, 234, 0.3);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: #36d0ea;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.1rem;
  color: #2a1a4d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metric-comparison {
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-hero {
    padding: 4rem 0 2rem;
  }

  .comparison-hero h1 {
    font-size: 2rem;
  }

  .comparison-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .comparison-block {
    padding: 2rem 1.5rem;
  }

  .comparison-header h2 {
    font-size: 1.75rem;
  }

  .column-content {
    min-height: auto;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .comparison-hero h1 {
    font-size: 1.75rem;
  }

  .comparison-hero .hero-subtitle {
    font-size: 1rem;
  }

  .comparison-block {
    padding: 1.5rem 1rem;
  }

  .column-content {
    padding: 1.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }
}
