File size: 20,632 Bytes
3c23831
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sky AI - Client Success Stories</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 12))}
        }
        .scroller {
            animation: scroll 40s linear infinite;
            width: calc(250px * 24);
        }
        .scroller:hover {
            animation-play-state: paused;
        }
        .testimonial-card {
            min-height: 380px;
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .stars {
            color: #F59E0B;
        }
    </style>
</head>
<body class="bg-gray-50">
    <section class="py-16 px-4 max-w-7xl mx-auto">
        <div class="text-center mb-12">
            <h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">Trusted by industry leaders</h2>
            <div class="flex justify-center items-center">
                <div class="stars text-2xl mr-2">
                    <i class="fas fa-star"></i>
                    <i class="fas fa-star"></i>
                    <i class="fas fa-star"></i>
                    <i class="fas fa-star"></i>
                    <i class="fas fa-star-half-alt"></i>
                </div>
                <span class="text-gray-700 font-medium">4.97 average rating from 200+ clients</span>
            </div>
        </div>

        <!-- Mobile testimonials (stacked) -->
        <div class="md:hidden space-y-6">
            <div class="bg-white rounded-xl shadow-md p-6 testimonial-card">
                <div class="flex items-center mb-4">
                    <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">D</div>
                    <div>
                        <h4 class="font-bold text-gray-900">Drew - The Move</h4>
                        <div class="stars">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                </div>
                <p class="text-gray-600">"Before Sky AI, our small studio was stuck at $14,700/month. In just 47 days, we expanded to three studios, grew to nine people, and hit $100,000/month. The transformation was incredible!"</p>
            </div>

            <div class="bg-white rounded-xl shadow-md p-6 testimonial-card">
                <div class="flex items-center mb-4">
                    <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">T</div>
                    <div>
                        <h4 class="font-bold text-gray-900">Tyler - Resquared</h4>
                        <div class="stars">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                </div>
                <p class="text-gray-600">"Sky AI built a robust SDR system that put us on the path to becoming a billion-dollar brand. They exceeded all expectations in helping us compete with giants like Salesforce."</p>
            </div>

            <div class="bg-white rounded-xl shadow-md p-6 testimonial-card">
                <div class="flex items-center mb-4">
                    <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">M</div>
                    <div>
                        <h4 class="font-bold text-gray-900">Marc Sebastian</h4>
                        <div class="stars">
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                            <i class="fas fa-star"></i>
                        </div>
                    </div>
                </div>
                <p class="text-gray-600">"In just one hour, Sky AI helped me reframe my offer and close a client for $15,188—nearly 5x the original deal. I now approach negotiations with complete confidence."</p>
            </div>
        </div>

        <!-- Desktop testimonials (scrolling) -->
        <div class="hidden md:block relative overflow-hidden">
            <div class="absolute inset-y-0 left-0 w-16 bg-gradient-to-r from-gray-50 to-transparent z-10"></div>
            <div class="absolute inset-y-0 right-0 w-16 bg-gradient-to-l from-gray-50 to-transparent z-10"></div>
            
            <div class="scroller flex space-x-6 py-4">
                <!-- Testimonial 1 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">D</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Drew - The Move</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Before Sky AI, our small studio was stuck at $14,700/month. In just 47 days, we expanded to three studios, grew to nine people, and hit $100,000/month. The transformation was incredible!"</p>
                </div>

                <!-- Testimonial 2 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">T</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Tyler - Resquared</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Sky AI built a robust SDR system that put us on the path to becoming a billion-dollar brand. They exceeded all expectations in helping us compete with giants like Salesforce."</p>
                </div>

                <!-- Testimonial 3 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">M</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Marc Sebastian</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"In just one hour, Sky AI helped me reframe my offer and close a client for $15,188—nearly 5x the original deal. I now approach negotiations with complete confidence."</p>
                </div>

                <!-- Testimonial 4 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">J</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Jay Shetty - Personal Capital</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Sky AI helped build the sales team that transformed Personal Capital, leading to a $1B acquisition just one year after I joined. Their strategies were pivotal to our success."</p>
                </div>

                <!-- Testimonial 5 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">A</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Aricim</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Within 30 minutes, Sky AI helped reshape my offer resulting in a 667% increase in value. Suddenly my offer was irresistible and clients were jumping at the opportunity."</p>
                </div>

                <!-- Testimonial 6 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">J</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Jorge - TRS</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Our profits soared to $257,000/month with Sky AI, leading to $4.4M annual revenue at 40% margins. The impact on our business has been life-changing."</p>
                </div>

                <!-- Duplicate testimonials for infinite scroll effect -->
                <!-- Testimonial 1 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">D</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Drew - The Move</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Before Sky AI, our small studio was stuck at $14,700/month. In just 47 days, we expanded to three studios, grew to nine people, and hit $100,000/month. The transformation was incredible!"</p>
                </div>

                <!-- Testimonial 2 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">T</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Tyler - Resquared</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Sky AI built a robust SDR system that put us on the path to becoming a billion-dollar brand. They exceeded all expectations in helping us compete with giants like Salesforce."</p>
                </div>

                <!-- Testimonial 3 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">M</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Marc Sebastian</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"In just one hour, Sky AI helped me reframe my offer and close a client for $15,188—nearly 5x the original deal. I now approach negotiations with complete confidence."</p>
                </div>

                <!-- Testimonial 4 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">J</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Jay Shetty - Personal Capital</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Sky AI helped build the sales team that transformed Personal Capital, leading to a $1B acquisition just one year after I joined. Their strategies were pivotal to our success."</p>
                </div>

                <!-- Testimonial 5 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">A</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Aricim</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Within 30 minutes, Sky AI helped reshape my offer resulting in a 667% increase in value. Suddenly my offer was irresistible and clients were jumping at the opportunity."</p>
                </div>

                <!-- Testimonial 6 -->
                <div class="bg-white rounded-xl shadow-md p-6 testimonial-card flex-shrink-0 w-80">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 text-blue-800 rounded-full w-12 h-12 flex items-center justify-center font-bold text-xl mr-4">J</div>
                        <div>
                            <h4 class="font-bold text-gray-900">Jorge - TRS</h4>
                            <div class="stars">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="text-gray-600">"Our profits soared to $257,000/month with Sky AI, leading to $4.4M annual revenue at 40% margins. The impact on our business has been life-changing."</p>
                </div>
            </div>
        </div>

        <div class="mt-12 text-center">
            <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 transition-colors duration-200">
                See more success stories
                <svg class="ml-2 w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
                </svg>
            </a>
        </div>
    </section>
<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=JayStormX8/client-success" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>