File size: 73,610 Bytes
f0a0b02 | 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 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 | <!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Marketify - Ihre persönliche AI Marketing Suite</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: '#0A1F44',
secondary: '#3E6EF5',
accent: '#FFD700',
}
}
}
}
</script>
<style>
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
.hero-gradient {
background: linear-gradient(135deg, #0A1F44 0%, #3E6EF5 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);
}
.pricing-card:hover {
transform: scale(1.03);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-link:after {
content: '';
display: block;
width: 0;
height: 2px;
background: #3E6EF5;
transition: width .3s;
}
.nav-link:hover:after {
width: 100%;
}
/* Hide all pages except home initially */
.page {
display: none;
}
.page.active {
display: block;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md 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-robot text-secondary text-2xl mr-2"></i>
<span class="text-xl font-bold text-primary">AI Marketify</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="nav-link px-3 py-2 text-sm font-medium text-primary home-link">Startseite</a>
<a href="#features" class="nav-link px-3 py-2 text-sm font-medium text-primary features-link">Funktionen</a>
<a href="#how-it-works" class="nav-link px-3 py-2 text-sm font-medium text-primary how-it-works-link">So funktioniert's</a>
<a href="#pricing" class="nav-link px-3 py-2 text-sm font-medium text-primary pricing-link">Preise</a>
<a href="#testimonials" class="nav-link px-3 py-2 text-sm font-medium text-primary testimonials-link">Kundenstimmen</a>
<a href="#" class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-secondary hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Kostenlos testen
</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-blue-500">
<span class="sr-only">Menü öffnen</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden">
<div class="pt-2 pb-3 space-y-1">
<a href="#" class="block px-3 py-2 text-base font-medium text-primary home-link">Startseite</a>
<a href="#features" class="block px-3 py-2 text-base font-medium text-primary features-link">Funktionen</a>
<a href="#how-it-works" class="block px-3 py-2 text-base font-medium text-primary how-it-works-link">So funktioniert's</a>
<a href="#pricing" class="block px-3 py-2 text-base font-medium text-primary pricing-link">Preise</a>
<a href="#testimonials" class="block px-3 py-2 text-base font-medium text-primary testimonials-link">Kundenstimmen</a>
<a href="#" class="block px-3 py-2 text-base font-medium text-primary">Kostenlos testen</a>
</div>
</div>
</nav>
<!-- Home Page -->
<div id="home-page" class="page active">
<!-- Hero Section -->
<div class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex 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-4">Transformieren Sie Ihr Marketing mit KI-Präzision</h1>
<p class="text-xl mb-8 opacity-90">Erhalten Sie eine maßgeschneiderte Strategie für Werbung, SEO, Social Media, E-Mail und Analytics – alles mit KI-Unterstützung.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-accent text-primary px-6 py-3 rounded-md font-bold text-center hover:bg-yellow-300 transition duration-300">Kostenlose Analyse starten</a>
<a href="#" class="border border-white px-6 py-3 rounded-md font-bold text-center hover:bg-white hover:text-primary transition duration-300">Demo ansehen</a>
</div>
<div class="mt-6 flex items-center">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/13.jpg" alt="">
</div>
<p class="ml-3 text-sm opacity-80">Vertrauen Sie wie 5.000+ Unternehmen weltweit</p>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="relative floating">
<img src="https://via.placeholder.com/600x400/0A1F44/FFFFFF?text=KI+Dashboard" alt="AI Marketify Dashboard" class="rounded-lg shadow-2xl border-4 border-white">
<div class="absolute -bottom-4 -right-4 bg-white p-3 rounded-lg shadow-lg">
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-full mr-2">
<i class="fas fa-chart-line text-green-600"></i>
</div>
<div>
<p class="text-xs text-gray-500">ROI gesteigert</p>
<p class="font-bold text-primary">+68%</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Trust Badges -->
<div class="bg-gray-50 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-6">Vertrauen Sie innovativen Marken weltweit</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x40?text=Shopify" alt="Shopify" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40?text=Google+Ads" alt="Google Ads" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40?text=Meta" alt="Meta" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40?text=Mailchimp" alt="Mailchimp" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40?text=WordPress" alt="WordPress" class="h-8 opacity-60 hover:opacity-100 transition">
</div>
</div>
</div>
<!-- Features Section -->
<div id="features" class="py-16 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-primary mb-4">Ihr komplettes KI-Marketing-Toolkit</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Alles, was Sie brauchen, um Ihre Marketingbemühungen mit künstlicher Intelligenz zu automatisieren, zu optimieren und zu skalieren.</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-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-magic text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Maßgeschneiderte Kampagnen</h3>
<p class="text-gray-600 mb-4">KI erstellt Werbetexte, Landingpages und kreative Inhalte basierend auf Ihrer Markenstimme und Zielgruppe.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-pie text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Intelligente Analysen</h3>
<p class="text-gray-600 mb-4">Echtzeit-Dashboards mit prädiktiven Erkenntnissen, die potenzielle ROI-Verbesserungen für Ihre Kampagnen zeigen.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-share-alt text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Automatisierte Social Media</h3>
<p class="text-gray-600 mb-4">Planen Sie Beiträge, analysieren Sie Trends und überwachen Sie Wettbewerber mit KI-gestützten Empfehlungen.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-search text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">SEO PowerSuite</h3>
<p class="text-gray-600 mb-4">Umfassende Keyword-Recherche, On-Page-Optimierung und Backlink-Vorschläge zur Steigerung der Rankings.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-envelope text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">E-Mail Masterclass</h3>
<p class="text-gray-600 mb-4">Hochgradig personalisierte Drip-Kampagnen mit A/B-Tests zur Maximierung der Öffnungs- und Konversionsraten.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-lg border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-secondary text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Chatbot Concierge</h3>
<p class="text-gray-600 mb-4">24/7-Kundensupport und Lead-Qualifizierung mit unserem KI-gestützten Chatbot-Assistenten.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Mehr erfahren <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
<!-- How It Works -->
<div id="how-it-works" class="py-16 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-primary mb-4">So funktioniert AI Marketify</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Einfacher 4-Schritte-Prozess zur Transformation Ihres Marketings mit KI</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- Step 1 -->
<div class="text-center">
<div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
<span class="bg-primary text-white font-bold rounded-full w-8 h-8 flex items-center justify-center">1</span>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Teilen Sie uns Ihre Ziele mit</h3>
<p class="text-gray-600">Geben Sie Ihren Unternehmensbereich, Zielgruppe und KPIs ein.</p>
</div>
<!-- Step 2 -->
<div class="text-center">
<div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
<span class="bg-primary text-white font-bold rounded-full w-8 h-8 flex items-center justify-center">2</span>
</div>
<h3 class="text-xl font-bold text-primary mb-3">KI-Strategie-Engine</h3>
<p class="text-gray-600">Unser Machine Learning analysiert Ihre Daten und erstellt einen maßgeschneiderten Marketingplan.</p>
</div>
<!-- Step 3 -->
<div class="text-center">
<div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
<span class="bg-primary text-white font-bold rounded-full w-8 h-8 flex items-center justify-center">3</span>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Starten & Optimieren</h3>
<p class="text-gray-600">Starten Sie Kampagnen über verschiedene Kanäle, während die KI kontinuierlich für maximale Leistung optimiert.</p>
</div>
<!-- Step 4 -->
<div class="text-center">
<div class="bg-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6 shadow-md">
<span class="bg-primary text-white font-bold rounded-full w-8 h-8 flex items-center justify-center">4</span>
</div>
<h3 class="text-xl font-bold text-primary mb-3">Wachsen Sie schneller</h3>
<p class="text-gray-600">Erhalten Sie wöchentliche Berichte mit visueller Fortschrittsverfolgung und umsetzbaren Erkenntnissen.</p>
</div>
</div>
<div class="mt-16 text-center">
<a href="#" class="bg-secondary text-white px-8 py-3 rounded-md font-bold hover:bg-blue-700 transition duration-300 inline-flex items-center">
Live-Demo ansehen <i class="fas fa-play-circle ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Testimonials -->
<div id="testimonials" class="py-16 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-primary mb-4">Was unsere Kunden sagen</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Schließen Sie sich Tausenden von Unternehmen an, die mit AI Marketify schneller wachsen</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah K.">
<div>
<h4 class="font-bold text-primary">Sarah K.</h4>
<p class="text-gray-600 text-sm">E-Commerce-Gründerin</p>
</div>
</div>
<p class="text-gray-700 mb-4">"AI Marketify steigerte unsere Konversionen in nur 3 Monaten um 60%! Die automatisierte Anzeigenoptimierung allein hat die gesamte Plattform bezahlt."</p>
<div class="flex">
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Michael T.">
<div>
<h4 class="font-bold text-primary">Michael T.</h4>
<p class="text-gray-600 text-sm">Marketing-Direktor</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Die prädiktive Analyse hat uns Tausende an verschwendeten Werbeausgaben erspart. Wir wissen jetzt genau, welche Kampagnen vor dem Start am besten abschneiden werden."</p>
<div class="flex">
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Priya M.">
<div>
<h4 class="font-bold text-primary">Priya M.</h4>
<p class="text-gray-600 text-sm">Kleinunternehmerin</p>
</div>
</div>
<p class="text-gray-700 mb-4">"Als Solopreneur habe ich keine Zeit für komplexe Marketing-Tools. AI Marketify macht es einfach und liefert dennoch professionelle Ergebnisse."</p>
<div class="flex">
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
<i class="fas fa-star text-accent"></i>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-flex items-center text-secondary font-bold">
Weitere Erfolgsgeschichten lesen <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Pricing -->
<div id="pricing" class="py-16 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-primary mb-4">Einfache, transparente Preise</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Wählen Sie den Plan, der zu Ihren Geschäftsanforderungen passt</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Growth Starter -->
<div class="pricing-card bg-white p-8 rounded-lg border border-gray-200 transition duration-300">
<h3 class="text-xl font-bold text-primary mb-2">Growth Starter</h3>
<p class="text-gray-600 mb-6">Perfekt für kleine Unternehmen, die mit KI-Marketing beginnen</p>
<div class="mb-6">
<span class="text-4xl font-bold text-primary">99€</span>
<span class="text-gray-500">/Monat</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>Maßgeschneiderte Kampagnen</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Intelligentes Analytics-Dashboard</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>SEO PowerSuite</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>Automatisierte Social Media</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>E-Mail Masterclass</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>Chatbot Concierge</span>
</li>
</ul>
<a href="#" class="block text-center bg-gray-100 text-primary px-6 py-3 rounded-md font-bold hover:bg-gray-200 transition duration-300">
Jetzt starten
</a>
</div>
<!-- Pro Marketer -->
<div class="pricing-card bg-white p-8 rounded-lg border-2 border-secondary shadow-lg relative transition duration-300">
<div class="absolute top-0 right-0 bg-secondary text-white px-3 py-1 text-xs font-bold rounded-bl-lg">
BELIEBTESTE
</div>
<h3 class="text-xl font-bold text-primary mb-2">Pro Marketer</h3>
<p class="text-gray-600 mb-6">Für ernsthafte Vermarkter, die vollständige Automatisierung wünschen</p>
<div class="mb-6">
<span class="text-4xl font-bold text-primary">249€</span>
<span class="text-gray-500">/Monat</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>Maßgeschneiderte Kampagnen</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Intelligentes Analytics-Dashboard</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>SEO PowerSuite</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Automatisierte Social Media</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>E-Mail Masterclass</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times mr-2"></i>
<span>Chatbot Concierge</span>
</li>
</ul>
<a href="#" class="block text-center bg-secondary text-white px-6 py-3 rounded-md font-bold hover:bg-blue-700 transition duration-300">
Plan wählen
</a>
</div>
<!-- Enterprise -->
<div class="pricing-card bg-white p-8 rounded-lg border border-gray-200 transition duration-300">
<h3 class="text-xl font-bold text-primary mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">Maßgeschneiderte Lösungen für große Unternehmen</p>
<div class="mb-6">
<span class="text-4xl font-bold text-primary">Individuell</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>Alle Pro-Funktionen</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Chatbot Concierge</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedizierter Account Manager</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priorisierter Support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Benutzerdefinierte API-Integrationen</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>White-Label-Lösungen</span>
</li>
</ul>
<a href="#" class="block text-center bg-gray-100 text-primary px-6 py-3 rounded-md font-bold hover:bg-gray-200 transition duration-300">
Vertrieb kontaktieren
</a>
</div>
</div>
<div class="mt-12 text-center text-gray-600">
<p>Alle Pläne kommen mit einer 30-tägigen Geld-zurück-Garantie. Keine Verträge, jederzeit kündbar.</p>
</div>
</div>
</div>
<!-- ROI Calculator -->
<div class="py-16 bg-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 bg-secondary rounded-xl text-white p-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-2xl font-bold mb-4">Schätzen Sie Ihr Wachstumspotenzial</h2>
<p class="mb-6">Sehen Sie, wie sehr AI Marketify Ihren Marketing-ROI steigern könnte.</p>
<div class="bg-white bg-opacity-20 p-4 rounded-lg">
<div class="flex items-center mb-2">
<div class="w-3/4">
<input type="range" min="1000" max="100000" value="25000" class="w-full" id="roiSlider">
</div>
<div class="w-1/4 text-right">
<span id="roiValue" class="font-bold">25.000€</span>
</div>
</div>
<div class="text-sm">
<p>Aktuelle monatliche Marketingausgaben</p>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-8">
<div class="bg-white text-primary p-6 rounded-lg">
<h3 class="font-bold mb-4">Ihr potenzieller ROI-Anstieg</h3>
<div class="flex items-center justify-between mb-2">
<span>Geschätzte monatliche Einsparungen:</span>
<span class="font-bold" id="savings">8.750€</span>
</div>
<div class="flex items-center justify-between mb-4">
<span>Prognostizierte Umsatzsteigerung:</span>
<span class="font-bold" id="revenue">37.500€</span>
</div>
<div class="bg-accent p-3 rounded-lg text-center font-bold">
Gesamteffekt in 12 Monaten: <span id="annualImpact">554.000€</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="py-16 bg-primary text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Bereit, Ihr Marketing zu transformieren?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Schließen Sie sich 5.000+ Unternehmen an, die mit AI Marketify schneller wachsen. Ihre kostenlose Strategie erwartet Sie.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-accent text-primary px-8 py-3 rounded-md font-bold hover:bg-yellow-300 transition duration-300">Kostenlos testen</a>
<a href="#" class="border border-white px-8 py-3 rounded-md font-bold hover:bg-white hover:text-primary transition duration-300">Demo buchen</a>
</div>
<div class="mt-8 text-sm opacity-80">
<p>Keine Kreditkarte erforderlich. 30 Tage kostenlos testen.</p>
</div>
</div>
</div>
</div>
<!-- About Us Page -->
<div id="about-page" class="page">
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-primary mb-4">Über AI Marketify</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Demokratisierung von KI für jedes Unternehmen</p>
</div>
<div class="md:flex items-center mb-16">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-3xl font-bold text-primary mb-4">Unsere Mission</h2>
<p class="text-gray-600 mb-6">AI Marketify wurde 2020 mit dem Ziel gegründet, fortschrittliche KI-Marketing-Tools für Unternehmen jeder Größe zugänglich zu machen. Wir glauben, dass künstliche Intelligenz nicht nur großen Konzernen vorbehalten sein sollte.</p>
<p class="text-gray-600 mb-6">Unser Team aus Data Scientists, Marketing-Experten und Software-Entwicklern hat eine Plattform geschaffen, die komplexe KI-Algorithmen in einfach zu bedienende Tools verwandelt, die echte Ergebnisse liefern.</p>
<div class="bg-gray-50 p-6 rounded-lg">
<h3 class="font-bold text-primary mb-2">Unsere Werte</h3>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check text-secondary mt-1 mr-2"></i>
<span><strong>Transparenz:</strong> Keine Blackbox-Algorithmen - wir erklären, wie unsere KI Entscheidungen trifft</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary mt-1 mr-2"></i>
<span><strong>Innovation:</strong> Ständige Weiterentwicklung unserer Technologie an der Spitze des Fortschritts</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary mt-1 mr-2"></i>
<span><strong>Ergebnisse:</strong> Wir messen unseren Erfolg am Erfolg unserer Kunden</span>
</li>
</ul>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<img src="https://via.placeholder.com/600x400?text=Unser+Team" alt="AI Marketify Team" class="rounded-lg shadow-xl">
</div>
</div>
<div class="py-12 bg-gray-50 rounded-xl">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-primary mb-4">Unser Team</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Die Experten hinter AI Marketify</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Team Member 1 -->
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Dr. Julia Weber" class="w-32 h-32 rounded-full mx-auto mb-4">
<h3 class="text-xl font-bold text-primary mb-1">Dr. Julia Weber</h3>
<p class="text-secondary mb-3">Gründerin & CEO</p>
<p class="text-gray-600">Ehemalige Google AI-Forscherin mit über 15 Jahren Erfahrung in maschinellem Lernen und Marketingautomatisierung.</p>
</div>
<!-- Team Member 2 -->
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Markus Schneider" class="w-32 h-32 rounded-full mx-auto mb-4">
<h3 class="text-xl font-bold text-primary mb-1">Markus Schneider</h3>
<p class="text-secondary mb-3">CTO</p>
<p class="text-gray-600">Experte für skalierbare Cloud-Architekturen und KI-Systeme, zuvor bei Amazon Web Services.</p>
</div>
<!-- Team Member 3 -->
<div class="bg-white p-6 rounded-lg shadow-sm text-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Sarah Müller" class="w-32 h-32 rounded-full mx-auto mb-4">
<h3 class="text-xl font-bold text-primary mb-1">Sarah Müller</h3>
<p class="text-secondary mb-3">CMO</p>
<p class="text-gray-600">Ehemalige Marketing-Direktorin bei einem führenden E-Commerce-Unternehmen mit Schwerpunkt auf datengesteuerten Strategien.</p>
</div>
</div>
</div>
<div class="mt-16 text-center">
<h2 class="text-3xl font-bold text-primary mb-4">Unsere Geschichte</h2>
<div class="max-w-4xl mx-auto">
<div class="relative">
<!-- Timeline -->
<div class="border-l-2 border-secondary pl-8 space-y-12">
<!-- Milestone 1 -->
<div class="relative">
<div class="absolute -left-11 top-0 w-6 h-6 rounded-full bg-secondary flex items-center justify-center">
<span class="text-white font-bold">1</span>
</div>
<h3 class="text-xl font-bold text-primary mb-2">2020: Gründung</h3>
<p class="text-gray-600">Start in einem kleinen Büro in Berlin mit 3 Mitarbeitern und einer Vision, KI-Marketing zu demokratisieren.</p>
</div>
<!-- Milestone 2 -->
<div class="relative">
<div class="absolute -left-11 top-0 w-6 h-6 rounded-full bg-secondary flex items-center justify-center">
<span class="text-white font-bold">2</span>
</div>
<h3 class="text-xl font-bold text-primary mb-2">2021: Erste Kunden</h3>
<p class="text-gray-600">Gewinnung unserer ersten 100 Kunden und Validierung unseres Ansatzes mit nachweisbaren ROI-Steigerungen.</p>
</div>
<!-- Milestone 3 -->
<div class="relative">
<div class="absolute -left-11 top-0 w-6 h-6 rounded-full bg-secondary flex items-center justify-center">
<span class="text-white font-bold">3</span>
</div>
<h3 class="text-xl font-bold text-primary mb-2">2022: Series-A-Finanzierung</h3>
<p class="text-gray-600">5 Millionen Euro Investition zur Erweiterung unseres Technologie-Stacks und internationalen Expansion.</p>
</div>
<!-- Milestone 4 -->
<div class="relative">
<div class="absolute -left-11 top-0 w-6 h-6 rounded-full bg-secondary flex items-center justify-center">
<span class="text-white font-bold">4</span>
</div>
<h3 class="text-xl font-bold text-primary mb-2">2023: Heute</h3>
<p class="text-gray-600">Über 5.000 zufriedene Kunden in 15 Ländern und ein wachsendes Team von 50 KI- und Marketing-Experten.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services Page -->
<div id="services-page" class="page">
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-primary mb-4">Unsere Leistungen</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Umfassende KI-gestützte Marketinglösungen für Ihr Unternehmen</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 mb-16">
<!-- Service 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-6">
<i class="fas fa-ad text-secondary text-2xl"></i>
</div>
<div>
<h2 class="text-2xl font-bold text-primary mb-3">KI-Werbung</h2>
<p class="text-gray-600 mb-4">Unsere KI analysiert Ihre Zielgruppe und erstellt hochwirksame Werbekampagnen über alle Kanäle hinweg, einschließlich Google Ads, Meta, LinkedIn und mehr.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Automatisierte Anzeigenoptimierung in Echtzeit</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Dynamische kreative Inhalte basierend auf Performance</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Prädiktive Budgetzuweisung für maximale ROI</span>
</li>
</ul>
<a href="#" class="text-secondary font-medium inline-flex items-center">Fallstudie ansehen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<!-- Service 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-6">
<i class="fas fa-search text-secondary text-2xl"></i>
</div>
<div>
<h2 class="text-2xl font-bold text-primary mb-3">KI-SEO</h2>
<p class="text-gray-600 mb-4">Unsere KI durchsucht das Web, um die besten Keywords für Ihr Unternehmen zu finden, und optimiert Ihre Inhalte für höhere Rankings und mehr organischen Traffic.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Automatische Keyword-Recherche und -Priorisierung</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Content-Optimierung für Suchabsicht und Nutzererfahrung</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Technische SEO-Analyse und -Empfehlungen</span>
</li>
</ul>
<a href="#" class="text-secondary font-medium inline-flex items-center">Fallstudie ansehen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<!-- Service 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-6">
<i class="fas fa-share-alt text-secondary text-2xl"></i>
</div>
<div>
<h2 class="text-2xl font-bold text-primary mb-3">KI-Social Media</h2>
<p class="text-gray-600 mb-4">Automatisieren Sie Ihre Social-Media-Präsenz mit KI-gestützten Inhaltsempfehlungen, optimalen Posting-Zeiten und automatischer Performance-Analyse.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Automatische Inhaltsgenerierung und -planung</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Echtzeit-Analyse von Trends und Hashtags</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Wettbewerbsanalyse und Benchmarking</span>
</li>
</ul>
<a href="#" class="text-secondary font-medium inline-flex items-center">Fallstudie ansehen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<!-- Service 4 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-6">
<i class="fas fa-envelope text-secondary text-2xl"></i>
</div>
<div>
<h2 class="text-2xl font-bold text-primary mb-3">KI-E-Mail-Marketing</h2>
<p class="text-gray-600 mb-4">Personalisieren Sie Ihre E-Mail-Kampagnen auf individueller Ebene mit KI-gestützten Vorhersagen über den besten Inhalt, Zeitpunkt und die beste Häufigkeit für jeden Empfänger.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Dynamische Personalisierung von Inhalten</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Prädiktive Segmentierung für höhere Öffnungsraten</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-secondary text-sm mt-1 mr-2"></i>
<span>Automatische A/B-Tests und Optimierung</span>
</li>
</ul>
<a href="#" class="text-secondary font-medium inline-flex items-center">Fallstudie ansehen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
<div class="bg-primary text-white rounded-xl p-12 text-center">
<h2 class="text-3xl font-bold mb-4">Brauchen Sie eine maßgeschneiderte Lösung?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Unsere KI-Experten entwickeln eine individuelle Marketingstrategie für Ihr Unternehmen.</p>
<a href="#" class="bg-accent text-primary px-8 py-3 rounded-md font-bold hover:bg-yellow-300 transition duration-300 inline-block">Kontakt aufnehmen</a>
</div>
</div>
</div>
</div>
<!-- Blog Page -->
<div id="blog-page" class="page">
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-primary mb-4">AI Marketify Blog</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Aktuelle Einblicke, Tipps und Trends im KI-Marketing</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<!-- Blog Post 1 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=KI+Trends+2024" alt="Top KI-Marketing-Trends 2024" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>15. Januar 2024</span>
<span class="mx-2">•</span>
<span>5 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">Top 5 KI-Marketing-Trends für 2024</h2>
<p class="text-gray-600 mb-4">Entdecken Sie die wichtigsten KI-Innovationen, die das Marketing im kommenden Jahr prägen werden.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Blog Post 2 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=Automatisierte+Werbung" alt="Automatisierte Werbung" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>5. Januar 2024</span>
<span class="mx-2">•</span>
<span>7 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">Leitfaden für automatisierte Werbekampagnen</h2>
<p class="text-gray-600 mb-4">Wie Sie mit KI Ihre Werbeausgaben optimieren und die Conversion-Raten steigern können.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Blog Post 3 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=E-Commerce+SEO" alt="E-Commerce SEO" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>20. Dezember 2023</span>
<span class="mx-2">•</span>
<span>6 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">KI-gestützte SEO für E-Commerce</h2>
<p class="text-gray-600 mb-4">Wie Online-Händler mit KI ihre Sichtbarkeit in Suchmaschinen deutlich verbessern können.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Blog Post 4 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=Social+Media+KI" alt="Social Media KI" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>10. Dezember 2023</span>
<span class="mx-2">•</span>
<span>4 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">Revolutionieren Sie Ihr Social Media mit KI</h2>
<p class="text-gray-600 mb-4">Praktische Anwendungsfälle für KI in der Social-Media-Strategie.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Blog Post 5 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=Email+Marketing" alt="Email Marketing" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>1. Dezember 2023</span>
<span class="mx-2">•</span>
<span>8 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">Die Zukunft des E-Mail-Marketings mit KI</h2>
<p class="text-gray-600 mb-4">Wie künstliche Intelligenz die Personalisierung auf ein neues Level hebt.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
<!-- Blog Post 6 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="https://via.placeholder.com/600x400?text=ROI+Optimierung" alt="ROI Optimierung" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>15. November 2023</span>
<span class="mx-2">•</span>
<span>5 Min. Lesezeit</span>
</div>
<h2 class="text-xl font-bold text-primary mb-3">KI-gestützte ROI-Optimierung: Fallstudie</h2>
<p class="text-gray-600 mb-4">Wie ein mittelständisches Unternehmen seinen Marketing-ROI mit KI um 240% steigerte.</p>
<a href="#" class="text-secondary font-medium inline-flex items-center">Artikel lesen <i class="fas fa-arrow-right ml-2"></i></a>
</div>
</div>
</div>
<div class="text-center">
<a href="#" class="inline-flex items-center bg-secondary text-white px-6 py-3 rounded-md font-bold hover:bg-blue-700 transition duration-300">
Alle Artikel anzeigen <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Contact Page -->
<div id="contact-page" class="page">
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-primary mb-4">Kontaktieren Sie uns</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Wir freuen uns darauf, von Ihnen zu hören und Ihnen zu zeigen, wie AI Marketify Ihr Marketing transformieren kann.</p>
</div>
<div class="md:flex">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="text-2xl font-bold text-primary mb-6">Kontaktinformationen</h2>
<div class="space-y-6">
<!-- Address -->
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-map-marker-alt text-secondary"></i>
</div>
<div>
<h3 class="font-bold text-primary mb-1">Adresse</h3>
<p class="text-gray-600">AI Marketify GmbH<br>Musterstraße 123<br>10115 Berlin, Deutschland</p>
</div>
</div>
<!-- Phone -->
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-phone-alt text-secondary"></i>
</div>
<div>
<h3 class="font-bold text-primary mb-1">Telefon</h3>
<p class="text-gray-600">+49 30 12345678</p>
<p class="text-sm text-gray-500 mt-1">Mo-Fr, 9:00-18:00 Uhr</p>
</div>
</div>
<!-- Email -->
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-envelope text-secondary"></i>
</div>
<div>
<h3 class="font-bold text-primary mb-1">E-Mail</h3>
<p class="text-gray-600">kontakt@aimarketify.de</p>
<p class="text-sm text-gray-500 mt-1">Antwort innerhalb von 24 Stunden</p>
</div>
</div>
<!-- Social Media -->
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-share-alt text-secondary"></i>
</div>
<div>
<h3 class="font-bold text-primary mb-1">Social Media</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-600 hover:text-secondary"><i class="fab fa-linkedin-in text-xl"></i></a>
<a href="#" class="text-gray-600 hover:text-secondary"><i class="fab fa-x-twitter text-xl"></i></a>
<a href="#" class="text-gray-600 hover:text-secondary"><i class="fab fa-facebook-f text-xl"></i></a>
<a href="#" class="text-gray-600 hover:text-secondary"><i class="fab fa-instagram text-xl"></i></a>
</div>
</div>
</div>
</div>
<div class="mt-12">
<h2 class="text-2xl font-bold text-primary mb-6">Buchen Sie eine Demo</h2>
<p class="text-gray-600 mb-4">Vereinbaren Sie einen Termin für eine persönliche Produktdemo mit einem unserer KI-Marketingexperten.</p>
<a href="#" class="bg-secondary text-white px-6 py-3 rounded-md font-bold hover:bg-blue-700 transition duration-300 inline-flex items-center">
Demo buchen <i class="fas fa-calendar-alt ml-2"></i>
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl">
<h2 class="text-2xl font-bold text-primary mb-6">Kontaktformular</h2>
<form>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="first-name" class="block text-sm font-medium text-gray-700 mb-1">Vorname*</label>
<input type="text" id="first-name" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary">
</div>
<div>
<label for="last-name" class="block text-sm font-medium text-gray-700 mb-1">Nachname*</label>
<input type="text" id="last-name" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary">
</div>
</div>
<div class="mb-6">
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">E-Mail-Adresse*</label>
<input type="email" id="email" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary">
</div>
<div class="mb-6">
<label for="company" class="block text-sm font-medium text-gray-700 mb-1">Unternehmen</label>
<input type="text" id="company" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary">
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Betreff*</label>
<select id="subject" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary">
<option value="">Bitte wählen</option>
<option value="demo">Produktdemo anfordern</option>
<option value="sales">Verkaufsanfrage</option>
<option value="support">Technischer Support</option>
<option value="partnership">Partnerschaftsanfrage</option>
<option value="other">Sonstiges</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Nachricht*</label>
<textarea id="message" rows="4" class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-1 focus:ring-secondary"></textarea>
</div>
<div class="mb-6">
<div class="flex items-start">
<input type="checkbox" id="consent" class="mt-1 mr-2">
<label for="consent" class="text-sm text-gray-700">Ich stimme zu, dass meine Daten gemäß der <a href="#" class="text-secondary underline">Datenschutzrichtlinie</a> verarbeitet werden.</label>
</div>
</div>
<button type="submit" class="w-full bg-secondary text-white px-6 py-3 rounded-lg font-bold hover:bg-blue-700 transition duration-300">
Nachricht senden
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ Page -->
<div id="faq-page" class="page">
<div class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-primary mb-4">Häufig gestellte Fragen</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Finden Sie Antworten auf die häufigsten Fragen zu AI Marketify</p>
</div>
<div class="max-w-4xl mx-auto">
<!-- FAQ Category 1 -->
<div class="mb-12">
<h2 class="text-2xl font-bold text-primary mb-6 border-b pb-2">Allgemeine Fragen</h2>
<div class="space-y-4">
<!-- 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-4 bg-gray-50 hover:bg-gray-100 transition">
<span class="text-lg font-medium text-primary">Was ist AI Marketify?</span>
<i class="fas fa-chevron-down text-secondary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 bg-white">
<p class="text-gray-600">AI Marketify ist eine umfassende KI-gestützte Marketingplattform, die Unternehmen dabei hilft, ihre Marketingbemühungen zu automatisieren, zu optimieren und zu skalieren. Unsere Lösung kombiniert fortschrittliche künstliche Intelligenz mit bewährten Marketingstrategien, um personalisierte Kampagnen, intelligente Analysen und automatisierte Optimierungen für alle wichtigen Marketingkanäle bereitzustellen.</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-4 bg-gray-50 hover:bg-gray-100 transition">
<span class="text-lg font-medium text-primary">Für welche Unternehmen ist AI Marketify geeignet?</span>
<i class="fas fa-chevron-down text-secondary transition-transform duration-300"></i>
</button>
<div class="faq-content hidden p-4 bg-white">
<p class="text-gray-600">AI Marketify ist für Unternehmen jeder Größe konzipiert, von kleinen Startups bis hin zu großen Unternehmen. Unsere skalierbare Plattform bietet Lösungen für:</p>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li class="text-gray-600">E-Commerce-Unternehmen, die ihren Online-Umsatz steigern möchten</li>
<li class="text-gray-600">Marketingagenturen, die ihren Kunden KI-gestützte Dienstleistungen anbieten möchten</li>
<
</html> |