* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fe0000;
    --secondary-color: #3db021;
    --neon-green: #ff0000;
    --neon-orange: #ff6600;
    --bright-orange: #ff8800;
    --black-bg: #000000;
    --pure-black: #ffffff;
    --card-bg: rgba(239, 209, 209, 0.95);
    --text-primary:#fe0000;
    --text-secondary: #000000;

    --gradient-primary: linear-gradient(135deg, #fe0000 0%, #2dee14 100%);
    --gradient-green: linear-gradient(135deg, #fe0000 0%, #44cd88 100%);
    --gradient-orange: linear-gradient(135deg, #fe0000 0%, #36c519 100%);

    /* FIXED */
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-orange: 0 0 20px rgba(117, 38, 13, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Interactive grid background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-black);
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: gridMove 20s linear infinite;
}

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 102, 0, 0.7);
            border-radius: 50%;
            animation: float-particle 15s linear infinite;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Animated background with particles */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--pure-black);
            z-index: -1;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-20px) translateY(-10px); }
            50% { transform: translateX(20px) translateY(10px); }
            75% { transform: translateX(-10px) translateY(20px); }
        }

        /* Glass morphism effect */
        .glass {
            background: var(--pure-black);
            backdrop-filter: blur(10px);
            border: 1px solid var(--primary-color);
            border-radius: 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: var(--pure-black);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--primary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(var(--glow-orange));
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow-green);
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color:black;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Buttons with enhanced effects */
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::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:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, #fe0000, #2aff00);
            color: var(--pure-black);
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
        }

        .btn-secondary {
            background: var(--pure-black);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--pure-black);
            box-shadow: var(--glow-green);
        }

        /* Hero Section with enhanced animations */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #fe0000, #bc3d3d, #fe0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* Floating tech icons */
        .tech-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .tech-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: techFloat 8s ease-in-out infinite;
        }

        .tech-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .tech-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
        .tech-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
        .tech-icon:nth-child(4) { top: 40%; right: 25%; animation-delay: 6s; }

        @keyframes techFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* How It Works - Enhanced Timeline Design */
        .steps-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step-row {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 6rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .step-row.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-row.reverse {
            flex-direction: row-reverse;
        }

        .step-content {
            flex: 1;
            padding: 2rem;
        }

        .step-badge {
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .step-number {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(45deg, var(--secondary-color), var(--bright-orange));
            color: var(--pure-black);
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .step-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .step-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .step-features {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            padding: 0.5rem 1rem;
            background: var(--pure-black);
            border: 1px solid var(--primary-color);
            border-radius: 25px;
            font-size: 0.9rem;
            color: var(--text-primary);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--pure-black);
            transform: translateY(-2px);
            box-shadow: var(--glow-orange);
        }

        .step-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-container {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Enhanced QR Code Animation with SVG */
        .qr-animation {
            background: var(--pure-black);
            border-radius: 20px;
            border: 1px solid var(--primary-color);
            backdrop-filter: blur(10px);
            padding: 2rem;
            box-shadow: var(--glow-green);
        }

        .qr-svg {
            width: 120px;
            height: 120px;
            animation: qrGlow 2s ease-in-out infinite;
        }

        @keyframes qrGlow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5)); }
            50% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)); }
        }

        .phone-scanning {
            position: absolute;
            top: -40px;
            right: -40px;
            animation: phoneFloat 3s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0) rotate(-10deg); }
            50% { transform: translateY(-10px) rotate(10deg); }
        }

        .scan-waves {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: waveExpand 2s ease-out infinite;
        }

        .scan-waves::before,
        .scan-waves::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            animation: waveExpand 2s ease-out infinite;
        }

        .scan-waves::before {
            animation-delay: 0.5s;
        }

        .scan-waves::after {
            animation-delay: 1s;
        }

        @keyframes waveExpand {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Enhanced WhatsApp Chat Animation */
        .whatsapp-animation {
            background: var(--pure-black);
            border-radius: 20px;
            border: 1px solid var(--primary-color);
            backdrop-filter: blur(10px);
            padding: 1rem;
        }

        .whatsapp-chat {
            width: 250px;
            height: 200px;
            background: #128C7E;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .chat-header {
            background: #075E54;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 600;
        }

        .business-avatar {
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: avatarPulse 2s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .chat-messages {
            padding: 1rem;
            height: calc(100% - 60px);
            overflow: hidden;
        }

        .message {
            margin-bottom: 0.5rem;
            animation: messageSlideIn 0.5s ease-out;
        }

        .message.incoming .message-bubble {
            background: white;
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 15px 15px 15px 5px;
            display: inline-block;
            max-width: 80%;
            font-size: 0.8rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        @keyframes messageSlideIn {
            from {
                transform: translateX(-20px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Enhanced Interaction Flow Animation */
        .interaction-animation {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
        }

        .interaction-flow {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .action-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-primary);
            font-weight: 600;
            animation: cardFloat 3s ease-in-out infinite;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .action-card:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(0, 255, 136, 0.2);
            border-color: var(--neon-green);
        }

        .action-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        .action-card:nth-child(3) {
            animation-delay: 1s;
        }

        .card-icon {
            font-size: 1.5rem;
            animation: iconSpin 4s linear infinite;
        }

        @keyframes iconSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Enhanced Automation Dashboard Animation */
        .automation-animation {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem;
        }

        .automation-dashboard {
            width: 250px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .dashboard-header {
            text-align: center;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
            animation: headerGlow 3s ease-in-out infinite;
        }

        @keyframes headerGlow {
            0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
            50% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
        }

        .metrics {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .metric {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .metric:hover {
            background: rgba(0, 255, 136, 0.2);
            transform: scale(1.05);
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neon-green);
            animation: numberCount 2s ease-out;
        }

        .metric-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .activity-feed {
            font-size: 0.8rem;
        }

        .activity-item {
            padding: 0.25rem 0;
            color: var(--text-secondary);
            animation: activityPulse 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .activity-item:hover {
            color: var(--neon-green);
            transform: translateX(5px);
        }

        .activity-item:nth-child(2) {
            animation-delay: 1.5s;
        }

        @keyframes numberCount {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes activityPulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Enhanced Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--neon-green);
            box-shadow: var(--glow);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
        }

        /* Dashboard Section */
        .dashboard-preview {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .dashboard-mockup {
            width: 100%;
            max-width: 600px;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            margin: 2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .dashboard-mockup::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* FAQ */
        .faq-item {
            background: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--neon-green);
            transform: translateY(-2px);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--neon-green);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Demo Section */
        .demo-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        /* Root variables used in the phone mockup */


/* Phone Mockup Styles */
.phone-mockup {
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 5px #222,
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* WhatsApp Interface Styles */
.whatsapp-interface {
    width: 100%;
    height: 100%;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    position: relative;
}

.whatsapp-header {
    background: #075e54;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.9rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-arrow {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background 0.2s;
}

.back-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.business-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-avatar-large {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.business-info {
    display: flex;
    flex-direction: column;
}

.business-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.business-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
}

.header-actions span {
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background 0.2s;
}

.header-actions span:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-area {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4d4d4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.demo-message {
    margin-bottom: 0.75rem;
    animation: messageSlideIn 0.5s ease-out;
}

.demo-message.incoming {
    display: flex;
    justify-content: flex-start;
}

.demo-message.outgoing {
    display: flex;
    justify-content: flex-end;
}

.demo-message-bubble {
    max-width: 80%;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.demo-message.incoming .demo-message-bubble {
    background: white;
    color: #333;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.demo-message.outgoing .demo-message-bubble {
    background: #dcf8c6;
    color: #333;
    border-radius: 8px 0 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    text-align: right;
}

.demo-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.demo-option-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.demo-option-btn:hover {
    background: #20b358;
    transform: translateY(-1px);
}

.demo-option-btn:active {
    transform: translateY(0);
}

.chat-input-area {
    background: #f0f0f0;
    padding: 0.5rem;
    border-top: 1px solid #ddd;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
}

.input-container input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.85rem;
    background: transparent;
}

.send-btn {
    background: #25d366;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.send-btn:hover {
    background: #20b358;
}

.demo-start-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.demo-start-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgb(21, 255, 0);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: zoomPulse 1.5s infinite ease-in-out;
    z-index: 1;
}

.demo-start-btn:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.4), rgba(100, 100, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: gradientWave 1.2s ease-out;
    z-index: -1;
}

.demo-start-btn:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.3), rgba(100, 255, 100, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: gradientWave 1.5s ease-out 0.2s;
    z-index: -1;
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes gradientWave {
    0% {
        width: 0;
        height: 0;
        opacity: 0.7;
    }
    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 0 8px 8px 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dots {
    display: flex;
    gap: 2px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-frame {
        width: 200px;
        height: 400px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 180px;
        height: 360px;
        padding: 5px;
    }
 
}






        .demo-content {
            flex: 1;
        }

        /* Form */
        .contact-form {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 600px;
            margin: 3rem auto 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: black;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-green);
            box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #000000;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--primary-color);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-logo .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow-green);
        }

        .footer-logo .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: white;
            transition: all 0.3s ease;
        }

        
        .contact-item:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .contact-icon {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .contact-item a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--primary-color);
        }

        .footer-links-vertical {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links-vertical a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.25rem 0;
        }

        .footer-links-vertical a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #ffffff;
            margin: 0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background:#ff0000;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #000000;
            transform: translateY(-3px);
            box-shadow: var(--glow-green);
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 1rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--neon-green);
            border-radius: 10px;
            color: var(--text-primary);
            z-index: 1001;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .notification.show {
            transform: translateX(0);
            animation: notificationPulse 0.5s ease-out;
        }

        @keyframes notificationPulse {
            0% { transform: translateX(0) scale(0.8); }
            50% { transform: translateX(0) scale(1.05); }
            100% { transform: translateX(0) scale(1); }
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .step-row {
                gap: 3rem;
            }

            .visual-container {
                width: 280px;
                height: 280px;
            }

            section {
                padding: 4rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0.5rem 0;
            }

            .hero {
                padding: 0 1rem;
                min-height: 90vh;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .demo-container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .phone-frame {
                width: 200px;
                height: 400px;
            }

            .step-row {
                flex-direction: column !important;
                gap: 2rem;
                text-align: center;
                margin-bottom: 4rem;
            }

            .step-row.reverse {
                flex-direction: column !important;
            }

            .step-content {
                padding: 1rem;
            }

            .step-content h3 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .step-content p {
                font-size: 1rem;
            }

            .visual-container {
                width: 250px;
                height: 250px;
            }

            .whatsapp-chat {
                width: 220px;
                height: 180px;
            }

            .automation-dashboard {
                width: 220px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            section {
                padding: 3rem 1rem;
            }

            nav {
                padding: 0 1rem;
            }

            .contact-form {
                margin: 2rem auto 0;
                padding: 1.5rem;
            }

            .dashboard-mockup {
                height: 200px;
                font-size: 1.2rem;
            }

            /* Footer Mobile Styles */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .contact-item {
                justify-content: center;
                text-align: center;
            }

            .footer-links-vertical {
                align-items: center;
            }

            footer {
                padding: 3rem 1rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .step-content h3 {
                font-size: 1.25rem;
            }

            .visual-container {
                width: 200px;
                padding-top: 67px;
                height: 200px;
            }

            .whatsapp-chat {
                width: 180px;
                height: 150px;
            }

            .automation-dashboard {
width: 250px;            }

            .phone-frame {
                width: 230px;
                height: 460px;
                padding: 15px;
            }

            .feature-card {
                padding: 1.25rem;
            }

            .feature-icon {
                font-size: 2.5rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .contact-form {
                padding: 1.25rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 10px 14px;
                font-size: 0.9rem;
            }

            /* Footer Mobile Styles */
            .footer-main {
                gap: 1.5rem;
            }

            .contact-item {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .contact-item .contact-icon {
                font-size: 1.5rem;
            }

            .social-links {
                justify-content: center;
            }

            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .footer-logo {
                font-size: 1.25rem;
            }

            .notification {
                right: 10px;
                left: 10px;
                top: 10px;
                transform: translateY(-100px);
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }

            .notification.show {
                transform: translateY(0);
            }
        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .visual-container {
                width: 180px;
                height: 180px;
            }

            .step-content {
                padding: 0.75rem;
            }

            .feature-card {
                padding: 1rem;
            }

            section {
                padding: 2rem 0.75rem;
            }

            nav {
                padding: 0 0.75rem;
            }

            .contact-form {
                padding: 1rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading-dots {
            display: inline-block;
        }

        .loading-dots::after {
            content: '';
            animation: loadingDots 1.5s infinite;
        }

        @keyframes loadingDots {
            0%, 20% { content: ''; }
            40% { content: '.'; }
            60% { content: '..'; }
            80%, 100% { content: '...'; }
        }



        