/* Pricing Section */
.pricing {
  padding: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
  border-color: #4A90E2;
  transform: scale(1.05);
}

.pricing-card-popular:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #2C3E50;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0.75rem 0 0.25rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4A90E2;
  margin-top: 0.4rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1;
}

.pricing-period {
  color: #7F8C8D;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.pricing-save {
  color: #27AE60;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  min-height: 180px;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: #34495E;
  font-size: 0.95rem;
  border-bottom: 1px solid #ECF0F1;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .pricing-card-popular {
    transform: scale(1);
  }
  
  .pricing-card-popular:hover {
    transform: translateY(-5px);
  }
  
  .pricing-badge {
    white-space: normal;
    line-height: 1.3;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    top: -20px;
  }
}