chimpuuuu commited on
Commit
41e595b
·
verified ·
1 Parent(s): afca121

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +299 -182
  2. prompts.txt +2 -1
index.html CHANGED
@@ -3,85 +3,131 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Boost Conversions | Premium CRO Service</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
10
  .hero-gradient {
11
- background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
 
 
 
 
 
 
 
 
 
 
 
 
12
  }
13
  .cta-pulse {
14
  animation: pulse 2s infinite;
15
  }
16
  @keyframes pulse {
17
- 0% { transform: scale(1); }
18
- 50% { transform: scale(1.05); }
19
- 100% { transform: scale(1); }
20
  }
21
- .testimonial-card {
22
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
24
  </style>
25
  </head>
26
- <body class="font-sans antialiased text-gray-800">
27
- <!-- Header with sticky nav -->
28
- <header class="sticky top-0 z-50 bg-white shadow-sm">
29
  <div class="container mx-auto px-6 py-4">
30
  <div class="flex items-center justify-between">
31
  <div class="flex items-center">
32
- <div class="w-10 h-10 rounded-full bg-indigo-600 flex items-center justify-center text-white font-bold text-xl">CR</div>
33
- <span class="ml-3 text-xl font-bold text-gray-800">ConversionRocket</span>
34
  </div>
35
  <nav class="hidden md:flex space-x-8">
36
- <a href="#features" class="text-gray-600 hover:text-indigo-600 font-medium">Features</a>
37
- <a href="#results" class="text-gray-600 hover:text-indigo-600 font-medium">Results</a>
38
- <a href="#pricing" class="text-gray-600 hover:text-indigo-600 font-medium">Pricing</a>
39
- <a href="#testimonials" class="text-gray-600 hover:text-indigo-600 font-medium">Testimonials</a>
40
  </nav>
 
 
 
41
  <div class="md:hidden">
42
  <button class="text-gray-600 focus:outline-none">
43
  <i class="fas fa-bars text-2xl"></i>
44
  </button>
45
  </div>
46
- <div class="hidden md:block">
47
- <a href="#cta" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-full font-medium transition duration-300">Get Started</a>
48
- </div>
49
  </div>
50
  </div>
51
  </header>
52
 
53
- <!-- Hero Section with CTA -->
54
- <section class="hero-gradient text-white py-20">
55
- <div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
 
 
 
56
  <div class="md:w-1/2 mb-12 md:mb-0">
57
- <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Double Your Conversions <br>In Just 30 Days</h1>
58
- <p class="text-xl text-indigo-100 mb-8">Our proven CRO framework has helped 500+ businesses increase conversions by 127% on average. Let us do the same for you.</p>
 
59
  <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
60
- <a href="#cta" class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-full font-bold text-lg text-center cta-pulse">Start Free Trial</a>
61
- <a href="#demo" class="border-2 border-white text-white hover:bg-white hover:text-indigo-600 px-8 py-4 rounded-full font-bold text-lg text-center transition duration-300">See Live Demo</a>
62
- </div>
63
- <div class="mt-8 flex items-center">
64
- <div class="flex -space-x-2">
65
- <img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-white">
66
- <img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white">
67
- <img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-white">
 
 
68
  </div>
69
- <p class="ml-4 text-indigo-100">Join 500+ happy customers who boosted conversions</p>
 
 
 
 
 
 
 
70
  </div>
71
  </div>
72
  <div class="md:w-1/2">
73
- <div class="relative bg-white rounded-xl shadow-2xl overflow-hidden">
74
- <div class="absolute top-0 left-0 bg-indigo-100 text-indigo-800 px-3 py-1 text-xs font-bold rounded-br">LIVE DEMO</div>
75
- <img src="https://via.placeholder.com/600x400" alt="Dashboard showing conversion improvements" class="w-full h-auto">
76
- <div class="p-6">
 
 
 
77
  <div class="flex justify-between items-center mb-4">
78
- <span class="text-sm text-gray-500">Before CRO</span>
79
- <span class="text-sm text-gray-500">After CRO</span>
80
  </div>
81
  <div class="flex justify-between items-center">
82
  <span class="text-2xl font-bold text-gray-700">6%</span>
83
- <div class="w-16 h-1 bg-gradient-to-r from-gray-300 to-indigo-500 rounded-full"></div>
84
- <span class="text-2xl font-bold text-indigo-600">15%</span>
 
 
 
 
 
85
  </div>
86
  </div>
87
  </div>
@@ -89,139 +135,166 @@
89
  </div>
90
  </section>
91
 
92
- <!-- Trust Indicators -->
93
- <section class="bg-gray-50 py-12">
94
  <div class="container mx-auto px-6">
95
- <p class="text-center text-gray-500 mb-8">TRUSTED BY LEADING BRANDS WORLDWIDE</p>
96
  <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
97
- <img src="https://via.placeholder.com/120x40" alt="Company logo" class="h-8 opacity-60 hover:opacity-100 transition">
98
- <img src="https://via.placeholder.com/120x40" alt="Company logo" class="h-8 opacity-60 hover:opacity-100 transition">
99
- <img src="https://via.placeholder.com/120x40" alt="Company logo" class="h-8 opacity-60 hover:opacity-100 transition">
100
- <img src="https://via.placeholder.com/120x40" alt="Company logo" class="h-8 opacity-60 hover:opacity-100 transition">
101
- <img src="https://via.placeholder.com/120x40" alt="Company logo" class="h-8 opacity-60 hover:opacity-100 transition">
102
  </div>
103
  </div>
104
  </section>
105
 
106
- <!-- Features Section -->
107
- <section id="features" class="py-20 bg-white">
108
  <div class="container mx-auto px-6">
109
- <div class="text-center mb-16">
110
- <h2 class="text-3xl md:text-4xl font-bold mb-4">Our Proven Conversion Framework</h2>
111
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">We've distilled 20+ years of CRO expertise into a simple 4-step process that delivers consistent results</p>
 
112
  </div>
113
 
114
- <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
115
- <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition duration-300">
116
- <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
117
- <i class="fas fa-search text-indigo-600 text-xl"></i>
 
 
118
  </div>
119
  <h3 class="text-xl font-bold mb-3">1. Deep Analysis</h3>
120
- <p class="text-gray-600">We conduct comprehensive audits of your website, user behavior, and funnel to identify all conversion leaks.</p>
121
  </div>
122
 
123
- <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition duration-300">
124
- <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
125
- <i class="fas fa-lightbulb text-indigo-600 text-xl"></i>
 
 
126
  </div>
127
  <h3 class="text-xl font-bold mb-3">2. Hypothesis Creation</h3>
128
- <p class="text-gray-600">Based on data, we develop high-impact test hypotheses with clear success metrics.</p>
129
  </div>
130
 
131
- <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition duration-300">
132
- <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
133
- <i class="fas fa-flask text-indigo-600 text-xl"></i>
 
 
134
  </div>
135
  <h3 class="text-xl font-bold mb-3">3. Rapid Testing</h3>
136
- <p class="text-gray-600">We implement A/B, multivariate, and split tests with statistical significance to validate improvements.</p>
137
  </div>
138
 
139
- <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition duration-300">
140
- <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
141
- <i class="fas fa-chart-line text-indigo-600 text-xl"></i>
 
 
142
  </div>
143
  <h3 class="text-xl font-bold mb-3">4. Scale & Optimize</h3>
144
- <p class="text-gray-600">Winning variations are implemented site-wide while we continue optimizing for even better results.</p>
145
  </div>
146
  </div>
147
  </div>
148
  </section>
149
 
150
- <!-- Results Section -->
151
- <section id="results" class="py-20 bg-gray-50">
152
  <div class="container mx-auto px-6">
153
- <div class="text-center mb-16">
154
- <h2 class="text-3xl md:text-4xl font-bold mb-4">Real Results From Real Clients</h2>
155
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Don't take our word for it - see the measurable impact we've delivered</p>
 
156
  </div>
157
 
158
- <div class="grid md:grid-cols-3 gap-8 mb-16">
159
- <div class="bg-white p-8 rounded-xl shadow-sm text-center">
160
- <div class="text-5xl font-bold text-indigo-600 mb-4">127%</div>
161
  <p class="text-gray-600 mb-6">Average conversion increase across all clients</p>
162
- <div class="h-1 bg-gradient-to-r from-indigo-100 to-indigo-500 rounded-full w-3/4 mx-auto"></div>
163
  </div>
164
 
165
- <div class="bg-white p-8 rounded-xl shadow-sm text-center">
166
- <div class="text-5xl font-bold text-indigo-600 mb-4">2.4x</div>
167
  <p class="text-gray-600 mb-6">Average ROI on CRO investment</p>
168
- <div class="h-1 bg-gradient-to-r from-indigo-100 to-indigo-500 rounded-full w-3/4 mx-auto"></div>
169
  </div>
170
 
171
- <div class="bg-white p-8 rounded-xl shadow-sm text-center">
172
- <div class="text-5xl font-bold text-indigo-600 mb-4">30</div>
173
  <p class="text-gray-600 mb-6">Days to see significant improvements</p>
174
- <div class="h-1 bg-gradient-to-r from-indigo-100 to-indigo-500 rounded-full w-3/4 mx-auto"></div>
175
  </div>
176
  </div>
177
 
178
- <div class="bg-white rounded-xl shadow-sm overflow-hidden">
179
  <div class="md:flex">
180
  <div class="md:w-1/2 p-12">
181
- <h3 class="text-2xl font-bold mb-4">Case Study: Ecommerce Brand</h3>
 
182
  <p class="text-gray-600 mb-6">An online fashion retailer was struggling with a 2.8% conversion rate and high cart abandonment. After implementing our CRO framework:</p>
183
  <ul class="space-y-3 mb-8">
184
  <li class="flex items-start">
185
- <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
186
- <span>Conversion rate increased to 6.3% (+125%)</span>
 
 
187
  </li>
188
  <li class="flex items-start">
189
- <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
190
- <span>Average order value grew by 18%</span>
 
 
191
  </li>
192
  <li class="flex items-start">
193
- <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
194
- <span>Cart abandonment reduced by 42%</span>
 
 
195
  </li>
196
  </ul>
197
- <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800">Read full case study →</a>
 
 
 
198
  </div>
199
- <div class="md:w-1/2 bg-gray-100 flex items-center justify-center p-8">
200
- <img src="https://via.placeholder.com/500x350" alt="Case study results" class="rounded-lg shadow-md">
 
 
 
 
 
 
201
  </div>
202
  </div>
203
  </div>
204
  </div>
205
  </section>
206
 
207
- <!-- Testimonials -->
208
- <section id="testimonials" class="py-20 bg-white">
209
  <div class="container mx-auto px-6">
210
- <div class="text-center mb-16">
211
- <h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Clients Say</h2>
212
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from businesses that transformed their results with our CRO expertise</p>
 
213
  </div>
214
 
215
  <div class="grid md:grid-cols-3 gap-8">
216
- <div class="testimonial-card bg-gray-50 p-8 rounded-xl">
217
  <div class="flex items-center mb-6">
218
- <img src="https://randomuser.me/api/portraits/women/43.jpg" class="w-12 h-12 rounded-full mr-4">
219
  <div>
220
  <h4 class="font-bold">Sarah Johnson</h4>
221
- <p class="text-gray-500 text-sm">Marketing Director, FashionCo</p>
222
  </div>
223
  </div>
224
- <p class="text-gray-600 mb-6">"Working with ConversionRocket was a game-changer. They took our conversion rate from industry average to best-in-class in just 8 weeks. The data-driven approach gave us confidence in every change."</p>
225
  <div class="flex text-yellow-400">
226
  <i class="fas fa-star"></i>
227
  <i class="fas fa-star"></i>
@@ -231,15 +304,15 @@
231
  </div>
232
  </div>
233
 
234
- <div class="testimonial-card bg-gray-50 p-8 rounded-xl">
235
  <div class="flex items-center mb-6">
236
- <img src="https://randomuser.me/api/portraits/men/65.jpg" class="w-12 h-12 rounded-full mr-4">
237
  <div>
238
  <h4 class="font-bold">Michael Chen</h4>
239
- <p class="text-gray-500 text-sm">CEO, TechStart</p>
240
  </div>
241
  </div>
242
- <p class="text-gray-600 mb-6">"The team identified conversion leaks we never would have found. Their testing methodology is rigorous and their recommendations are backed by solid data. Our revenue increased by 140% with the same traffic."</p>
243
  <div class="flex text-yellow-400">
244
  <i class="fas fa-star"></i>
245
  <i class="fas fa-star"></i>
@@ -249,15 +322,15 @@
249
  </div>
250
  </div>
251
 
252
- <div class="testimonial-card bg-gray-50 p-8 rounded-xl">
253
  <div class="flex items-center mb-6">
254
- <img src="https://randomuser.me/api/portraits/women/28.jpg" class="w-12 h-12 rounded-full mr-4">
255
  <div>
256
  <h4 class="font-bold">Emily Rodriguez</h4>
257
- <p class="text-gray-500 text-sm">Ecommerce Manager, HomeGoods</p>
258
  </div>
259
  </div>
260
- <p class="text-gray-600 mb-6">"From the initial audit to ongoing optimization, every step was transparent and impactful. We saw a 92% increase in mobile conversions alone. Their expertise paid for itself many times over."</p>
261
  <div class="flex text-yellow-400">
262
  <i class="fas fa-star"></i>
263
  <i class="fas fa-star"></i>
@@ -270,93 +343,122 @@
270
  </div>
271
  </section>
272
 
273
- <!-- Pricing -->
274
- <section id="pricing" class="py-20 bg-gray-50">
275
  <div class="container mx-auto px-6">
276
- <div class="text-center mb-16">
277
- <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
278
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your business needs</p>
 
279
  </div>
280
 
281
  <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
282
- <div class="bg-white p-8 rounded-xl shadow-sm border border-gray-200">
283
  <h3 class="text-xl font-bold mb-4">Starter</h3>
284
  <p class="text-gray-600 mb-6">Perfect for small businesses getting started with CRO</p>
285
  <div class="text-4xl font-bold mb-6">$1,997<span class="text-lg text-gray-500 font-normal">/mo</span></div>
286
  <ul class="space-y-3 mb-8">
287
  <li class="flex items-start">
288
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
289
  <span>Comprehensive conversion audit</span>
290
  </li>
291
  <li class="flex items-start">
292
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
293
  <span>5 high-impact tests per month</span>
294
  </li>
295
  <li class="flex items-start">
296
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
297
  <span>Weekly optimization reports</span>
298
  </li>
299
  <li class="flex items-start">
300
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
301
  <span>Email support</span>
302
  </li>
303
  </ul>
304
  <a href="#cta" class="block text-center bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-6 rounded-lg transition duration-300">Get Started</a>
305
  </div>
306
 
307
- <div class="bg-white p-8 rounded-xl shadow-lg border-2 border-indigo-500 relative">
308
- <div class="absolute top-0 right-0 bg-indigo-500 text-white px-4 py-1 text-xs font-bold rounded-bl rounded-tr">MOST POPULAR</div>
309
  <h3 class="text-xl font-bold mb-4">Growth</h3>
310
  <p class="text-gray-600 mb-6">Ideal for scaling businesses serious about conversions</p>
311
  <div class="text-4xl font-bold mb-6">$3,997<span class="text-lg text-gray-500 font-normal">/mo</span></div>
312
  <ul class="space-y-3 mb-8">
313
  <li class="flex items-start">
314
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
315
  <span>Everything in Starter plus:</span>
316
  </li>
317
  <li class="flex items-start">
318
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
319
  <span>15 high-impact tests per month</span>
320
  </li>
321
  <li class="flex items-start">
322
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
323
  <span>Heatmap & session recordings</span>
324
  </li>
325
  <li class="flex items-start">
326
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
327
  <span>Priority support</span>
328
  </li>
329
  <li class="flex items-start">
330
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
331
  <span>Quarterly strategy sessions</span>
332
  </li>
333
  </ul>
334
- <a href="#cta" class="block text-center bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300">Get Started</a>
335
  </div>
336
 
337
- <div class="bg-white p-8 rounded-xl shadow-sm border border-gray-200">
338
  <h3 class="text-xl font-bold mb-4">Enterprise</h3>
339
  <p class="text-gray-600 mb-6">For large businesses needing custom solutions</p>
340
- <div class="text-4xl font-bold mb-6">Custom</div>
341
  <ul class="space-y-3 mb-8">
342
  <li class="flex items-start">
343
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
344
  <span>Everything in Growth plus:</span>
345
  </li>
346
  <li class="flex items-start">
347
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
348
  <span>Unlimited tests & optimizations</span>
349
  </li>
350
  <li class="flex items-start">
351
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
352
  <span>Dedicated CRO specialist</span>
353
  </li>
354
  <li class="flex items-start">
355
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
356
  <span>Advanced personalization</span>
357
  </li>
358
  <li class="flex items-start">
359
- <i class="fas fa-check text-indigo-500 mt-1 mr-3"></i>
 
 
360
  <span>24/7 VIP support</span>
361
  </li>
362
  </ul>
@@ -364,16 +466,16 @@
364
  </div>
365
  </div>
366
 
367
- <div class="mt-12 bg-white rounded-xl shadow-sm p-8 max-w-4xl mx-auto">
368
  <div class="text-center mb-6">
369
- <h3 class="text-2xl font-bold mb-2">Not sure which plan is right for you?</h3>
370
  <p class="text-gray-600">Schedule a free 30-minute consultation with our CRO expert</p>
371
  </div>
372
  <div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-4">
373
- <a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-8 rounded-lg transition duration-300 flex items-center">
374
  <i class="far fa-calendar-alt mr-2"></i> Book a Call
375
  </a>
376
- <a href="tel:+18005551234" class="border border-gray-300 hover:bg-gray-50 text-gray-800 font-medium py-3 px-8 rounded-lg transition duration-300 flex items-center">
377
  <i class="fas fa-phone-alt mr-2"></i> Call Us Now
378
  </a>
379
  </div>
@@ -381,14 +483,14 @@
381
  </div>
382
  </section>
383
 
384
- <!-- CTA Section -->
385
- <section id="cta" class="py-20 bg-indigo-600 text-white">
386
  <div class="container mx-auto px-6">
387
  <div class="max-w-4xl mx-auto text-center">
388
- <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Conversion Rate?</h2>
389
- <p class="text-xl text-indigo-100 mb-8">Join hundreds of businesses increasing their revenue with our proven CRO framework. Start with a risk-free 14-day trial.</p>
390
 
391
- <div class="bg-white rounded-lg shadow-xl p-8 max-w-2xl mx-auto">
392
  <h3 class="text-2xl font-bold text-gray-800 mb-4">Start Your Free Trial Today</h3>
393
  <form class="space-y-4">
394
  <div class="grid md:grid-cols-2 gap-4">
@@ -403,23 +505,23 @@
403
  <option>Growth - $3,997/mo</option>
404
  <option>Enterprise - Custom</option>
405
  </select>
406
- <button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-4 px-6 rounded-lg transition duration-300">Start Free Trial</button>
407
  </form>
408
  <p class="text-sm text-gray-500 mt-4">No credit card required. Cancel anytime.</p>
409
  </div>
410
 
411
  <div class="mt-8 flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-8">
412
  <div class="flex items-center">
413
- <i class="fas fa-shield-alt text-indigo-300 text-xl mr-3"></i>
414
- <span class="text-indigo-100">100% secure and confidential</span>
415
  </div>
416
  <div class="flex items-center">
417
- <i class="fas fa-lock text-indigo-300 text-xl mr-3"></i>
418
- <span class="text-indigo-100">Your data is protected</span>
419
  </div>
420
  <div class="flex items-center">
421
- <i class="fas fa-handshake text-indigo-300 text-xl mr-3"></i>
422
- <span class="text-indigo-100">No long-term contracts</span>
423
  </div>
424
  </div>
425
  </div>
@@ -434,10 +536,10 @@
434
  <p class="text-xl text-gray-600">Everything you need to know about our CRO services</p>
435
  </div>
436
 
437
- <div class="space-y-6">
438
- <div class="border border-gray-200 rounded-xl overflow-hidden">
439
- <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none">
440
- <span class="text-lg font-medium">How quickly will I see results?</span>
441
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
442
  </button>
443
  <div class="px-6 pb-6 hidden">
@@ -445,9 +547,9 @@
445
  </div>
446
  </div>
447
 
448
- <div class="border border-gray-200 rounded-xl overflow-hidden">
449
- <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none">
450
- <span class="text-lg font-medium">What's your testing methodology?</span>
451
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
452
  </button>
453
  <div class="px-6 pb-6 hidden">
@@ -455,9 +557,9 @@
455
  </div>
456
  </div>
457
 
458
- <div class="border border-gray-200 rounded-xl overflow-hidden">
459
- <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none">
460
- <span class="text-lg font-medium">Do you work with businesses in my industry?</span>
461
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
462
  </button>
463
  <div class="px-6 pb-6 hidden">
@@ -465,9 +567,9 @@
465
  </div>
466
  </div>
467
 
468
- <div class="border border-gray-200 rounded-xl overflow-hidden">
469
- <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none">
470
- <span class="text-lg font-medium">How do you measure success?</span>
471
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
472
  </button>
473
  <div class="px-6 pb-6 hidden">
@@ -475,9 +577,9 @@
475
  </div>
476
  </div>
477
 
478
- <div class="border border-gray-200 rounded-xl overflow-hidden">
479
- <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none">
480
- <span class="text-lg font-medium">What if I'm not satisfied with the results?</span>
481
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
482
  </button>
483
  <div class="px-6 pb-6 hidden">
@@ -488,34 +590,34 @@
488
 
489
  <div class="mt-12 text-center">
490
  <p class="text-gray-600 mb-6">Still have questions? We're happy to help.</p>
491
- <a href="#" class="inline-flex items-center text-indigo-600 font-medium hover:text-indigo-800">
492
- Contact our support team <i class="fas fa-arrow-right ml-2"></i>
493
  </a>
494
  </div>
495
  </div>
496
  </section>
497
 
498
- <!-- Footer -->
499
  <footer class="bg-gray-900 text-gray-400 py-16">
500
  <div class="container mx-auto px-6">
501
  <div class="grid md:grid-cols-5 gap-12">
502
  <div class="md:col-span-2">
503
  <div class="flex items-center mb-6">
504
- <div class="w-10 h-10 rounded-full bg-indigo-600 flex items-center justify-center text-white font-bold text-xl">CR</div>
505
- <span class="ml-3 text-xl font-bold text-white">ConversionRocket</span>
506
  </div>
507
  <p class="mb-6">Helping businesses increase conversions and revenue through data-driven optimization since 2003.</p>
508
  <div class="flex space-x-4">
509
- <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300">
510
  <i class="fab fa-facebook-f"></i>
511
  </a>
512
- <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300">
513
  <i class="fab fa-twitter"></i>
514
  </a>
515
- <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300">
516
  <i class="fab fa-linkedin-in"></i>
517
  </a>
518
- <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300">
519
  <i class="fab fa-instagram"></i>
520
  </a>
521
  </div>
@@ -567,17 +669,32 @@
567
  </footer>
568
 
569
  <script>
570
- // Simple FAQ toggle functionality
571
  document.querySelectorAll('.border-gray-200 button').forEach(button => {
572
  button.addEventListener('click', () => {
573
  const content = button.nextElementSibling;
574
  const icon = button.querySelector('i');
575
 
576
  content.classList.toggle('hidden');
577
- icon.classList.toggle('transform');
578
  icon.classList.toggle('rotate-180');
579
  });
580
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  </script>
582
  <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=chimpuuuu/dfg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
583
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Boost Conversions to 15% | Premium CRO Service</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
  <style>
10
  .hero-gradient {
11
+ background: linear-gradient(135deg, #4338CA 0%, #7C3AED 25%, #DB2777 50%, #EA580C 75%, #F59E0B 100%);
12
+ }
13
+ .feature-gradient {
14
+ background: linear-gradient(135deg, #3B82F6 0%, #6366F1 50%, #EC4899 100%);
15
+ }
16
+ .testimonial-gradient {
17
+ background: linear-gradient(135deg, #10B981 0%, #3B82F6 50%, #8B5CF6 100%);
18
+ }
19
+ .pricing-gradient {
20
+ background: linear-gradient(135deg, #F59E0B 0%, #EC4899 50%, #8B5CF6 100%);
21
+ }
22
+ .cta-gradient {
23
+ background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
24
  }
25
  .cta-pulse {
26
  animation: pulse 2s infinite;
27
  }
28
  @keyframes pulse {
29
+ 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
30
+ 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
31
+ 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
32
  }
33
+ .card-hover {
34
+ transition: all 0.3s ease;
35
+ }
36
+ .card-hover:hover {
37
+ transform: translateY(-5px);
38
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
39
+ }
40
+ .glow-text {
41
+ text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
42
+ }
43
+ .gradient-text {
44
+ background-clip: text;
45
+ -webkit-background-clip: text;
46
+ color: transparent;
47
+ background-image: linear-gradient(90deg, #3B82F6, #EC4899);
48
  }
49
  </style>
50
  </head>
51
+ <body class="font-sans antialiased text-gray-800 bg-gray-50">
52
+ <!-- Animated Header -->
53
+ <header class="sticky top-0 z-50 bg-white/90 backdrop-blur-md shadow-sm">
54
  <div class="container mx-auto px-6 py-4">
55
  <div class="flex items-center justify-between">
56
  <div class="flex items-center">
57
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-indigo-600 to-purple-600 flex items-center justify-center text-white font-bold text-xl">CR</div>
58
+ <span class="ml-3 text-xl font-bold text-gray-800">Conversion<span class="gradient-text">Rocket</span></span>
59
  </div>
60
  <nav class="hidden md:flex space-x-8">
61
+ <a href="#features" class="text-gray-600 hover:text-indigo-600 font-medium transition-colors">Features</a>
62
+ <a href="#results" class="text-gray-600 hover:text-indigo-600 font-medium transition-colors">Results</a>
63
+ <a href="#pricing" class="text-gray-600 hover:text-indigo-600 font-medium transition-colors">Pricing</a>
64
+ <a href="#testimonials" class="text-gray-600 hover:text-indigo-600 font-medium transition-colors">Testimonials</a>
65
  </nav>
66
+ <div class="hidden md:block">
67
+ <a href="#cta" class="bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 text-white px-6 py-2 rounded-full font-medium transition-all duration-300 shadow-lg hover:shadow-xl">Get Started</a>
68
+ </div>
69
  <div class="md:hidden">
70
  <button class="text-gray-600 focus:outline-none">
71
  <i class="fas fa-bars text-2xl"></i>
72
  </button>
73
  </div>
 
 
 
74
  </div>
75
  </div>
76
  </header>
77
 
78
+ <!-- Hero Section with Vibrant Gradient -->
79
+ <section class="hero-gradient text-white py-20 md:py-32 relative overflow-hidden">
80
+ <div class="absolute inset-0 opacity-20">
81
+ <div class="absolute top-0 left-0 w-full h-full bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-50"></div>
82
+ </div>
83
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center relative z-10">
84
  <div class="md:w-1/2 mb-12 md:mb-0">
85
+ <span class="inline-block bg-white/20 px-4 py-1 rounded-full text-sm font-medium mb-4">PROVEN TO INCREASE CONVERSIONS</span>
86
+ <h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6 glow-text">From <span class="line-through">6%</span> to <span class="text-yellow-300">15%</span> Conversion Rate</h1>
87
+ <p class="text-xl text-white/90 mb-8 max-w-lg">Our data-driven CRO strategies have helped 500+ businesses <span class="font-bold">double their conversions</span> in just 30 days. Let's achieve the same for you!</p>
88
  <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
89
+ <a href="#cta" class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-full font-bold text-lg text-center cta-pulse shadow-xl">Start Free Trial</a>
90
+ <a href="#demo" class="border-2 border-white/50 hover:border-white text-white hover:bg-white/10 px-8 py-4 rounded-full font-bold text-lg text-center transition duration-300 flex items-center justify-center">
91
+ <i class="fas fa-play-circle mr-2"></i> Watch Demo
92
+ </a>
93
+ </div>
94
+ <div class="mt-8 flex flex-wrap items-center gap-4">
95
+ <div class="flex -space-x-3">
96
+ <img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy customer">
97
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy customer">
98
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Happy customer">
99
  </div>
100
+ <p class="text-white/90">
101
+ <span class="font-bold">500+</span> businesses boosted conversions
102
+ <i class="fas fa-star text-yellow-400 ml-2"></i>
103
+ <i class="fas fa-star text-yellow-400"></i>
104
+ <i class="fas fa-star text-yellow-400"></i>
105
+ <i class="fas fa-star text-yellow-400"></i>
106
+ <i class="fas fa-star text-yellow-400"></i>
107
+ </p>
108
  </div>
109
  </div>
110
  <div class="md:w-1/2">
111
+ <div class="relative bg-white rounded-2xl shadow-2xl overflow-hidden transform rotate-1 card-hover">
112
+ <div class="absolute top-0 left-0 bg-gradient-to-r from-indigo-600 to-purple-600 text-white px-4 py-1 text-xs font-bold rounded-br">LIVE RESULTS</div>
113
+ <div class="p-1">
114
+ <img src="https://via.placeholder.com/600x400/4F46E5/FFFFFF?text=Before+6%25" alt="Before CRO" class="w-full h-auto border-b-2 border-gray-200">
115
+ <img src="https://via.placeholder.com/600x400/7C3AED/FFFFFF?text=After+15%25" alt="After CRO" class="w-full h-auto">
116
+ </div>
117
+ <div class="p-6 bg-gradient-to-r from-gray-50 to-white">
118
  <div class="flex justify-between items-center mb-4">
119
+ <span class="text-sm text-gray-500 font-medium">Before CRO</span>
120
+ <span class="text-sm text-gray-500 font-medium">After CRO</span>
121
  </div>
122
  <div class="flex justify-between items-center">
123
  <span class="text-2xl font-bold text-gray-700">6%</span>
124
+ <div class="w-32 h-2 bg-gradient-to-r from-gray-300 via-indigo-400 to-purple-500 rounded-full mx-4"></div>
125
+ <span class="text-2xl font-bold bg-gradient-to-r from-indigo-600 to-purple-600 bg-clip-text text-transparent">15%</span>
126
+ </div>
127
+ <div class="mt-4 text-center">
128
+ <span class="inline-block bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-bold">
129
+ <i class="fas fa-arrow-up mr-1"></i> 150% Increase
130
+ </span>
131
  </div>
132
  </div>
133
  </div>
 
135
  </div>
136
  </section>
137
 
138
+ <!-- Trust Indicators with Animated Logos -->
139
+ <section class="bg-white py-12">
140
  <div class="container mx-auto px-6">
141
+ <p class="text-center text-gray-500 mb-8 text-sm font-medium tracking-widest">TRUSTED BY INNOVATIVE COMPANIES</p>
142
  <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
143
+ <img src="https://via.placeholder.com/120x40/3B82F6/FFFFFF?text=TECH+" class="h-8 opacity-70 hover:opacity-100 transition duration-300 hover:scale-110" alt="Company logo">
144
+ <img src="https://via.placeholder.com/120x40/EC4899/FFFFFF?text=STARTUP" class="h-8 opacity-70 hover:opacity-100 transition duration-300 hover:scale-110" alt="Company logo">
145
+ <img src="https://via.placeholder.com/120x40/10B981/FFFFFF?text=ECOMM" class="h-8 opacity-70 hover:opacity-100 transition duration-300 hover:scale-110" alt="Company logo">
146
+ <img src="https://via.placeholder.com/120x40/F59E0B/FFFFFF?text=SAAS" class="h-8 opacity-70 hover:opacity-100 transition duration-300 hover:scale-110" alt="Company logo">
147
+ <img src="https://via.placeholder.com/120x40/8B5CF6/FFFFFF?text=DIGITAL" class="h-8 opacity-70 hover:opacity-100 transition duration-300 hover:scale-110" alt="Company logo">
148
  </div>
149
  </div>
150
  </section>
151
 
152
+ <!-- Features Section with Gradient Cards -->
153
+ <section id="features" class="py-20 bg-gradient-to-b from-white to-gray-50">
154
  <div class="container mx-auto px-6">
155
+ <div class="text-center mb-16 max-w-3xl mx-auto">
156
+ <span class="inline-block bg-indigo-100 text-indigo-800 px-4 py-1 rounded-full text-sm font-medium mb-4">OUR PROCESS</span>
157
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">The <span class="gradient-text">Proven Framework</span> That <span class="gradient-text">Boosts Conversions</span></h2>
158
+ <p class="text-xl text-gray-600">We've distilled 20+ years of CRO expertise into a simple 4-step process that delivers <span class="font-bold text-indigo-600">consistent, measurable results</span></p>
159
  </div>
160
 
161
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
162
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-all duration-300 card-hover border border-gray-100">
163
+ <div class="w-14 h-14 bg-gradient-to-r from-blue-100 to-indigo-100 rounded-xl flex items-center justify-center mb-6">
164
+ <div class="w-10 h-10 bg-gradient-to-r from-blue-500 to-indigo-600 rounded-lg flex items-center justify-center text-white">
165
+ <i class="fas fa-search text-lg"></i>
166
+ </div>
167
  </div>
168
  <h3 class="text-xl font-bold mb-3">1. Deep Analysis</h3>
169
+ <p class="text-gray-600">Comprehensive audits of your website, user behavior, and funnel to identify all conversion leaks with heatmaps and session recordings.</p>
170
  </div>
171
 
172
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-all duration-300 card-hover border border-gray-100">
173
+ <div class="w-14 h-14 bg-gradient-to-r from-purple-100 to-pink-100 rounded-xl flex items-center justify-center mb-6">
174
+ <div class="w-10 h-10 bg-gradient-to-r from-purple-500 to-pink-600 rounded-lg flex items-center justify-center text-white">
175
+ <i class="fas fa-lightbulb text-lg"></i>
176
+ </div>
177
  </div>
178
  <h3 class="text-xl font-bold mb-3">2. Hypothesis Creation</h3>
179
+ <p class="text-gray-600">Data-driven test hypotheses with clear success metrics tailored to your specific conversion bottlenecks.</p>
180
  </div>
181
 
182
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-all duration-300 card-hover border border-gray-100">
183
+ <div class="w-14 h-14 bg-gradient-to-r from-green-100 to-teal-100 rounded-xl flex items-center justify-center mb-6">
184
+ <div class="w-10 h-10 bg-gradient-to-r from-green-500 to-teal-600 rounded-lg flex items-center justify-center text-white">
185
+ <i class="fas fa-flask text-lg"></i>
186
+ </div>
187
  </div>
188
  <h3 class="text-xl font-bold mb-3">3. Rapid Testing</h3>
189
+ <p class="text-gray-600">A/B, multivariate, and split tests with statistical significance to validate improvements before full implementation.</p>
190
  </div>
191
 
192
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition-all duration-300 card-hover border border-gray-100">
193
+ <div class="w-14 h-14 bg-gradient-to-r from-yellow-100 to-orange-100 rounded-xl flex items-center justify-center mb-6">
194
+ <div class="w-10 h-10 bg-gradient-to-r from-yellow-500 to-orange-600 rounded-lg flex items-center justify-center text-white">
195
+ <i class="fas fa-chart-line text-lg"></i>
196
+ </div>
197
  </div>
198
  <h3 class="text-xl font-bold mb-3">4. Scale & Optimize</h3>
199
+ <p class="text-gray-600">Winning variations implemented site-wide while continuously optimizing for even better results.</p>
200
  </div>
201
  </div>
202
  </div>
203
  </section>
204
 
205
+ <!-- Results Section with Animated Stats -->
206
+ <section id="results" class="py-20 bg-gradient-to-b from-gray-50 to-white">
207
  <div class="container mx-auto px-6">
208
+ <div class="text-center mb-16 max-w-3xl mx-auto">
209
+ <span class="inline-block bg-green-100 text-green-800 px-4 py-1 rounded-full text-sm font-medium mb-4">PROVEN RESULTS</span>
210
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Real <span class="gradient-text">Measurable Impact</span> For Our Clients</h2>
211
+ <p class="text-xl text-gray-600">Don't take our word for it - see the <span class="font-bold text-green-600">quantifiable results</span> we've delivered for businesses like yours</p>
212
  </div>
213
 
214
+ <div class="grid md:grid-cols-3 gap-6 mb-16">
215
+ <div class="bg-white p-8 rounded-xl shadow-md text-center card-hover border border-gray-100">
216
+ <div class="text-5xl font-bold mb-4 gradient-text">127%</div>
217
  <p class="text-gray-600 mb-6">Average conversion increase across all clients</p>
218
+ <div class="h-1 bg-gradient-to-r from-blue-400 to-purple-500 rounded-full w-3/4 mx-auto"></div>
219
  </div>
220
 
221
+ <div class="bg-white p-8 rounded-xl shadow-md text-center card-hover border border-gray-100">
222
+ <div class="text-5xl font-bold mb-4 gradient-text">2.4x</div>
223
  <p class="text-gray-600 mb-6">Average ROI on CRO investment</p>
224
+ <div class="h-1 bg-gradient-to-r from-green-400 to-blue-500 rounded-full w-3/4 mx-auto"></div>
225
  </div>
226
 
227
+ <div class="bg-white p-8 rounded-xl shadow-md text-center card-hover border border-gray-100">
228
+ <div class="text-5xl font-bold mb-4 gradient-text">30</div>
229
  <p class="text-gray-600 mb-6">Days to see significant improvements</p>
230
+ <div class="h-1 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full w-3/4 mx-auto"></div>
231
  </div>
232
  </div>
233
 
234
+ <div class="bg-white rounded-xl shadow-xl overflow-hidden card-hover">
235
  <div class="md:flex">
236
  <div class="md:w-1/2 p-12">
237
+ <span class="inline-block bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-xs font-medium mb-4">CASE STUDY</span>
238
+ <h3 class="text-2xl font-bold mb-4">Ecommerce Brand: <span class="gradient-text">125% Conversion Boost</span></h3>
239
  <p class="text-gray-600 mb-6">An online fashion retailer was struggling with a 2.8% conversion rate and high cart abandonment. After implementing our CRO framework:</p>
240
  <ul class="space-y-3 mb-8">
241
  <li class="flex items-start">
242
+ <div class="w-5 h-5 bg-gradient-to-r from-green-400 to-blue-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
243
+ <i class="fas fa-check text-xs"></i>
244
+ </div>
245
+ <span class="flex-1"><span class="font-bold">Conversion rate increased to 6.3% (+125%)</span> through optimized product pages and checkout flow</span>
246
  </li>
247
  <li class="flex items-start">
248
+ <div class="w-5 h-5 bg-gradient-to-r from-green-400 to-blue-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
249
+ <i class="fas fa-check text-xs"></i>
250
+ </div>
251
+ <span class="flex-1"><span class="font-bold">Average order value grew by 18%</span> with strategic upsell placements</span>
252
  </li>
253
  <li class="flex items-start">
254
+ <div class="w-5 h-5 bg-gradient-to-r from-green-400 to-blue-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
255
+ <i class="fas fa-check text-xs"></i>
256
+ </div>
257
+ <span class="flex-1"><span class="font-bold">Cart abandonment reduced by 42%</span> through exit-intent offers and simplified checkout</span>
258
  </li>
259
  </ul>
260
+ <a href="#" class="inline-flex items-center text-indigo-600 font-medium hover:text-indigo-800 group">
261
+ Read full case study
262
+ <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i>
263
+ </a>
264
  </div>
265
+ <div class="md:w-1/2 bg-gradient-to-br from-blue-50 to-indigo-50 flex items-center justify-center p-8">
266
+ <div class="relative w-full max-w-md">
267
+ <img src="https://via.placeholder.com/500x350/F3F4F6/3B82F6?text=Before+2.8%" alt="Before CRO" class="rounded-lg shadow-lg w-full relative z-10 border-2 border-white">
268
+ <img src="https://via.placeholder.com/500x350/E5E7EB/7C3AED?text=After+6.3%" alt="After CRO" class="rounded-lg shadow-lg w-full absolute -bottom-4 -right-4 z-0 border-2 border-white">
269
+ <div class="absolute -bottom-2 -right-2 bg-white px-4 py-2 rounded-full shadow-md z-20">
270
+ <span class="text-green-600 font-bold">+125%</span>
271
+ </div>
272
+ </div>
273
  </div>
274
  </div>
275
  </div>
276
  </div>
277
  </section>
278
 
279
+ <!-- Testimonials with Gradient Background -->
280
+ <section id="testimonials" class="py-20 testimonial-gradient text-white">
281
  <div class="container mx-auto px-6">
282
+ <div class="text-center mb-16 max-w-3xl mx-auto">
283
+ <span class="inline-block bg-white/20 px-4 py-1 rounded-full text-sm font-medium mb-4">CLIENT LOVE</span>
284
+ <h2 class="text-3xl md:text-4xl font-bold mb-4 glow-text">What Our <span class="text-yellow-300">Clients Say</span></h2>
285
+ <p class="text-xl text-white/90">Hear from businesses that transformed their results with our CRO expertise</p>
286
  </div>
287
 
288
  <div class="grid md:grid-cols-3 gap-8">
289
+ <div class="bg-white/10 backdrop-blur-sm p-8 rounded-xl border border-white/20 hover:border-white/40 transition-all duration-300 card-hover">
290
  <div class="flex items-center mb-6">
291
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" class="w-12 h-12 rounded-full mr-4 border-2 border-white">
292
  <div>
293
  <h4 class="font-bold">Sarah Johnson</h4>
294
+ <p class="text-white/70 text-sm">Marketing Director, FashionCo</p>
295
  </div>
296
  </div>
297
+ <p class="mb-6">"Working with ConversionRocket was a game-changer. They took our conversion rate from industry average to best-in-class in just 8 weeks. The data-driven approach gave us confidence in every change."</p>
298
  <div class="flex text-yellow-400">
299
  <i class="fas fa-star"></i>
300
  <i class="fas fa-star"></i>
 
304
  </div>
305
  </div>
306
 
307
+ <div class="bg-white/10 backdrop-blur-sm p-8 rounded-xl border border-white/20 hover:border-white/40 transition-all duration-300 card-hover">
308
  <div class="flex items-center mb-6">
309
+ <img src="https://randomuser.me/api/portraits/men/65.jpg" class="w-12 h-12 rounded-full mr-4 border-2 border-white">
310
  <div>
311
  <h4 class="font-bold">Michael Chen</h4>
312
+ <p class="text-white/70 text-sm">CEO, TechStart</p>
313
  </div>
314
  </div>
315
+ <p class="mb-6">"The team identified conversion leaks we never would have found. Their testing methodology is rigorous and their recommendations are backed by solid data. Our revenue increased by 140% with the same traffic."</p>
316
  <div class="flex text-yellow-400">
317
  <i class="fas fa-star"></i>
318
  <i class="fas fa-star"></i>
 
322
  </div>
323
  </div>
324
 
325
+ <div class="bg-white/10 backdrop-blur-sm p-8 rounded-xl border border-white/20 hover:border-white/40 transition-all duration-300 card-hover">
326
  <div class="flex items-center mb-6">
327
+ <img src="https://randomuser.me/api/portraits/women/28.jpg" class="w-12 h-12 rounded-full mr-4 border-2 border-white">
328
  <div>
329
  <h4 class="font-bold">Emily Rodriguez</h4>
330
+ <p class="text-white/70 text-sm">Ecommerce Manager, HomeGoods</p>
331
  </div>
332
  </div>
333
+ <p class="mb-6">"From the initial audit to ongoing optimization, every step was transparent and impactful. We saw a 92% increase in mobile conversions alone. Their expertise paid for itself many times over."</p>
334
  <div class="flex text-yellow-400">
335
  <i class="fas fa-star"></i>
336
  <i class="fas fa-star"></i>
 
343
  </div>
344
  </section>
345
 
346
+ <!-- Pricing with Vibrant Gradient -->
347
+ <section id="pricing" class="py-20 bg-white">
348
  <div class="container mx-auto px-6">
349
+ <div class="text-center mb-16 max-w-3xl mx-auto">
350
+ <span class="inline-block bg-yellow-100 text-yellow-800 px-4 py-1 rounded-full text-sm font-medium mb-4">PRICING</span>
351
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, <span class="gradient-text">Transparent Pricing</span></h2>
352
+ <p class="text-xl text-gray-600">Choose the plan that fits your business needs and budget</p>
353
  </div>
354
 
355
  <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
356
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200 hover:border-indigo-300 transition-all duration-300 card-hover">
357
  <h3 class="text-xl font-bold mb-4">Starter</h3>
358
  <p class="text-gray-600 mb-6">Perfect for small businesses getting started with CRO</p>
359
  <div class="text-4xl font-bold mb-6">$1,997<span class="text-lg text-gray-500 font-normal">/mo</span></div>
360
  <ul class="space-y-3 mb-8">
361
  <li class="flex items-start">
362
+ <div class="w-5 h-5 bg-gradient-to-r from-blue-400 to-indigo-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
363
+ <i class="fas fa-check text-xs"></i>
364
+ </div>
365
  <span>Comprehensive conversion audit</span>
366
  </li>
367
  <li class="flex items-start">
368
+ <div class="w-5 h-5 bg-gradient-to-r from-blue-400 to-indigo-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
369
+ <i class="fas fa-check text-xs"></i>
370
+ </div>
371
  <span>5 high-impact tests per month</span>
372
  </li>
373
  <li class="flex items-start">
374
+ <div class="w-5 h-5 bg-gradient-to-r from-blue-400 to-indigo-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
375
+ <i class="fas fa-check text-xs"></i>
376
+ </div>
377
  <span>Weekly optimization reports</span>
378
  </li>
379
  <li class="flex items-start">
380
+ <div class="w-5 h-5 bg-gradient-to-r from-blue-400 to-indigo-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
381
+ <i class="fas fa-check text-xs"></i>
382
+ </div>
383
  <span>Email support</span>
384
  </li>
385
  </ul>
386
  <a href="#cta" class="block text-center bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-6 rounded-lg transition duration-300">Get Started</a>
387
  </div>
388
 
389
+ <div class="bg-white p-8 rounded-xl shadow-2xl border-2 border-indigo-500 relative card-hover transform scale-[1.02]">
390
+ <div class="absolute top-0 right-0 bg-gradient-to-r from-indigo-600 to-purple-600 text-white px-4 py-1 text-xs font-bold rounded-bl rounded-tr">MOST POPULAR</div>
391
  <h3 class="text-xl font-bold mb-4">Growth</h3>
392
  <p class="text-gray-600 mb-6">Ideal for scaling businesses serious about conversions</p>
393
  <div class="text-4xl font-bold mb-6">$3,997<span class="text-lg text-gray-500 font-normal">/mo</span></div>
394
  <ul class="space-y-3 mb-8">
395
  <li class="flex items-start">
396
+ <div class="w-5 h-5 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center text-white mr-3 mt-1">
397
+ <i class="fas fa-check text-xs"></i>
398
+ </div>
399
  <span>Everything in Starter plus:</span>
400
  </li>
401
  <li class="flex items-start">
402
+ <div class="w-5 h-5 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center text-white mr-3 mt-1">
403
+ <i class="fas fa-check text-xs"></i>
404
+ </div>
405
  <span>15 high-impact tests per month</span>
406
  </li>
407
  <li class="flex items-start">
408
+ <div class="w-5 h-5 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center text-white mr-3 mt-1">
409
+ <i class="fas fa-check text-xs"></i>
410
+ </div>
411
  <span>Heatmap & session recordings</span>
412
  </li>
413
  <li class="flex items-start">
414
+ <div class="w-5 h-5 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center text-white mr-3 mt-1">
415
+ <i class="fas fa-check text-xs"></i>
416
+ </div>
417
  <span>Priority support</span>
418
  </li>
419
  <li class="flex items-start">
420
+ <div class="w-5 h-5 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-full flex items-center justify-center text-white mr-3 mt-1">
421
+ <i class="fas fa-check text-xs"></i>
422
+ </div>
423
  <span>Quarterly strategy sessions</span>
424
  </li>
425
  </ul>
426
+ <a href="#cta" class="block text-center bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300 shadow-lg hover:shadow-xl">Get Started</a>
427
  </div>
428
 
429
+ <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200 hover:border-purple-300 transition-all duration-300 card-hover">
430
  <h3 class="text-xl font-bold mb-4">Enterprise</h3>
431
  <p class="text-gray-600 mb-6">For large businesses needing custom solutions</p>
432
+ <div class="text-4xl font-bold mb-6 gradient-text">Custom</div>
433
  <ul class="space-y-3 mb-8">
434
  <li class="flex items-start">
435
+ <div class="w-5 h-5 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
436
+ <i class="fas fa-check text-xs"></i>
437
+ </div>
438
  <span>Everything in Growth plus:</span>
439
  </li>
440
  <li class="flex items-start">
441
+ <div class="w-5 h-5 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
442
+ <i class="fas fa-check text-xs"></i>
443
+ </div>
444
  <span>Unlimited tests & optimizations</span>
445
  </li>
446
  <li class="flex items-start">
447
+ <div class="w-5 h-5 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
448
+ <i class="fas fa-check text-xs"></i>
449
+ </div>
450
  <span>Dedicated CRO specialist</span>
451
  </li>
452
  <li class="flex items-start">
453
+ <div class="w-5 h-5 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
454
+ <i class="fas fa-check text-xs"></i>
455
+ </div>
456
  <span>Advanced personalization</span>
457
  </li>
458
  <li class="flex items-start">
459
+ <div class="w-5 h-5 bg-gradient-to-r from-purple-400 to-pink-500 rounded-full flex items-center justify-center text-white mr-3 mt-1">
460
+ <i class="fas fa-check text-xs"></i>
461
+ </div>
462
  <span>24/7 VIP support</span>
463
  </li>
464
  </ul>
 
466
  </div>
467
  </div>
468
 
469
+ <div class="mt-12 bg-gradient-to-r from-indigo-50 to-purple-50 rounded-xl shadow-lg p-8 max-w-4xl mx-auto border border-indigo-100">
470
  <div class="text-center mb-6">
471
+ <h3 class="text-2xl font-bold mb-2 gradient-text">Not sure which plan is right for you?</h3>
472
  <p class="text-gray-600">Schedule a free 30-minute consultation with our CRO expert</p>
473
  </div>
474
  <div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-4">
475
+ <a href="#" class="bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 text-white font-medium py-3 px-8 rounded-lg transition duration-300 flex items-center shadow-lg hover:shadow-xl">
476
  <i class="far fa-calendar-alt mr-2"></i> Book a Call
477
  </a>
478
+ <a href="tel:+18005551234" class="border border-gray-300 bg-white hover:bg-gray-50 text-gray-800 font-medium py-3 px-8 rounded-lg transition duration-300 flex items-center">
479
  <i class="fas fa-phone-alt mr-2"></i> Call Us Now
480
  </a>
481
  </div>
 
483
  </div>
484
  </section>
485
 
486
+ <!-- CTA Section with Vibrant Gradient -->
487
+ <section id="cta" class="py-20 cta-gradient text-white">
488
  <div class="container mx-auto px-6">
489
  <div class="max-w-4xl mx-auto text-center">
490
+ <h2 class="text-3xl md:text-4xl font-bold mb-6 glow-text">Ready to <span class="text-yellow-300">Transform</span> Your Conversion Rate?</h2>
491
+ <p class="text-xl text-white/90 mb-8">Join hundreds of businesses increasing their revenue with our proven CRO framework. Start with a <span class="font-bold">risk-free 14-day trial</span>.</p>
492
 
493
+ <div class="bg-white rounded-xl shadow-2xl p-8 max-w-2xl mx-auto">
494
  <h3 class="text-2xl font-bold text-gray-800 mb-4">Start Your Free Trial Today</h3>
495
  <form class="space-y-4">
496
  <div class="grid md:grid-cols-2 gap-4">
 
505
  <option>Growth - $3,997/mo</option>
506
  <option>Enterprise - Custom</option>
507
  </select>
508
+ <button type="submit" class="w-full bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-700 hover:to-purple-700 text-white font-bold py-4 px-6 rounded-lg transition duration-300 shadow-lg hover:shadow-xl">Start Free Trial</button>
509
  </form>
510
  <p class="text-sm text-gray-500 mt-4">No credit card required. Cancel anytime.</p>
511
  </div>
512
 
513
  <div class="mt-8 flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-8">
514
  <div class="flex items-center">
515
+ <i class="fas fa-shield-alt text-white/70 text-xl mr-3"></i>
516
+ <span>100% secure and confidential</span>
517
  </div>
518
  <div class="flex items-center">
519
+ <i class="fas fa-lock text-white/70 text-xl mr-3"></i>
520
+ <span>Your data is protected</span>
521
  </div>
522
  <div class="flex items-center">
523
+ <i class="fas fa-handshake text-white/70 text-xl mr-3"></i>
524
+ <span>No long-term contracts</span>
525
  </div>
526
  </div>
527
  </div>
 
536
  <p class="text-xl text-gray-600">Everything you need to know about our CRO services</p>
537
  </div>
538
 
539
+ <div class="space-y-4">
540
+ <div class="border border-gray-200 rounded-xl overflow-hidden hover:border-indigo-300 transition duration-300">
541
+ <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none group">
542
+ <span class="text-lg font-medium group-hover:text-indigo-600 transition-colors">How quickly will I see results?</span>
543
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
544
  </button>
545
  <div class="px-6 pb-6 hidden">
 
547
  </div>
548
  </div>
549
 
550
+ <div class="border border-gray-200 rounded-xl overflow-hidden hover:border-indigo-300 transition duration-300">
551
+ <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none group">
552
+ <span class="text-lg font-medium group-hover:text-indigo-600 transition-colors">What's your testing methodology?</span>
553
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
554
  </button>
555
  <div class="px-6 pb-6 hidden">
 
557
  </div>
558
  </div>
559
 
560
+ <div class="border border-gray-200 rounded-xl overflow-hidden hover:border-indigo-300 transition duration-300">
561
+ <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none group">
562
+ <span class="text-lg font-medium group-hover:text-indigo-600 transition-colors">Do you work with businesses in my industry?</span>
563
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
564
  </button>
565
  <div class="px-6 pb-6 hidden">
 
567
  </div>
568
  </div>
569
 
570
+ <div class="border border-gray-200 rounded-xl overflow-hidden hover:border-indigo-300 transition duration-300">
571
+ <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none group">
572
+ <span class="text-lg font-medium group-hover:text-indigo-600 transition-colors">How do you measure success?</span>
573
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
574
  </button>
575
  <div class="px-6 pb-6 hidden">
 
577
  </div>
578
  </div>
579
 
580
+ <div class="border border-gray-200 rounded-xl overflow-hidden hover:border-indigo-300 transition duration-300">
581
+ <button class="flex items-center justify-between w-full p-6 text-left focus:outline-none group">
582
+ <span class="text-lg font-medium group-hover:text-indigo-600 transition-colors">What if I'm not satisfied with the results?</span>
583
  <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
584
  </button>
585
  <div class="px-6 pb-6 hidden">
 
590
 
591
  <div class="mt-12 text-center">
592
  <p class="text-gray-600 mb-6">Still have questions? We're happy to help.</p>
593
+ <a href="#" class="inline-flex items-center text-indigo-600 font-medium hover:text-indigo-800 group">
594
+ Contact our support team <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i>
595
  </a>
596
  </div>
597
  </div>
598
  </section>
599
 
600
+ <!-- Footer with Gradient Accent -->
601
  <footer class="bg-gray-900 text-gray-400 py-16">
602
  <div class="container mx-auto px-6">
603
  <div class="grid md:grid-cols-5 gap-12">
604
  <div class="md:col-span-2">
605
  <div class="flex items-center mb-6">
606
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-indigo-600 to-purple-600 flex items-center justify-center text-white font-bold text-xl">CR</div>
607
+ <span class="ml-3 text-xl font-bold text-white">Conversion<span class="text-transparent bg-clip-text bg-gradient-to-r from-indigo-400 to-purple-400">Rocket</span></span>
608
  </div>
609
  <p class="mb-6">Helping businesses increase conversions and revenue through data-driven optimization since 2003.</p>
610
  <div class="flex space-x-4">
611
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300 hover:-translate-y-1">
612
  <i class="fab fa-facebook-f"></i>
613
  </a>
614
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300 hover:-translate-y-1">
615
  <i class="fab fa-twitter"></i>
616
  </a>
617
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300 hover:-translate-y-1">
618
  <i class="fab fa-linkedin-in"></i>
619
  </a>
620
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-gray-700 flex items-center justify-center text-white transition duration-300 hover:-translate-y-1">
621
  <i class="fab fa-instagram"></i>
622
  </a>
623
  </div>
 
669
  </footer>
670
 
671
  <script>
672
+ // FAQ toggle functionality
673
  document.querySelectorAll('.border-gray-200 button').forEach(button => {
674
  button.addEventListener('click', () => {
675
  const content = button.nextElementSibling;
676
  const icon = button.querySelector('i');
677
 
678
  content.classList.toggle('hidden');
 
679
  icon.classList.toggle('rotate-180');
680
  });
681
  });
682
+
683
+ // Simple animation for stats when they come into view
684
+ const observer = new IntersectionObserver((entries) => {
685
+ entries.forEach(entry => {
686
+ if (entry.isIntersecting) {
687
+ entry.target.classList.add('animate-pulse');
688
+ setTimeout(() => {
689
+ entry.target.classList.remove('animate-pulse');
690
+ }, 1000);
691
+ }
692
+ });
693
+ }, { threshold: 0.1 });
694
+
695
+ document.querySelectorAll('.gradient-text').forEach(el => {
696
+ observer.observe(el);
697
+ });
698
  </script>
699
  <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=chimpuuuu/dfg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
700
  </html>
prompts.txt CHANGED
@@ -1,4 +1,5 @@
1
  create a cart web design with a 3 products in the with details in cart for a website name pharmaconnects & banner at the bottom and a footer with a vibrant colors related to medical online delivery
2
  add promotion banner to the page and add corousals by describing the website
3
  compress the given code
4
- Hey, you are an experienced CRO expert. You are somebody who has more than 20 years of experience as a conversion rate optimization expert. I want you to go through the entire landing page that I have given you with a critiquing lens. Analyze every section. of the current landing page that I have attached. Critique it and give me recommendations on how I can improve this landing page. Currently, this landing page converts at 6%. I want to be able to take. theconversion rate of this landing page to15%. And I want you as a CRO expert, while you creating . it, I alsowant you to be able to. give me suggestions on what. arethe copy level changes that I can make and also what are the visual changes that I can make on the landing page to be able to improve this conversion rate from 6% to 15%. As an output, I want you to give me a new landing page copy that. Icould go ahead and use, which incorporates all of the suggestions that you would. begiving me. Please go ahead and do this.
 
 
1
  create a cart web design with a 3 products in the with details in cart for a website name pharmaconnects & banner at the bottom and a footer with a vibrant colors related to medical online delivery
2
  add promotion banner to the page and add corousals by describing the website
3
  compress the given code
4
+ Hey, you are an experienced CRO expert. You are somebody who has more than 20 years of experience as a conversion rate optimization expert. I want you to go through the entire landing page that I have given you with a critiquing lens. Analyze every section. of the current landing page that I have attached. Critique it and give me recommendations on how I can improve this landing page. Currently, this landing page converts at 6%. I want to be able to take. theconversion rate of this landing page to15%. And I want you as a CRO expert, while you creating . it, I alsowant you to be able to. give me suggestions on what. arethe copy level changes that I can make and also what are the visual changes that I can make on the landing page to be able to improve this conversion rate from 6% to 15%. As an output, I want you to give me a new landing page copy that. Icould go ahead and use, which incorporates all of the suggestions that you would. begiving me. Please go ahead and do this.
5
+ use vibrant mixed required gradient colors and make more attractive