.footer-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: footer-ripple 0.6s linear;
  pointer-events: none;
}

@keyframes footer-ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.offcanvas-end {
  width: 400px;
  background: linear-gradient(135deg, #323262 0%, #254080 25%, #3250a0 50%, #254080 75%, #323262 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1px solid #667eea;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  color: #00ff88;
  margin-right: 0.5rem;
  font-weight: bold;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Sticky footer */

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #666;
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  padding: 0.66rem 0;
  opacity: 90%;
}

.sticky-footer .container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sticky-footer .container {
    gap: 0.5rem;
  }
  
  .footer-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .footer-link i {
    margin-right: 0.3rem !important;
  }
}

