/* =====================================================
   MODERN COMPARISON SECTION STYLES
   ===================================================== */

.comparison-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.comparison-section-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 119, 190, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-section-modern::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Modern Header */
.comparison-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-badge {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.comparison-title-modern {
  font-size: 48px;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.title-gradient {
  background: linear-gradient(90deg, #0077BE, #4A90E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-subtitle {
  font-size: 18px;
  color: #5a6c7d;
  font-weight: 500;
}

/* Comparison Cards Grid */
.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Card Styles */
.comparison-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.comparison-card.our-service {
  border: 3px solid #28a745;
  background: linear-gradient(180deg, #ffffff 0%, #f0fff4 100%);
}

.comparison-card.competitors {
  border: 2px solid #e9ecef;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

/* Crown for Winner */
.card-crown {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.crown-text {
  position: absolute;
  font-size: 12px;
  font-weight: 900;
  color: #2c3e50;
}

.card-header-comp {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.competitor-icon {
  font-size: 32px;
}

.card-title-comp {
  font-size: 28px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  margin-top: 20px;
}

.comparison-card.our-service .card-title-comp {
  color: #28a745;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f8ff;
}

.rating-stars span:first-child {
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 14px;
  color: #5a6c7d;
  font-weight: 600;
}

/* Features List */
.features-list-modern {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item-modern:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.feature-item-modern.highlight {
  background: linear-gradient(90deg, #f0fff4 0%, #e8f7ed 100%);
  border: 2px solid #28a745;
  padding: 11px;
}

.feature-item-modern.negative {
  opacity: 0.8;
}

.feature-item-modern.warning {
  opacity: 0.7;
}

/* Feature Icons */
.feature-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.feature-icon-wrap.success {
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.feature-icon-wrap.fail {
  background: linear-gradient(135deg, #dc3545, #c82333);
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.feature-icon-wrap.maybe {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
  color: white;
  font-size: 16px;
}

/* Feature Content */
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-content strong {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
}

.feature-content span {
  font-size: 13px;
  color: #5a6c7d;
}

.feature-item-modern.negative .feature-content strong {
  color: #dc3545;
  text-decoration: line-through;
  opacity: 0.8;
}

/* CTA Buttons */
.card-bottom-cta {
  margin-top: 30px;
}

.choose-us-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.choose-us-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.choose-us-btn:hover::before {
  left: 100%;
}

.choose-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

/* Warning Bottom */
.card-bottom-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, #fff5f5, #ffe0e0);
  border: 2px solid #ffcdd2;
  border-radius: 12px;
  margin-top: 30px;
  color: #dc3545;
  font-weight: 600;
}

/* Bottom Stats */
.comparison-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #5a6c7d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #e9ecef, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-cards-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .comparison-card.our-service {
    order: 1;
  }
  
  .comparison-card.competitors {
    order: 2;
  }
}

@media (max-width: 768px) {
  .comparison-title-modern {
    font-size: 32px;
  }
  
  .comparison-card {
    padding: 30px 20px;
  }
  
  .card-title-comp {
    font-size: 24px;
  }
  
  .comparison-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .feature-content strong {
    font-size: 14px;
  }
  
  .feature-content span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .comparison-section-modern {
    padding: 60px 0;
  }
  
  .comparison-header-modern {
    margin-bottom: 40px;
  }
  
  .comparison-title-modern {
    font-size: 26px;
  }
  
  .comparison-subtitle {
    font-size: 16px;
  }
  
  .comparison-badge {
    font-size: 11px;
    padding: 6px 18px;
  }
  
  .feature-item-modern {
    padding: 10px;
  }
  
  .features-list-modern {
    gap: 10px;
  }
  
  .choose-us-btn {
    padding: 15px;
    font-size: 15px;
  }
}