| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Pricing | Lumikiza</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| </head> |
| <body class="bg-gray-50"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="py-20"> |
| <section class="container mx-auto px-4 max-w-4xl"> |
| <div class="text-center mb-16"> |
| <h1 class="text-4xl font-bold text-gray-900 mb-4">Simple, Transparent Pricing</h1> |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Choose the plan that works for your business needs and budget.</p> |
| </div> |
|
|
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12"> |
| <div class="bg-white rounded-xl shadow-sm p-8 border-2 border-blue-100"> |
| <h2 class="text-2xl font-bold text-gray-900 mb-2">Founder Plan</h2> |
| <p class="text-gray-600 mb-6">For entrepreneurs seeking expert advice</p> |
| |
| <div class="flex items-baseline mb-6"> |
| <span class="text-4xl font-bold text-blue-600">ZMW 100</span> |
| <span class="text-gray-500 ml-1">one-time</span> |
| </div> |
| |
| <ul class="space-y-3 mb-8"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Unlimited advisor matching</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Up to 3 active connections</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Basic messaging</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Monthly webinars</span> |
| </li> |
| </ul> |
| |
| <a href="/register-founder.html" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition block text-center"> |
| Get Started |
| </a> |
| </div> |
| |
| <div class="bg-white rounded-xl shadow-sm p-8 border-2 border-purple-100"> |
| <h2 class="text-2xl font-bold text-gray-900 mb-2">Advisor Plan</h2> |
| <p class="text-gray-600 mb-6">For experts looking to share their knowledge</p> |
| |
| <div class="flex items-baseline mb-6"> |
| <span class="text-4xl font-bold text-purple-600">ZMW 150</span> |
| <span class="text-gray-500 ml-1">one-time</span> |
| </div> |
| |
| <ul class="space-y-3 mb-8"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Profile visibility to founders</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Connection requests</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Basic messaging</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i> |
| <span>Opportunity to monetize expertise</span> |
| </li> |
| </ul> |
| |
| <a href="/register-advisor.html" class="w-full bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-6 rounded-lg transition block text-center"> |
| Get Started |
| </a> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-sm p-8 md:p-10"> |
| <h2 class="text-2xl font-bold text-gray-900 mb-6">Frequently Asked Questions</h2> |
| |
| <div class="space-y-6"> |
| <div class="border-b border-gray-200 pb-6"> |
| <h3 class="font-semibold text-lg mb-2">Is there a free trial?</h3> |
| <p class="text-gray-600">We offer a 14-day money-back guarantee if you're not satisfied with our service.</p> |
| </div> |
| <div class="border-b border-gray-200 pb-6"> |
| <h3 class="font-semibold text-lg mb-2">How does the matching process work?</h3> |
| <p class="text-gray-600">Our algorithm matches founders and advisors based on industry, expertise, and specific needs.</p> |
| </div> |
| <div class="border-b border-gray-200 pb-6"> |
| <h3 class="font-semibold text-lg mb-2">Can I switch plans later?</h3> |
| <p class="text-gray-600">Yes, you can upgrade or switch between founder and advisor plans at any time.</p> |
| </div> |
| <div> |
| <h3 class="font-semibold text-lg mb-2">What payment methods do you accept?</h3> |
| <p class="text-gray-600">We accept credit/debit cards, MTN Money, and Airtel Money payments.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="components/notification-bell.js"></script> |
| <script src="script.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |