/**
 * meWork.html — pricing and FAQ interactions.
 */
.product-card .card-title {
  transition: color 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--me360-teal);
}


@keyframes float-mework {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.animate-float {
  animation: float-mework 6s ease-in-out infinite;
}
