35632-vm/pricing.php
2025-12-17 23:35:01 +00:00

92 lines
5.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pricing - FinMox</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
</head>
<body class="bg-gray-50 text-gray-900">
<!-- NAV -->
<header class="max-w-7xl mx-auto px-6 py-5 flex items-center justify-between">
<div class="font-bold text-xl">FinMox</div>
<nav class="hidden md:flex gap-8 text-sm">
<a href="index.php" class="text-gray-600 hover:text-black">Home</a>
<a href="problem.php" class="text-gray-600 hover:text-black">Problem</a>
<a href="product.php" class="text-gray-600 hover:text-black">Why FinMox</a>
<a href="how_it_works.php" class="text-gray-600 hover:text-black">How It Works</a>
<a href="roi.php" class="text-gray-600 hover:text-black">ROI</a>
<a href="pricing.php" class="text-gray-600 hover:text-black font-semibold">Pricing</a>
</nav>
<div class="flex gap-3">
<a href="login..php" class="text-sm flex items-center">Sign In</a>
<a href="register.php" class="bg-black text-white text-sm px-4 py-2 rounded-lg">Sign Up</a>
</div>
</header>
<!-- CONTENT -->
<main class="max-w-7xl mx-auto px-6 py-16">
<div class="text-center">
<h1 class="text-4xl md:text-5xl font-extrabold leading-tight">Simple, Transparent Pricing</h1>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">Choose the plan that fits your hiring needs. All plans come with powerful automation to help you hire faster and smarter.</p>
</div>
<div class="mt-16 grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Plan 1: Starter -->
<div class="bg-white border border-gray-200 rounded-xl shadow-lg p-8 flex flex-col">
<h3 class="text-2xl font-semibold">Starter</h3>
<p class="mt-2 text-gray-600">For small teams getting started with hiring automation.</p>
<div class="mt-6 text-4xl font-bold">$99<span class="text-lg font-medium text-gray-500">/mo</span></div>
<ul class="mt-8 space-y-4 text-gray-700 flex-grow">
<li class="flex items-center gap-3"><span class="text-green-500"></span>Up to 5 active roles</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>AI Resume Parsing & Ranking</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Candidate Shortlisting</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Basic Interview Support</li>
</ul>
<a href="register.php" class="mt-8 bg-gray-200 text-gray-800 text-center font-semibold py-3 rounded-lg hover:bg-gray-300 transition">Get Started</a>
</div>
<!-- Plan 2: Growth -->
<div class="bg-black text-white rounded-xl shadow-2xl p-8 flex flex-col ring-2 ring-purple-500">
<h3 class="text-2xl font-semibold">Growth</h3>
<p class="mt-2 text-gray-300">For growing businesses that need to scale their hiring process.</p>
<div class="mt-6 text-4xl font-bold">$249<span class="text-lg font-medium text-gray-400">/mo</span></div>
<ul class="mt-8 space-y-4 text-gray-200 flex-grow">
<li class="flex items-center gap-3"><span class="text-purple-400"></span>Up to 15 active roles</li>
<li class="flex items-center gap-3"><span class="text-purple-400"></span>Everything in Starter, plus:</li>
<li class="flex items-center gap-3"><span class="text-purple-400"></span>Interview Question Generation</li>
<li class="flex items-center gap-3"><span class="text-purple-400"></span>AI Interview Summaries</li>
<li class="flex items-center gap-3"><span class="text-purple-400"></span>Offer Letter Drafting</li>
</ul>
<a href="register.php" class="mt-8 bg-purple-600 text-white text-center font-semibold py-3 rounded-lg hover:bg-purple-700 transition">Choose Growth</a>
</div>
<!-- Plan 3: Enterprise -->
<div class="bg-white border border-gray-200 rounded-xl shadow-lg p-8 flex flex-col">
<h3 class="text-2xl font-semibold">Enterprise</h3>
<p class="mt-2 text-gray-600">For large organizations with custom security and support needs.</p>
<div class="mt-6 text-4xl font-bold">Custom</div>
<ul class="mt-8 space-y-4 text-gray-700 flex-grow">
<li class="flex items-center gap-3"><span class="text-green-500"></span>Unlimited active roles</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Everything in Growth, plus:</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Full Onboarding Automation</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Custom Integrations</li>
<li class="flex items-center gap-3"><span class="text-green-500"></span>Dedicated Support</li>
</ul>
<a href="#" class="mt-8 bg-gray-800 text-white text-center font-semibold py-3 rounded-lg hover:bg-black transition">Contact Sales</a>
</div>
</div>
</main>
<!-- FOOTER -->
<footer class="max-w-7xl mx-auto px-6 py-12 text-center text-gray-500 text-sm">
&copy; 2025 FinMox. All rights reserved.
</footer>
</body>
</html>