.fixed-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.fixed-cta .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 5px;
}

.subliminal-flash-intense {
    animation: subliminal-flash 0.1s ease;
}

@keyframes subliminal-flash {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
