File size: 35,415 Bytes
c59d493 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GuardianLine - AI-Powered Call Analysis & Protection</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4F46E5',
secondary: '#10B981',
dark: '#1F2937',
light: '#F9FAFB'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
}
.feature-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);
}
.hero-image {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.call-animation {
position: relative;
}
.call-animation::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 2px solid #4F46E5;
border-radius: 50%;
animation: pulse 2s infinite;
opacity: 0;
}
@keyframes pulse {
0% {
transform: scale(0.8);
opacity: 0.7;
}
70% {
transform: scale(1.3);
opacity: 0;
}
100% {
transform: scale(0.8);
opacity: 0;
}
}
</style>
</head>
<body class="bg-light">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-shield-alt text-primary text-2xl mr-2"></i>
<span class="text-xl font-bold text-dark">GuardianLine</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="text-dark hover:text-primary px-3 py-2 text-sm font-medium">Features</a>
<a href="#how-it-works" class="text-dark hover:text-primary px-3 py-2 text-sm font-medium">How It Works</a>
<a href="#pricing" class="text-dark hover:text-primary px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#contact" class="text-dark hover:text-primary px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="#signup" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Get Started
</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#features" class="block px-3 py-2 text-base font-medium text-dark hover:text-primary hover:bg-gray-50">Features</a>
<a href="#how-it-works" class="block px-3 py-2 text-base font-medium text-dark hover:text-primary hover:bg-gray-50">How It Works</a>
<a href="#pricing" class="block px-3 py-2 text-base font-medium text-dark hover:text-primary hover:bg-gray-50">Pricing</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-dark hover:text-primary hover:bg-gray-50">Contact</a>
<a href="#signup" class="block px-3 py-2 text-base font-medium text-dark hover:text-primary hover:bg-gray-50">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div>
<h1 class="text-4xl md:text-5xl font-bold text-white mb-6">AI-Powered Call Protection for Your Business</h1>
<p class="text-xl text-white opacity-90 mb-8">GuardianLine analyzes phone calls in real-time using GPT-4 and Whisper to detect fraud, scams, and malicious intent before they impact your business.</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#signup" class="bg-white text-primary px-6 py-3 rounded-lg font-medium text-center hover:bg-gray-100 transition duration-300">Start Free Trial</a>
<a href="#demo" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium text-center hover:bg-white hover:text-primary transition duration-300">Request Demo</a>
</div>
</div>
<div class="relative">
<img src="https://illustrations.popsy.co/amber/digital-nomad.svg" alt="Call protection illustration" class="hero-image w-full max-w-md mx-auto">
<div class="absolute -bottom-10 -right-10 bg-white p-4 rounded-xl shadow-lg hidden md:block">
<div class="flex items-center">
<div class="call-animation w-12 h-12 rounded-full bg-primary flex items-center justify-center mr-3">
<i class="fas fa-phone-alt text-white"></i>
</div>
<div>
<p class="text-xs text-gray-500">Call analyzed</p>
<p class="font-medium">Potential scam detected</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Trusted By Section -->
<div class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
<div class="grid grid-cols-2 md:grid-cols-5 gap-8 items-center justify-center">
<img src="https://logo.clearbit.com/stripe.com" alt="Stripe" class="h-8 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition mx-auto">
<img src="https://logo.clearbit.com/airbnb.com" alt="Airbnb" class="h-8 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition mx-auto">
<img src="https://logo.clearbit.com/shopify.com" alt="Shopify" class="h-8 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition mx-auto">
<img src="https://logo.clearbit.com/uber.com" alt="Uber" class="h-8 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition mx-auto">
<img src="https://logo.clearbit.com/slack.com" alt="Slack" class="h-8 opacity-60 grayscale hover:opacity-100 hover:grayscale-0 transition mx-auto">
</div>
</div>
</div>
<!-- Features Section -->
<div id="features" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-dark mb-4">Powerful Features to Protect Your Business</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">GuardianLine combines cutting-edge AI with robust telephony infrastructure to keep your communications safe.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-primary bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-robot text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">AI-Powered Analysis</h3>
<p class="text-gray-600">Our GPT-4 integration analyzes call content in real-time to detect potential threats, scams, and fraudulent activity.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-secondary bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-headset text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Voice Transcription</h3>
<p class="text-gray-600">Whisper AI accurately transcribes calls for documentation, analysis, and compliance purposes.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-purple-500 bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-purple-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Real-time Alerts</h3>
<p class="text-gray-600">Get instant notifications when suspicious activity is detected during calls, allowing immediate action.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-blue-500 bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-phone-volume text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Virtual Numbers</h3>
<p class="text-gray-600">Twilio-powered virtual phone numbers that can be provisioned instantly and managed through our dashboard.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-yellow-500 bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-yellow-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Call Analytics</h3>
<p class="text-gray-600">Comprehensive dashboards showing call patterns, threat detection rates, and performance metrics.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="w-14 h-14 bg-red-500 bg-opacity-10 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-lock text-red-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-dark mb-3">Secure Storage</h3>
<p class="text-gray-600">All call recordings and transcripts are securely stored in encrypted MongoDB databases with strict access controls.</p>
</div>
</div>
</div>
</div>
<!-- How It Works Section -->
<div id="how-it-works" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-dark mb-4">How GuardianLine Works</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Our advanced technology stack works seamlessly to protect your communications.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center mb-16">
<div>
<div class="flex items-center mb-4">
<div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center mr-4">1</div>
<h3 class="text-xl font-bold text-dark">Call Initiation</h3>
</div>
<p class="text-gray-600 mb-6">When a call comes in through your Twilio virtual number, our Node.js backend immediately begins processing the audio stream.</p>
<img src="https://illustrations.popsy.co/amber/phone-call.svg" alt="Call initiation" class="w-full max-w-md rounded-lg shadow-md">
</div>
<div>
<div class="flex items-center mb-4">
<div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center mr-4">2</div>
<h3 class="text-xl font-bold text-dark">Real-time Analysis</h3>
</div>
<p class="text-gray-600 mb-6">Whisper AI transcribes the conversation while GPT-4 analyzes the content for potential threats, scams, or malicious intent.</p>
<img src="https://illustrations.popsy.co/amber/artificial-intelligence.svg" alt="AI analysis" class="w-full max-w-md rounded-lg shadow-md">
</div>
<div>
<div class="flex items-center mb-4">
<div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center mr-4">3</div>
<h3 class="text-xl font-bold text-dark">Instant Alerts</h3>
</div>
<p class="text-gray-600 mb-6">If a threat is detected, our system immediately notifies you through the Next.js web interface or mobile app with details of the risk.</p>
<img src="https://illustrations.popsy.co/amber/mobile-notifications.svg" alt="Instant alerts" class="w-full max-w-md rounded-lg shadow-md">
</div>
<div>
<div class="flex items-center mb-4">
<div class="bg-primary text-white rounded-full w-8 h-8 flex items-center justify-center mr-4">4</div>
<h3 class="text-xl font-bold text-dark">Secure Storage</h3>
</div>
<p class="text-gray-600 mb-6">All call metadata, transcripts, and analysis results are securely stored in MongoDB for compliance, reporting, and future reference.</p>
<img src="https://illustrations.popsy.co/amber/data-report.svg" alt="Secure storage" class="w-full max-w-md rounded-lg shadow-md">
</div>
</div>
<div class="bg-primary bg-opacity-10 rounded-xl p-8 md:p-12">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div>
<h3 class="text-2xl font-bold text-dark mb-4">Technology Stack</h3>
<p class="text-gray-600 mb-6">GuardianLine is built on a modern, scalable technology stack designed for reliability and performance.</p>
<div class="grid grid-cols-2 gap-4">
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/nextjs.org" alt="Next.js" class="h-8 mr-3">
<span class="font-medium">Next.js</span>
</div>
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/nodejs.org" alt="Node.js" class="h-8 mr-3">
<span class="font-medium">Node.js</span>
</div>
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/mongodb.com" alt="MongoDB" class="h-8 mr-3">
<span class="font-medium">MongoDB</span>
</div>
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/twilio.com" alt="Twilio" class="h-8 mr-3">
<span class="font-medium">Twilio</span>
</div>
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/openai.com" alt="OpenAI" class="h-8 mr-3">
<span class="font-medium">OpenAI</span>
</div>
<div class="flex items-center bg-white p-3 rounded-lg">
<img src="https://logo.clearbit.com/tailwindcss.com" alt="Tailwind CSS" class="h-8 mr-3">
<span class="font-medium">Tailwind CSS</span>
</div>
</div>
</div>
<div>
<img src="https://illustrations.popsy.co/amber/server-cluster.svg" alt="Technology stack" class="w-full rounded-lg">
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div id="pricing" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-dark mb-4">Simple, Transparent Pricing</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your business needs. No hidden fees.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-xl font-bold text-dark 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 text-dark">$29</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1,000 call minutes</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic threat detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1 virtual number</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Email alerts</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No priority support</span>
</li>
</ul>
<a href="#signup" class="block w-full bg-gray-100 text-dark text-center py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">Get Started</a>
</div>
</div>
<!-- Pro Plan (Featured) -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-primary relative">
<div class="absolute top-0 right-0 bg-primary text-white text-xs font-bold px-3 py-1 rounded-bl-lg">MOST POPULAR</div>
<div class="p-8">
<h3 class="text-xl font-bold text-dark mb-2">Professional</h3>
<p class="text-gray-600 mb-6">For growing businesses</p>
<div class="mb-6">
<span class="text-4xl font-bold text-dark">$99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>5,000 call minutes</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced threat detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>5 virtual numbers</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Real-time alerts</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
</ul>
<a href="#signup" class="block w-full bg-primary text-white text-center py-3 rounded-lg font-medium hover:bg-indigo-700 transition duration-300">Get Started</a>
</div>
</div>
<!-- Enterprise Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-xl font-bold text-dark 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 text-dark">Custom</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited call minutes</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Premium threat detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited numbers</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated account manager</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 premium support</span>
</li>
</ul>
<a href="#contact" class="block w-full bg-gray-100 text-dark text-center py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">Contact Sales</a>
</div>
</div>
</div>
<div class="mt-16 text-center">
<p class="text-gray-600 mb-4">Not sure which plan is right for you?</p>
<a href="#demo" class="inline-flex items-center text-primary font-medium hover:text-indigo-700">
Request a personalized demo
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-dark mb-4">What Our Customers Say</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">Trusted by businesses of all sizes to protect their communications.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-dark">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">CFO, TechStart Inc.</p>
</div>
</div>
<p class="text-gray-600 mb-4">"GuardianLine has saved us countless hours and potentially thousands of dollars by detecting fraudulent calls before they could do any damage. The AI analysis is incredibly accurate."</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-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-dark">Michael Chen</h4>
<p class="text-gray-500 text-sm">CEO, Global Retail</p>
</div>
</div>
<p class="text-gray-600 mb-4">"The real-time alerts have been a game-changer for our customer support team. We can now proactively protect our customers from scams during calls."</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-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma Rodriguez" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-dark">Emma Rodriguez</h4>
<p class="text-gray-500 text-sm">Director of Security, FinCorp</p>
</div>
</div>
<p class="text-gray-600 mb-4">"As a financial institution, security is our top priority. GuardianLine provides an additional layer of protection that integrates seamlessly with our existing systems."</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>
</div>
<!-- CTA Section -->
<div class="gradient-bg py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Protect Your Business?</h2>
<p class="text-xl text-white opacity-90 mb-8 max-w-3xl mx-auto">Join thousands of businesses who trust GuardianLine to secure their communications and prevent fraud.</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="#signup" class="bg-white text-primary px-8 py-4 rounded-lg font-medium hover:bg-gray-100 transition duration-300">Start Free 14-Day Trial</a>
<a href="#demo" class="border-2 border-white text-white px-8 py-4 rounded-lg font-medium hover:bg-white hover:text-primary transition duration-300">Schedule a Demo</a>
</div>
</div>
</div>
<!-- FAQ Section -->
<div class="py-20 bg-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-dark mb-4">Frequently Asked Questions</h2>
<p class="text-lg text-gray-600">Find answers to common questions about GuardianLine.</p>
</div>
<div class="space-y-6">
<!-- FAQ Item 1 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 focus:outline-none">
<h3 class="text-lg font-medium text-dark">How does the AI detect potential threats?</h3>
<i class="fas fa-chevron-down text-primary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6">
<p class="text-gray-600">Our system uses OpenAI's GPT-4 model trained on millions of call transcripts to identify patterns associated with scams, fraud, and malicious intent. It analyzes speech patterns, keywords, and context to detect potential threats with high accuracy.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 focus:outline-none">
<h3 class="text-lg font-medium text-dark">Is my call data secure and private?</h3>
<i class="fas fa-chevron-down text-primary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6">
<p class="text-gray-600">Absolutely. All call recordings and transcripts are encrypted both in transit and at rest. We use industry-standard security protocols and store data in secure MongoDB databases with strict access controls. You retain full ownership of your data.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 focus:outline-none">
<h3 class="text-lg font-medium text-dark">Can I use my existing phone numbers?</h3>
<i class="fas fa-chevron-down text-primary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden px-6 pb-6">
<p class="text-gray-600">Yes! GuardianLine supports number porting from most carriers. Alternatively, you can easily provision new virtual numbers through our Twilio integration and forward calls from your existing numbers to your GuardianLine numbers.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 focus:outline-none">
<h3 class="text-lg font-medium text-dark">How quickly can I get started?</h3>
<i class="fas fa-chevron-down text-primary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden
</html> |