/* Custom Emoji Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    font-size: 16px;
    pointer-events: none;
    z-index: 99999;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
    transform: translate(-50%, -50%);
    will-change: transform;
}
.custom-cursor.pointer-mode {
    font-size: 20px;
}

/* Desktop only */
@media (pointer: fine) {
    body {
        cursor: none !important;
    }
    a, button, .btn, [onclick], .pricing-card, .payment-option, .nav-link, .accordion-button, .form-check-input, .feature-card, .step-card, .payment-badge {
        cursor: none !important;
    }
}

/* Mobile/touch — no custom cursor */
@media (pointer: coarse) {
    .custom-cursor { display: none !important; }
}