/* Fade-In and Slide-Up */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Perspectiva Mockups */
.mockup-perspective {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.mockup-card {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    animation: floating 4s ease-in-out infinite;
}

.mockup-card:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Marquee for Social Proof Bar */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Background Glowing Blobs */
.glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
    animation: drift 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(-40px, -20px) scale(1.05); }
}

/* KPI Counter Animation */
.counter {
    display: inline-block;
}

/* Hover Shine Effect for Pricing Cards */
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.05) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}
