asmadeyi commited on
Commit
948bec6
·
verified ·
1 Parent(s): af5cf45

Add 1 files

Browse files
Files changed (1) hide show
  1. index.html +755 -37
index.html CHANGED
@@ -34,30 +34,93 @@
34
  .step-card {
35
  transition: all 0.3s ease;
36
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  </style>
38
  </head>
39
  <body class="font-sans antialiased text-gray-800">
40
  <!-- Header -->
41
- <header class="fixed w-full bg-white shadow-sm z-50">
42
  <div class="container mx-auto px-6 py-4">
43
  <div class="flex items-center justify-between">
44
  <div class="flex items-center">
45
- <svg class="w-10 h-10 text-blue-600" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
46
- <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
47
- <path d="M12 8V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
48
- <path d="M8 12H16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
49
- </svg>
50
- <span class="ml-3 text-xl font-bold text-gray-800">AgentoForce</span>
 
 
51
  </div>
52
  <nav class="hidden md:flex space-x-8">
53
- <a href="#features" class="text-gray-600 hover:text-blue-600 transition">Features</a>
54
- <a href="#how-it-works" class="text-gray-600 hover:text-blue-600 transition">How It Works</a>
55
- <a href="#testimonials" class="text-gray-600 hover:text-blue-600 transition">Testimonials</a>
56
- <a href="#pricing" class="text-gray-600 hover:text-blue-600 transition">Pricing</a>
 
 
 
 
 
 
 
 
57
  </nav>
58
  <div class="flex items-center space-x-4">
59
- <a href="#" class="hidden md:inline-block px-4 py-2 text-blue-600 border border-blue-600 rounded-md hover:bg-blue-50 transition">Login</a>
60
- <a href="#contact" class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Connect Now</a>
 
 
 
 
61
  </div>
62
  <button class="md:hidden text-gray-600 focus:outline-none">
63
  <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
@@ -78,11 +141,15 @@
78
 
79
  <div class="container mx-auto px-6 relative z-20 text-center fade-in">
80
  <div class="max-w-3xl mx-auto">
81
- <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">AgentoForce: Your AI Employees for Business Tasks</h1>
82
  <p class="text-xl md:text-2xl text-gray-300 mb-10">A revolutionary platform where AI agents autonomously complete tasks and deliver measurable results. Pay for results, not software access.</p>
83
  <div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-6">
84
- <a href="#contact" class="px-8 py-4 bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg shadow-lg transition duration-300 transform hover:scale-105">Connect Now</a>
85
- <a href="#how-it-works" class="px-8 py-4 bg-transparent border-2 border-white text-white font-semibold rounded-lg hover:bg-white hover:text-gray-900 transition duration-300">Learn More</a>
 
 
 
 
86
  </div>
87
  <p class="mt-6 text-gray-300 text-sm">14 days free - No credit card required</p>
88
  </div>
@@ -92,18 +159,35 @@
92
  <div class="absolute top-1/4 left-1/4 w-12 h-12 bg-blue-500 rounded-full opacity-20 floating" style="animation-delay: 0s;"></div>
93
  <div class="absolute top-1/3 right-1/4 w-8 h-8 bg-purple-500 rounded-full opacity-20 floating" style="animation-delay: 1s;"></div>
94
  <div class="absolute bottom-1/4 left-1/3 w-10 h-10 bg-green-500 rounded-full opacity-20 floating" style="animation-delay: 2s;"></div>
 
 
 
 
 
 
 
95
  </section>
96
 
97
  <!-- Trusted By Section -->
98
- <section class="py-12 bg-gray-50">
99
  <div class="container mx-auto px-6">
100
- <p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
101
  <div class="flex flex-wrap justify-center items-center gap-12">
102
- <img src="https://via.placeholder.com/150x60?text=TechCorp" alt="TechCorp" class="h-8 opacity-60 hover:opacity-100 transition">
103
- <img src="https://via.placeholder.com/150x60?text=DataSystems" alt="DataSystems" class="h-8 opacity-60 hover:opacity-100 transition">
104
- <img src="https://via.placeholder.com/150x60?text=InnovateCo" alt="InnovateCo" class="h-10 opacity-60 hover:opacity-100 transition">
105
- <img src="https://via.placeholder.com/150x60?text=FutureLabs" alt="FutureLabs" class="h-12 opacity-60 hover:opacity-100 transition">
106
- <img src="https://via.placeholder.com/150x60?text=DigitalX" alt="DigitalX" class="h-8 opacity-60 hover:opacity-100 transition">
 
 
 
 
 
 
 
 
 
 
107
  </div>
108
  </div>
109
  </section>
@@ -112,68 +196,702 @@
112
  <section id="features" class="py-20 bg-white">
113
  <div class="container mx-auto px-6">
114
  <div class="text-center mb-16">
115
- <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Why Choose AgentoForce AI Employees</h2>
 
116
  <p class="max-w-2xl mx-auto text-gray-600">Our AI agents are designed to handle complex business tasks with precision and efficiency, delivering measurable results.</p>
117
  </div>
118
 
119
  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
120
  <!-- Feature 1 -->
121
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
122
- <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
123
  <i class="fas fa-bolt text-blue-600 text-2xl"></i>
124
  </div>
125
  <h3 class="text-xl font-semibold mb-3">24/7 Productivity</h3>
126
  <p class="text-gray-600">Our AI employees work around the clock without breaks, holidays, or sick days, ensuring continuous business operations.</p>
 
 
 
 
 
127
  </div>
128
 
129
  <!-- Feature 2 -->
130
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
131
- <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-6">
132
  <i class="fas fa-chart-line text-green-600 text-2xl"></i>
133
  </div>
134
  <h3 class="text-xl font-semibold mb-3">Measurable Results</h3>
135
  <p class="text-gray-600">Pay only for completed tasks and verifiable outcomes, not for time spent or software licenses.</p>
 
 
 
 
 
136
  </div>
137
 
138
  <!-- Feature 3 -->
139
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
140
- <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
141
  <i class="fas fa-robot text-purple-600 text-2xl"></i>
142
  </div>
143
  <h3 class="text-xl font-semibold mb-3">Specialized Skills</h3>
144
  <p class="text-gray-600">Access a diverse team of AI specialists trained for specific business functions from customer service to data analysis.</p>
 
 
 
 
 
145
  </div>
146
 
147
  <!-- Feature 4 -->
148
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
149
- <div class="w-14 h-14 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
150
  <i class="fas fa-lock text-yellow-600 text-2xl"></i>
151
  </div>
152
  <h3 class="text-xl font-semibold mb-3">Enterprise Security</h3>
153
  <p class="text-gray-600">Military-grade encryption and compliance with global data protection regulations ensure your information stays secure.</p>
 
 
 
 
 
154
  </div>
155
 
156
  <!-- Feature 5 -->
157
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
158
- <div class="w-14 h-14 bg-red-100 rounded-full flex items-center justify-center mb-6">
159
  <i class="fas fa-sync-alt text-red-600 text-2xl"></i>
160
  </div>
161
  <h3 class="text-xl font-semibold mb-3">Continuous Learning</h3>
162
  <p class="text-gray-600">Our AI employees improve over time, adapting to your business processes and optimizing their performance.</p>
 
 
 
 
 
163
  </div>
164
 
165
  <!-- Feature 6 -->
166
- <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
167
- <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
168
  <i class="fas fa-hand-holding-usd text-indigo-600 text-2xl"></i>
169
  </div>
170
  <h3 class="text-xl font-semibold mb-3">Cost Efficiency</h3>
171
  <p class="text-gray-600">Reduce operational costs by up to 70% compared to traditional staffing while maintaining quality and reliability.</p>
 
 
 
 
 
172
  </div>
173
  </div>
174
  </div>
175
  </section>
176
 
177
  <!-- How It Works Section -->
178
- <section id="how-it-works" class="py-20 bg-gray-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  </html>
 
34
  .step-card {
35
  transition: all 0.3s ease;
36
  }
37
+ .gradient-text {
38
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
39
+ -webkit-background-clip: text;
40
+ background-clip: text;
41
+ color: transparent;
42
+ }
43
+ .glow {
44
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
45
+ }
46
+ .hover-grow {
47
+ transition: all 0.3s ease;
48
+ }
49
+ .hover-grow:hover {
50
+ transform: scale(1.05);
51
+ }
52
+ .wave-shape {
53
+ position: absolute;
54
+ bottom: 0;
55
+ left: 0;
56
+ width: 100%;
57
+ overflow: hidden;
58
+ line-height: 0;
59
+ }
60
+ .wave-shape svg {
61
+ position: relative;
62
+ display: block;
63
+ width: calc(100% + 1.3px);
64
+ height: 150px;
65
+ }
66
+ .wave-shape .shape-fill {
67
+ fill: #FFFFFF;
68
+ }
69
+ .testimonial-card {
70
+ background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,250,251,0.9) 100%);
71
+ backdrop-filter: blur(10px);
72
+ }
73
+ .pricing-card:hover {
74
+ transform: translateY(-10px);
75
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
76
+ }
77
+ .pricing-card {
78
+ transition: all 0.3s ease;
79
+ }
80
+ .feature-icon {
81
+ transition: all 0.3s ease;
82
+ }
83
+ .feature-card:hover .feature-icon {
84
+ transform: rotate(10deg) scale(1.1);
85
+ }
86
  </style>
87
  </head>
88
  <body class="font-sans antialiased text-gray-800">
89
  <!-- Header -->
90
+ <header class="fixed w-full bg-white/90 backdrop-blur-sm shadow-sm z-50">
91
  <div class="container mx-auto px-6 py-4">
92
  <div class="flex items-center justify-between">
93
  <div class="flex items-center">
94
+ <div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center">
95
+ <svg class="w-6 h-6 text-white" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
96
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
97
+ <path d="M12 8V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
98
+ <path d="M8 12H16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
99
+ </svg>
100
+ </div>
101
+ <span class="ml-3 text-xl font-bold text-gray-800">Agento<span class="gradient-text">Force</span></span>
102
  </div>
103
  <nav class="hidden md:flex space-x-8">
104
+ <a href="#features" class="text-gray-600 hover:text-blue-600 transition flex items-center">
105
+ <i class="fas fa-star mr-2"></i> Features
106
+ </a>
107
+ <a href="#how-it-works" class="text-gray-600 hover:text-blue-600 transition flex items-center">
108
+ <i class="fas fa-cogs mr-2"></i> How It Works
109
+ </a>
110
+ <a href="#testimonials" class="text-gray-600 hover:text-blue-600 transition flex items-center">
111
+ <i class="fas fa-quote-left mr-2"></i> Testimonials
112
+ </a>
113
+ <a href="#pricing" class="text-gray-600 hover:text-blue-600 transition flex items-center">
114
+ <i class="fas fa-tag mr-2"></i> Pricing
115
+ </a>
116
  </nav>
117
  <div class="flex items-center space-x-4">
118
+ <a href="#" class="hidden md:inline-block px-4 py-2 text-blue-600 border border-blue-600 rounded-md hover:bg-blue-50 transition flex items-center">
119
+ <i class="fas fa-sign-in-alt mr-2"></i> Login
120
+ </a>
121
+ <a href="#contact" class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition flex items-center glow hover:glow">
122
+ <i class="fas fa-robot mr-2"></i> Connect Now
123
+ </a>
124
  </div>
125
  <button class="md:hidden text-gray-600 focus:outline-none">
126
  <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 
141
 
142
  <div class="container mx-auto px-6 relative z-20 text-center fade-in">
143
  <div class="max-w-3xl mx-auto">
144
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Your AI Workforce <span class="gradient-text">Reinvented</span></h1>
145
  <p class="text-xl md:text-2xl text-gray-300 mb-10">A revolutionary platform where AI agents autonomously complete tasks and deliver measurable results. Pay for results, not software access.</p>
146
  <div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-6">
147
+ <a href="#contact" class="px-8 py-4 bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg shadow-lg transition duration-300 transform hover:scale-105 flex items-center">
148
+ <i class="fas fa-rocket mr-3"></i> Get Started Now
149
+ </a>
150
+ <a href="#how-it-works" class="px-8 py-4 bg-transparent border-2 border-white text-white font-semibold rounded-lg hover:bg-white hover:text-gray-900 transition duration-300 flex items-center">
151
+ <i class="fas fa-play-circle mr-3"></i> Watch Demo
152
+ </a>
153
  </div>
154
  <p class="mt-6 text-gray-300 text-sm">14 days free - No credit card required</p>
155
  </div>
 
159
  <div class="absolute top-1/4 left-1/4 w-12 h-12 bg-blue-500 rounded-full opacity-20 floating" style="animation-delay: 0s;"></div>
160
  <div class="absolute top-1/3 right-1/4 w-8 h-8 bg-purple-500 rounded-full opacity-20 floating" style="animation-delay: 1s;"></div>
161
  <div class="absolute bottom-1/4 left-1/3 w-10 h-10 bg-green-500 rounded-full opacity-20 floating" style="animation-delay: 2s;"></div>
162
+
163
+ <!-- Wave shape divider -->
164
+ <div class="wave-shape">
165
+ <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
166
+ <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
167
+ </svg>
168
+ </div>
169
  </section>
170
 
171
  <!-- Trusted By Section -->
172
+ <section class="py-16 bg-gray-50">
173
  <div class="container mx-auto px-6">
174
+ <p class="text-center text-gray-500 mb-10 text-lg">Trusted by innovative companies worldwide</p>
175
  <div class="flex flex-wrap justify-center items-center gap-12">
176
+ <div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition">
177
+ <img src="https://via.placeholder.com/150x60?text=TechCorp" alt="TechCorp" class="h-8 opacity-80 hover:opacity-100 transition">
178
+ </div>
179
+ <div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition">
180
+ <img src="https://via.placeholder.com/150x60?text=DataSystems" alt="DataSystems" class="h-8 opacity-80 hover:opacity-100 transition">
181
+ </div>
182
+ <div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition">
183
+ <img src="https://via.placeholder.com/150x60?text=InnovateCo" alt="InnovateCo" class="h-10 opacity-80 hover:opacity-100 transition">
184
+ </div>
185
+ <div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition">
186
+ <img src="https://via.placeholder.com/150x60?text=FutureLabs" alt="FutureLabs" class="h-12 opacity-80 hover:opacity-100 transition">
187
+ </div>
188
+ <div class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition">
189
+ <img src="https://via.placeholder.com/150x60?text=DigitalX" alt="DigitalX" class="h-8 opacity-80 hover:opacity-100 transition">
190
+ </div>
191
  </div>
192
  </div>
193
  </section>
 
196
  <section id="features" class="py-20 bg-white">
197
  <div class="container mx-auto px-6">
198
  <div class="text-center mb-16">
199
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">WHY CHOOSE US</span>
200
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Supercharge Your Business with <span class="gradient-text">AI Employees</span></h2>
201
  <p class="max-w-2xl mx-auto text-gray-600">Our AI agents are designed to handle complex business tasks with precision and efficiency, delivering measurable results.</p>
202
  </div>
203
 
204
  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
205
  <!-- Feature 1 -->
206
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
207
+ <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6 feature-icon">
208
  <i class="fas fa-bolt text-blue-600 text-2xl"></i>
209
  </div>
210
  <h3 class="text-xl font-semibold mb-3">24/7 Productivity</h3>
211
  <p class="text-gray-600">Our AI employees work around the clock without breaks, holidays, or sick days, ensuring continuous business operations.</p>
212
+ <div class="mt-4">
213
+ <a href="#" class="text-blue-600 hover:text-blue-800 flex items-center text-sm font-medium">
214
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
215
+ </a>
216
+ </div>
217
  </div>
218
 
219
  <!-- Feature 2 -->
220
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
221
+ <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-6 feature-icon">
222
  <i class="fas fa-chart-line text-green-600 text-2xl"></i>
223
  </div>
224
  <h3 class="text-xl font-semibold mb-3">Measurable Results</h3>
225
  <p class="text-gray-600">Pay only for completed tasks and verifiable outcomes, not for time spent or software licenses.</p>
226
+ <div class="mt-4">
227
+ <a href="#" class="text-green-600 hover:text-green-800 flex items-center text-sm font-medium">
228
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
229
+ </a>
230
+ </div>
231
  </div>
232
 
233
  <!-- Feature 3 -->
234
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
235
+ <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6 feature-icon">
236
  <i class="fas fa-robot text-purple-600 text-2xl"></i>
237
  </div>
238
  <h3 class="text-xl font-semibold mb-3">Specialized Skills</h3>
239
  <p class="text-gray-600">Access a diverse team of AI specialists trained for specific business functions from customer service to data analysis.</p>
240
+ <div class="mt-4">
241
+ <a href="#" class="text-purple-600 hover:text-purple-800 flex items-center text-sm font-medium">
242
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
243
+ </a>
244
+ </div>
245
  </div>
246
 
247
  <!-- Feature 4 -->
248
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
249
+ <div class="w-14 h-14 bg-yellow-100 rounded-full flex items-center justify-center mb-6 feature-icon">
250
  <i class="fas fa-lock text-yellow-600 text-2xl"></i>
251
  </div>
252
  <h3 class="text-xl font-semibold mb-3">Enterprise Security</h3>
253
  <p class="text-gray-600">Military-grade encryption and compliance with global data protection regulations ensure your information stays secure.</p>
254
+ <div class="mt-4">
255
+ <a href="#" class="text-yellow-600 hover:text-yellow-800 flex items-center text-sm font-medium">
256
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
257
+ </a>
258
+ </div>
259
  </div>
260
 
261
  <!-- Feature 5 -->
262
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
263
+ <div class="w-14 h-14 bg-red-100 rounded-full flex items-center justify-center mb-6 feature-icon">
264
  <i class="fas fa-sync-alt text-red-600 text-2xl"></i>
265
  </div>
266
  <h3 class="text-xl font-semibold mb-3">Continuous Learning</h3>
267
  <p class="text-gray-600">Our AI employees improve over time, adapting to your business processes and optimizing their performance.</p>
268
+ <div class="mt-4">
269
+ <a href="#" class="text-red-600 hover:text-red-800 flex items-center text-sm font-medium">
270
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
271
+ </a>
272
+ </div>
273
  </div>
274
 
275
  <!-- Feature 6 -->
276
+ <div class="feature-card bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
277
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6 feature-icon">
278
  <i class="fas fa-hand-holding-usd text-indigo-600 text-2xl"></i>
279
  </div>
280
  <h3 class="text-xl font-semibold mb-3">Cost Efficiency</h3>
281
  <p class="text-gray-600">Reduce operational costs by up to 70% compared to traditional staffing while maintaining quality and reliability.</p>
282
+ <div class="mt-4">
283
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 flex items-center text-sm font-medium">
284
+ Learn more <i class="fas fa-arrow-right ml-2"></i>
285
+ </a>
286
+ </div>
287
  </div>
288
  </div>
289
  </div>
290
  </section>
291
 
292
  <!-- How It Works Section -->
