/* Pricing Tables */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-table {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 20px;
  flex: 1;
  min-width: 280px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #f2c632;
}

.plan-icon {
  margin-right: 10px;
  font-size: 20px;
}

.plan-price {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: -8px;
}

.plan-billing {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 25px;
}

.plan-features li {
  padding: 2px 0;
  position: relative;
  padding-left: 25px;
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ee7b7;
}

.signup-button {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
  font-size: 20px;
  letter-spacing: 1.1px;
}

.signup-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.featured {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.featured .signup-button {
  background: #ffffff;
  color: #042878;
}

.featured .signup-button:hover {
  background: #042878;
  color: #ffffff;
  border-color: #042878;
}

.badge-zap {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
}

.badge-zana {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #042878;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
}