Passport To Wealth

In a few short videos, discover how mentorship, systems, and AI can help you build a profitable travel business—even in this economy.

Featuring: Mentorship-driven momentum
BY INVITE ONLY

Mentorship & Community

Follow a proven path with support, accountability, and systems that shorten the learning curve.

AI + Automation

Generate content, capture leads, and follow up with time-saving workflows that scale.

10-Day Risk-Free Trial

Explore tools, trainings, and vendor access with a guided, low-friction onboarding.

What You Get Inside

Tools, Trainings, and Daily Support

Daily Live Trainings
Corporate and team-led sessions to launch faster with clarity.
Mentorship Pathway
Step-by-step milestones with accountability, not guesswork.
AI + Automation Stack
Plug-and-play funnels, follow-up flows, and content frameworks.
Direct Vendor Access
Supplier certifications, perks, and travel partner resources.
Community & Leadership
Grow from advisor to leader with systems that scale.

10-Day Risk-Free Trial

Explore everything with guided onboarding. If it's not a fit, walk away—simple.

Our Promise

12-Month Profit Guarantee

You'll follow a clear revenue roadmap with milestone check-ins, practical weekly actions, and leadership support. If you're not profitable within 12 months, we extend mentorship and optimization support until you are—no extra cost.

Milestone Playbooks
Month-by-month actions that build durable income streams.
Accountability Reviews
Quarterly reviews to remove bottlenecks and double down on what works.
Conversion Clinics
Live clinics for offers, follow-ups, and closing conversations.

Next Steps

1) Attend The Workshop
Pick your language and finish the videos in order.
2) Request Your Onboarding
We'll map your starting point and first 30-day wins.
3) An Exclusive Opportunity
Lock your 10-Day no risk-free trial and apply the playbooks immediately.

Questions We Get A Lot

Can this work part-time?
Yes. The weekly cadence is designed for busy lives, with AI doing heavy lifting.
Do I need sales experience?
No. We focus on conversations, mentorship, and proven follow-ups.
What if I get stuck?
Daily support, conversion clinics, and leadership reviews have you covered.
Ready to launch your travel business with mentorship and AI?
10-Day Risk-Free Trial • 12-Month Profit Guarantee • Daily Support
// ===== LOAD VALID CODES FROM code.json ===== let VALID_CODES = []; (async () => { try { const r = await fetch('code.json?' + Date.now()); VALID_CODES = await r.json(); console.log('Valid codes loaded:', VALID_CODES); } catch (e) { console.error('Failed to load code.json', e); VALID_CODES = []; } })(); // ===== FORM HANDLING WITH LOCAL CODE CHECK ===== const form = document.getElementById('leadForm'); const err = document.getElementById('err'); const ok = document.getElementById('ok'); const btn = document.getElementById('submitBtn'); const consentEl = document.getElementById('sms_consent'); btn.disabled = true; consentEl.addEventListener('change', e => btn.disabled = !e.target.checked); function showErr(m) { err.textContent = m; err.style.display = 'block'; ok.style.display = 'none'; } function showOk(m) { ok.textContent = m; ok.style.display = 'block'; err.style.display = 'none'; } form.addEventListener('submit', async e => { e.preventDefault(); err.style.display = ok.style.display = 'none'; btn.disabled = true; if (!form.checkValidity()) { form.reportValidity(); btn.disabled = false; return; } const payload = { firstName: document.getElementById('first_name').value.trim(), lastName: document.getElementById('last_name').value.trim(), email: document.getElementById('email').value.trim().toLowerCase(), phone: document.getElementById('phone').value.trim(), sponsorId: document.getElementById('sid').value.trim(), source: "passporttowealthworkshop.com/optin", campaign: "PTW-Workshop", sms_consent: consentEl.checked, admin_cc: ADMIN_CC, listIds: BREVO_LIST_IDS }; // === CHECK CODE LOCALLY FROM code.json === if (!VALID_CODES.includes(payload.sponsorId)) { showPopup(); btn.disabled = false; return; } // === SEND LEAD TO GOOGLE SCRIPT (fire-and-forget) === try { await fetch(BACKEND_URL, { method: 'POST', mode: 'no-cors', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }); } catch (_) { } // === REDIRECT TO THANK YOU PAGE === const dest = new URL(THANK_YOU_URL, SITE_ORIGIN); dest.searchParams.set("name", `${payload.firstName} ${payload.lastName}`); dest.searchParams.set("email", payload.email); dest.searchParams.set("phone", payload.phone); dest.searchParams.set("sid", payload.sponsorId); setTimeout(() => location.href = dest.toString(), 150); }); s