/* Chat Widget Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: .7
    }
}

#chatPanel {
    animation: chatSlideIn .3s ease-out;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

#chatInput:focus {
    border-color: #ff6b35 !important;
}

/* Dynamic Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.15s;
}

.reveal.delay-2 {
    transition-delay: 0.3s;
}

.reveal.delay-3 {
    transition-delay: 0.45s;
}

.reveal.delay-4 {
    transition-delay: 0.6s;
}

/* Parallax orbs */
.orb {
    transition: transform 0.3s ease-out;
}

/* Stagger cards on scroll */
.pricing-card,
.problem-card,
.metric-card,
.testi-card,
.step {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.visible,
.problem-card.visible,
.metric-card.visible,
.testi-card.visible,
.step.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Footer compact */
.footer__links {
    gap: 2rem !important;
}

.footer__col {
    min-width: auto !important;
}

.footer__col h4 {
    margin-bottom: 0.5rem !important;
    font-size: 0.85rem !important;
}

.footer__col a {
    font-size: 0.85rem !important;
    padding: 2px 0 !important;
}

.footer__top {
    gap: 2rem !important;
}

.footer__brand p {
    max-width: 280px;
    font-size: 0.85rem !important;
}