Spaces:
Running
Running
File size: 44,059 Bytes
5158de2 | 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 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 | <!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flow Hero - KI & Automatisierung für KMUs</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: {
light: '#E6F5FE',
DEFAULT: '#0987E5',
dark: '#054D8B'
},
accent: {
light: '#F0F9FF',
DEFAULT: '#06AED4',
dark: '#056478'
},
dark: '#1E293B',
light: '#F8FAFC'
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
}
}
}
}
}
</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;
color: #1E293B;
}
.hero-gradient {
background: linear-gradient(135deg, #E6F5FE 0%, #F0F9FF 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(6, 174, 212, 0.2);
}
.checkmark-list li:before {
content: "✓";
color: #06AED4;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.flow-diagram {
position: relative;
}
.flow-diagram:after {
content: '';
position: absolute;
height: 2px;
background: #06AED4;
width: 80%;
left: 10%;
top: 50%;
z-index: 0;
}
.typing-indicator {
display: inline-block;
}
.typing-indicator span {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #0987E5;
margin-right: 4px;
animation: typing-pulse 1.4s infinite both;
}
.typing-indicator span:nth-child(2) {
animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes typing-pulse {
0%, 100% { opacity: 0.4; transform: translateY(0); }
50% { opacity: 1; transform: translateY(-3px); }
}
#chat-container {
scroll-behavior: smooth;
}
.chat-message {
opacity: 0;
transform: translateY(10px);
animation: fadeIn 0.3s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body class="text-dark bg-light">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50 py-4 px-6 lg:px-12">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<a href="#" class="flex items-center">
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 36C27.9411 36 36 27.9411 36 18C36 8.05887 27.9411 0 18 0C8.05887 0 0 8.05887 0 18C0 27.9411 8.05887 36 18 36Z" fill="#0987E5"/>
<path d="M24.5 15.1666C24.5 19.6141 20.7825 23.1666 16.25 23.1666C11.7175 23.1666 8 19.6141 8 15.1666C8 10.7192 11.7175 7.16663 16.25 7.16663C20.7825 7.16663 24.5 10.7192 24.5 15.1666Z" fill="white"/>
<path d="M28 15.1667C28 17.72 26.1585 19.8333 23.75 19.8333C21.3415 19.8333 19.5 17.72 19.5 15.1667C19.5 12.6134 21.3415 10.5 23.75 10.5C26.1585 10.5 28 12.6134 28 15.1667Z" fill="#06AED4"/>
<path d="M10.5 27.5C10.5 24.1863 13.1863 21.5 16.5 21.5H20.5C23.8137 21.5 26.5 24.1863 26.5 27.5V30.1667C26.5 30.9961 25.8295 31.6667 25 31.6667H12C11.1705 31.6667 10.5 30.9961 10.5 30.1667V27.5Z" fill="white"/>
</svg>
<span class="ml-2 text-xl font-bold text-primary">Flow Hero</span>
</a>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-dark hover:text-primary transition">Features</a>
<a href="#process" class="text-dark hover:text-primary transition">Wie es funktioniert</a>
<a href="#potential" class="text-dark hover:text-primary transition">Potenzial-Check</a>
<a href="#about" class="text-dark hover:text-primary transition">Über Uns</a>
<a href="#faq" class="text-dark hover:text-primary transition">FAQ</a>
<a href="#contact" class="text-dark hover:text-primary transition">Kontakt</a>
</div>
<!-- Mobile menu button -->
<button id="mobile-menu-button" class="md:hidden text-dark">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden absolute top-full left-0 right-0 bg-white shadow-md py-2 px-6">
<a href="#features" class="block py-2 hover:text-primary transition">Features</a>
<a href="#process" class="block py-2 hover:text-primary transition">Wie es funktioniert</a>
<a href="#potential" class="block py-2 hover:text-primary transition">Potenzial-Check</a>
<a href="#about" class="block py-2 hover:text-primary transition">Über Uns</a>
<a href="#faq" class="block py-2 hover:text-primary transition">FAQ</a>
<a href="#contact" class="block py-2 hover:text-primary transition">Kontakt</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient pt-32 pb-16 px-6 lg:px-12">
<div class="max-w-7xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
Potenzial entdecken: <span class="text-primary">Mehr Zeit, weniger Kosten</span>
</h1>
<p class="text-xl text-gray-700 mb-8">
Entfesseln Sie Ihr Unternehmenspotenzial mit KI & Automatisierung.
Flow Hero macht KI für KMUs profitabel ohne IT-Expertise.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#potential" class="bg-primary hover:bg-primary-dark text-white font-medium py-3 px-8 rounded-lg transition shadow-md hover:shadow-lg text-center">
Kostenloses Potenzial entdecken
</a>
<button id="open-chat" class="bg-white hover:bg-gray-100 text-primary border border-primary font-medium py-3 px-8 rounded-lg transition shadow-sm hover:shadow-md text-center">
KI-Assistent starten
</button>
</div>
</div>
<div class="relative">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Business automation" class="rounded-xl shadow-xl w-full h-auto max-h-[400px] object-cover">
<!-- Floating badges -->
<div class="absolute -top-4 -left-4 bg-white p-3 rounded-lg shadow-lg">
<div class="bg-accent-light text-accent-dark rounded-full w-12 h-12 flex items-center justify-center mb-2">
<i class="fas fa-chart-line text-xl"></i>
</div>
<p class="text-sm font-medium text-center">+47% Effizienz</p>
</div>
<div class="absolute -bottom-4 -right-4 bg-white p-3 rounded-lg shadow-lg">
<div class="bg-accent-light text-accent-dark rounded-full w-12 h-12 flex items-center justify-center mb-2">
<i class="fas fa-clock text-xl"></i>
</div>
<p class="text-sm font-medium text-center">8h/Woche gespart</p>
</div>
</div>
</div>
</section>
<!-- Logo Cloud -->
<section class="py-12 px-6 bg-white">
<div class="max-w-7xl mx-auto">
<p class="text-center text-gray-500 mb-8">Vertrauen Sie auf Flow Hero wie diese Unternehmen:</p>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 place-items-center">
<img src="https://via.placeholder.com/150x60?text=Unternehmen+1" alt="Logo 1" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=Unternehmen+2" alt="Logo 2" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=Unternehmen+3" alt="Logo 3" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=Unternehmen+4" alt="Logo 4" class="h-12 opacity-70 hover:opacity-100 transition">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 px-6 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">So funktioniert's</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Flow Hero liefert messbare Ergebnisse, die Ihr Unternehmen voranbringen.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-clock text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Messbare Zeitersparnis</h3>
<p class="text-gray-600">
Gewinnen Sie wöchentlich Stunden zurück, indem Sie Routineaufgaben automatisieren und sich auf wertschöpfende Tätigkeiten konzentrieren.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-plug text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Sofort startklar – Ohne IT-Stress</h3>
<p class="text-gray-600">
Wir implementieren KI & Automatisierung nahtlos in Ihre Abläufe. Sie profitieren direkt, ohne technische Hürden.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-rocket text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Erste Erfolge in Tagen, nicht Wochen</h3>
<p class="text-gray-600">
Erleben Sie, wie schnell sich Ihre Investition durch optimierte Prozesse und gesteigerte Produktivität auszahlt.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-handshake text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ihr Partner vor Ort</h3>
<p class="text-gray-600">
Wir verstehen die Herausforderungen von KMUs und bieten maßgeschneiderte Lösungen mit persönlicher Betreuung.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Zukunftssicher aufgestellt</h3>
<p class="text-gray-600">
Wir machen Sie fit für die digitale Zukunft und zeigen Ihnen, wie Sie KI gewinnbringend für Ihr Wachstum einsetzen.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-primary-light text-primary w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-euro-sign text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Klare Kostenersparnis</h3>
<p class="text-gray-600">
Reduzieren Sie operative Kosten und vermeiden Sie teure Insellösungen. Flow Hero ist Ihre wirtschaftliche Abkürzung zur Effizienz.
</p>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-16 px-6 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Ihr Fahrplan zu mehr Effizienz</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
In 4 klaren Schritten zu messbaren Ergebnissen und optimierten Prozessen
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-4 gap-8">
<!-- Step 1 -->
<div class="relative flow-diagram">
<div class="relative z-10 bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
<div class="bg-primary-light text-primary w-12 h-12 rounded-full flex items-center justify-center mb-4 text-xl font-bold">1</div>
<h3 class="text-xl font-bold mb-3">Potenzialanalyse & Strategie-Workshop</h3>
<p class="text-gray-600 mb-4">
Wir decken ungenutzte Potenziale auf und definieren messbare Ziele für Ihre Automatisierung.
</p>
<ul class="checkmark-list space-y-2">
<li>Analyse Ihrer aktuellen Prozesse</li>
<li>Identifikation von Zeitfressern</li>
<li>Definition klarer Ziele</li>
</ul>
</div>
</div>
<!-- Step 2 -->
<div class="relative flow-diagram">
<div class="relative z-10 bg-white p-6 rounded-xl shadow-md border-t-4 border-accent">
<div class="bg-accent-light text-accent w-12 h-12 rounded-full flex items-center justify-center mb-4 text-xl font-bold">2</div>
<h3 class="text-xl font-bold mb-3">Sofortige Entlastung durch Quick Wins</h3>
<p class="text-gray-600 mb-4">
Erste Erfolge, die überzeugen: Automatisierungen, die Ihnen sofort spürbare Zeitersparnis bringen.
</p>
<ul class="checkmark-list space-y-2">
<li>Interner Wissens-Bot</li>
<li>E-Mail-Automatisierung</li>
<li>Intelligente Datenerfassung</li>
</ul>
</div>
</div>
<!-- Step 3 -->
<div class="relative flow-diagram">
<div class="relative z-10 bg-white p-6 rounded-xl shadow-md border-t-4 border-primary">
<div class="bg-primary-light text-primary w-12 h-12 rounded-full flex items-center justify-center mb-4 text-xl font-bold">3</div>
<h3 class="text-xl font-bold mb-3">Maßgeschneiderte Automatisierung</h3>
<p class="text-gray-600 mb-4">
Passgenaue Workflows, die Ihre Kernprozesse optimieren und Ihre Wettbewerbsfähigkeit steigern.
</p>
<div class="mt-4">
<img src="https://via.placeholder.com/300x150?text=Flow-Diagramm" alt="Workflow Diagramm" class="rounded-lg">
</div>
</div>
</div>
<!-- Step 4 -->
<div class="relative">
<div class="relative z-10 bg-white p-6 rounded-xl shadow-md border-t-4 border-accent">
<div class="bg-accent-light text-accent w-12 h-12 rounded-full flex items-center justify-center mb-4 text-xl font-bold">4</div>
<h3 class="text-xl font-bold mb-3">Nahtlose Integration & Erfolg</h3>
<p class="text-gray-600 mb-4">
Wir integrieren die Lösungen perfekt in Ihre Systemlandschaft und schulen Ihr Team.
</p>
<ul class="checkmark-list space-y-2">
<li>Nahtlose Integration</li>
<li>Team-Schulungen</li>
<li>Nachhaltige Optimierung</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Potential Check Section -->
<section id="potential" class="py-16 px-6 bg-primary text-white">
<div class="max-w-7xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold mb-6">Ihr persönlicher Effizienz-Check</h2>
<p class="text-xl mb-8 opacity-90">
Erfahren Sie in unserem kostenlosen Potenzial-Check, welche Quick Wins und Einsparungen für Ihr KMU möglich sind.
</p>
<div class="bg-white bg-opacity-10 p-6 rounded-lg backdrop-blur-sm">
<h3 class="text-xl font-bold mb-4">Schritt 1: Ihre Kontaktdaten</h3>
<form class="space-y-4">
<div>
<label for="company" class="block mb-1 font-medium">Unternehmen *</label>
<input type="text" id="company" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="name" class="block mb-1 font-medium">Ihr Name *</label>
<input type="text" id="name" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="email" class="block mb-1 font-medium">E-Mail *</label>
<input type="email" id="email" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="phone" class="block mb-1 font-medium">Telefon (optional)</label>
<input type="tel" id="phone" class="w-full px-4 py-2 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div class="flex justify-between pt-4">
<button type="button" class="px-6 py-2 rounded-lg bg-white bg-opacity-10 hover:bg-opacity-20 transition font-medium">
Zurück
</button>
<button type="button" class="px-6 py-2 rounded-lg bg-white text-primary font-medium hover:bg-opacity-90 transition">
Weiter
</button>
</div>
</form>
</div>
</div>
<div class="bg-white bg-opacity-10 backdrop-blur-sm p-8 rounded-xl">
<h3 class="text-2xl font-bold mb-4">Was erwartet Sie?</h3>
<p class="mb-6 opacity-90">
Unser Potenzial-Check zeigt Ihnen auf Basis Ihrer Angaben konkrete Möglichkeiten für Automatisierung und Kosteneinsparungen:
</p>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-white text-primary w-6 h-6 rounded-full flex items-center justify-center mr-3 mt-1 flex-shrink-0">
<i class="fas fa-check text-xs"></i>
</div>
<p>Persönliche Analyse Ihrer größten Zeitfresser</p>
</li>
<li class="flex items-start">
<div class="bg-white text-primary w-6 h-6 rounded-full flex items-center justify-center mr-3 mt-1 flex-shrink-0">
<i class="fas fa-check text-xs"></i>
</div>
<p>Konkrete Vorschläge für Automatisierungslösungen</p>
</li>
<li class="flex items-start">
<div class="bg-white text-primary w-6 h-6 rounded-full flex items-center justify-center mr-3 mt-1 flex-shrink-0">
<i class="fas fa-check text-xs"></i>
</div>
<p>Einschätzung der möglichen Zeit- und Kostenersparnis</p>
</li>
<li class="flex items-start">
<div class="bg-white text-primary w-6 h-6 rounded-full flex items-center justify-center mr-3 mt-1 flex-shrink-0">
<i class="fas fa-check text-xs"></i>
</div>
<p>Strategie-Vorschlag für Ihre nächsten Schritte</p>
</li>
<li class="flex items-start">
<div class="bg-white text-primary w-6 h-6 rounded-full flex items-center justify-center mr-3 mt-1 flex-shrink-0">
<i class="fas fa-check text-xs"></i>
</div>
<p>Unverbindliche Beratung durch unsere Experten</p>
</li>
</ul>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 px-6 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Unser Ansatz</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Mensch und Maschine im Flow
</p>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-12">
<div class="grid grid-cols-1 lg:grid-cols-2">
<div class="p-8 lg:p-12">
<p class="text-lg mb-6">
Bei Flow Hero glauben wir daran, dass Technologie den Menschen nicht ersetzen soll – sondern ihn befreit.
Unsere KI-Systeme übernehmen repetitive Aufgaben, damit echte Kreativität, Strategie und zwischenmenschliche
Arbeit wieder in den Mittelpunkt rücken können.
</p>
<p class="text-lg">
Wir sehen KI nicht als Blackbox, sondern als wertvolles Werkzeug, das jeder verstehen und nutzen lernen kann – genau wie vor 20 Jahren Excel.
Wer KI nicht aktiv nutzt, wird langfristig von denen überholt, die es tun. Deshalb setzen wir auf Transparenz, Wissenstransfer und echte Zusammenarbeit zwischen Mensch und Maschine.
</p>
</div>
<div class="bg-gradient-to-br from-primary-light to-accent-light h-64 lg:h-auto flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Team collaboration" class="w-full h-full object-cover">
</div>
</div>
</div>
<!-- Values -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
<!-- Value 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="bg-primary-light text-primary w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-tachometer-alt text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Effizienz</h3>
<p class="text-gray-600">
Unsere KI-Flows übernehmen wiederkehrende Aufgaben – schnell, präzise und rund um die Uhr. So bleibt mehr Zeit für das, was wirklich zählt.
</p>
</div>
<!-- Value 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="bg-primary-light text-primary w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-award text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Qualität</h3>
<p class="text-gray-600">
Wir glauben, dass echte Qualität entsteht, wenn Technologie den Alltag erleichtert – nicht erschwert. Unsere Automationen verbessern Ergebnisse sichtbar.
</p>
</div>
<!-- Value 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="bg-primary-light text-primary w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-heart text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Leidenschaft</h3>
<p class="text-gray-600">
Wir brennen für das, was wir tun. Mit Leidenschaft für Technologie und Verständnis für unternehmerische Herausforderungen bauen wir Systeme, die begeistern.
</p>
</div>
<!-- Value 4 -->
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="bg-primary-light text-primary w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-graduation-cap text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Expertise</h3>
<p class="text-gray-600">
Wir kombinieren 15+ Jahre Marketing- und Tech-Erfahrung mit modernster KI. Doch Wissen allein reicht uns nicht: Wir befähigen unsere Kunden.
</p>
</div>
</div>
<!-- Team -->
<h3 class="text-2xl font-bold mb-8 text-center">Unser Team</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Team Member 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 bg-gradient-to-r from-primary to-accent flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Paul Bieber" class="w-32 h-32 rounded-full object-cover border-4 border-white">
</div>
<div class="p-6">
<h4 class="font-bold text-xl mb-1">Paul Bieber</h4>
<p class="text-accent font-medium mb-4">Co-Founder / CEO</p>
<p class="text-gray-600">
Paul verfügt über 15 Jahre Erfahrung im Online-Marketing. Er hat für namhafte Unternehmen und Agenturen gearbeitet und sich besonders im Bereich Performance-Marketing einen Namen gemacht.
</p>
</div>
</div>
<!-- Flow Hero Agent -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 bg-gradient-to-r from-accent to-primary flex items-center justify-center relative">
<div class="absolute inset-0 bg-black bg-opacity-20 flex items-center justify-center">
<img src="https://flowhero.com/wp-content/uploads/2023/06/FH-AI-Agent-transparent.png" alt="Flow Hero AI Agent" class="w-32 h-32 object-contain">
</div>
</div>
<div class="p-6">
<h4 class="font-bold text-xl mb-1">Flow Hero KI-Agent</h4>
<p class="text-accent font-medium mb-4">Ihr digitaler Assistent</p>
<p class="text-gray-600">
Was wir anbieten, leben wir selbst – unsere Flows übernehmen täglich Aufgaben, die sonst manuell wären, und halten so unseren eigenen Betrieb im perfekten Flow. Der Flow Hero führt ein Team aus KI-Agenten.
</p>
</div>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 bg-gradient-to-r from-primary to-accent flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Markus Falkenhagen" class="w-32 h-32 rounded-full object-cover border-4 border-white">
</div>
<div class="p-6">
<h4 class="font-bold text-xl mb-1">Markus Falkenhagen</h4>
<p class="text-accent font-medium mb-4">Co-Founder / CTO</p>
<p class="text-gray-600">
Markus ist digitaler Native, Hobby-Coder und begeisterter KI-Experte. Als Early Adopter neuer Technologien bringt er frische Ideen, technisches Know-how und echtes Nerd-Wissen ins Team.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-16 px-6 bg-white">
<div class="max-w-5xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Häufig gestellte Fragen</h2>
<p class="text-xl text-gray-600">
Antworten auf Ihre wichtigsten Fragen rund um KI, Automatisierung und Flow Hero
</p>
</div>
<div class="space-y-4">
<!-- FAQ 1 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Was genau bietet Flow Hero an?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
Flow Hero analysiert Ihre Geschäftsprozesse, identifiziert automatisierbare Aufgaben und implementiert maßgeschneiderte KI-Lösungen. Unsere Services reichen von einfachen Workflow-Automatisierungen über KI-gestützte Datenverarbeitung bis hin zu komplett individualisierten Lösungen – immer mit Fokus auf messbare Effizienzsteigerung und Kostensenkung für KMUs.
</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Benötige ich technisches Vorwissen, um Flow Hero nutzen zu können?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
Nein, unsere Lösungen sind speziell für Unternehmen ohne IT-Abteilung konzipiert. Wir kümmern uns um die gesamte Implementierung und bieten Schulungen für Ihre Mitarbeiter an. Unser Ziel ist es, dass Sie sich auf Ihr Kerngeschäft konzentrieren können, während unsere Tools im Hintergrund arbeiten.
</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Wie schnell sehe ich erste Ergebnisse?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
Bereits in den ersten Wochen implementieren wir sogenannte "Quick Wins" – einfache Automatisierungen mit sofortigem Effekt. Komplexere Lösungen benötigen je nach Umfang 4-8 Wochen bis zur vollständigen Umsetzung. Aber bereits nach unserer Potenzialanalyse kennen Sie die konkreten Einsparpotenziale.
</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Ist KI und Automatisierung nicht sehr teuer?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
Unsere Lösungen sind genau auf die Budgets von KMUs zugeschnitten. Die Kosten richten sich nach dem Umfang der Automatisierung, liegen aber in der Regel deutlich unter den Personalkosten für die manuellen Prozesse. Viele unserer Kunden erreichen bereits nach 3-6 Monaten einen positiven ROI.
</p>
</div>
</div>
<!-- FAQ 5 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Welche Arten von Prozessen können automatisiert werden?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
Typische Kandidaten sind: Datenübertragung zwischen Systemen, Dokumentenverarbeitung, E-Mail-Kommunikation (z.B. FAQ-Antworten), Berichtserstellung, Terminplanung, Datenerfassung und -validierung, Kundenkommunikation (Chatbots), Bestellabwicklung und vieles mehr. In unserer Potenzialanalyse identifizieren wir die für Sie relevanten Prozesse.
</p>
</div>
</div>
<!-- FAQ 6 -->
<div class="border border-gray-200 rounded-lg overflow-hidden">
<button class="faq-question w-full text-left p-6 hover:bg-gray-50 transition flex justify-between items-center">
<span class="text-lg font-medium">Wie funktioniert der Potenzial-Check?</span>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="faq-answer hidden p-6 pt-0 border-t border-gray-200">
<p class="text-gray-600">
In einem unverbindlichen Gespräch analysieren wir gemeinsam Ihre aktuellen Prozesse und identifizieren konkrete Automatisierungsmöglichkeiten. Basierend auf unserer Erfahrung mit ähnlichen Unternehmen können wir Ihnen bereits in diesem ersten Gespräch gute Einsparpotenziale aufzeigen. Der Check ist kostenlos und verpflichtet Sie zu nichts.
</p>
</div>
</div>
</div>
<!-- Legal links -->
<div class="mt-12 pt beforehand8 border-t border-gray-200 grid grid-cols-1 sm:grid-cols-3 gap-4 text-sm text-center">
<a href="#" class="text-gray-600 hover:text-primary transition">Impressum</a>
<a href="#" class="text-gray-600 hover:text-primary transition">Datenschutzerklärung</a>
<a href="#" class="text-gray-600 hover:text-primary transition">Allgemeine Geschäftsbedingungen (AGB)</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-12 px-6 bg-gradient-to-r from-primary to-accent text-white">
<div class="max-w-5xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Wie viel Zeit willst du noch verschenken?</h2>
<p class="text-xl mb-8 opacity-90">
Hol dir jetzt deinen persönlichen Flow und starte in eine effizientere Zukunft!
</p>
<button id="cta-button" class="bg-white hover:bg-gray-100 text-primary font-bold py-3 px-8 rounded-lg shadow-lg transition transform hover:scale-105">
Jetzt kostenlos beraten lassen
</button>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 px-6 bg-gray-50">
<div class="max-w-7xl mx-auto grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<h2 class="text-3xl font-bold mb-6">Starten Sie jetzt Ihre Erfolgsgeschichte mit Flow Hero</h2>
<p class="text-xl text-gray-600 mb-8">
Bereit für mehr Effizienz, spürbare Zeitersparnis und nachhaltiges Wachstum?
Schildern Sie uns Ihr Anliegen – wir entwickeln die passende KI- & Automatisierungslösung für Ihr KMU.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-primary-light text-primary w-10 h-10 rounded-full flex items-center justify-center mr-4 mt-1 flex-shrink-0">
<i class="fas fa-envelope"></i>
</div>
<p>
<span class="block font-medium">Email</span>
<a href="mailto:info@flowhero.com" class="text-primary hover:underline">info@flowhero.com</a>
</p>
</div>
<div class="flex items-start">
<div class="bg-primary-light text-primary w-10 h-10 rounded-full flex items-center justify-center mr-4 mt-1 flex-shrink-0">
<i class="fas fa-phone"></i>
</div>
<p>
<span class="block font-medium">Telefon</span>
<a href="tel:+490123456789" class="text-primary hover:underline">+49 (0)123 456789</a>
</p>
</div>
<div class="flex items-start">
<div class="bg-primary-light text-primary w-10 h-10 rounded-full flex items-center justify-center mr-4 mt-1 flex-shrink-0">
<i class="fas fa-map-marker-alt"></i>
</div>
<p>
<span class="block font-medium">Adresse</span>
Flow Hero GmbH<br>
Musterstraße 123<br>
10115 Berlin
</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-8">
<form class="space-y-6">
<div>
<label for="
</html> |