/* Custom Glassmorphism & Utilities */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(8, 145, 178, 0.1) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(8, 145, 178, 0.05) 0%, transparent 40%);
}

.text-gradient {
    background: linear-gradient(135deg, #030712 0%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(8, 145, 178, 0.4);
}

.mockup-shadow {
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
}

/* CRM Page */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.glow-cyan {
    box-shadow: 0 0 60px rgba(8, 145, 178, 0.15);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.2);
}

.animate-spin-reverse {
    animation: spin-reverse 20s linear infinite;
}

@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Blog Hero Animations */
.hero-orb-1 {
    animation: orb-float-1 8s ease-in-out infinite;
}
.hero-orb-2 {
    animation: orb-float-2 10s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 20px) scale(0.9); }
    66% { transform: translate(15px, -25px) scale(1.1); }
}

.hero-text-drift {
    animation: text-drift 12s ease-in-out infinite both;
}
.hero-text-drift-reverse {
    animation: text-drift-reverse 15s ease-in-out infinite both;
}

@keyframes text-drift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(var(--tw-rotate, 0deg)); opacity: var(--base-opacity, 0.1); }
    33% { transform: translateX(10px) translateY(-6px) rotate(var(--tw-rotate, 0deg)); opacity: calc(var(--base-opacity, 0.1) * 1.3); }
    66% { transform: translateX(-4px) translateY(4px) rotate(var(--tw-rotate, 0deg)); opacity: calc(var(--base-opacity, 0.1) * 0.85); }
}
@keyframes text-drift-reverse {
    0%, 100% { transform: translateX(0) translateY(0) rotate(var(--tw-rotate, 0deg)); opacity: var(--base-opacity, 0.1); }
    33% { transform: translateX(-8px) translateY(5px) rotate(var(--tw-rotate, 0deg)); opacity: calc(var(--base-opacity, 0.1) * 0.75); }
    66% { transform: translateX(6px) translateY(-4px) rotate(var(--tw-rotate, 0deg)); opacity: calc(var(--base-opacity, 0.1) * 1.2); }
}
