/* Compare Page Styles */

/* Hero Section */
.sol-hero { padding: 60px 0 80px; text-align: center; }
.sol-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1200px, 95vw);
  height: 520px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 10%, rgba(124, 77, 255, 0.55), rgba(124,77,255,0.15) 60%, transparent 70%),
    radial-gradient(40% 40% at 70% 0%, rgba(0, 229, 255, 0.25), transparent 60%),
    radial-gradient(35% 35% at 30% 0%, rgba(255, 64, 129, 0.28), transparent 60%);
  filter: blur(20px);
}
.sol-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.sol-hero p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.sol-hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

.at-glance-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #4a2c8a 100%);
  text-align: center;
}

.at-glance-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
}

.comparison-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 1200px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.comparison-table th {
  background: #3918A7;
  color: white;
  font-weight: 600;
}

.comparison-table td i {
  margin-right: 10px;
}

.fa-check-circle {
  color: #4CAF50;
}

.fa-times-circle {
  color: #f44336;
}

.sol-cta {
  background: #3918A7;
  border-radius: 32px;
  box-shadow: 0 0 40px 0 #2d186a44;
  margin: 64px auto 0 auto;
  max-width: 1100px;
  padding: 56px 32px 64px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.sol-cta svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sol-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sol-cta h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.sol-cta p {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 36px;
}

.sol-cta .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: relative;
}

.sol-cta a {
  background: linear-gradient(90deg, #7b5cff 0%, #ff4fcf 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 32px;
  padding: 18px 36px;
  box-shadow: 0 2px 12px 0 #0001;
  margin-left: 8px;
  transition: box-shadow .2s;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 15px;
  }
  
  .cta-banner {
    padding: 30px 15px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Comparison and Rating Section */
.comparison-rating-section {
  background: radial-gradient(1200px 600px at 20% 0%, rgba(130, 71, 229, 0.35) 0%, rgba(130, 71, 229, 0) 40%),
              radial-gradient(900px 500px at 80% 0%, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 35%),
              linear-gradient(135deg, #2d1b69 0%, #4a2c7a 100%);
  padding: 80px 20px;
  text-align: center;
}

.comparison-rating-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-image,
.rating-image {
  width: 100%;
  /* max-width: 800px; */
  height: auto;
  display: block;
  margin: 0 auto;
}

.image-gap {
  height: 40px; /* Gap between images */
}

/* Performance Metrics Section */
.performance-metrics-section {
  background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #4a2c8a 100%);
  padding: 80px 20px;
  color: white;
}

.metrics-content {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-header {
  margin-bottom: 50px;
}

.metrics-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}

.metrics-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.key-insights {
  text-align: left;
}

.insights-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.insight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.insight-icon.green {
  color: #4CAF50;
}

.insight-icon.purple {
  color: #9C27B0;
}

.insight-icon.blue {
  color: #2196F3;
}

.insight-icon.gold {
  color: #FFC107;
}

.sources-section {
  text-align: left;
}

.sources-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: white;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.source-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.source-icon {
  color: #4CAF50;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.source-link {
  color: #64B5F6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.source-link:hover {
  color: #90CAF9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .metrics-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-title {
    font-size: 2rem;
  }
  
  .insights-title,
  .sources-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .performance-metrics-section {
    padding: 60px 15px;
  }
  
  .metrics-title {
    font-size: 1.8rem;
  }
  
  .insights-title,
  .sources-title {
    font-size: 1.2rem;
  }
  
  .insight-item,
  .source-item {
    font-size: 0.9rem;
  }
}