|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Best Auto Brokers | AI-Powered Vehicle Acquisition Platform</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
.gradient-bg { |
|
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%); |
|
} |
|
.vehicle-card:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
.chat-bubble { |
|
border-radius: 20px 20px 20px 0; |
|
} |
|
.user-bubble { |
|
border-radius: 20px 20px 0 20px; |
|
} |
|
.ar-overlay { |
|
background: rgba(0, 0, 0, 0.7); |
|
backdrop-filter: blur(5px); |
|
} |
|
.fade-in { |
|
animation: fadeIn 0.3s ease-in; |
|
} |
|
@keyframes fadeIn { |
|
from { opacity: 0; } |
|
to { opacity: 1; } |
|
} |
|
</style> |
|
</head> |
|
<body class="font-sans antialiased text-gray-800"> |
|
|
|
<nav class="gradient-bg text-white shadow-lg"> |
|
<div class="container mx-auto px-4 py-3"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-car text-2xl"></i> |
|
<span class="text-xl font-bold">Best Auto Brokers</span> |
|
</div> |
|
<div class="hidden md:flex items-center space-x-8"> |
|
<a href="#features" class="hover:text-blue-200 transition">Features</a> |
|
<a href="#solutions" class="hover:text-blue-200 transition">Solutions</a> |
|
<a href="#pricing" class="hover:text-blue-200 transition">Pricing</a> |
|
<a href="#testimonials" class="hover:text-blue-200 transition">Testimonials</a> |
|
<button class="bg-white text-blue-600 px-4 py-2 rounded-full font-medium hover:bg-blue-50 transition"> |
|
Get Started |
|
</button> |
|
</div> |
|
<button class="md:hidden text-2xl"> |
|
<i class="fas fa-bars"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section class="gradient-bg text-white py-16 md:py-24"> |
|
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6"> |
|
Revolutionizing Vehicle Acquisition with AI |
|
</h1> |
|
<p class="text-xl mb-8 text-blue-100"> |
|
Our AI-powered platform simplifies car buying for consumers, businesses, and prosumers with transparent pricing, smart comparisons, and negotiation tools. |
|
</p> |
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<button class="bg-white text-blue-600 px-6 py-3 rounded-full font-medium hover:bg-blue-50 transition"> |
|
Start Free Trial |
|
</button> |
|
<button class="border border-white text-white px-6 py-3 rounded-full font-medium hover:bg-white hover:text-blue-600 transition"> |
|
Watch Demo |
|
</button> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 relative"> |
|
<div class="bg-white rounded-xl shadow-2xl overflow-hidden"> |
|
<div class="bg-gray-100 p-4 flex items-center"> |
|
<div class="flex space-x-2"> |
|
<div class="w-3 h-3 rounded-full bg-red-500"></div> |
|
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> |
|
<div class="w-3 h-3 rounded-full bg-green-500"></div> |
|
</div> |
|
<div class="ml-4 text-sm text-gray-600">AI Auto Broker Assistant</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex mb-4"> |
|
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center"> |
|
<i class="fas fa-robot text-blue-600"></i> |
|
</div> |
|
<div class="ml-3 bg-gray-100 p-3 rounded-lg chat-bubble max-w-xs"> |
|
<p>Hi there! I'm your AI Auto Broker. How can I help you find your perfect vehicle today?</p> |
|
</div> |
|
</div> |
|
<div class="flex justify-end mb-4"> |
|
<div class="bg-blue-600 text-white p-3 rounded-lg user-bubble max-w-xs"> |
|
<p>I'm looking for an electric SUV under $50k with at least 300 miles range.</p> |
|
</div> |
|
</div> |
|
<div class="flex"> |
|
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center"> |
|
<i class="fas fa-robot text-blue-600"></i> |
|
</div> |
|
<div class="ml-3 bg-gray-100 p-3 rounded-lg chat-bubble max-w-xs"> |
|
<p>Great choice! I've found 12 options matching your criteria. Would you like to compare them side by side?</p> |
|
</div> |
|
</div> |
|
<div class="mt-6 flex items-center border-t pt-4"> |
|
<input type="text" placeholder="Type your message..." class="flex-1 border rounded-full py-2 px-4 focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
<button class="ml-2 bg-blue-600 text-white p-2 rounded-full hover:bg-blue-700 transition"> |
|
<i class="fas fa-paper-plane"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="features" class="py-16 bg-gray-50"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold mb-4">Powerful Features for Every Buyer</h2> |
|
<p class="text-lg text-gray-600 max-w-2xl mx-auto"> |
|
Our platform is packed with innovative tools to transform your vehicle buying experience |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-search-dollar text-blue-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">AI-Powered Price Analysis</h3> |
|
<p class="text-gray-600"> |
|
Our AI scans thousands of listings to ensure you get the best possible deal with transparent pricing breakdowns. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-layer-group text-purple-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">Smart Vehicle Comparisons</h3> |
|
<p class="text-gray-600"> |
|
Compare up to 5 vehicles side-by-side with our intuitive comparison tool that highlights key differences. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-robot text-green-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">AI Negotiation Assistant</h3> |
|
<p class="text-gray-600"> |
|
Our AI suggests optimal negotiation strategies based on market data and dealer profiles. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-yellow-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-mobile-alt text-yellow-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">AR Vehicle Preview</h3> |
|
<p class="text-gray-600"> |
|
Visualize any vehicle in your driveway or parking space using our augmented reality feature. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-red-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-chart-line text-red-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">Market Trend Analysis</h3> |
|
<p class="text-gray-600"> |
|
Access real-time market data to know the best time to buy and which models hold their value. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition"> |
|
<div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6"> |
|
<i class="fas fa-users-cog text-indigo-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3">Fleet Management</h3> |
|
<p class="text-gray-600"> |
|
Comprehensive tools for businesses to manage vehicle fleets, maintenance schedules, and depreciation. |
|
</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="solutions" class="py-16"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold mb-4">Tailored Solutions for Every Need</h2> |
|
<p class="text-lg text-gray-600 max-w-2xl mx-auto"> |
|
We address the unique challenges faced by different types of buyers |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
|
<div class="h-48 bg-blue-600 flex items-center justify-center"> |
|
<i class="fas fa-user text-white text-6xl"></i> |
|
</div> |
|
<div class="p-8"> |
|
<h3 class="text-xl font-bold mb-3">For Consumers (B2C)</h3> |
|
<ul class="space-y-3 text-gray-600"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Simplified search with intuitive filters</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Transparent pricing with no hidden fees</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Personalized recommendations</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Finance and insurance integration</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
|
<div class="h-48 bg-purple-600 flex items-center justify-center"> |
|
<i class="fas fa-building text-white text-6xl"></i> |
|
</div> |
|
<div class="p-8"> |
|
<h3 class="text-xl font-bold mb-3">For Businesses (B2B)</h3> |
|
<ul class="space-y-3 text-gray-600"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Bulk purchasing discounts</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Fleet management dashboard</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Custom reporting and analytics</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Dedicated account manager</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
|
<div class="h-48 bg-green-600 flex items-center justify-center"> |
|
<i class="fas fa-star text-white text-6xl"></i> |
|
</div> |
|
<div class="p-8"> |
|
<h3 class="text-xl font-bold mb-3">For Prosumers</h3> |
|
<ul class="space-y-3 text-gray-600"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Access to exclusive inventory</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Advanced customization tools</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Investment-grade vehicle analysis</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
<span>Private seller marketplace</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-gray-900 text-white"> |
|
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h2 class="text-3xl font-bold mb-6">Experience Vehicles in Your Space with AR</h2> |
|
<p class="text-lg text-gray-300 mb-8"> |
|
Our augmented reality feature lets you visualize any vehicle in your driveway or parking space before you buy. Check dimensions, colors, and styling in real-world context. |
|
</p> |
|
<button class="bg-white text-gray-900 px-6 py-3 rounded-full font-medium hover:bg-gray-100 transition flex items-center"> |
|
<i class="fas fa-mobile-alt mr-2"></i> Try AR Demo Now |
|
</button> |
|
</div> |
|
<div class="md:w-1/2 relative"> |
|
<div class="relative"> |
|
<img src="https://images.unsplash.com/photo-1626783416765-ee9d0f757c0a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80" alt="AR Demo" class="rounded-xl shadow-2xl"> |
|
<div class="absolute inset-0 flex items-center justify-center ar-overlay opacity-0 hover:opacity-100 transition-opacity duration-300 rounded-xl"> |
|
<button class="bg-white text-gray-900 px-6 py-3 rounded-full font-medium hover:bg-gray-100 transition flex items-center"> |
|
<i class="fas fa-expand mr-2"></i> Launch AR Viewer |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="pricing" class="py-16 bg-gray-50"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold mb-4">Simple, Transparent Pricing</h2> |
|
<p class="text-lg text-gray-600 max-w-2xl mx-auto"> |
|
Choose the plan that fits your needs. No hidden fees, ever. |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> |
|
|
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-8 border-b"> |
|
<h3 class="text-xl font-bold mb-2">Basic</h3> |
|
<p class="text-gray-600 mb-6">For individual buyers</p> |
|
<div class="mb-6"> |
|
<span class="text-4xl font-bold">$9</span> |
|
<span class="text-gray-500">/month</span> |
|
</div> |
|
<button class="w-full bg-gray-100 text-gray-800 py-3 rounded-lg font-medium hover:bg-gray-200 transition"> |
|
Get Started |
|
</button> |
|
</div> |
|
<div class="p-8"> |
|
<ul class="space-y-3"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>AI vehicle matching</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Price analysis for 3 vehicles</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Basic comparison tools</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Email support</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-2xl overflow-hidden transform scale-105"> |
|
<div class="bg-blue-600 text-white p-2 text-center"> |
|
<span class="text-sm font-medium">MOST POPULAR</span> |
|
</div> |
|
<div class="p-8 border-b"> |
|
<h3 class="text-xl font-bold mb-2">Professional</h3> |
|
<p class="text-gray-600 mb-6">For serious buyers & enthusiasts</p> |
|
<div class="mb-6"> |
|
<span class="text-4xl font-bold">$29</span> |
|
<span class="text-gray-500">/month</span> |
|
</div> |
|
<button class="w-full bg-blue-600 text-white py-3 rounded-lg font-medium hover:bg-blue-700 transition"> |
|
Get Started |
|
</button> |
|
</div> |
|
<div class="p-8"> |
|
<ul class="space-y-3"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Everything in Basic</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Unlimited price analysis</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Advanced comparison tools</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>AI negotiation assistant</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>AR vehicle preview</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Priority support</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> |
|
<div class="p-8 border-b"> |
|
<h3 class="text-xl font-bold mb-2">Enterprise</h3> |
|
<p class="text-gray-600 mb-6">For businesses & fleet managers</p> |
|
<div class="mb-6"> |
|
<span class="text-4xl font-bold">$99</span> |
|
<span class="text-gray-500">/month</span> |
|
</div> |
|
<button class="w-full bg-gray-100 text-gray-800 py-3 rounded-lg font-medium hover:bg-gray-200 transition"> |
|
Contact Sales |
|
</button> |
|
</div> |
|
<div class="p-8"> |
|
<ul class="space-y-3"> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Everything in Professional</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Bulk purchasing tools</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Fleet management dashboard</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Custom reporting</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>Dedicated account manager</span> |
|
</li> |
|
<li class="flex items-start"> |
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
<span>24/7 support</span> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="testimonials" class="py-16"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold mb-4">What Our Customers Say</h2> |
|
<p class="text-lg text-gray-600 max-w-2xl mx-auto"> |
|
Don't just take our word for it - hear from our satisfied customers |
|
</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden"> |
|
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-full h-full object-cover"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Sarah J.</h4> |
|
<p class="text-gray-600 text-sm">First-time buyer</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-700 mb-4"> |
|
"As a first-time car buyer, I was overwhelmed by the process. Best Auto Brokers made it so simple! The AI assistant helped me understand exactly what I needed and found me the perfect car within my budget." |
|
</p> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden"> |
|
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-full h-full object-cover"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Michael T.</h4> |
|
<p class="text-gray-600 text-sm">Fleet Manager</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-700 mb-4"> |
|
"We've reduced our fleet acquisition costs by 18% since switching to Best Auto Brokers. The bulk purchasing tools and market analysis features are game-changers for our business." |
|
</p> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white p-8 rounded-xl shadow-md"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-gray-300 overflow-hidden"> |
|
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Lisa R." class="w-full h-full object-cover"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="font-bold">Lisa R.</h4> |
|
<p class="text-gray-600 text-sm">Car Enthusiast</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-700 mb-4"> |
|
"The AR preview feature is incredible! I could see exactly how the car would look in my driveway before committing. The negotiation assistant helped me save $3,200 off the asking price too!" |
|
</p> |
|
<div class="flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star-half-alt"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 gradient-bg text-white"> |
|
<div class="container mx-auto px-4 text-center"> |
|
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Vehicle Buying Experience?</h2> |
|
<p class="text-xl text-blue-100 mb-8 max-w-2xl mx-auto"> |
|
Join thousands of satisfied customers who've made smarter vehicle purchases with our AI-powered platform. |
|
</p> |
|
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<button class="bg-white text-blue-600 px-8 py-4 rounded-full font-medium hover:bg-blue-50 transition text-lg"> |
|
Start Your Free Trial |
|
</button> |
|
<button class="border border-white text-white px-8 py-4 rounded-full font-medium hover:bg-white hover:text-blue-600 transition text-lg"> |
|
Schedule a Demo |
|
</button> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-gray-900 text-white py-12"> |
|
<div class="container mx-auto px-4"> |
|
<div class="grid md:grid-cols-4 gap-8 mb-8"> |
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-4 flex items-center"> |
|
<i class="fas fa-car mr-2"></i> Best Auto Brokers |
|
</h3> |
|
<p class="text-gray-400"> |
|
Revolutionizing vehicle acquisition with AI-powered tools for consumers, businesses, and enthusiasts. |
|
</p> |
|
</div> |
|
|
|
|
|
<div> |
|
<h4 class="font-bold mb-4">Solutions</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">For Consumers</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">For Businesses</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">For Enthusiasts</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">For Dealers</a></li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div> |
|
<h4 class="font-bold mb-4">Company</h4> |
|
<ul class="space-y-2"> |
|
<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">Press</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> |
|
</ul> |
|
</div> |
|
|
|
|
|
<div> |
|
<h4 class="font-bold mb-4">Connect</h4> |
|
<div class="flex space-x-4 mb-4"> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-600 transition"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-400 transition"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-pink-600 transition"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-red-600 transition"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
<p class="text-gray-400"> |
|
Download our mobile app: |
|
</p> |
|
<div class="flex space-x-2 mt-2"> |
|
<a href="#" class="flex-1 bg-gray-800 py-2 px-3 rounded flex items-center justify-center hover:bg-gray-700 transition"> |
|
<i class="fab fa-apple mr-2"></i> |
|
<span class="text-xs">App Store</span> |
|
</a> |
|
<a href="#" class="flex-1 bg-gray-800 py-2 px-3 rounded flex items-center justify-center hover:bg-gray-700 transition"> |
|
<i class="fab fa-google-play mr-2"></i> |
|
<span class="text-xs">Play Store</span> |
|
</a> |
|
</div> |
|
</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 Best Auto Brokers. All rights reserved. |
|
</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
|
|
<div class="fixed bottom-6 right-6"> |
|
<button id="aiAssistantButton" class="w-16 h-16 rounded-full bg-blue-600 text-white shadow-lg hover:bg-blue-700 transition flex items-center justify-center"> |
|
<i class="fas fa-robot text-2xl"></i> |
|
</button> |
|
</div> |
|
|
|
|
|
<div id="aiAssistantPanel" class="fixed bottom-24 right-6 w-80 bg-white rounded-xl shadow-2xl overflow-hidden transform translate-y-4 opacity-0 invisible transition-all duration-300"> |
|
<div class="bg-blue-600 text-white p-4 flex items-center justify-between"> |
|
<div class="flex items-center"> |
|
<i class="fas fa-robot mr-2"></i> |
|
<span class="font-medium">AI Auto Broker Assistant</span> |
|
</div> |
|
<button id="closeAssistant" class="text-white hover:text-blue-200"> |
|
<i class="fas fa-times"></i> |
|
</button> |
|
</div> |
|
<div class="p-4 h-64 overflow-y-auto"> |
|
<div class="flex mb-4"> |
|
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center"> |
|
<i class="fas fa-robot text-blue-600"></i> |
|
</div> |
|
<div class="ml-3 bg-gray-100 p-3 rounded-lg chat-bubble max-w-xs"> |
|
<p>Hi there! I'm your AI Auto Broker. How can I help you find your perfect vehicle today?</p> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="p-4 border-t"> |
|
<div class="flex items-center"> |
|
<input type="text" placeholder="Type your message..." class="flex-1 border rounded-full py-2 px-4 focus:outline-none focus:ring-2 focus:ring-blue-500"> |
|
<button class="ml-2 bg-blue-600 text-white p-2 rounded-full hover:bg-blue-700 transition"> |
|
<i class="fas fa-paper-plane"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
|
|
const aiAssistantButton = document.getElementById('aiAssistantButton'); |
|
const aiAssistantPanel = document.getElementById('aiAssistantPanel'); |
|
const closeAssistant = document.getElementById('closeAssistant'); |
|
|
|
aiAssistantButton.addEventListener('click', () => { |
|
aiAssistantPanel.classList.toggle('opacity-0'); |
|
aiAssistantPanel.classList.toggle('invisible'); |
|
aiAssistantPanel.classList.toggle('translate-y-4'); |
|
aiAssistantPanel.classList.toggle('opacity-100'); |
|
aiAssistantPanel.classList.toggle('visible'); |
|
aiAssistantPanel.classList.toggle('translate-y-0'); |
|
}); |
|
|
|
closeAssistant.addEventListener('click', () => { |
|
aiAssistantPanel.classList.add('opacity-0'); |
|
aiAssistantPanel.classList.add('invisible'); |
|
aiAssistantPanel.classList.add('translate-y-4'); |
|
aiAssistantPanel.classList.remove('opacity-100'); |
|
aiAssistantPanel.classList.remove('visible'); |
|
aiAssistantPanel.classList.remove('translate-y-0'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
}); |
|
}); |
|
|
|
|
|
|
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=lab212/mp-ab" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |