Start expanding your services

This free brochure provides financial advisors like you with a structured overview of how pensions work for clients through Vive. Whether you want to offer comprehensive pension advice or optimize an existing solution, you'll find all the essential information here to provide professional service to your clients.

After reading our brochure, you will know more about:

How Vive brings clarity to pensions, so you can advise clients more effectively

How your customer onboarding process at Vive works

How Vive maintains a competitive and transparent pricing model without hidden costs

Request the brochure and receive it in your inbox within 1 minute

Heb je vragen? We helpen je direct verder

Brochure aanvragen

Vul je gegevens in om de brochure aan te vragen. Binnen enkele minuten, direct in je inbox.

🇳🇱
Thanks for submitting the form.
Door op de knop 'ontvang brochure' te klikken, ga je automatisch akkoord met de algemene voorwaarden en het privacybeleid van Vive.
Vertrouwd door 2.500+ accounts en teams van o.a.
brochure-intermediairs

Brochure aanvragen

Vul je gegevens in om de brochure aan te vragen. Binnen enkele minuten, direct in je inbox.

Door op de knop 'ontvang brochure' te klikken, ga je automatisch akkoord met de algemene voorwaarden en het privacybeleid van Vive.
Vertrouwd door 2.500+ accounts en teams van o.a.
brochure-intermediairs
Bedankt, we hebben je gegevens ontvangen. Je hoeft verder niets te doen — ons team neemt snel contact met je op.
Let op! Er is iets misgegaan. Gelieve het nogmaals te proberen.

Veelgestelde vragen

Alles wat je nodig hebt. In één app. Op één plek. Alle doelen en strategieën, altijd bij de hand.

What happens when I request a brochure?

If you request a brochure from Vive, we will send it directly to your email. We would also like to hear what you think of our product and the solution we offer at a later time.

What can I do if I want to know more?

If you would like to know more about Vive or our products, you can contact us by phone, email, or always make an appointment with us.

More contact information can be found on our contact page.

You can make an appointment via the "Make an appointment" button.

const form = document.querySelector('.multi-form_form'); if (form) { form.addEventListener('submit', function () { const observer = new MutationObserver(function () { const successEl = form.closest('.multi-form_block')?.querySelector('.w-form-done'); const isVisible = successEl && successEl.style.display !== 'none' && !successEl.hasAttribute('hidden'); if (isVisible) { observer.disconnect(); const lang = document.documentElement.getAttribute('lang') || 'nl'; const slugEl = document.getElementById('redirectSlug'); const slug = slugEl ? slugEl.textContent.trim() : ''; const redirectUrl = lang === 'en' ? `/en/thank-you/${slug}` : `/bedankt/${slug}`; window.location.href = redirectUrl; } }); observer.observe(document.body, { attributes: true, subtree: true, childList: true }); }); }