Spaces:
Running
Running
let's decrease the width of these cards so they are in line with the rest of the content. - Follow Up Deployment
Browse files- index.html +231 -176
index.html
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
<!DOCTYPE html>
|
4 |
<html lang="en">
|
5 |
<head>
|
@@ -8,7 +6,7 @@
|
|
8 |
<title>The Milestone Foundation - Ethical Lawsuit Funding</title>
|
9 |
<script src="https://cdn.tailwindcss.com"></script>
|
10 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
11 |
-
|
12 |
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
|
13 |
|
14 |
:root {
|
@@ -128,6 +126,7 @@
|
|
128 |
}
|
129 |
|
130 |
</style>
|
|
|
131 |
<script>
|
132 |
window.addEventListener('scroll', function () {
|
133 |
const bar = document.querySelector('.sticky-trust-bar');
|
@@ -213,7 +212,21 @@ function animateNumber(el, start, end) {
|
|
213 |
durationSlider.addEventListener('input', updateCalculator);
|
214 |
window.addEventListener('DOMContentLoaded', updateCalculator);
|
215 |
|
216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
</script>
|
218 |
|
219 |
</head>
|
@@ -225,49 +238,45 @@ function animateNumber(el, start, end) {
|
|
225 |
<span><span id="counter-savings" class="counter">$2.3M+</span> saved in interest</span>
|
226 |
</div>
|
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 |
-
<a href="#apply" class="block mt-2 bg-teal-600 hover:bg-teal-500 px-4 py-2 rounded-lg font-medium text-center">Get Funding</a>
|
268 |
-
</div>
|
269 |
-
</div>
|
270 |
-
</nav>
|
271 |
|
272 |
<!-- Hero Section -->
|
273 |
<section class="relative text-white py-20 md:py-20 overflow-hidden bg-black bg-opacity-50">
|
@@ -313,64 +322,85 @@ function animateNumber(el, start, end) {
|
|
313 |
|
314 |
<!-- Case Comparison Section -->
|
315 |
<section class="py-16 px-4 md:px-12 bg-white text-gray-800">
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
|
342 |
<!-- Desktop Grid Comparison -->
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
<h3 class="flex items-center justify-center text-teal-700 mb-2">
|
358 |
-
<img src="https://milestone.vovov.cc/images/milestone-icon.svg" alt="Milestone Foundation Logo" class="h-8 w-auto">
|
359 |
-
</h3>
|
360 |
-
<ul class="space-y-3">
|
361 |
-
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-check-circle text-teal-600"></i><span>10% simple interest annually</span></li>
|
362 |
-
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-ban text-teal-600"></i><span>No compounding ever</span></li>
|
363 |
-
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-eye text-teal-600"></i><span>100% transparent</span></li>
|
364 |
-
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-hand-holding-heart text-teal-600"></i><span>Mission-driven nonprofit</span></li>
|
365 |
-
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-shield-alt text-teal-600"></i><span>Focus on plaintiff protection</span></li>
|
366 |
-
</ul>
|
367 |
-
</div>
|
368 |
-
</div>
|
369 |
|
370 |
-
|
371 |
-
|
372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
</div>
|
|
|
374 |
</section>
|
375 |
|
376 |
<section class="py-16 bg-teal-800 w-full">
|
@@ -708,84 +738,109 @@ function animateNumber(el, start, end) {
|
|
708 |
<div class="text-center mb-12">
|
709 |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Getting Help Shouldn't Be Hard.</h2>
|
710 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
711 |
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
</div>
|
725 |
-
|
726 |
-
<!-- Step 2 -->
|
727 |
-
<div class="bg-gray-700 text-white p-6 rounded-xl shadow-md">
|
728 |
-
<div class="flex items-start">
|
729 |
-
<div class="bg-teal-600 text-white rounded-full w-8 h-8 flex items-center justify-center mr-4 mt-1">2</div>
|
730 |
-
<div>
|
731 |
-
<h3 class="text-xl font-bold text-white mb-2">Quick Review</h3>
|
732 |
-
<p class="text-gray-300 mb-4">We coordinate with your legal team. (24-48 hours)</p>
|
733 |
-
<button class="text-teal-600 font-medium flex items-center">See details <i class="fas fa-chevron-down ml-2"></i></button>
|
734 |
-
</div>
|
735 |
-
</div>
|
736 |
-
</div>
|
737 |
-
|
738 |
-
<!-- Step 3 -->
|
739 |
-
<div class="bg-gray-700 text-white p-6 rounded-xl shadow-md">
|
740 |
-
<div class="flex items-start">
|
741 |
-
<div class="bg-teal-600 text-white rounded-full w-8 h-8 flex items-center justify-center mr-4 mt-1">3</div>
|
742 |
-
<div>
|
743 |
-
<h3 class="text-xl font-bold text-white mb-2">Receive Funds</h3>
|
744 |
-
<p class="text-gray-300 mb-4">Fast and transparent. (Same day approval)</p>
|
745 |
-
<button class="text-teal-400 font-medium flex items-center">See details <i class="fas fa-chevron-down ml-2"></i></button>
|
746 |
-
</div>
|
747 |
-
</div>
|
748 |
-
</div>
|
749 |
-
</div>
|
750 |
-
|
751 |
-
<div class="text-center mt-12">
|
752 |
-
<a href="#apply" class="bg-teal-600 hover:bg-teal-500 text-white font-bold py-3 px-8 rounded-lg transition transform hover:scale-105 shadow-lg inline-block hover:shadow-xl">Get Started Now</a>
|
753 |
-
</div>
|
754 |
-
</div>
|
755 |
</div>
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
<
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
|
777 |
-
<div class="bg-teal-700 p-6 rounded-xl">
|
778 |
-
<h3 class="text-2xl font-bold mb-4">Comparison with Competitors</h3>
|
779 |
-
<p class="mb-6">"While typical lenders charge 2.95%-3.4% monthly (35%+ annually), our nonprofit model means 10% simple interest annuallyβsaving your clients thousands."</p>
|
780 |
-
|
781 |
-
<div class="grid grid-cols-2 gap-4">
|
782 |
-
<a href="#" class="bg-white text-teal-700 font-bold py-2 px-4 rounded-lg text-center">Refer a Client</a>
|
783 |
-
<a href="#" class="bg-white text-teal-700 font-bold py-2 px-4 rounded-lg text-center">Portal Login</a>
|
784 |
-
<a href="#" class="bg-teal-600 hover:bg-teal-500 text-white font-bold py-2 px-4 rounded-lg text-center">Attorney Resources</a>
|
785 |
-
<a href="#" class="bg-teal-600 hover:bg-teal-500 text-white font-bold py-2 px-4 rounded-lg text-center">Download Ethics Guide</a>
|
786 |
-
</div>
|
787 |
-
</div>
|
788 |
-
</div>
|
789 |
</div>
|
790 |
</section>
|
791 |
|
|
|
|
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
|
|
6 |
<title>The Milestone Foundation - Ethical Lawsuit Funding</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 |
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
|
11 |
|
12 |
:root {
|
|
|
126 |
}
|
127 |
|
128 |
</style>
|
129 |
+
|
130 |
<script>
|
131 |
window.addEventListener('scroll', function () {
|
132 |
const bar = document.querySelector('.sticky-trust-bar');
|
|
|
212 |
durationSlider.addEventListener('input', updateCalculator);
|
213 |
window.addEventListener('DOMContentLoaded', updateCalculator);
|
214 |
|
215 |
+
document.querySelectorAll('.accordion-toggle').forEach(button => {
|
216 |
+
button.addEventListener('click', () => {
|
217 |
+
const content = button.nextElementSibling;
|
218 |
+
const icon = button.querySelector('i');
|
219 |
+
|
220 |
+
button.classList.toggle('active');
|
221 |
+
content.classList.toggle('max-h-0');
|
222 |
+
content.classList.toggle('max-h-[500px]');
|
223 |
+
|
224 |
+
// Toggle icon direction if you use one
|
225 |
+
if (icon) icon.classList.toggle('fa-chevron-down'), icon.classList.toggle('fa-chevron-up');
|
226 |
+
});
|
227 |
+
});
|
228 |
+
|
229 |
+
AOS.init({ duration: 800, once: true });
|
230 |
</script>
|
231 |
|
232 |
</head>
|
|
|
238 |
<span><span id="counter-savings" class="counter">$2.3M+</span> saved in interest</span>
|
239 |
</div>
|
240 |
|
241 |
+
<nav class="bg-teal-800 text-white shadow-lg sticky top-0 z-50">
|
242 |
+
<div class="container mx-auto px-4">
|
243 |
+
<div class="flex justify-between items-center py-4">
|
244 |
+
<!-- Logo and Name -->
|
245 |
+
<a href="#" class="flex items-center text-2xl font-bold">
|
246 |
+
<img src="https://milestone.vovov.cc/images/milestone-logo.svg" alt="Milestone Logo" class="h-10 mr-2 invert brightness-200" />
|
247 |
+
</a>
|
248 |
+
|
249 |
+
<!-- Desktop Nav Links -->
|
250 |
+
<div class="hidden md:flex space-x-8 items-center">
|
251 |
+
<a href="#what-we-do" class="hover:text-teal-200 transition">What We Do</a>
|
252 |
+
<a href="#how-it-works" class="hover:text-teal-200 transition">How It Works</a>
|
253 |
+
<a href="#apply" class="hover:text-teal-200 transition">Apply</a>
|
254 |
+
<a href="#resources" class="hover:text-teal-200 transition">Resources</a>
|
255 |
+
<a href="#news" class="hover:text-teal-200 transition">News</a>
|
256 |
+
<a href="#donate" class="bg-yellow-400 hover:bg-yellow-300 text-teal-900 font-semibold px-4 py-2 rounded-lg shadow transition">Donate</a>
|
257 |
+
<a href="#apply" class="bg-teal-600 hover:bg-teal-500 px-4 py-2 rounded-lg font-medium transition">Get Funding</a>
|
258 |
+
</div>
|
259 |
+
|
260 |
+
<!-- Mobile menu button -->
|
261 |
+
<div class="md:hidden">
|
262 |
+
<button id="mobile-menu-button" class="text-white focus:outline-none">
|
263 |
+
<i class="fas fa-bars text-2xl"></i>
|
264 |
+
</button>
|
265 |
+
</div>
|
266 |
+
</div>
|
267 |
+
|
268 |
+
<!-- Mobile Menu -->
|
269 |
+
<div id="mobile-menu" class="hidden md:hidden pb-4">
|
270 |
+
<a href="#what-we-do" class="block py-2 hover:text-teal-200">What We Do</a>
|
271 |
+
<a href="#how-it-works" class="block py-2 hover:text-teal-200">How It Works</a>
|
272 |
+
<a href="#apply" class="block py-2 hover:text-teal-200">Apply</a>
|
273 |
+
<a href="#resources" class="block py-2 hover:text-teal-200">Resources</a>
|
274 |
+
<a href="#news" class="block py-2 hover:text-teal-200">News</a>
|
275 |
+
<a href="#donate" class="block mt-2 bg-yellow-400 hover:bg-yellow-300 text-teal-900 font-semibold px-4 py-2 rounded-lg text-center">Donate</a>
|
276 |
+
<a href="#apply" class="block mt-2 bg-teal-600 hover:bg-teal-500 px-4 py-2 rounded-lg font-medium text-center">Get Funding</a>
|
277 |
+
</div>
|
278 |
+
</div>
|
279 |
+
</nav>
|
|
|
|
|
|
|
|
|
280 |
|
281 |
<!-- Hero Section -->
|
282 |
<section class="relative text-white py-20 md:py-20 overflow-hidden bg-black bg-opacity-50">
|
|
|
322 |
|
323 |
<!-- Case Comparison Section -->
|
324 |
<section class="py-16 px-4 md:px-12 bg-white text-gray-800">
|
325 |
+
<div class="max-w-6xl mx-auto">
|
326 |
+
<h2 class="text-3xl font-bold text-center mb-4">Predatory Lending is Preying on Plaintiffs.</h2>
|
327 |
+
<p class="text-center max-w-2xl mx-auto mb-10">Traditional lawsuit lenders charge outrageous interest and compound fees that can leave plaintiffs with nothingβeven when they win. We exist to protect people from that system.</p>
|
328 |
+
|
329 |
+
<!-- Mobile Accordion View -->
|
330 |
+
<div class="block md:hidden space-y-4">
|
331 |
+
|
332 |
+
<!-- For-Profit Lender -->
|
333 |
+
<div class="bg-red-50 rounded-lg shadow hover-zoom overflow-hidden transition-all">
|
334 |
+
<button class="accordion-toggle flex justify-between items-center w-full p-4 text-left font-semibold text-red-700">
|
335 |
+
π¦ For-Profit Lender
|
336 |
+
<i class="fas fa-chevron-down ml-2"></i>
|
337 |
+
</button>
|
338 |
+
<div class="accordion-content max-h-0 overflow-hidden transition-all duration-300 px-4 pb-4 text-sm text-red-800">
|
339 |
+
<ul class="space-y-1">
|
340 |
+
<li><span class="font-semibold">Interest:</span> 35%-120%</li>
|
341 |
+
<li><span class="font-semibold">Compounding:</span> Yes</li>
|
342 |
+
<li><span class="font-semibold">Fees:</span> Hidden</li>
|
343 |
+
<li><span class="font-semibold">Focus:</span> Profit Maximization</li>
|
344 |
+
</ul>
|
345 |
+
</div>
|
346 |
+
</div>
|
347 |
+
|
348 |
+
<!-- Milestone -->
|
349 |
+
<div class="bg-teal-100 rounded-lg shadow hover-zoom overflow-hidden transition-all">
|
350 |
+
<button class="accordion-toggle flex justify-between items-center w-full p-4 text-left font-semibold text-teal-800">
|
351 |
+
ποΈ Milestone Foundation
|
352 |
+
<i class="fas fa-chevron-down ml-2"></i>
|
353 |
+
</button>
|
354 |
+
<div class="accordion-content max-h-0 overflow-hidden transition-all duration-300 px-4 pb-4 text-sm text-teal-900">
|
355 |
+
<ul class="space-y-1">
|
356 |
+
<li><span class="font-semibold">Interest:</span> 10% simple</li>
|
357 |
+
<li><span class="font-semibold">Compounding:</span> Never</li>
|
358 |
+
<li><span class="font-semibold">Fees:</span> None hidden</li>
|
359 |
+
<li><span class="font-semibold">Focus:</span> Plaintiff Protection</li>
|
360 |
+
</ul>
|
361 |
+
</div>
|
362 |
+
</div>
|
363 |
+
|
364 |
+
</div>
|
365 |
|
366 |
<!-- Desktop Grid Comparison -->
|
367 |
+
<!-- Desktop Grid Comparison -->
|
368 |
+
<div class="hidden md:flex justify-center gap-8 comparison-grid">
|
369 |
+
<div class="bg-red-50 p-6 rounded-lg shadow-md hover-zoom w-full max-w-[420px]">
|
370 |
+
<h3 class="flex items-center justify-center text-red-700 mb-4">
|
371 |
+
<img src="https://milestone.vovov.cc/images/loansharking-inc.png" alt="Typical Lender Shark Logo" class="h-24 w-auto">
|
372 |
+
</h3>
|
373 |
+
<ul class="space-y-3">
|
374 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-percentage text-red-500"></i><span>35%β120% annual interest</span></li>
|
375 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-exclamation-triangle text-red-500"></i><span>Compounding interest</span></li>
|
376 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-dollar-sign text-red-500"></i><span>Hidden fees & markups</span></li>
|
377 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-chart-line text-red-500"></i><span>For-profit motives</span></li>
|
378 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-user-slash text-red-500"></i><span>Focus on profit maximization</span></li>
|
379 |
+
</ul>
|
380 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
|
382 |
+
<div class="bg-teal-100 p-6 rounded-lg shadow-md hover-zoom w-full max-w-[420px]">
|
383 |
+
<h3 class="flex items-center justify-center text-teal-700 mb-4">
|
384 |
+
<img src="https://milestone.vovov.cc/images/milestone-icon.svg" alt="Milestone Foundation Logo" class="h-24 w-auto">
|
385 |
+
</h3>
|
386 |
+
<ul class="space-y-3">
|
387 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-check-circle text-teal-600"></i><span>10% simple interest annually</span></li>
|
388 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-ban text-teal-600"></i><span>No compounding ever</span></li>
|
389 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-eye text-teal-600"></i><span>100% transparent</span></li>
|
390 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-hand-holding-heart text-teal-600"></i><span>Mission-driven nonprofit</span></li>
|
391 |
+
<li class="grid grid-cols-[40px_1fr] items-start gap-2"><i class="fas fa-shield-alt text-teal-600"></i><span>Focus on plaintiff protection</span></li>
|
392 |
+
</ul>
|
393 |
+
</div>
|
394 |
+
</div>
|
395 |
+
|
396 |
+
</div>
|
397 |
+
|
398 |
+
<div class="mt-10 text-center">
|
399 |
+
<button class="bg-teal-600 hover:bg-teal-700 text-white font-semibold py-3 px-6 rounded-lg shadow-lg transition-transform transform hover:scale-105">
|
400 |
+
Try the Savings Calculator
|
401 |
+
</button>
|
402 |
</div>
|
403 |
+
</div>
|
404 |
</section>
|
405 |
|
406 |
<section class="py-16 bg-teal-800 w-full">
|
|
|
738 |
<div class="text-center mb-12">
|
739 |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Getting Help Shouldn't Be Hard.</h2>
|
740 |
</div>
|
741 |
+
<div class="overflow-x-auto horizontal-scroll pb-4">
|
742 |
+
<div class="flex space-x-8 min-w-[1000px] px-4 items-center">
|
743 |
+
<!-- Repeat for each step -->
|
744 |
+
<div class="min-w-[280px] bg-white rounded-xl shadow-lg p-6 flex flex-col items-center mt-0" data-aos="fade-up">
|
745 |
+
<div class="text-sm font-bold text-white bg-green-600 px-3 py-1 rounded-full mb-2">STEP 1</div>
|
746 |
+
<i class="fas fa-file-alt text-2xl text-white bg-teal-600 p-3 rounded-full mb-3"></i>
|
747 |
+
<h3 class="text-lg font-semibold text-center text-teal-800">Apply Online</h3>
|
748 |
+
<p class="text-sm text-center mt-2">Short application β no credit checks, ever.</p>
|
749 |
+
</div>
|
750 |
+
<div class="min-w-[280px] bg-white rounded-xl shadow-lg p-6 flex flex-col items-center mt-12" data-aos="fade-up">
|
751 |
+
<div class="text-sm font-bold text-white bg-green-600 px-3 py-1 rounded-full mb-2">STEP 2</div>
|
752 |
+
<i class="fas fa-search text-2xl text-white bg-teal-600 p-3 rounded-full mb-3"></i>
|
753 |
+
<h3 class="text-lg font-semibold text-center text-teal-800">We Review Your Case</h3>
|
754 |
+
<p class="text-sm text-center mt-2">Fast, fair review of eligibility and case merit.</p>
|
755 |
+
</div>
|
756 |
+
<div class="min-w-[280px] bg-white rounded-xl shadow-lg p-6 flex flex-col items-center mt-0" data-aos="fade-up">
|
757 |
+
<div class="text-sm font-bold text-white bg-green-600 px-3 py-1 rounded-full mb-2">STEP 3</div>
|
758 |
+
<i class="fas fa-clock text-2xl text-white bg-teal-600 p-3 rounded-full mb-3"></i>
|
759 |
+
<h3 class="text-lg font-semibold text-center text-teal-800">Approval in 24β48 Hours</h3>
|
760 |
+
<p class="text-sm text-center mt-2">Most approvals in 1β2 business days.</p>
|
761 |
+
</div>
|
762 |
+
<div class="min-w-[280px] bg-white rounded-xl shadow-lg p-6 flex flex-col items-center mt-12" data-aos="fade-up">
|
763 |
+
<div class="text-sm font-bold text-white bg-green-600 px-3 py-1 rounded-full mb-2">STEP 4</div>
|
764 |
+
<i class="fas fa-money-check-alt text-2xl text-white bg-teal-600 p-3 rounded-full mb-3"></i>
|
765 |
+
<h3 class="text-lg font-semibold text-center text-teal-800">Funds Sent to You</h3>
|
766 |
+
<p class="text-sm text-center mt-2">Wired directly to your account, same day.</p>
|
767 |
+
</div>
|
768 |
+
<div class="min-w-[280px] bg-white rounded-xl shadow-lg p-6 flex flex-col items-center mt-0" data-aos="fade-up">
|
769 |
+
<div class="text-sm font-bold text-white bg-green-600 px-3 py-1 rounded-full mb-2">STEP 5</div>
|
770 |
+
<i class="fas fa-smile-beam text-2xl text-white bg-teal-600 p-3 rounded-full mb-3"></i>
|
771 |
+
<h3 class="text-lg font-semibold text-center text-teal-800">Repay Only If You Win</h3>
|
772 |
+
<p class="text-sm text-center mt-2">No win, no repayment. We're aligned with you.</p>
|
773 |
+
</div>
|
774 |
+
</div>
|
775 |
+
</div>
|
776 |
+
</section>
|
777 |
|
778 |
+
<!-- Vertical Timeline -->
|
779 |
+
<section class="py-16 px-4 bg-white">
|
780 |
+
<h2 class="text-3xl font-bold text-center text-teal-700 mb-12">How It Works (Vertical)</h2>
|
781 |
+
<div class="max-w-4xl mx-auto space-y-10 relative">
|
782 |
+
<div class="relative flex items-center" data-aos="fade-up">
|
783 |
+
<div class="w-1/3 flex justify-end pr-4">
|
784 |
+
<div class="bg-teal-600 text-white font-bold text-3xl px-6 py-4 rounded-lg">1</div>
|
785 |
+
</div>
|
786 |
+
<div class="w-1/2 bg-gray-100 p-6 rounded-lg shadow-md relative text-right">
|
787 |
+
<div class="flex items-center justify-end gap-3">
|
788 |
+
<h3 class="text-xl font-semibold text-teal-800">Apply Online</h3>
|
789 |
+
<i class="fas fa-file-alt text-teal-600 text-xl"></i>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
</div>
|
791 |
+
<p class="mt-2 text-gray-700">Fill out a short application β no credit checks, ever.</p>
|
792 |
+
</div>
|
793 |
+
</div>
|
794 |
+
<div class="relative flex items-center" data-aos="fade-up">
|
795 |
+
<div class="w-1/2 bg-gray-100 p-6 rounded-lg shadow-md relative text-left">
|
796 |
+
<div class="flex items-center gap-3">
|
797 |
+
<i class="fas fa-search text-teal-600 text-xl"></i>
|
798 |
+
<h3 class="text-xl font-semibold text-teal-800">We Review Your Case</h3>
|
799 |
+
</div>
|
800 |
+
<p class="mt-2 text-gray-700">Our team reviews your eligibility and case merit β fast and fair.</p>
|
801 |
+
</div>
|
802 |
+
<div class="w-1/3 flex justify-start pl-4">
|
803 |
+
<div class="bg-teal-600 text-white font-bold text-3xl px-6 py-4 rounded-lg">2</div>
|
804 |
+
</div>
|
805 |
+
</div>
|
806 |
+
<div class="relative flex items-center" data-aos="fade-up">
|
807 |
+
<div class="w-1/3 flex justify-end pr-4">
|
808 |
+
<div class="bg-teal-600 text-white font-bold text-3xl px-6 py-4 rounded-lg">3</div>
|
809 |
+
</div>
|
810 |
+
<div class="w-1/2 bg-gray-100 p-6 rounded-lg shadow-md relative text-right">
|
811 |
+
<div class="flex items-center justify-end gap-3">
|
812 |
+
<h3 class="text-xl font-semibold text-teal-800">Approval in 24β48 Hours</h3>
|
813 |
+
<i class="fas fa-clock text-teal-600 text-xl"></i>
|
814 |
+
</div>
|
815 |
+
<p class="mt-2 text-gray-700">Most approvals happen within 1β2 business days.</p>
|
816 |
+
</div>
|
817 |
+
</div>
|
818 |
+
<div class="relative flex items-center" data-aos="fade-up">
|
819 |
+
<div class="w-1/2 bg-gray-100 p-6 rounded-lg shadow-md relative text-left">
|
820 |
+
<div class="flex items-center gap-3">
|
821 |
+
<i class="fas fa-money-check-alt text-teal-600 text-xl"></i>
|
822 |
+
<h3 class="text-xl font-semibold text-teal-800">Funds Sent to You</h3>
|
823 |
+
</div>
|
824 |
+
<p class="mt-2 text-gray-700">Once approved, funds are wired directly to your account, same day.</p>
|
825 |
+
</div>
|
826 |
+
<div class="w-1/3 flex justify-start pl-4">
|
827 |
+
<div class="bg-teal-600 text-white font-bold text-3xl px-6 py-4 rounded-lg">4</div>
|
828 |
+
</div>
|
829 |
+
</div>
|
830 |
+
<div class="relative flex items-center" data-aos="fade-up">
|
831 |
+
<div class="w-1/3 flex justify-end pr-4">
|
832 |
+
<div class="bg-teal-600 text-white font-bold text-3xl px-6 py-4 rounded-lg">5</div>
|
833 |
+
</div>
|
834 |
+
<div class="w-1/2 bg-gray-100 p-6 rounded-lg shadow-md relative text-right">
|
835 |
+
<div class="flex items-center justify-end gap-3">
|
836 |
+
<h3 class="text-xl font-semibold text-teal-800">Repay Only If You Win</h3>
|
837 |
+
<i class="fas fa-smile-beam text-teal-600 text-xl"></i>
|
838 |
+
</div>
|
839 |
+
<p class="mt-2 text-gray-700">No win, no repayment. We're aligned with your outcome β always.</p>
|
840 |
+
</div>
|
841 |
+
</div>
|
842 |
+
</div>
|
843 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
844 |
</div>
|
845 |
</section>
|
846 |
|