hv1 / index.html
mualip's picture
Add 3 files
1e9b2e2 verified
<!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>