.pricing-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
  border: 3px solid #667eea;
  transform: scale(1.05);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}
.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
}
.price-period {
  color: #6c757d;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list .fa-check {
  color: #28a745;
  margin-right: 10px;
}
.savings-highlight {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}
.channel-section {
  background: #f8f9fa;
  padding: 80px 0;
}
.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.badge-featured {
  background: #667eea;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white;
  padding: 60px 0;
}
