File size: 40,720 Bytes
4c27979 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thematik | AI-Powered Thematic Analysis for Market Research</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, #4f46e5 0%, #7c3aed 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);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.pricing-card:hover {
transform: scale(1.03);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: white;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="gradient-bg text-white fixed w-full z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<div class="text-2xl font-bold mr-10">Thematik<span class="text-indigo-200">.ai</span></div>
<div class="hidden md:flex space-x-8">
<a href="#features" class="nav-link">Features</a>
<a href="#how-it-works" class="nav-link">How It Works</a>
<a href="#pricing" class="nav-link">Pricing</a>
<a href="#testimonials" class="nav-link">Testimonials</a>
</div>
</div>
<div>
<a href="#contact" class="bg-white text-indigo-600 px-6 py-2 rounded-full font-medium hover:bg-indigo-50 transition duration-300">Get Started</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white pt-32 pb-20">
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Unlock Deep Insights from Qualitative Data</h1>
<p class="text-xl text-indigo-100 mb-8">AI-powered thematic analysis for market researchers and consultants. Transform open-ended responses into actionable insights in minutes, not weeks.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-indigo-600 px-8 py-4 rounded-full font-bold text-lg hover:bg-indigo-50 transition duration-300 text-center">Request Demo</a>
<a href="#how-it-works" class="border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-white hover:bg-opacity-10 transition duration-300 text-center">Learn More</a>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white rounded-xl shadow-2xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Dashboard showing thematic analysis" class="w-full h-auto">
</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 LEADING RESEARCH FIRMS WORLDWIDE</p>
<div class="flex flex-wrap justify-center items-center gap-12">
<img src="https://via.placeholder.com/150x50?text=Company+1" alt="Company Logo" class="h-8 opacity-60">
<img src="https://via.placeholder.com/150x50?text=Company+2" alt="Company Logo" class="h-8 opacity-60">
<img src="https://via.placeholder.com/150x50?text=Company+3" alt="Company Logo" class="h-8 opacity-60">
<img src="https://via.placeholder.com/150x50?text=Company+4" alt="Company Logo" class="h-8 opacity-60">
<img src="https://via.placeholder.com/150x50?text=Company+5" alt="Company Logo" class="h-8 opacity-60">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features for Qualitative Analysis</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Our AI understands context, nuance, and sentiment to deliver insights that manual coding might miss.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-brain text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Advanced NLP Processing</h3>
<p class="text-gray-600">Our proprietary algorithms detect themes, patterns, and sentiment with human-like understanding of language nuances.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-project-diagram text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Theme Visualization</h3>
<p class="text-gray-600">Interactive visualizations show theme relationships, prevalence, and evolution across your dataset.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-chart-bar text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Quantitative Integration</h3>
<p class="text-gray-600">Seamlessly combine qualitative insights with quantitative data for comprehensive analysis.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-users text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Demographic Segmentation</h3>
<p class="text-gray-600">Analyze how themes vary across demographic groups to uncover hidden patterns in your audience.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-history text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Temporal Analysis</h3>
<p class="text-gray-600">Track how themes and sentiment evolve over time to identify emerging trends and shifts.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-lg transition duration-300">
<div class="w-14 h-14 gradient-bg rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-lock text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Enterprise Security</h3>
<p class="text-gray-600">Military-grade encryption and compliance with global data protection regulations for your sensitive research data.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How InsightAI Works</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">From raw responses to actionable insights in three simple steps</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<div class="relative">
<div class="absolute -left-8 -top-8 w-32 h-32 bg-purple-100 rounded-full opacity-50"></div>
<div class="absolute -right-8 -bottom-8 w-32 h-32 bg-indigo-100 rounded-full opacity-50"></div>
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Upload data" class="relative rounded-xl shadow-lg w-full max-w-md mx-auto">
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<div class="mb-10">
<div class="flex items-start mb-4">
<div class="gradient-bg text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">1</div>
<div>
<h3 class="text-xl font-bold mb-2">Upload Your Data</h3>
<p class="text-gray-600">Import survey responses from CSV, Excel, or connect directly to your survey platform. Our system handles structured and unstructured data with equal ease.</p>
</div>
</div>
</div>
<div class="mb-10">
<div class="flex items-start mb-4">
<div class="gradient-bg text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">2</div>
<div>
<h3 class="text-xl font-bold mb-2">AI Processes Your Data</h3>
<p class="text-gray-600">Our algorithms analyze the text, identifying themes, sentiment, and patterns. You can guide the analysis with custom dictionaries or let the AI discover emerging themes organically.</p>
</div>
</div>
</div>
<div class="mb-10">
<div class="flex items-start mb-4">
<div class="gradient-bg text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">3</div>
<div>
<h3 class="text-xl font-bold mb-2">Explore & Export Insights</h3>
<p class="text-gray-600">Visualize the results through interactive dashboards, filter by demographics, and export professional reports ready for client presentations or further analysis.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Case Study Section -->
<section class="py-20 gradient-bg text-white">
<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 md:pr-12">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Case Study: Global Consumer Research</h2>
<p class="text-xl text-indigo-100 mb-8">How a leading market research firm reduced analysis time by 80% while increasing insight depth.</p>
<div class="mb-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-white bg-opacity-20 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-clock text-xl"></i>
</div>
<div>
<p class="text-2xl font-bold">80%</p>
<p class="text-indigo-100">Reduction in analysis time</p>
</div>
</div>
</div>
<div class="mb-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-white bg-opacity-20 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-lightbulb text-xl"></i>
</div>
<div>
<p class="text-2xl font-bold">3.5x</p>
<p class="text-indigo-100">More themes identified</p>
</div>
</div>
</div>
<a href="#" class="inline-block border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-white hover:bg-opacity-10 transition duration-300">Read Full Case Study</a>
</div>
<div class="md:w-1/2">
<div class="bg-white bg-opacity-10 rounded-xl p-8 backdrop-filter backdrop-blur-lg">
<div class="flex items-start mb-6">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-16 h-16 rounded-full mr-4">
<div>
<p class="font-bold">Sarah Johnson</p>
<p class="text-indigo-200">Director of Research, Global Insights Inc.</p>
</div>
</div>
<blockquote class="text-lg italic mb-6">
"InsightAI transformed how we approach qualitative analysis. What used to take our team weeks of manual coding now happens overnight with greater consistency and depth. We're uncovering insights we would have completely missed before."
</blockquote>
<div class="flex">
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your research needs</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-lg border border-gray-100 transition duration-300">
<h3 class="text-xl font-bold mb-4">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for individual researchers and small projects</p>
<div class="mb-6">
<span class="text-4xl font-bold">$99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="mb-8 space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 1,000 responses/month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic theme detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Standard visualizations</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Email support</span>
</li>
</ul>
<a href="#contact" class="block text-center bg-gray-100 text-gray-800 px-6 py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">Get Started</a>
</div>
<!-- Professional Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-xl border-2 border-indigo-500 transform scale-105 transition duration-300 relative">
<div class="absolute top-0 right-0 bg-indigo-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">MOST POPULAR</div>
<h3 class="text-xl font-bold mb-4">Professional</h3>
<p class="text-gray-600 mb-6">For research teams and mid-sized projects</p>
<div class="mb-6">
<span class="text-4xl font-bold">$299</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="mb-8 space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 10,000 responses/month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced theme detection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Sentiment analysis</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Demographic segmentation</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="#contact" class="block text-center gradient-bg text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition duration-300">Get Started</a>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-lg border border-gray-100 transition duration-300">
<h3 class="text-xl font-bold mb-4">Enterprise</h3>
<p class="text-gray-600 mb-6">For large research firms and high-volume needs</p>
<div class="mb-6">
<span class="text-4xl font-bold">Custom</span>
</div>
<ul class="mb-8 space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited responses</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>All Professional features</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom integrations</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>API access</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 text-center bg-gray-100 text-gray-800 px-6 py-3 rounded-lg font-medium hover:bg-gray-200 transition duration-300">Contact Sales</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted by Research Leaders</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from professionals who've transformed their qualitative analysis</p>
</div>
<div class="grid md:grid-cols-2 gap-8 max-w-6xl mx-auto">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-xl border border-gray-200">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold">Michael Rodriguez</p>
<p class="text-gray-600">Head of Insights, Brand Analytics</p>
</div>
</div>
<blockquote class="text-lg italic mb-6">
"The time savings alone make InsightAI invaluable, but what really impresses me is the consistency of the analysis. We no longer have coder bias affecting our results, and our clients appreciate the data-driven approach."
</blockquote>
<div class="flex">
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-xl border border-gray-200">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold">Jennifer Park</p>
<p class="text-gray-600">Research Director, Consumer Insights Co.</p>
</div>
</div>
<blockquote class="text-lg italic mb-6">
"We were skeptical about AI replacing human analysis, but InsightAI doesn't replace—it enhances. Our analysts now spend more time interpreting insights rather than just coding data, which has elevated the quality of our deliverables."
</blockquote>
<div class="flex">
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
<i class="fas fa-star text-yellow-300 mr-1"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 gradient-bg text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Qualitative Analysis?</h2>
<p class="text-xl text-indigo-100 mb-8 max-w-3xl mx-auto">Join hundreds of research professionals who save time and uncover deeper insights with InsightAI.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-indigo-600 px-8 py-4 rounded-full font-bold text-lg hover:bg-indigo-50 transition duration-300">Request Demo</a>
<a href="#pricing" class="border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-white hover:bg-opacity-10 transition duration-300">View Pricing</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Get in Touch</h2>
<p class="text-xl text-gray-600 mb-8">Have questions about how InsightAI can work for your research needs? Our team is here to help.</p>
<div class="mb-8">
<div class="flex items-start mb-6">
<div class="gradient-bg text-white rounded-lg w-12 h-12 flex items-center justify-center mr-4 flex-shrink-0">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h3 class="text-lg font-bold mb-1">Email Us</h3>
<p class="text-gray-600">contact@insightai.com</p>
</div>
</div>
<div class="flex items-start mb-6">
<div class="gradient-bg text-white rounded-lg w-12 h-12 flex items-center justify-center mr-4 flex-shrink-0">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<h3 class="text-lg font-bold mb-1">Call Us</h3>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="gradient-bg text-white rounded-lg w-12 h-12 flex items-center justify-center mr-4 flex-shrink-0">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<h3 class="text-lg font-bold mb-1">Visit Us</h3>
<p class="text-gray-600">123 Research Drive, Suite 400<br>San Francisco, CA 94107</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-bold mb-6">Send Us a Message</h3>
<form>
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-6">
<label for="company" class="block text-gray-700 font-medium mb-2">Company</label>
<input type="text" id="company" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
</div>
<button type="submit" class="w-full gradient-bg text-white px-6 py-4 rounded-lg font-bold hover:opacity-90 transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6 max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600">Everything you need to know about InsightAI</p>
</div>
<div class="space-y-6">
<!-- FAQ 1 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-bold">How accurate is the thematic analysis?</h3>
<i class="fas fa-chevron-down text-indigo-500"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Our AI achieves 92-95% accuracy compared to human coding based on benchmark studies. The system continuously learns from corrections and can be trained on your specific coding frameworks for even greater accuracy.</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-bold">Can I use my existing coding framework?</h3>
<i class="fas fa-chevron-down text-indigo-500"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Absolutely. InsightAI allows you to import your existing codebooks and dictionaries. The AI will apply your framework while also suggesting additional themes it detects that might not be in your current framework.</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-bold">How does InsightAI handle multiple languages?</h3>
<i class="fas fa-chevron-down text-indigo-500"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Our system currently supports analysis in English, Spanish, French, German, and Mandarin. Additional languages are being added based on demand. Thematic analysis quality varies slightly by language but maintains high accuracy across all supported languages.</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-bold">Is my data secure with InsightAI?</h3>
<i class="fas fa-chevron-down text-indigo-500"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Security is our top priority. All data is encrypted in transit and at rest. We comply with GDPR, CCPA, and other major privacy regulations. Enterprise plans can be deployed in your own cloud environment for additional security.</p>
</div>
</div>
<!-- FAQ 5 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-bold">Can I try InsightAI before committing?</h3>
<i class="fas fa-chevron-down text-indigo-500"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Yes! We offer a 14-day free trial with access to all Professional features. You can analyze up to 500 responses during the trial period to experience the full power of InsightAI.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Insight<span class="text-indigo-300">AI</span></h3>
<p class="text-gray-400">Advanced thematic analysis for market researchers and consultants.</p>
</div>
<div>
<h4 class="font-bold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#features" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white transition">Pricing</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">Updates</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<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">Guides</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>
<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</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">Privacy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 InsightAI. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Simple script to toggle FAQ answers
document.querySelectorAll('button').forEach(button => {
button.addEventListener('click', () => {
const answer = button.nextElementSibling;
const icon = button.querySelector('i');
if (answer.style.display === 'none' || !answer.style.display) {
answer.style.display = 'block';
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
} else {
answer.style.display = 'none';
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
}
});
});
// Smooth scrolling for navigation links
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=torfasonc/xxxxxxxxx" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |