Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Evevo AI - Next-Gen AI Revenue Agents</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.fog.min.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/> | |
| <script> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| light: '#6366f1', | |
| DEFAULT: '#4f46e5', | |
| dark: '#4338ca' | |
| }, | |
| secondary: { | |
| light: '#8b5cf6', | |
| DEFAULT: '#7c3aed', | |
| dark: '#6d28d9' | |
| }, | |
| dark: { | |
| 800: '#1e293b', | |
| 900: '#0f172a' | |
| } | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| :root { | |
| --primary: #4f46e5; | |
| --primary-light: #6366f1; | |
| --primary-dark: #4338ca; | |
| --secondary: #7c3aed; | |
| --secondary-dark: #6d28d9; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| @apply text-gray-800 dark:text-gray-100; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%); | |
| @apply dark:bg-gradient-to-br dark:from-gray-900 dark:to-gray-800; | |
| } | |
| .chat-window { | |
| box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1), 0 10px 10px -5px rgba(79, 70, 229, 0.04); | |
| @apply dark:bg-dark-800 dark:border dark:border-gray-700; | |
| } | |
| .feature-card { | |
| @apply transition-all duration-300 ease-in-out; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.1), 0 10px 10px -5px rgba(79, 70, 229, 0.04); | |
| } | |
| .dark-mode-switch { | |
| @apply relative inline-flex h-6 w-11 items-center rounded-full bg-gray-200 dark:bg-gray-700; | |
| } | |
| .dark-mode-switch:after { | |
| content: ''; | |
| @apply absolute h-4 w-4 rounded-full bg-white dark:bg-gray-300 shadow transform transition ease-in-out duration-200; | |
| } | |
| input:checked ~ .dark-mode-switch { | |
| @apply bg-primary; | |
| } | |
| input:checked ~ .dark-mode-switch:after { | |
| @apply translate-x-6; | |
| } | |
| </style> | |
| </head> | |
| <body class="antialiased bg-white dark:bg-gray-900 transition-colors duration-300"> | |
| <div id="vanta-bg" class="fixed inset-0 -z-10 opacity-10 dark:opacity-5"></div> | |
| <!-- Dark Mode Toggle --> | |
| <div class="fixed top-4 right-4 z-50"> | |
| <label class="inline-flex items-center cursor-pointer"> | |
| <input type="checkbox" id="darkModeToggle" class="sr-only peer"> | |
| <div class="dark-mode-switch peer"></div> | |
| <span class="ml-3 flex items-center"> | |
| <i data-feather="moon" class="text-gray-600 dark:text-gray-300 w-5 h-5"></i> | |
| </span> | |
| </label> | |
| </div> | |
| <!-- Header --> | |
| <header class="sticky top-0 backdrop-blur-md bg-white/80 dark:bg-dark-900/80 z-50 border-b border-gray-100 dark:border-gray-800"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="cpu" class="text-primary dark:text-primary-light"></i> | |
| <span class="text-2xl font-bold tracking-tight bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">EVEVO</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-2"> | |
| <a href="#" class="px-4 py-2 text-sm font-medium rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800">Features</a> | |
| <a href="#" class="px-4 py-2 text-sm font-medium rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800">Solutions</a> | |
| <a href="#" class="px-4 py-2 text-sm font-medium rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800">Pricing</a> | |
| <a href="#" class="px-4 py-2 text-sm font-medium rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800">Resources</a> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <a href="/login" class="px-4 py-2 text-sm font-medium text-primary dark:text-primary-light rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800">Sign In</a> | |
| <a href="/register" class="px-4 py-2 text-sm font-medium text-white bg-gradient-to-r from-primary to-secondary rounded-lg hover:opacity-90 transition">Get Started</a> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient py-24"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-16 lg:mb-0"> | |
| <div class="animate__animated animate__fadeIn"> | |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6 dark:text-white">Transform Conversations into Revenue with <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">AI Agents</span></h1> | |
| <p class="text-xl text-gray-600 dark:text-gray-300 mb-8">Automate lead qualification, meeting booking, and customer engagement across all channels with intelligent AI that works 24/7</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="#" class="px-8 py-3 bg-gradient-to-r from-primary to-secondary text-white rounded-lg font-medium hover:opacity-90 transition flex items-center justify-center"> | |
| <i data-feather="play" class="mr-2"></i> Try the Agent Live | |
| </a> | |
| <a href="#" class="px-8 py-3 border border-primary text-primary rounded-lg font-medium hover:bg-primary/10 transition flex items-center justify-center"> | |
| <i data-feather="calendar" class="mr-2"></i> Book Strategy Call | |
| </a> | |
| </div> | |
| <div class="mt-8 flex items-center space-x-6"> | |
| <div class="flex -space-x-2"> | |
| <img src="https://static.photos/people/200x200/1" class="w-10 h-10 rounded-full border-2 border-white" alt="Client"> | |
| <img src="https://static.photos/people/200x200/2" class="w-10 h-10 rounded-full border-2 border-white" alt="Client"> | |
| <img src="https://static.photos/people/200x200/3" class="w-10 h-10 rounded-full border-2 border-white" alt="Client"> | |
| </div> | |
| <div> | |
| <p class="text-sm text-gray-600">Trusted by 500+ businesses</p> | |
| <div class="flex items-center"> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 mr-1"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 mr-1"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 mr-1"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 mr-1"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 mr-1"></i> | |
| <span class="text-gray-600 ml-1">4.9/5</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="chat-window bg-white rounded-2xl p-4 max-w-md mx-auto"> | |
| <div class="flex items-center border-b pb-3 mb-3"> | |
| <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center"> | |
| <i data-feather="cpu" class="text-primary"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <h3 class="font-medium">EVEVO AI Agent</h3> | |
| <p class="text-xs text-gray-500">Online</p> | |
| </div> | |
| </div> | |
| <div class="space-y-3 mb-4"> | |
| <div class="bg-gray-100 rounded-lg p-3 max-w-[80%]"> | |
| <p>Hi there! I'm EVEVO AI. How can I help you today?</p> | |
| </div> | |
| <div class="bg-primary/10 rounded-lg p-3 max-w-[80%] ml-auto"> | |
| <p>I'd like to book a demo</p> | |
| </div> | |
| <div class="bg-gray-100 rounded-lg p-3 max-w-[80%]"> | |
| <p>Great! I can help with that. What's your name and email?</p> | |
| </div> | |
| </div> | |
| <div class="border-t pt-3 flex"> | |
| <input type="text" placeholder="Type your message..." class="flex-1 border rounded-l-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-primary"> | |
| <button class="bg-primary text-white px-4 rounded-r-lg"> | |
| <i data-feather="send" class="w-5 h-5"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Trusted By Section --> | |
| <section class="py-12 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <p class="text-center text-gray-500 mb-8">Trusted by innovators across industries</p> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
| <img src="https://static.photos/finance/200x200/1" alt="Brand" class="h-8 opacity-60 hover:opacity-100 transition"> | |
| <img src="https://static.photos/finance/200x200/2" alt="Brand" class="h-8 opacity-60 hover:opacity-100 transition"> | |
| <img src="https://static.photos/healthcare/200x200/1" alt="Brand" class="h-8 opacity-60 hover:opacity-100 transition"> | |
| <img src="https://static.photos/healthcare/200x200/2" alt="Brand" class="h-8 opacity-60 hover:opacity-100 transition"> | |
| <img src="https://static.photos/retail/200x200/1" alt="Brand" class="h-8 opacity-60 hover:opacity-100 transition"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Problem/Solution Section --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h2 class="text-3xl font-bold mb-6">Leads Go Cold <span class="text-primary">After Hours</span></h2> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-2 rounded-full mr-4"> | |
| <i data-feather="clock" class="text-red-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">Slow Response Times</h3> | |
| <p class="text-gray-600">53% of leads are lost when response time exceeds 5 minutes</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-2 rounded-full mr-4"> | |
| <i data-feather="calendar" class="text-red-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">Missed Opportunities</h3> | |
| <p class="text-gray-600">After-hours inquiries often fall through the cracks</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-red-100 p-2 rounded-full mr-4"> | |
| <i data-feather="dollar-sign" class="text-red-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">High Cost Per Lead</h3> | |
| <p class="text-gray-600">Human teams can't scale affordably across all channels</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 md:pl-12"> | |
| <h2 class="text-3xl font-bold mb-6">EVEVO AI <span class="text-secondary">Responds Instantly</span></h2> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="bg-green-100 p-2 rounded-full mr-4"> | |
| <i data-feather="zap" class="text-green-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">Instant 24/7 Response</h3> | |
| <p class="text-gray-600">Engage leads within seconds, anytime, anywhere</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-green-100 p-2 rounded-full mr-4"> | |
| <i data-feather="check-circle" class="text-green-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">Qualified Meetings Booked</h3> | |
| <p class="text-gray-600">AI screens and schedules only high-potential leads</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-green-100 p-2 rounded-full mr-4"> | |
| <i data-feather="bar-chart-2" class="text-green-500 w-5 h-5"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-medium mb-1">Scalable Conversations</h3> | |
| <p class="text-gray-600">Handle unlimited leads simultaneously without added costs</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">AI-Powered <span class="text-primary">Conversation Engine</span></h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Transform how you capture, qualify and convert leads with intelligent automation</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
| <div class="feature-card bg-white p-8 rounded-xl transition duration-300"> | |
| <div class="w-14 h-14 bg-primary/10 rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="message-square" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">24/7 Lead Capture</h3> | |
| <p class="text-gray-600">Conversational funnels across WhatsApp, Web & Instagram</p> | |
| </div> | |
| <div class="feature-card bg-white p-8 rounded-xl transition duration-300"> | |
| <div class="w-14 h-14 bg-primary/10 rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="refresh-cw" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Smart Automations</h3> | |
| <p class="text-gray-600">Follow-ups, reminders & seamless handoffs to your sales team</p> | |
| </div> | |
| <div class="feature-card bg-white p-8 rounded-xl transition duration-300"> | |
| <div class="w-14 h-14 bg-primary/10 rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="book" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Knowledge RAG</h3> | |
| <p class="text-gray-600">Train on your own docs & FAQs for accurate, on-brand responses</p> | |
| </div> | |
| <div class="feature-card bg-white p-8 rounded-xl transition duration-300"> | |
| <div class="w-14 h-14 bg-primary/10 rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="activity" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Insights & Analytics</h3> | |
| <p class="text-gray-600">Conversion dashboards with prompt A/B testing for optimization</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Interactive Demo --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="bg-gradient-to-r from-primary to-secondary rounded-3xl p-0.5"> | |
| <div class="bg-white rounded-3xl p-12"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-12 lg:mb-0"> | |
| <h2 class="text-3xl font-bold mb-6">See EVEVO AI <span class="text-primary">In Action</span></h2> | |
| <p class="text-gray-600 mb-8">Experience how our AI agent handles real conversations across different scenarios.</p> | |
| <div class="space-y-4"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-primary/10 flex items-center justify-center mr-4"> | |
| <i data-feather="check" class="text-primary w-4 h-4"></i> | |
| </div> | |
| <p class="text-gray-700">Book appointments instantly</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-primary/10 flex items-center justify-center mr-4"> | |
| <i data-feather="check" class="text-primary w-4 h-4"></i> | |
| </div> | |
| <p class="text-gray-700">Answer common FAQs accurately</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-primary/10 flex items-center justify-center mr-4"> | |
| <i data-feather="check" class="text-primary w-4 h-4"></i> | |
| </div> | |
| <p class="text-gray-700">Qualify leads intelligently</p> | |
| </div> | |
| </div> | |
| <a href="#" class="inline-block mt-8 px-8 py-3 bg-gradient-to-r from-primary to-secondary text-white rounded-lg font-medium hover:opacity-90 transition"> | |
| Deploy Your Own in 5 Minutes | |
| </a> | |
| </div> | |
| <div class="lg:w-1/2 lg:pl-12"> | |
| <div class="bg-gray-50 rounded-2xl p-6 border border-gray-200"> | |
| <div class="flex items-center border-b pb-4 mb-4"> | |
| <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center"> | |
| <i data-feather="cpu" class="text-primary"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <h3 class="font-medium">EVEVO Demo Agent</h3> | |
| <p class="text-xs text-gray-500">Online</p> | |
| </div> | |
| </div> | |
| <div class="h-64 overflow-y-auto mb-4 space-y-3"> | |
| <div class="bg-gray-100 rounded-lg p-3 max-w-[80%]"> | |
| <p>Hello! I'm EVEVO AI. I can help with:</p> | |
| <ul class="list-disc pl-5 mt-2"> | |
| <li>Booking appointments</li> | |
| <li>Answering FAQs</li> | |
| <li>Qualifying leads</li> | |
| </ul> | |
| <p class="mt-2">What would you like to try?</p> | |
| </div> | |
| <div class="flex justify-end"> | |
| <div class="bg-primary/10 rounded-lg p-3 max-w-[80%]"> | |
| <p>Can you book me a demo?</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-100 rounded-lg p-3 max-w-[90%]"> | |
| <p>Certainly! Please provide:</p> | |
| <ol class="list-decimal pl-5 mt-2"> | |
| <li>Your name</li> | |
| <li>Email address</li> | |
| <li>Preferred date/time</li> | |
| </ol> | |
| </div> | |
| </div> | |
| <div class="border-t pt-3 flex"> | |
| <input type="text" placeholder="Type your message..." class="flex-1 border rounded-l-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-primary"> | |
| <button class="bg-primary text-white px-4 rounded-r-lg"> | |
| <i data-feather="send" class="w-5 h-5"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Industry Templates --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Pre-Built <span class="text-primary">Industry Templates</span></h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Accelerate deployment with ready-made flows for your specific business needs</p> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <div class="bg-white rounded-xl overflow-hidden border border-gray-200 hover:shadow-lg transition duration-300"> | |
| <div class="h-48 bg-gradient-to-r from-blue-50 to-indigo-50 flex items-center justify-center"> | |
| <i data-feather="home" class="text-blue-500 w-12 h-12"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="font-bold text-xl mb-2">Real Estate</h3> | |
| <p class="text-gray-600 mb-4">Property inquiries, viewings booking, lead qualification</p> | |
| <a href="#" class="text-primary font-medium hover:underline">View Template</a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden border border-gray-200 hover:shadow-lg transition duration-300"> | |
| <div class="h-48 bg-gradient-to-r from-green-50 to-emerald-50 flex items-center justify-center"> | |
| <i data-feather="heart" class="text-green-500 w-12 h-12"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="font-bold text-xl mb-2">Healthcare</h3> | |
| <p class="text-gray-600 mb-4">Appointment scheduling, FAQs, patient intake</p> | |
| <a href="#" class="text-primary font-medium hover:underline">View Template</a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden border border-gray-200 hover:shadow-lg transition duration-300"> | |
| <div class="h-48 bg-gradient-to-r from-yellow-50 to-amber-50 flex items-center justify-center"> | |
| <i data-feather="coffee" class="text-yellow-500 w-12 h-12"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="font-bold text-xl mb-2">F&B</h3> | |
| <p class="text-gray-600 mb-4">Reservations, menu info, special requests</p> | |
| <a href="#" class="text-primary font-medium hover:underline">View Template</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="px-6 py-3 border border-primary text-primary rounded-lg font-medium hover:bg-primary/10 transition inline-flex items-center"> | |
| <i data-feather="grid" class="mr-2"></i> View All Templates | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">What Our <span class="text-primary">Clients Say</span></h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from businesses who transformed their lead conversion</p> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://static.photos/people/200x200/4" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah Johnson</h4> | |
| <p class="text-sm text-gray-600">Dental Practice Owner</p> | |
| </div> | |
| </div> | |
| <div class="flex mb-3"> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| </div> | |
| <p class="text-gray-700 mb-4">"EVEVO AI has transformed our patient intake process. We've seen a 42% increase in booked appointments while reducing our admin workload by 30%."</p> | |
| <div class="bg-blue-50 p-3 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3"> | |
| <i data-feather="trending-up" class="text-blue-500 w-4 h-4"></i> | |
| </div> | |
| <p class="text-sm font-medium">+42% Appointment Rate</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://static.photos/people/200x200/5" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Michael Chen</h4> | |
| <p class="text-sm text-gray-600">Real Estate Broker</p> | |
| </div> | |
| </div> | |
| <div class="flex mb-3"> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| </div> | |
| <p class="text-gray-700 mb-4">"The AI agent handles 80% of our initial inquiries, booking qualified showings while we focus on closing deals. Our conversion rate jumped 37% in 3 months."</p> | |
| <div class="bg-blue-50 p-3 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3"> | |
| <i data-feather="dollar-sign" class="text-blue-500 w-4 h-4"></i> | |
| </div> | |
| <p class="text-sm font-medium">+37% Conversion Rate</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <img src="https://static.photos/people/200x200/6" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Emma Rodriguez</h4> | |
| <p class="text-sm text-gray-600">Restaurant Owner</p> | |
| </div> | |
| </div> | |
| <div class="flex mb-3"> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| <i data-feather="star" class="text-yellow-400 w-5 h-5"></i> | |
| </div> | |
| <p class="text-gray-700 mb-4">"Our reservation no-shows dropped by 65% thanks to EVEVO's automated reminders. The AI handles 90% of our customer inquiries flawlessly."</p> | |
| <div class="bg-blue-50 p-3 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-3"> | |
| <i data-feather="clock" class="text-blue-500 w-4 h-4"></i> | |
| </div> | |
| <p class="text-sm font-medium">65% Fewer No-Shows</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- ROI Calculator --> | |
| <section class="py-20 bg-gradient-to-r from-primary to-secondary"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto bg-white rounded-2xl shadow-xl p-8"> | |
| <div class="text-center mb-8"> | |
| <h2 class="text-3xl font-bold mb-3">Calculate Your <span class="text-primary">Potential ROI</span></h2> | |
| <p class="text-gray-600">See how EVEVO AI can impact your bottom line</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 font-medium mb-2">Monthly Leads</label> | |
| <input type="range" min="10" max="1000" value="100" class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer"> | |
| <div class="flex justify-between text-sm text-gray-600 mt-1"> | |
| <span>10</span> | |
| <span>1000+</span> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 font-medium mb-2">Average Deal Value</label> | |
| <div class="relative"> | |
| <span class="absolute left-3 top-1/2 transform -translate-y-1/2">$</span> | |
| <input type="number" value="500" class="w-full pl-8 border rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-primary"> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 font-medium mb-2">Current Conversion Rate</label> | |
| <div class="relative"> | |
| <input type="number" value="15" class="w-full pr-8 border rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-primary"> | |
| <span class="absolute right-3 top-1/2 transform -translate-y-1/2">%</span> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 font-medium mb-2">Expected Conversion Lift</label> | |
| <div class="relative"> | |
| <input type="number" value="30" class="w-full pr-8 border rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-primary"> | |
| <span class="absolute right-3 top-1/2 transform -translate-y-1/2">%</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg mt-6"> | |
| <div class="flex justify-between items-center"> | |
| <div> | |
| <p class="text-gray-600">Estimated Monthly Revenue Increase</p> | |
| <h3 class="text-3xl font-bold text-primary">$12,500</h3> | |
| </div> | |
| <a href="#" class="px-6 py-3 bg-gradient-to-r from-primary to-secondary text-white rounded-lg font-medium hover:opacity-90 transition"> | |
| Get Your Blueprint Report | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Teaser --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Simple, <span class="text-primary">Transparent Pricing</span></h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto">Pay only for what you need. Scale as you grow.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
| <div class="bg-white p-8 rounded-xl border border-gray-200"> | |
| <h3 class="font-bold text-xl mb-2">Starter</h3> | |
| <p class="text-gray-600 mb-6">Perfect for small businesses</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold">$99</span> | |
| <span class="text-gray-600">/month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>500 conversations</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>2 channels</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Basic analytics</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full text-center px-6 py-3 border border-primary text-primary rounded-lg font-medium hover:bg-primary/10 transition"> | |
| Get Started | |
| </a> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl border-2 border-primary shadow-lg relative"> | |
| <div class="absolute top-0 right-0 bg-primary text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg"> | |
| MOST POPULAR | |
| </div> | |
| <h3 class="font-bold text-xl mb-2">Growth</h3> | |
| <p class="text-gray-600 mb-6">For scaling businesses</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold">$299</span> | |
| <span class="text-gray-600">/month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>2,000 conversations</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>5 channels</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Advanced analytics</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Basic automations</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full text-center px-6 py-3 bg-gradient-to-r from-primary to-secondary text-white rounded-lg font-medium hover:opacity-90 transition"> | |
| Get Started | |
| </a> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl border border-gray-200"> | |
| <h3 class="font-bold text-xl mb-2">Enterprise</h3> | |
| <p class="text-gray-600 mb-6">For large organizations</p> | |
| <div class="mb-6"> | |
| <span class="text-4xl font-bold">Custom</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Unlimited conversations</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>All channels</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Premium support</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i> | |
| <span>Custom integrations</span> | |
| </li> | |
| </ul> | |
| <a href="#" class="block w-full text-center px-6 py-3 border border-primary text-primary rounded-lg font-medium hover:bg-primary/10 transition"> | |
| Contact Sales | |
| </a> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="text-primary font-medium hover:underline inline-flex items-center"> | |
| <i data-feather="file-text" class="mr-2"></i> View Full Pricing Details | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Security Teaser --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="bg-gray-50 rounded-2xl p-12 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Built for <span class="text-primary">Privacy & Security</span></h2> | |
| <p class="text-lg text-gray-600 max-w-3xl mx-auto mb-10">Enterprise-grade security with compliance you can trust</p> | |
| <div class="grid grid-cols-2 sm:grid-cols-4 gap-6 max-w-4xl mx-auto"> | |
| <div class="bg-white p-4 rounded-lg border border-gray-200"> | |
| <div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mx-auto mb-3"> | |
| <i data-feather="lock" class="text-primary"></i> | |
| </div> | |
| <p class="font-medium">End-to-End Encryption</p> | |
| </div> | |
| <div class="bg-white p-4 rounded-lg border border-gray-200"> | |
| <div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mx-auto mb-3"> | |
| <i data-feather="shield" class="text-primary"></i> | |
| </div> | |
| <p class="font-medium">GDPR Compliant</p> | |
| </div> | |
| <div class="bg-white p-4 rounded-lg border border-gray-200"> | |
| <div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mx-auto mb-3"> | |
| <i data-feather="database" class="text-primary"></i> | |
| </div> | |
| <p class="font-medium">Data Residency Options</p> | |
| </div> | |
| <div class="bg-white p-4 rounded-lg border border-gray-200"> | |
| <div class="w-12 h-12 bg-primary/10 rounded-full flex items-center justify-center mx-auto mb-3"> | |
| <i data-feather="activity" class="text-primary"></i> | |
| </div> | |
| <p class="font-medium">Audit Logs</p> | |
| </div> | |
| </div> | |
| <a href="#" class="inline-block mt-10 px-6 py-3 border border-primary text-primary rounded-lg font-medium hover:bg-primary/10 transition"> | |
| Learn More About Security | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 bg-gradient-to-r from-primary to-secondary text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Ready to Transform Your <span class="text-white/90">Lead Conversion?</span></h2> | |
| <p class="text-lg mb-10 max-w-2xl mx-auto">Get started with EVEVO AI today and see results in 24 hours</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="#" class="px-8 py-3 bg-white text-primary rounded-lg font-medium hover:bg-gray-100 transition"> | |
| Try Live Demo | |
| </a> | |
| <a href="#" class="px-8 py-3 border border-white text-white rounded-lg font-medium hover:bg-white/10 transition"> | |
| Talk to Sales | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-6"> | |
| <i data-feather="cpu" class="text-primary"></i> | |
| <span class="text-2xl font-bold">EVEVO</span> | |
| </div> | |
| <p class="text-gray-400 mb-6">The AI-powered conversational platform that drives revenue while you sleep.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="facebook"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-6">Product</h3> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Solutions</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Integrations</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-6">Resources</h3> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">API Docs</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-6">Company</h3> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Status</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 EVEVO AI. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition text-sm">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition text-sm">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition text-sm">GDPR</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Vanta.js background | |
| VANTA.FOG({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| highlightColor: 0x6366f1, | |
| midtoneColor: 0x7c3aed, | |
| lowlightColor: 0x4338ca, | |
| baseColor: 0xffffff, | |
| blurFactor: 0.5, | |
| speed: 1.5 | |
| }); | |
| // Dark mode toggle | |
| const darkModeToggle = document.getElementById('darkModeToggle'); | |
| const html = document.documentElement; | |
| // Check for saved user preference or OS preference | |
| if (localStorage.getItem('darkMode') === 'true' || | |
| (!localStorage.getItem('darkMode') && window.matchMedia('(prefers-color-scheme: dark)').matches)) { | |
| html.classList.add('dark'); | |
| darkModeToggle.checked = true; | |
| } | |
| // Listen for toggle changes | |
| darkModeToggle.addEventListener('change', function() { | |
| if (this.checked) { | |
| html.classList.add('dark'); | |
| localStorage.setItem('darkMode', true); | |
| } else { | |
| html.classList.remove('dark'); | |
| localStorage.setItem('darkMode', false); | |
| } | |
| }); | |
| // Initialize feather icons | |
| feather.replace(); | |
| // Smooth scroll for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Animation on scroll | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate__animated', 'animate__fadeInUp'); | |
| observer.unobserve(entry.target); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('.animate-on-scroll').forEach(el => { | |
| observer.observe(el); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |