Home / Billing
← Back to Dashboard
Choose Your Plan
Start free. Upgrade anytime. Cancel with one click.
Free
$0
- 1 active resume (basic)
- Job Finder Lite (10/week)
- OfferMax Basic (1/mo)
- Weekly digest
Pro
$19/mo
- Unlimited resume versions & AI tailoring
- Continuous job scans + saved searches + alerts
- OfferMax Pro: scripts, counter packages, benchmarks
- Career Radar weekly report
Renews monthly. Change or cancel anytime.
Elite
$79/mo
- Everything in Pro
- Auto-Apply Pro + application tracker
- Priority support & private community
- Quarterly expert resume review
Best for active job seekers and power users.
Stripe Setup (quick)
- Create a Product in Stripe → add Prices for Monthly (and Elite).
- Copy the Price IDs (e.g.,
price_123). - Use Stripe Checkout or Payment Links.
<script src="https://js.stripe.com/v3"></script>
<script>
const stripe = Stripe('pk_test_...'); // Your publishable key
async function openCheckout(priceId){
await stripe.redirectToCheckout({
lineItems: [{ price: priceId, quantity: 1 }],
mode: 'subscription',
successUrl: window.location.origin + '/dashboard.html?sub=success',
cancelUrl: window.location.href
});
}
// Usage: openCheckout('price_XXXX');
</script>
For production, route through your backend to create Checkout Sessions securely.