File size: 40,145 Bytes
636cccd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 |
<!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">
<!-- Navigation -->
<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>
<!-- Hero Section -->
<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>
<!-- Features 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">
<!-- Feature 1 -->
<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>
<!-- Feature 2 -->
<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>
<!-- Feature 3 -->
<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>
<!-- Feature 4 -->
<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>
<!-- Feature 5 -->
<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>
<!-- Feature 6 -->
<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>
<!-- Solutions 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">
<!-- B2C Solution -->
<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>
<!-- B2B Solution -->
<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>
<!-- Prosumer Solution -->
<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>
<!-- AR Demo 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>
<!-- Pricing 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">
<!-- Basic Plan -->
<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>
<!-- Pro Plan -->
<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>
<!-- Enterprise Plan -->
<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>
<!-- Testimonials 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">
<!-- Testimonial 1 -->
<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>
<!-- Testimonial 2 -->
<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>
<!-- Testimonial 3 -->
<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>
<!-- CTA 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 -->
<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">
<!-- Column 1 -->
<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>
<!-- Column 2 -->
<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>
<!-- Column 3 -->
<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>
<!-- Column 4 -->
<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>
<!-- AI Assistant Button -->
<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>
<!-- AI Assistant Panel -->
<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>
// Toggle AI Assistant Panel
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');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle would go here
// This is just a placeholder for the actual implementation
</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> |