* {
    font-family: 'Comfortaa', sans-serif;
    scroll-behavior: smooth;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.98));
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 40;
    padding: 8rem 2rem 0 2rem;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-links a {
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu-links a:hover {
    color: #c084fc;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #c084fc;
}

.gradient-bg {
    background: linear-gradient(135deg, #6136f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.glass {
    backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
    animation: fadeIn 2s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(97, 54, 241, 0.5); }
    50% { box-shadow: 0 0 40px rgba(97, 54, 241, 0.8), 0 0 60px rgba(97, 54, 241, 0.4); }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.parallax {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(97, 54, 241, 0.3);
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #6136f1, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(97, 54, 241, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(97, 54, 241, 0.4);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-text {
    color: #1f2937 !important;
}

.navbar.scrolled .logo-icon {
    color: #6136f1 !important;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.chat-message {
    margin: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 85%;
    opacity: 0;
    transform: translateY(20px);
}

.user-message {
    background: #6136f1;
    margin-left: auto;
    margin-right: 12px;
    color: white;
    animation: messageSlide 0.5s ease-out forwards;
}

.ai-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    margin-left: 12px;
    animation: messageSlide 0.5s ease-out forwards;
    animation-delay: var(--message-delay, 0s);
}

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 16px;
    color: #9ca3af;
}

.typing-dots {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6b7280;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes messageSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-message:nth-child(1) { --message-delay: 0.5s; }
.chat-message:nth-child(2) { --message-delay: 1s; }
.chat-message:nth-child(3) { --message-delay: 1.5s; }
.chat-message:nth-child(4) { --message-delay: 2s; }
.chat-message:nth-child(5) { --message-delay: 2.5s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: scale(0.8); opacity: 0.5; }
    30% { transform: scale(1); opacity: 1; }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: scale(0.7) translateY(50px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.stats-counter {
    font-size: 3rem;
    font-weight: bold;
    color: #6136f1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stats-counter.animated {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(135deg, #6136f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-title span {
    display: block;
    font-size: 0.6em;
    background: linear-gradient(135deg, #ec4899, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

.integration-coming {
    background: linear-gradient(45deg, #374151, #4b5563);
    border: 2px dashed rgba(156, 163, 175, 0.3);
}

.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #6136f1, transparent);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

#notifications {
    z-index: 1001;
}

.notification {
    opacity: 0;
    transform: translateX(100%);
}