File size: 67,570 Bytes
1e9b2e2 |
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 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HARVEY - AI Personal Assistant for Elite CEOs</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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'harvey-primary': '#FF5F00',
'harvey-dark': '#121212',
'harvey-light': '#F8F8F8',
'theme1-primary': '#192231',
'theme1-secondary': '#404a42',
'theme1-accent': '#c0b283',
'theme1-light': '#eddbcd',
'theme1-bg': '#f4f4f4',
'theme2-primary': '#02000d',
'theme2-secondary': '#07203f',
'theme2-accent': '#f1d2b6',
'theme2-light': '#d9aa90',
'theme2-dark': '#a65e46',
'theme4-primary': '#bde8f1',
'theme4-secondary': '#819fa7',
'theme4-accent': '#5b6e74',
'theme4-light': '#f2f2f0',
'theme4-dark': '#0d0d0d'
}
}
}
}
</script>
<style>
.chat-container {
height: 400px;
transition: all 0.3s ease;
}
.theme-dark {
background-color: #121212;
color: #F8F8F8;
}
.theme-light {
background-color: #F8F8F8;
color: #121212;
}
.theme-1 {
background-color: #f4f4f4;
color: #192231;
}
.theme-2 {
background-color: #02000d;
color: #f1d2b6;
}
.theme-4 {
background-color: #f2f2f0;
color: #0d0d0d;
}
.theme-switch {
position: relative;
display: inline-block;
width: 60px;
height: 30px;
}
.theme-switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #FF5F00;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #121212;
}
input:checked + .slider:before {
transform: translateX(30px);
}
.form-input {
transition: all 0.3s ease;
}
.form-input:focus {
border-color: #FF5F00;
box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.2);
}
.chat-message {
max-width: 80%;
padding: 12px 16px;
border-radius: 18px;
margin-bottom: 8px;
word-wrap: break-word;
}
.user-message {
background-color: #FF5F00;
color: white;
align-self: flex-end;
border-bottom-right-radius: 4px;
}
.bot-message {
background-color: #2D2D2D;
color: white;
align-self: flex-start;
border-bottom-left-radius: 4px;
}
.theme-light .bot-message {
background-color: #E5E5E5;
color: #121212;
}
.theme-1 .bot-message {
background-color: #eddbcd;
color: #192231;
}
.theme-2 .bot-message {
background-color: #07203f;
color: #f1d2b6;
}
.theme-4 .bot-message {
background-color: #819fa7;
color: #0d0d0d;
}
.tab-button {
transition: all 0.3s ease;
}
.tab-button:hover {
transform: translateY(-2px);
}
.active-tab {
border-bottom: 3px solid #FF5F00;
}
.chatbot-toggle {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #FF5F00;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
transition: all 0.3s ease;
}
.chatbot-toggle:hover {
transform: scale(1.1);
}
.chatbot-window {
position: fixed;
bottom: 100px;
right: 30px;
width: 350px;
height: 500px;
background-color: white;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
z-index: 1000;
overflow: hidden;
display: none;
flex-direction: column;
transition: all 0.3s ease;
}
.chatbot-header {
background-color: #121212;
color: white;
padding: 12px 16px;
display: flex;
justify-content: space-between;
align-items: center;
}
.chatbot-body {
flex-grow: 1;
overflow-y: auto;
padding: 16px;
background-color: #F8F8F8;
}
.chatbot-footer {
padding: 12px;
background-color: white;
border-top: 1px solid #e5e5e5;
}
.success-story {
background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 30px;
height: 100%;
}
.counter {
font-size: 3rem;
font-weight: bold;
background: linear-gradient(90deg, #FF5F00, #FF8C00);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.theme-1 .counter {
background: linear-gradient(90deg, #c0b283, #404a42);
-webkit-background-clip: text;
background-clip: text;
}
.theme-2 .counter {
background: linear-gradient(90deg, #f1d2b6, #a65e46);
-webkit-background-clip: text;
background-clip: text;
}
.theme-4 .counter {
background: linear-gradient(90deg, #5b6e74, #0d0d0d);
-webkit-background-clip: text;
background-clip: text;
}
.faq-item {
border-bottom: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s ease;
}
.faq-item:hover {
background-color: rgba(255,255,255,0.05);
}
.theme-light .faq-item {
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.theme-light .faq-item:hover {
background-color: rgba(0,0,0,0.05);
}
.theme-1 .faq-item {
border-bottom: 1px solid rgba(25,34,49,0.1);
}
.theme-1 .faq-item:hover {
background-color: rgba(25,34,49,0.05);
}
.theme-2 .faq-item {
border-bottom: 1px solid rgba(241,210,182,0.1);
}
.theme-2 .faq-item:hover {
background-color: rgba(241,210,182,0.05);
}
.theme-4 .faq-item {
border-bottom: 1px solid rgba(11,13,13,0.1);
}
.theme-4 .faq-item:hover {
background-color: rgba(11,13,13,0.05);
}
</style>
</head>
<body class="theme-dark min-h-screen">
<!-- Chatbot Toggle -->
<div class="chatbot-toggle" id="chatbotToggle">
<i class="fas fa-robot text-2xl"></i>
</div>
<!-- Chatbot Window -->
<div class="chatbot-window" id="chatbotWindow">
<div class="chatbot-header">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-harvey-primary flex items-center justify-center mr-2">
<i class="fas fa-robot text-white"></i>
</div>
<h4 class="font-semibold">HARVEY Assistant</h4>
</div>
<div class="flex items-center">
<button class="text-gray-300 hover:text-white mr-2" id="minimizeChatbot">
<i class="fas fa-minus"></i>
</button>
<button class="text-gray-300 hover:text-white" id="closeChatbot">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<div class="chatbot-body" id="chatbotBody">
<div class="chat-message bot-message">
<p>Hello! I'm HARVEY, your AI executive assistant. How can I help you today?</p>
</div>
</div>
<div class="chatbot-footer">
<div class="flex">
<input type="text" placeholder="Ask HARVEY anything..." class="flex-grow bg-gray-100 text-gray-800 rounded-l-lg px-4 py-2 focus:outline-none" id="chatbotInput">
<button class="bg-harvey-primary text-white px-4 py-2 rounded-r-lg" id="chatbotSend"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
<!-- Header -->
<header class="bg-harvey-dark text-harvey-light py-6 shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="http://localhost:5500/images/logo.png" alt="HARVEY Logo" class="h-10">
<h1 class="text-2xl font-bold">HARVEY <span class="text-harvey-primary">Personal Assistant</span></h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#features" class="hover:text-harvey-primary transition">Features</a>
<a href="#pricing" class="hover:text-harvey-primary transition">Pricing</a>
<a href="#success" class="hover:text-harvey-primary transition">Success Stories</a>
<a href="#faq" class="hover:text-harvey-primary transition">FAQ</a>
<a href="#contact" class="hover:text-harvey-primary transition">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<div class="relative group">
<button class="bg-harvey-primary text-white px-3 py-1 rounded-lg flex items-center">
<i class="fas fa-palette mr-2"></i>
<span>Theme</span>
</button>
<div class="absolute right-0 mt-2 w-48 bg-white dark:bg-gray-800 rounded-md shadow-lg z-10 hidden group-hover:block">
<div class="py-1">
<button class="block w-full text-left px-4 py-2 text-sm text-gray-700 dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 theme-select" data-theme="1">Executive Classic</button>
<button class="block w-full text-left px-4 py-2 text-sm text-gray-700 dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 theme-select" data-theme="2">Midnight Elegance</button>
<button class="block w-full text-left px-4 py-2 text-sm text-gray-700 dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 theme-select" data-theme="dark">Modern Power</button>
<button class="block w-full text-left px-4 py-2 text-sm text-gray-700 dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-gray-700 theme-select" data-theme="4">Minimalist Pro</button>
</div>
</div>
</div>
<button class="bg-harvey-primary text-white px-4 py-2 rounded-lg hover:bg-opacity-90 transition font-semibold hidden md:block" id="bookConsultationBtn">
Book Consultation
</button>
<button class="bg-harvey-primary text-white px-4 py-2 rounded-lg hover:bg-opacity-90 transition md:hidden">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-20 px-4">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-4xl md:text-5xl font-bold mb-6">The AI Executive Assistant <span class="text-harvey-primary">Elite Leaders</span> Trust</h2>
<p class="text-xl mb-8">HARVEY replaces your human executive assistant with an AI that performs at 200% efficiency for just 2% of the annual cost. Designed exclusively for C-suite executives and elite entrepreneurs.</p>
<div class="flex space-x-4">
<button class="bg-harvey-primary text-white px-6 py-3 rounded-lg hover:bg-opacity-90 transition font-semibold">Get Started</button>
<button class="border border-harvey-primary text-harvey-primary px-6 py-3 rounded-lg hover:bg-harvey-primary hover:text-white transition font-semibold" id="heroBookDemo">Book Demo</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="CEO">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="CEO">
<img src="https://randomuser.me/api/portraits/men/75.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="CEO">
</div>
<div class="ml-4">
<p class="text-sm font-medium">Trusted by 450+ elite executives</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
<span class="text-gray-600 ml-2">4.8/5</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-harvey-primary rounded-full opacity-20 absolute -top-10 -left-10"></div>
<div class="w-64 h-64 md:w-80 md:h-80 bg-harvey-primary rounded-full opacity-20 absolute -bottom-10 -right-10"></div>
<div class="relative bg-harvey-dark p-6 rounded-2xl shadow-xl w-full max-w-md">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-harvey-primary flex items-center justify-center">
<i class="fas fa-robot text-white"></i>
</div>
<div class="ml-3">
<h4 class="font-semibold">HARVEY PA</h4>
<p class="text-xs text-gray-400">AI Assistant</p>
</div>
</div>
<div class="chat-container bg-harvey-dark border border-gray-700 rounded-lg p-4 flex flex-col overflow-y-auto">
<div class="chat-message bot-message">
<p>Hello! I'm HARVEY, your AI executive assistant. How can I help you today?</p>
</div>
<div class="chat-message user-message">
<p>Schedule a meeting with the board for next Monday at 10am.</p>
</div>
<div class="chat-message bot-message">
<p>I've scheduled the board meeting for Monday at 10am. I've also prepared the quarterly report for review. Would you like me to distribute it to attendees in advance?</p>
</div>
<div class="chat-message user-message">
<p>Yes, please. Also flag any potential concerns in the report.</p>
</div>
<div class="chat-message bot-message">
<p>Done. I've identified 3 areas needing attention in the financial projections section. I've highlighted them in yellow and added my recommendations.</p>
</div>
</div>
<div class="mt-4 flex">
<input type="text" placeholder="Type your message..." class="flex-grow bg-gray-800 text-white rounded-l-lg px-4 py-2 focus:outline-none">
<button class="bg-harvey-primary text-white px-4 py-2 rounded-r-lg"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 px-4 bg-gray-900">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-4">Why Elite Leaders Choose <span class="text-harvey-primary">HARVEY</span></h2>
<p class="text-center text-xl mb-16 max-w-3xl mx-auto">Precision-engineered for the unique demands of C-suite executives and high-performing entrepreneurs</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chess-king text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Executive-Grade Intelligence</h3>
<p class="text-gray-400">HARVEY understands the strategic priorities of C-level executives, prioritizing tasks with board-level discernment.</p>
</div>
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-brain text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Context-Aware Processing</h3>
<p class="text-gray-400">Learns your leadership style, preferences, and business context to make decisions aligned with your strategic vision.</p>
</div>
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-shield-alt text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Enterprise Security</h3>
<p class="text-gray-400">Military-grade encryption and compliance with strictest data protection standards for sensitive executive communications.</p>
</div>
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-rocket text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Time Amplification</h3>
<p class="text-gray-400">Recovers 15-20 hours per week by handling administrative tasks with superhuman efficiency.</p>
</div>
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-chart-network text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Strategic Insights</h3>
<p class="text-gray-400">Analyzes complex data and provides executive summaries with actionable recommendations.</p>
</div>
<div class="bg-harvey-dark p-6 rounded-xl shadow-lg hover:shadow-xl transition transform hover:-translate-y-1">
<div class="w-14 h-14 bg-harvey-primary bg-opacity-20 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-user-tie text-harvey-primary text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Gatekeeping Excellence</h3>
<p class="text-gray-400">Manages access to your time with the discretion and judgment of a seasoned chief of staff.</p>
</div>
</div>
</div>
</section>
<!-- Success Stories Section -->
<section id="success" class="py-20 px-4">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-4">Executive Success <span class="text-harvey-primary">Stories</span></h2>
<p class="text-center text-xl mb-16 max-w-3xl mx-auto">How HARVEY transforms the workday for elite leaders</p>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="success-story">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/65.jpg" class="w-16 h-16 rounded-full border-2 border-harvey-primary" alt="CEO">
<div class="ml-4">
<h4 class="font-semibold">Elizabeth Thornton</h4>
<p class="text-sm text-gray-400">CEO, Fortis Capital</p>
</div>
</div>
<p class="mb-6">"HARVEY transformed how I operate as a CEO. In our first quarter, it saved me 22 hours per week by handling email triage, meeting preparation, and stakeholder communications with precision. Most impressively, it flagged a critical contractual risk in an M&A deal that our legal team had missed."</p>
<div class="grid grid-cols-3 gap-4 text-center">
<div>
<div class="text-harvey-primary font-bold text-2xl">50%</div>
<div class="text-sm">Less Time on Admin</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">30%</div>
<div class="text-sm">Higher Client Satisfaction</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">15%</div>
<div class="text-sm">Revenue Growth</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="success-story">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-16 h-16 rounded-full border-2 border-harvey-primary" alt="CEO">
<div class="ml-4">
<h4 class="font-semibold">Robert Chen</h4>
<p class="text-sm text-gray-400">Founder & Chairman, Neo Ventures</p>
</div>
</div>
<p class="mb-6">"As a serial entrepreneur, I've had many assistants, but HARVEY operates at a different level. It doesn't just execute tasks—it anticipates needs. During our Series B fundraising, it prepared investor briefs tailored to each VC's focus areas and tracked follow-ups with perfect timing. The result? We closed the round 3 weeks ahead of schedule with better terms than expected."</p>
<div class="grid grid-cols-3 gap-4 text-center">
<div>
<div class="text-harvey-primary font-bold text-2xl">40%</div>
<div class="text-sm">Faster Deal Flow</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">25%</div>
<div class="text-sm">More Investor Meetings</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">18%</div>
<div class="text-sm">Higher Valuation</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="success-story">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/75.jpg" class="w-16 h-16 rounded-full border-2 border-harvey-primary" alt="CEO">
<div class="ml-4">
<h4 class="font-semibold">James Wilkinson</h4>
<p class="text-sm text-gray-400">COO, GlobalTech Solutions</p>
</div>
</div>
<p class="mb-6">"HARVEY revolutionized our executive operations. It coordinates seamlessly across my C-suite team, ensuring perfect alignment without endless meetings. During our Asia expansion, it managed complex scheduling across 9 time zones while maintaining cultural sensitivity in all communications. Our operational efficiency improved so dramatically that we're rolling HARVEY out to our entire leadership team."</p>
<div class="grid grid-cols-3 gap-4 text-center">
<div>
<div class="text-harvey-primary font-bold text-2xl">60%</div>
<div class="text-sm">Fewer Meetings</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">35%</div>
<div class="text-sm">Faster Execution</div>
</div>
<div>
<div class="text-harvey-primary font-bold text-2xl">22%</div>
<div class="text-sm">Cost Savings</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- HARVEY's Impact Section -->
<section class="py-20 px-4 bg-gray-900">
<div class="container mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">HARVEY's Impact on <span class="text-harvey-primary">Elite CEOs</span></h2>
<p class="text-xl mb-16 max-w-3xl mx-auto">Quantified results from our premium executive clients</p>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="counter" data-target="13">0</div>
<p class="text-lg mt-2">CEOs Empowered</p>
</div>
<div>
<div class="counter" data-target="4560">0</div>
<p class="text-lg mt-2">Hours Saved</p>
</div>
<div>
<div class="counter" data-target="30">0</div>
<p class="text-lg mt-2">Avg Revenue Growth %</p>
</div>
<div>
<div class="counter" data-target="9.2">0</div>
<p class="text-lg mt-2">Avg HARVEY Score</p>
</div>
</div>
</div>
</section>
<!-- Who We Are Section -->
<section class="py-20 px-4">
<div class="container mx-auto max-w-4xl">
<div class="bg-harvey-dark rounded-xl shadow-lg p-12 text-center">
<h2 class="text-3xl font-bold mb-6">Who We Are: <span class="text-harvey-primary">Empowering Elite Leaders</span></h2>
<p class="text-xl mb-8">At IPRESTANDA Tech, we're on a mission to liberate elite CEOs from the chaos of daily operations. With HARVEY, our cutting-edge AI personal assistant, we deliver hyper-personalised experiences and actionable business intelligence, solving your toughest challenges—time loss, stress, and missed opportunities.</p>
<p class="text-xl mb-8">Our premium solutions are crafted for leaders who demand excellence and results. HARVEY isn't just an assistant—it's a force multiplier for your leadership.</p>
<button class="bg-harvey-primary text-white px-8 py-3 rounded-lg hover:bg-opacity-90 transition font-semibold text-lg" id="missionBookBtn">
Book Executive Consultation
</button>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-20 px-4 bg-gray-900">
<div class="container mx-auto max-w-4xl">
<h2 class="text-3xl font-bold text-center mb-4">Executive <span class="text-harvey-primary">FAQs</span></h2>
<p class="text-center text-xl mb-16">Answers to strategic questions from fellow leaders</p>
<div class="space-y-4">
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">How does HARVEY differ from standard virtual assistants?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>HARVEY is engineered specifically for C-suite needs with executive-grade discernment. Unlike consumer assistants, HARVEY understands business context, makes judgment calls aligned with your leadership style, and handles sensitive information with enterprise security. It's not just about task completion—it's about strategic support that amplifies your effectiveness as a leader.</p>
</div>
</div>
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">What's the implementation process for an executive?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>Our executive onboarding is a concierge experience. In Week 1, our team conducts a deep-dive into your workflows, priorities, and communication style. Week 2 involves customized HARVEY training with your inputs. By Week 3, HARVEY is handling 70% of your administrative load, with full optimization achieved by Week 6. You'll have a dedicated Executive Success Manager throughout.</p>
</div>
</div>
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">How does HARVEY handle confidential information?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>Security is paramount. HARVEY operates with bank-grade encryption, SOC 2 Type II compliance, and optional on-premise deployment. All data processing follows strict need-to-know protocols. We can implement custom security measures to meet your corporate governance requirements, including integration with your existing security stack.</p>
</div>
</div>
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">What ROI can I expect as a CEO?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>Our executive clients typically see:</p>
<ul class="list-disc pl-6 mt-2 space-y-2">
<li>15-25 hours recovered weekly (valued at $150k-$500k annually for most CEOs)</li>
<li>30% faster decision cycles from optimized information flow</li>
<li>20% reduction in meeting load through superior scheduling</li>
<li>15% improvement in stakeholder communications</li>
<li>Full cost recovery within 3 months (compared to human EA costs)</li>
</ul>
</div>
</div>
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">Can HARVEY integrate with our existing enterprise systems?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>Absolutely. HARVEY seamlessly connects with all major enterprise platforms including Microsoft 365, G Suite, Salesforce, SAP, Oracle, Slack, Teams, and 150+ other business applications. Our engineering team can develop custom integrations for proprietary systems, typically with 2-week turnaround for most APIs.</p>
</div>
</div>
<div class="faq-item p-6 rounded-lg cursor-pointer">
<div class="flex justify-between items-center">
<h3 class="text-xl font-semibold">What executive support comes with HARVEY?</h3>
<i class="fas fa-chevron-down text-harvey-primary"></i>
</div>
<div class="faq-answer mt-4 hidden">
<p>All HARVEY subscriptions include:</p>
<ul class="list-disc pl-6 mt-2 space-y-2">
<li>Dedicated Executive Success Manager</li>
<li>Priority 24/7 support with 15-minute response SLA</li>
<li>Quarterly strategy reviews to optimize HARVEY's performance</li>
<li>Monthly executive briefings on new features and optimizations</li>
<li>On-demand training for your leadership team</li>
<li>VIP access to our Executive Advisory Council</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-4">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-4">Executive <span class="text-harvey-primary">Pricing</span></h2>
<p class="text-center text-xl mb-16">Precision-engineered plans for elite leadership</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-harvey-dark p-8 rounded-xl shadow-lg border border-gray-700 hover:border-harvey-primary transition transform hover:scale-[1.02]">
<h3 class="text-xl font-semibold mb-2">Leadership</h3>
<p class="text-gray-400 mb-6">For executives with focused assistance needs</p>
<div class="mb-6">
<span class="text-4xl font-bold">$999</span>
<span class="text-gray-400">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Priority email management</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Strategic calendar optimization</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Basic task automation</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times mr-2"></i>
<span>Call screening</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times mr-2"></i>
<span>Advanced data analysis</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times mr-2"></i>
<span>Executive reporting</span>
</li>
</ul>
<button class="w-full bg-gray-700 text-white py-3 rounded-lg hover:bg-gray-600 transition">Get Started</button>
</div>
<div class="bg-harvey-dark p-8 rounded-xl shadow-lg border-2 border-harvey-primary transform scale-105 z-10">
<div class="absolute top-0 right-0 bg-harvey-primary text-white px-3 py-1 text-xs font-bold rounded-bl-lg">EXECUTIVE CHOICE</div>
<h3 class="text-xl font-semibold mb-2">C-Suite</h3>
<p class="text-gray-400 mb-6">For busy executives with comprehensive needs</p>
<div class="mb-6">
<span class="text-4xl font-bold">$2,999</span>
<span class="text-gray-400">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Unlimited email management</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Executive calendar management</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Full task automation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>VIP call screening</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Strategic data analysis</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Board-level reporting</span>
</li>
</ul>
<button class="w-full bg-harvey-primary text-white py-3 rounded-lg hover:bg-opacity-90 transition">Get Started</button>
</div>
<div class="bg-harvey-dark p-8 rounded-xl shadow-lg border border-gray-700 hover:border-harvey-primary transition transform hover:scale-[1.02]">
<h3 class="text-xl font-semibold mb-2">Enterprise</h3>
<p class="text-gray-400 mb-6">For C-level executives with heavy demands</p>
<div class="mb-6">
<span class="text-4xl font-bold">$5,999</span>
<span class="text-gray-400">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Ultimate email management</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Chief of Staff-level scheduling</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Complex workflow automation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Executive call handling</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Advanced business intelligence</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-harvey-primary mr-2"></i>
<span>Custom executive reporting</span>
</li>
</ul>
<button class="w-full bg-gray-700 text-white py-3 rounded-lg hover:bg-gray-600 transition">Contact Sales</button>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-400">* Annual contracts available with 20% discount. All plans include dedicated executive onboarding and priority support.</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4">
<div class="container mx-auto max-w-4xl">
<h2 class="text-3xl font-bold text-center mb-16">Connect With <span class="text-harvey-primary">Us</span></h2>
<div class="bg-harvey-dark rounded-xl shadow-lg overflow-hidden">
<div class="flex border-b border-gray-700">
<button id="contact-tab" class="tab-button flex-1 py-4 font-medium text-center active-tab">Contact Us</button>
<button id="consultation-tab" class="tab-button flex-1 py-4 font-medium text-center">Executive Consultation</button>
</div>
<div class="p-8">
<!-- Contact Form -->
<form id="contact-form" class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="contact-name" class="block mb-2 text-sm font-medium">Name</label>
<input type="text" id="contact-name" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="contact-email" class="block mb-2 text-sm font-medium">Email</label>
<input type="email" id="contact-email" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
</div>
<div>
<label for="contact-message" class="block mb-2 text-sm font-medium">Message</label>
<textarea id="contact-message" rows="4" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required></textarea>
</div>
<button type="submit" class="w-full bg-harvey-primary text-white py-3 rounded-lg hover:bg-opacity-90 transition font-semibold">Send Message</button>
</form>
<!-- Consultation Form (Hidden by default) -->
<form id="consultation-form" class="space-y-6 hidden">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="consult-name" class="block mb-2 text-sm font-medium">Full Name</label>
<input type="text" id="consult-name" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="consult-email" class="block mb-2 text-sm font-medium">Email</label>
<input type="email" id="consult-email" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="consult-title" class="block mb-2 text-sm font-medium">Title</label>
<input type="text" id="consult-title" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="consult-company" class="block mb-2 text-sm font-medium">Company Name</label>
<input type="text" id="consult-company" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="consult-phone" class="block mb-2 text-sm font-medium">Direct Phone</label>
<input type="tel" id="consult-phone" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
</div>
<div>
<label for="consult-revenue" class="block mb-2 text-sm font-medium">Company Revenue</label>
<select id="consult-revenue" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
<option value="">Select Range</option>
<option value="10M">$10M - $50M</option>
<option value="50M">$50M - $100M</option>
<option value="100M">$100M - $500M</option>
<option value="500M">$500M - $1B</option>
<option value="1B">$1B+</option>
</select>
</div>
</div>
<div>
<label for="consult-challenge" class="block mb-2 text-sm font-medium">Your Biggest Time Challenge</label>
<select id="consult-challenge" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required>
<option value="">Select Challenge</option>
<option value="meetings">Too Many Meetings</option>
<option value="email">Email Overload</option>
<option value="decisions">Slow Decision Making</option>
<option value="team">Team Alignment</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="consult-message" class="block mb-2 text-sm font-medium">What would you do with 15 extra hours per week?</label>
<textarea id="consult-message" rows="4" class="form-input w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none" required></textarea>
</div>
<button type="submit" class="w-full bg-harvey-primary text-white py-3 rounded-lg hover:bg-opacity-90 transition font-semibold">Request Executive Consultation</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-harvey-dark text-harvey-light py-12 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<img src="http://localhost:5500/images/logo.png" alt="HARVEY Logo" class="h-8">
<h3 class="text-xl font-bold">HARVEY <span class="text-harvey-primary">PA</span></h3>
</div>
<p class="text-gray-400 mb-4">A product of IPRESTANDA Tech</p>
<p class="text-gray-400">The AI executive assistant that amplifies your leadership.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#features" class="text-gray-400 hover:text-harvey-primary transition">Features</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-harvey-primary transition">Pricing</a></li>
<li><a href="#success" class="text-gray-400 hover:text-harvey-primary transition">Success Stories</a></li>
<li><a href="#faq" class="text-gray-400 hover:text-harvey-primary transition">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-harvey-primary transition">About IPRESTANDA</a></li>
<li><a href="#" class="text-gray-400 hover:text-harvey-primary transition">Leadership</a></li>
<li><a href="#" class="text-gray-400 hover:text-harvey-primary transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-harvey-primary transition">Press</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-harvey-primary transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-harvey-primary transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center hover:bg-harvey-primary transition">
<i class="fab fa-instagram"></i>
</a>
</div>
<p class="text-gray-400">executives@harveypa.com</p>
<p class="text-gray-400">+1 (888) 888-8888</p>
</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-500 text-sm mb-4 md:mb-0">© 2020 IPRESTANDA Tech. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-harvey-primary transition text-sm">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-harvey-primary transition text-sm">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-harvey-primary transition text-sm">Security</a>
</div>
</div>
</div>
</footer>
<!-- Consultation Modal -->
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden" id="consultationModal">
<div class="bg-harvey-dark rounded-xl shadow-xl max-w-md w-full mx-4">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-xl font-bold">Executive Consultation</h3>
<button class="text-gray-400 hover:text-white" id="closeModal">
<i class="fas fa-times"></i>
</button>
</div>
<form class="space-y-4">
<div>
<label class="block mb-2 text-sm font-medium">Full Name</label>
<input type="text" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none" required>
</div>
<div>
<label class="block mb-2 text-sm font-medium">Email</label>
<input type="email" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none" required>
</div>
<div>
<label class="block mb-2 text-sm font-medium">Company</label>
<input type="text" class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none" required>
</div>
<div>
<label class="block mb-2 text-sm font-medium">Your Biggest Challenge</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none" required>
<option value="">Select Challenge</option>
<option value="time">Time Management</option>
<option value="email">Email Overload</option>
<option value="meetings">Too Many Meetings</option>
<option value="decisions">Slow Decision Making</option>
</select>
</div>
<button type="submit" class="w-full bg-harvey-primary text-white py-2 rounded-lg hover:bg-opacity-90 transition">
Book Consultation
</button>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script>
// Initialize Swiper
var swiper = new Swiper(".mySwiper", {
slidesPerView: 1,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
breakpoints: {
768: {
slidesPerView: 2,
spaceBetween: 20,
},
1024: {
slidesPerView: 3,
spaceBetween: 30,
},
},
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
});
// Theme Toggle
const themeButtons = document.querySelectorAll('.theme-select');
const body = document.body;
themeButtons.forEach(button => {
button.addEventListener('click', function() {
const theme = this.getAttribute('data-theme');
body.className = `theme-${theme} min-h-screen`;
localStorage.setItem('theme', theme);
});
});
// Check for saved user preference or use dark mode as default
const currentTheme = localStorage.getItem('theme') || 'dark';
body.className = `theme-${currentTheme} min-h-screen`;
// Chatbot Toggle
const chatbotToggle = document.getElementById('chatbotToggle');
const chatbotWindow = document.getElementById('chatbotWindow');
const minimizeChatbot = document.getElementById('minimizeChatbot');
const closeChatbot = document.getElementById('closeChatbot');
let chatbotTimeout;
chatbotToggle.addEventListener('click', function() {
chatbotWindow.style.display = 'flex';
resetChatbotTimeout();
});
minimizeChatbot.addEventListener('click', function() {
chatbotWindow.style.display = 'none';
});
closeChatbot.addEventListener('click', function() {
chatbotWindow.style.display = 'none';
clearTimeout(chatbotTimeout);
});
function resetChatbotTimeout() {
clearTimeout(chatbotTimeout);
chatbotTimeout = setTimeout(() => {
chatbotWindow.style.display = 'none';
}, 300000); // 5 minutes
}
chatbotWindow.addEventListener('mousemove', resetChatbotTimeout);
// Simple Chat Functionality
const chatbotInput = document.getElementById('chatbotInput');
const chatbotSend = document.getElementById('chatbotSend');
const chatbotBody = document.getElementById('chatbotBody');
chatbotSend.addEventListener('click', sendMessage);
chatbotInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
sendMessage();
}
});
function sendMessage() {
if (chatbotInput.value.trim() !== '') {
// Add user message
const userMessage = document.createElement('div');
userMessage.className = 'chat-message user-message mb-4';
userMessage.innerHTML = `<p>${chatbotInput.value}</p>`;
chatbotBody.appendChild(userMessage);
// Simulate bot response after a delay
setTimeout(() => {
const botMessage = document.createElement('div');
botMessage.className = 'chat-message bot-message mb-4';
botMessage.innerHTML = `<p>I've processed your request. Would you like me to elaborate or assist with anything else?</p>`;
chatbotBody.appendChild(botMessage);
chatbotBody.scrollTop = chatbotBody.scrollHeight;
}, 1000);
chatbotInput.value = '';
chatbotBody.scrollTop = chatbotBody.scrollHeight;
resetChatbotTimeout();
}
}
// FAQ Accordion
const faqItems = document.querySelectorAll('.faq-item');
faqItems.forEach(item => {
item.addEventListener('click', function() {
const answer = this.querySelector('.faq-answer');
const icon = this.querySelector('.fa-chevron-down');
if (answer.classList.contains('hidden')) {
answer.classList.remove('hidden');
icon.classList.add('rotate-180');
} else {
answer.classList.add('hidden');
icon.classList.remove('rotate-180');
}
});
});
// Tab Switching
const contactTab = document.getElementById('contact-tab');
const consultationTab = document.getElementById('consultation-tab');
const contactForm = document.getElementById('contact-form');
const consultationForm = document.getElementById('consultation-form');
contactTab.addEventListener('click', function(e) {
e.preventDefault();
contactTab.classList.add('active-tab');
consultationTab.classList.remove('active-tab');
contactForm.classList.remove('hidden');
consultationForm.classList.add('hidden');
});
consultationTab.addEventListener('click', function(e) {
e.preventDefault();
consultationTab.classList.add('active-tab');
contactTab.classList.remove('active-tab');
consultationForm.classList.remove('hidden');
contactForm.classList.add('hidden');
});
// Form Submission
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
consultationForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for booking a consultation! Our executive team will contact you within 24 hours.');
this.reset();
});
// Counter Animation
const counters = document.querySelectorAll('.counter');
const speed = 200;
function animateCounters() {
counters.forEach(counter => {
const target = +counter.getAttribute('data-target');
const count = +counter.innerText;
const increment = target / speed;
if (count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(animateCounters, 1);
} else {
counter.innerText = target;
}
});
}
// Start counters when section is in view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateCounters();
observer.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
const impactSection = document.querySelector('.bg-gray-900');
observer.observe(impactSection);
// Modal Handling
const bookConsultationBtn = document.getElementById('bookConsultationBtn');
const heroBookDemo = document.getElementById('heroBookDemo');
const missionBookBtn = document.getElementById('missionBookBtn');
const consultationModal = document.getElementById('consultationModal');
const closeModal = document.getElementById('closeModal');
[bookConsultationBtn, heroBookDemo, missionBookBtn].forEach(btn => {
btn.addEventListener('click', function() {
consultationModal.classList.remove('hidden');
});
});
closeModal.addEventListener('click', function() {
consultationModal.classList.add('hidden');
});
// Close modal when clicking outside
consultationModal.addEventListener('click', function(e) {
if (e.target === consultationModal) {
consultationModal.classList.add('hidden');
}
});
</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=mualip/hv1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |