.transition-smooth {
    transition: all 0.3s ease;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Pricing card tilt and cursor-following shadow */
.pricing-card {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
    perspective: 800px;
}

.pricing-card .card-inner {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

.dark .pricing-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.dark .pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.4);
}