293
+ <section id="how-it-works" class="py-20 bg-gray-50">
294
+ <div class="container mx-auto px-6">
295
+ <div class="text-center mb-16">
296
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">OUR PROCESS</span>
297
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">How AgentoForce <span class="gradient-text">Works</span></h2>
298
+ <p class="max-w-2xl mx-auto text-gray-600">Get started in just a few simple steps and watch your productivity soar.</p>
299
+ </div>
300
+
301
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
302
+ <!-- Step 1 -->
303
+ <div class="step-card bg-white p-8 rounded-xl shadow-lg text-center">
304
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6 mx-auto">
305
+ <span class="text-blue-600 text-2xl font-bold">1</span>
306
+ </div>
307
+ <h3 class="text-xl font-semibold mb-3">Define Your Task</h3>
308
+ <p class="text-gray-600">Tell us what you need done through our simple interface or API integration.</p>
309
+ <div class="mt-6">
310
+ <i class="fas fa-comment-dots text-blue-500 text-3xl"></i>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Step 2 -->
315
+ <div class="step-card bg-white p-8 rounded-xl shadow-lg text-center">
316
+ <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6 mx-auto">
317
+ <span class="text-green-600 text-2xl font-bold">2</span>
318
+ </div>
319
+ <h3 class="text-xl font-semibold mb-3">AI Agent Assignment</h3>
320
+ <p class="text-gray-600">Our system automatically assigns the best AI employee for your specific task.</p>
321
+ <div class="mt-6">
322
+ <i class="fas fa-robot text-green-500 text-3xl"></i>
323
+ </div>
324
+ </div>
325
+
326
+ <!-- Step 3 -->
327
+ <div class="step-card bg-white p-8 rounded-xl shadow-lg text-center">
328
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6 mx-auto">
329
+ <span class="text-purple-600 text-2xl font-bold">3</span>
330
+ </div>
331
+ <h3 class="text-xl font-semibold mb-3">Task Execution</h3>
332
+ <p class="text-gray-600">Your AI employee works autonomously to complete the task with precision.</p>
333
+ <div class="mt-6">
334
+ <i class="fas fa-cogs text-purple-500 text-3xl"></i>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Step 4 -->
339
+ <div class="step-card bg-white p-8 rounded-xl shadow-lg text-center">
340
+ <div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6 mx-auto">
341
+ <span class="text-yellow-600 text-2xl font-bold">4</span>
342
+ </div>
343
+ <h3 class="text-xl font-semibold mb-3">Results Delivery</h3>
344
+ <p class="text-gray-600">Receive the completed work and only pay for successful outcomes.</p>
345
+ <div class="mt-6">
346
+ <i class="fas fa-check-circle text-yellow-500 text-3xl"></i>
347
+ </div>
348
+ </div>
349
+ </div>
350
+
351
+ <div class="mt-16 text-center">
352
+ <a href="#contact" class="inline-block px-8 py-3 bg-blue-600 text-white font-semibold rounded-lg hover:bg-blue-700 transition duration-300 transform hover:scale-105">
353
+ <i class="fas fa-play mr-2"></i> Watch Demo Video
354
+ </a>
355
+ </div>
356
+ </div>
357
+ </section>
358
+
359
+ <!-- Testimonials Section -->
360
+ <section id="testimonials" class="py-20 bg-gradient-to-r from-blue-50 to-indigo-50">
361
+ <div class="container mx-auto px-6">
362
+ <div class="text-center mb-16">
363
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">SUCCESS STORIES</span>
364
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">What Our Clients <span class="gradient-text">Say</span></h2>
365
+ <p class="max-w-2xl mx-auto text-gray-600">Hear from businesses that have transformed their operations with AgentoForce.</p>
366
+ </div>
367
+
368
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
369
+ <!-- Testimonial 1 -->
370
+ <div class="testimonial-card p-8 rounded-xl shadow-lg">
371
+ <div class="flex items-center mb-6">
372
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full">
373
+ <div class="ml-4">
374
+ <h4 class="font-semibold">Sarah Johnson</h4>
375
+ <p class="text-gray-600 text-sm">CEO, TechSolutions</p>
376
+ </div>
377
+ </div>
378
+ <p class="text-gray-700 mb-6">"AgentoForce has revolutionized our customer support. Our response times improved by 80% while reducing costs by 60%. The AI agents handle routine inquiries flawlessly."</p>
379
+ <div class="flex text-yellow-400">
380
+ <i class="fas fa-star"></i>
381
+ <i class="fas fa-star"></i>
382
+ <i class="fas fa-star"></i>
383
+ <i class="fas fa-star"></i>
384
+ <i class="fas fa-star"></i>
385
+ </div>
386
+ </div>
387
+
388
+ <!-- Testimonial 2 -->
389
+ <div class="testimonial-card p-8 rounded-xl shadow-lg">
390
+ <div class="flex items-center mb-6">
391
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full">
392
+ <div class="ml-4">
393
+ <h4 class="font-semibold">Michael Chen</h4>
394
+ <p class="text-gray-600 text-sm">COO, DataSystems</p>
395
+ </div>
396
+ </div>
397
+ <p class="text-gray-700 mb-6">"The data processing AI employees have saved us hundreds of hours monthly. Their accuracy is better than our human team, and they never get tired of repetitive tasks."</p>
398
+ <div class="flex text-yellow-400">
399
+ <i class="fas fa-star"></i>
400
+ <i class="fas fa-star"></i>
401
+ <i class="fas fa-star"></i>
402
+ <i class="fas fa-star"></i>
403
+ <i class="fas fa-star"></i>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- Testimonial 3 -->
408
+ <div class="testimonial-card p-8 rounded-xl shadow-lg">
409
+ <div class="flex items-center mb-6">
410
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full">
411
+ <div class="ml-4">
412
+ <h4 class="font-semibold">Emma Rodriguez</h4>
413
+ <p class="text-gray-600 text-sm">Marketing Director, BrandUp</p>
414
+ </div>
415
+ </div>
416
+ <p class="text-gray-700 mb-6">"Our content generation AI has produced over 500 high-quality blog posts in 3 months. The quality is exceptional and it learns our brand voice perfectly."</p>
417
+ <div class="flex text-yellow-400">
418
+ <i class="fas fa-star"></i>
419
+ <i class="fas fa-star"></i>
420
+ <i class="fas fa-star"></i>
421
+ <i class="fas fa-star"></i>
422
+ <i class="fas fa-star-half-alt"></i>
423
+ </div>
424
+ </div>
425
+ </div>
426
+
427
+ <div class="mt-12 text-center">
428
+ <a href="#" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-medium">
429
+ <i class="fas fa-book-open mr-2"></i> Read more case studies
430
+ </a>
431
+ </div>
432
+ </div>
433
+ </section>
434
+
435
+ <!-- Pricing Section -->
436
+ <section id="pricing" class="py-20 bg-white">
437
+ <div class="container mx-auto px-6">
438
+ <div class="text-center mb-16">
439
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">PRICING</span>
440
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Simple, Transparent <span class="gradient-text">Pricing</span></h2>
441
+ <p class="max-w-2xl mx-auto text-gray-600">Pay only for the results you receive, with no hidden fees or long-term contracts.</p>
442
+ </div>
443
+
444
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
445
+ <!-- Starter Plan -->
446
+ <div class="pricing-card bg-white p-8 rounded-xl shadow-lg border border-gray-100">
447
+ <div class="text-center mb-6">
448
+ <h3 class="text-xl font-semibold mb-2">Starter</h3>
449
+ <p class="text-gray-600">Perfect for small businesses</p>
450
+ </div>
451
+ <div class="text-center mb-8">
452
+ <span class="text-4xl font-bold text-gray-800">$99</span>
453
+ <span class="text-gray-600">/month</span>
454
+ </div>
455
+ <ul class="space-y-3 mb-8">
456
+ <li class="flex items-center">
457
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
458
+ <span>Up to 100 tasks/month</span>
459
+ </li>
460
+ <li class="flex items-center">
461
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
462
+ <span>3 AI employee types</span>
463
+ </li>
464
+ <li class="flex items-center">
465
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
466
+ <span>Email support</span>
467
+ </li>
468
+ <li class="flex items-center text-gray-400">
469
+ <i class="fas fa-times-circle mr-2"></i>
470
+ <span>No API access</span>
471
+ </li>
472
+ <li class="flex items-center text-gray-400">
473
+ <i class="fas fa-times-circle mr-2"></i>
474
+ <span>No priority queue</span>
475
+ </li>
476
+ </ul>
477
+ <a href="#contact" class="block w-full py-3 px-4 text-center bg-gray-100 text-gray-800 font-medium rounded-lg hover:bg-gray-200 transition">
478
+ Get Started
479
+ </a>
480
+ </div>
481
+
482
+ <!-- Professional Plan -->
483
+ <div class="pricing-card bg-white p-8 rounded-xl shadow-lg border-2 border-blue-500 relative">
484
+ <div class="absolute top-0 right-0 bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">
485
+ POPULAR
486
+ </div>
487
+ <div class="text-center mb-6">
488
+ <h3 class="text-xl font-semibold mb-2">Professional</h3>
489
+ <p class="text-gray-600">Best for growing businesses</p>
490
+ </div>
491
+ <div class="text-center mb-8">
492
+ <span class="text-4xl font-bold text-gray-800">$299</span>
493
+ <span class="text-gray-600">/month</span>
494
+ </div>
495
+ <ul class="space-y-3 mb-8">
496
+ <li class="flex items-center">
497
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
498
+ <span>Up to 500 tasks/month</span>
499
+ </li>
500
+ <li class="flex items-center">
501
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
502
+ <span>10 AI employee types</span>
503
+ </li>
504
+ <li class="flex items-center">
505
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
506
+ <span>Priority email & chat support</span>
507
+ </li>
508
+ <li class="flex items-center">
509
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
510
+ <span>Basic API access</span>
511
+ </li>
512
+ <li class="flex items-center text-gray-400">
513
+ <i class="fas fa-times-circle mr-2"></i>
514
+ <span>No dedicated account manager</span>
515
+ </li>
516
+ </ul>
517
+ <a href="#contact" class="block w-full py-3 px-4 text-center bg-blue-600 text-white font-medium rounded-lg hover:bg-blue-700 transition">
518
+ Get Started
519
+ </a>
520
+ </div>
521
+
522
+ <!-- Enterprise Plan -->
523
+ <div class="pricing-card bg-white p-8 rounded-xl shadow-lg border border-gray-100">
524
+ <div class="text-center mb-6">
525
+ <h3 class="text-xl font-semibold mb-2">Enterprise</h3>
526
+ <p class="text-gray-600">For large organizations</p>
527
+ </div>
528
+ <div class="text-center mb-8">
529
+ <span class="text-4xl font-bold text-gray-800">Custom</span>
530
+ </div>
531
+ <ul class="space-y-3 mb-8">
532
+ <li class="flex items-center">
533
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
534
+ <span>Unlimited tasks</span>
535
+ </li>
536
+ <li class="flex items-center">
537
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
538
+ <span>All AI employee types</span>
539
+ </li>
540
+ <li class="flex items-center">
541
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
542
+ <span>24/7 priority support</span>
543
+ </li>
544
+ <li class="flex items-center">
545
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
546
+ <span>Full API access</span>
547
+ </li>
548
+ <li class="flex items-center">
549
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
550
+ <span>Dedicated account manager</span>
551
+ </li>
552
+ </ul>
553
+ <a href="#contact" class="block w-full py-3 px-4 text-center bg-gray-100 text-gray-800 font-medium rounded-lg hover:bg-gray-200 transition">
554
+ Contact Sales
555
+ </a>
556
+ </div>
557
+ </div>
558
+
559
+ <div class="mt-12 text-center">
560
+ <p class="text-gray-600 mb-4">Not sure which plan is right for you?</p>
561
+ <a href="#contact" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-medium">
562
+ <i class="fas fa-headset mr-2"></i> Talk to our sales team
563
+ </a>
564
+ </div>
565
+ </div>
566
+ </section>
567
+
568
+ <!-- CTA Section -->
569
+ <section class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700">
570
+ <div class="container mx-auto px-6 text-center">
571
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Transform Your Business with AI?</h2>
572
+ <p class="text-xl text-blue-100 mb-10 max-w-2xl mx-auto">Join thousands of businesses already benefiting from our AI workforce.</p>
573
+ <div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-6">
574
+ <a href="#contact" class="px-8 py-4 bg-white text-blue-600 font-semibold rounded-lg shadow-lg transition duration-300 transform hover:scale-105 hover:bg-gray-100">
575
+ <i class="fas fa-calendar-check mr-3"></i> Schedule a Demo
576
+ </a>
577
+ <a href="#contact" class="px-8 py-4 bg-transparent border-2 border-white text-white font-semibold rounded-lg hover:bg-white hover:text-blue-600 transition duration-300">
578
+ <i class="fas fa-question-circle mr-3"></i> Ask Questions
579
+ </a>
580
+ </div>
581
+ </div>
582
+ </section>
583
+
584
+ <!-- Contact Section -->
585
+ <section id="contact" class="py-20 bg-gray-50">
586
+ <div class="container mx-auto px-6">
587
+ <div class="max-w-4xl mx-auto">
588
+ <div class="text-center mb-16">
589
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">GET IN TOUCH</span>
590
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Let's Build Your <span class="gradient-text">AI Workforce</span></h2>
591
+ <p class="max-w-2xl mx-auto text-gray-600">Have questions or ready to get started? Our team is here to help.</p>
592
+ </div>
593
+
594
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
595
+ <div>
596
+ <form class="space-y-6">
597
+ <div>
598
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
599
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="John Doe">
600
+ </div>
601
+ <div>
602
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
603
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="you@example.com">
604
+ </div>
605
+ <div>
606
+ <label for="company" class="block text-sm font-medium text-gray-700 mb-1">Company (Optional)</label>
607
+ <input type="text" id="company" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Your Company">
608
+ </div>
609
+ <div>
610
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">How Can We Help?</label>
611
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Tell us about your project or questions..."></textarea>
612
+ </div>
613
+ <div>
614
+ <button type="submit" class="w-full px-6 py-3 bg-blue-600 text-white font-medium rounded-lg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition">
615
+ <i class="fas fa-paper-plane mr-2"></i> Send Message
616
+ </button>
617
+ </div>
618
+ </form>
619
+ </div>
620
+
621
+ <div>
622
+ <div class="bg-white p-8 rounded-xl shadow-lg h-full">
623
+ <h3 class="text-xl font-semibold mb-6">Contact Information</h3>
624
+ <div class="space-y-6">
625
+ <div class="flex items-start">
626
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center">
627
+ <i class="fas fa-map-marker-alt text-blue-600"></i>
628
+ </div>
629
+ <div class="ml-4">
630
+ <h4 class="text-sm font-medium text-gray-900">Our Office</h4>
631
+ <p class="text-sm text-gray-500">123 AI Boulevard, Tech City, TC 10001</p>
632
+ </div>
633
+ </div>
634
+
635
+ <div class="flex items-start">
636
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-green-100 flex items-center justify-center">
637
+ <i class="fas fa-envelope text-green-600"></i>
638
+ </div>
639
+ <div class="ml-4">
640
+ <h4 class="text-sm font-medium text-gray-900">Email Us</h4>
641
+ <p class="text-sm text-gray-500">hello@agentoforce.com</p>
642
+ </div>
643
+ </div>
644
+
645
+ <div class="flex items-start">
646
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center">
647
+ <i class="fas fa-phone-alt text-purple-600"></i>
648
+ </div>
649
+ <div class="ml-4">
650
+ <h4 class="text-sm font-medium text-gray-900">Call Us</h4>
651
+ <p class="text-sm text-gray-500">+1 (555) 123-4567</p>
652
+ </div>
653
+ </div>
654
+
655
+ <div class="flex items-start">
656
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-yellow-100 flex items-center justify-center">
657
+ <i class="fas fa-clock text-yellow-600"></i>
658
+ </div>
659
+ <div class="ml-4">
660
+ <h4 class="text-sm font-medium text-gray-900">Working Hours</h4>
661
+ <p class="text-sm text-gray-500">Monday - Friday: 9AM - 6PM</p>
662
+ </div>
663
+ </div>
664
+ </div>
665
+
666
+ <div class="mt-8">
667
+ <h4 class="text-sm font-medium text-gray-900 mb-3">Follow Us</h4>
668
+ <div class="flex space-x-4">
669
+ <a href="#" class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
670
+ <i class="fab fa-twitter"></i>
671
+ </a>
672
+ <a href="#" class="w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white hover:bg-blue-700 transition">
673
+ <i class="fab fa-linkedin-in"></i>
674
+ </a>
675
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-gray-700 transition">
676
+ <i class="fab fa-github"></i>
677
+ </a>
678
+ <a href="#" class="w-10 h-10 rounded-full bg-pink-600 flex items-center justify-center text-white hover:bg-pink-700 transition">
679
+ <i class="fab fa-instagram"></i>
680
+ </a>
681
+ </div>
682
+ </div>
683
+ </div>
684
+ </div>
685
+ </div>
686
+ </div>
687
+ </div>
688
+ </section>
689
+
690
+ <!-- FAQ Section -->
691
+ <section class="py-20 bg-white">
692
+ <div class="container mx-auto px-6 max-w-4xl">
693
+ <div class="text-center mb-16">
694
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">FAQs</span>
695
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Frequently Asked <span class="gradient-text">Questions</span></h2>
696
+ <p class="max-w-2xl mx-auto text-gray-600">Find answers to common questions about AgentoForce.</p>
697
+ </div>
698
+
699
+ <div class="space-y-6">
700
+ <!-- FAQ Item 1 -->
701
+ <div class="border border-gray-200 rounded-xl overflow-hidden">
702
+ <button class="faq-toggle w-full px-6 py-4 text-left bg-gray-50 hover:bg-gray-100 focus:outline-none">
703
+ <div class="flex items-center justify-between">
704
+ <h3 class="text-lg font-medium text-gray-900">What types of tasks can AI employees handle?</h3>
705
+ <i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
706
+ </div>
707
+ </button>
708
+ <div class="faq-content hidden px-6 py-4 bg-white">
709
+ <p class="text-gray-600">Our AI employees can handle a wide range of tasks including customer support, data entry and processing, content generation, market research, appointment scheduling, and more. We have specialized AI agents trained for different business functions.</p>
710
+ </div>
711
+ </div>
712
+
713
+ <!-- FAQ Item 2 -->
714
+ <div class="border border-gray-200 rounded-xl overflow-hidden">
715
+ <button class="faq-toggle w-full px-6 py-4 text-left bg-gray-50 hover:bg-gray-100 focus:outline-none">
716
+ <div class="flex items-center justify-between">
717
+ <h3 class="text-lg font-medium text-gray-900">How do you ensure the quality of work?</h3>
718
+ <i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
719
+ </div>
720
+ </button>
721
+ <div class="faq-content hidden px-6 py-4 bg-white">
722
+ <p class="text-gray-600">All our AI employees go through rigorous training and testing before deployment. We implement multiple quality control measures including human oversight for critical tasks, automated validation checks, and continuous performance monitoring to ensure high-quality results.</p>
723
+ </div>
724
+ </div>
725
+
726
+ <!-- FAQ Item 3 -->
727
+ <div class="border border-gray-200 rounded-xl overflow-hidden">
728
+ <button class="faq-toggle w-full px-6 py-4 text-left bg-gray-50 hover:bg-gray-100 focus:outline-none">
729
+ <div class="flex items-center justify-between">
730
+ <h3 class="text-lg font-medium text-gray-900">Is my data secure with AgentoForce?</h3>
731
+ <i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
732
+ </div>
733
+ </button>
734
+ <div class="faq-content hidden px-6 py-4 bg-white">
735
+ <p class="text-gray-600">Absolutely. We use enterprise-grade security measures including end-to-end encryption, strict access controls, and regular security audits. We comply with all major data protection regulations (GDPR, CCPA) and never share or sell your data to third parties.</p>
736
+ </div>
737
+ </div>
738
+
739
+ <!-- FAQ Item 4 -->
740
+ <div class="border border-gray-200 rounded-xl overflow-hidden">
741
+ <button class="faq-toggle w-full px-6 py-4 text-left bg-gray-50 hover:bg-gray-100 focus:outline-none">
742
+ <div class="flex items-center justify-between">
743
+ <h3 class="text-lg font-medium text-gray-900">Can I customize the AI employees for my specific needs?</h3>
744
+ <i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
745
+ </div>
746
+ </button>
747
+ <div class="faq-content hidden px-6 py-4 bg-white">
748
+ <p class="text-gray-600">Yes! Our AI employees can be customized to match your brand voice, business processes, and specific requirements. Enterprise customers can work with our team to train specialized AI models tailored to their unique needs.</p>
749
+ </div>
750
+ </div>
751
+
752
+ <!-- FAQ Item 5 -->
753
+ <div class="border border-gray-200 rounded-xl overflow-hidden">
754
+ <button class="faq-toggle w-full px-6 py-4 text-left bg-gray-50 hover:bg-gray-100 focus:outline-none">
755
+ <div class="flex items-center justify-between">
756
+ <h3 class="text-lg font-medium text-gray-900">What if I'm not satisfied with the results?</h3>
757
+ <i class="fas fa-chevron-down text-gray-500 transition-transform duration-300"></i>
758
+ </div>
759
+ </button>
760
+ <div class="faq-content hidden px-6 py-4 bg-white">
761
+ <p class="text-gray-600">We stand behind our service with a satisfaction guarantee. If a task doesn't meet your expectations, we'll either redo it at no additional cost or provide a full refund for that task. Our goal is to ensure you're completely happy with the results.</p>
762
+ </div>
763
+ </div>
764
+ </div>
765
+
766
+ <div class="mt-12 text-center">
767
+ <p class="text-gray-600 mb-4">Still have questions?</p>
768
+ <a href="#contact" class="inline-flex items-center text-blue-600 hover:text-blue-800 font-medium">
769
+ <i class="fas fa-envelope mr-2"></i> Contact our support team
770
+ </a>
771
+ </div>
772
+ </div>
773
+ </section>
774
+
775
+ <!-- Footer -->
776
+ <footer class="bg-gray-900 text-white pt-20 pb-10">
777
+ <div class="container mx-auto px-6">
778
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
779
+ <div>
780
+ <div class="flex items-center mb-6">
781
+ <div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center">
782
+ <svg class="w-6 h-6 text-white" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
783
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
784
+ <path d="M12 8V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
785
+ <path d="M8 12H16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
786
+ </svg>
787
+ </div>
788
+ <span class="ml-3 text-xl font-bold">Agento<span class="gradient-text">Force</span></span>
789
+ </div>
790
+ <p class="text-gray-400 mb-6">Revolutionizing business operations with autonomous AI employees that deliver measurable results.</p>
791
+ <div class="flex space-x-4">
792
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-blue-600 transition">
793
+ <i class="fab fa-twitter"></i>
794
+ </a>
795
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-blue-700 transition">
796
+ <i class="fab fa-linkedin-in"></i>
797
+ </a>
798
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-gray-700 transition">
799
+ <i class="fab fa-github"></i>
800
+ </a>
801
+ <a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:text-white hover:bg-pink-600 transition">
802
+ <i class="fab fa-instagram"></i>
803
+ </a>
804
+ </div>
805
+ </div>
806
+
807
+ <div>
808
+ <h3 class="text-lg font-semibold mb-6">Product</h3>
809
+ <ul class="space-y-3">
810
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
811
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
812
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
813
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li>
814
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Roadmap</a></li>
815
+ </ul>
816
+ </div>
817
+
818
+ <div>
819
+ <h3 class="text-lg font-semibold mb-6">Company</h3>
820
+ <ul class="space-y-3">
821
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
822
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
823
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
824
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
825
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Partners</a></li>
826
+ </ul>
827
+ </div>
828
+
829
+ <div>
830
+ <h3 class="text-lg font-semibold mb-6">Support</h3>
831
+ <ul class="space-y-3">
832
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
833
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
834
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
835
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Status</a></li>
836
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API Docs</a></li>
837
+ </ul>
838
+ </div>
839
+ </div>
840
+
841
+ <div class="border-t border-gray-800 pt-8">
842
+ <div class="flex flex-col md:flex-row justify-between items-center">
843
+ <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 AgentoForce. All rights reserved.</p>
844
+ <div class="flex space-x-6">
845
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a>
846
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms of Service</a>
847
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Cookie Policy</a>
848
+ </div>
849
+ </div>
850
+ </div>
851
+ </div>
852
+ </footer>
853
+
854
+ <script>
855
+ // FAQ toggle functionality
856
+ document.querySelectorAll('.faq-toggle').forEach(button => {
857
+ button.addEventListener('click', () => {
858
+ const faqContent = button.nextElementSibling;
859
+ const icon = button.querySelector('i');
860
+
861
+ // Toggle the content
862
+ faqContent.classList.toggle('hidden');
863
+
864
+ // Rotate the icon
865
+ if (faqContent.classList.contains('hidden')) {
866
+ icon.style.transform = 'rotate(0deg)';
867
+ } else {
868
+ icon.style.transform = 'rotate(180deg)';
869
+ }
870
+ });
871
+ });
872
+
873
+ // Smooth scrolling for anchor links
874
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
875
+ anchor.addEventListener('click', function (e) {
876
+ e.preventDefault();
877
+
878
+ const targetId = this.getAttribute('href');
879
+ if (targetId === '#') return;
880
+
881
+ const targetElement = document.querySelector(targetId);
882
+ if (targetElement) {
883
+ window.scrollTo({
884
+ top: targetElement.offsetTop - 80,
885
+ behavior: 'smooth'
886
+ });
887
+ }
888
+ });
889
+ });
890
+
891
+ // Mobile menu toggle (placeholder - would need more implementation)
892
+ document.querySelector('.md\\:hidden').addEventListener('click', function() {
893
+ alert('Mobile menu would open here in a full implementation');
894
+ });
895
+ </script>
896
+ <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=asmadeyi/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
897
  </html>