@media (max-width: 1000px) {

    #header-middle-menu a {

        font-size: 8px;
    }

}

.main-form-header {
    font-size: x-large !important;
    margin-top: 82px;
}

.logo-image {

    border-radius: 10px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes typing {

    0%,
    100% {
        width: 0;
    }

    50% {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #075E54;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-ring {
    animation: pulse-ring 2s ease-out infinite;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.glow-green {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.15), 0 0 80px rgba(37, 211, 102, 0.05);
}

.gradient-border {
    position: relative;
    background: white;
    border-radius: 16px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, #25D366, #075E54, #25D366);
    z-index: -1;
    opacity: 0.3;
}

.phone-frame {
    background: #0a0a0a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px #1a1a1a;
}

.phone-screen {
    background: #ECE5DD;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.chat-bubble-boss {
    background: #DCF8C6;
    border-radius: 8px 2px 8px 8px;
}

.chat-bubble-agent {
    background: white;
    border-radius: 2px 8px 8px 8px;
}

.step-line {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #25D366 50%, #e5e7eb 50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .step-line {
        top: 20px;
        left: 20px;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #25D366 50%, #e5e7eb 50%);
    }
}

.mouse-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(139, 253, 181, 0.918) 0%, rgba(37, 211, 102, 0) 70%);
    width: 38px;
    height: 38px;
    opacity: .11;
    transform: translate(-50%, -50%) scale(0.5);
    animation: ripple-fade 1s ease-out forwards;
    z-index: 9999;
    mix-blend-mode: multiply;
}

@keyframes ripple-fade {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}