Most financial advisors jump straight to products and portfolios. We begin with something more fundamental: your values. The Financial Road Map is a complimentary, one-hour experience designed to help you and your family create a clear vision for your financial life.
Meet ConcentusA Different Kind of Wealth Management
At Concentus, we believe your financial life should be built around the things that matter most to you — not around a portfolio or a product. Watch this short introduction to understand how we think about wealth, values, and the families we serve.
Why It MattersMost Advisors Skip the Most Important Question
Classic strategic planning begins with a clear vision and well-defined values. Yet most financial advisors spend nearly all their time on tools and tactics — investment products, insurance, tax strategies — without ever asking what truly matters to you.
When your values are clear, financial decisions become far less complicated. The right plan isn’t the one with the best returns. It’s the one built around the life you actually want to live.
“When your Values are clear, your Decisions are easy.— Roy Disney
Complimentary · No ObligationThe Financial Road Map
In one hour, you and your partner will leave with a shared vision, agreed-upon goals, and a clear picture of where you stand — all on one powerful worksheet called the Financial Road Map.
01Values ConversationDiscover What Matters Most
We guide you and your spouse through a structured conversation that uncovers your deepest values — the things that truly drive every financial decision you make. Most families have never articulated these clearly. This is where we start.
From your values, we build a set of concrete goals with real names, real amounts, and target dates. Not vague aspirations, but tangible milestones that give your financial plan direction and purpose.
03Financial BenchmarkUnderstand Where You Stand Today
We create a clear snapshot of your current financial position — assets, liabilities, income, and gaps — so you can see exactly where you are and what it will take to reach where you want to be.
No cost. No obligation. No pressure.
“I have been advising successful people on their wealth for over 30 years, and I have learned that money is not intrinsically valuable. It only has value to the extent that you can use it to live a more meaningful and enjoyable life.— Erik Strid, Founder, Concentus Wealth Advisors
About Your AdvisorHello, I’m Erik Strid
I founded Concentus to work with families who are serious about making smart financial choices — not just accumulating wealth, but using it to live an amazing quality of life. After more than three decades advising successful families, I’ve seen that the ones who thrive are the ones who start with clarity about what they truly value.
The Financial Road Map conversation is one of the most valuable hours a couple will ever spend planning their financial future. It’s where our work together begins, and I’ve offered it at no cost for over 30 years.
Watch the WebinarSee the Financial Road Map in Action
Not quite ready to schedule a session? Watch our recent webinar to see how the Financial Road Map conversation works and understand what you’ll walk away with after your own session.
When you’re ready, scheduling your complimentary session takes less than two minutes.
Not Quite Ready?Start With the Book
Our complimentary book, Empowered Values, walks you through the full philosophy — how to clarify your personal values, align your financial goals, and build a plan that reflects the life you want to live.
The Consumer Awareness Guide is also available as a companion piece, summarizing the key principles every family should understand before choosing a wealth advisor.
Complete this form and a member of our team will be in touch to schedule your session — a focused, one-hour conversation with no cost and no obligation attached.
* Required field
Under $500,000
$500,000 – $1,000,000
$1,000,000 – $5,000,000
$5,000,000 – $10,000,000
Over $10,000,000
🔒 Your information is secure and will never be shared.
Ready to begin?
/* ── MODAL ── */
function openModal() {
document.getElementById('evModalOverlay').classList.add('open');
document.body.style.overflow = 'hidden';
}
function closeModal() {
document.getElementById('evModalOverlay').classList.remove('open');
document.body.style.overflow = '';
}
function handleOverlayClick(e) {
if (e.target === document.getElementById('evModalOverlay')) closeModal();
}
document.addEventListener('keydown', function(e) { if (e.key === 'Escape') closeModal(); });
/* ── STICKY ── */
var evSticky = document.getElementById('evSticky');
window.addEventListener('scroll', function() {
var hero = document.querySelector('.ev-hero');
if (hero && window.scrollY > hero.offsetTop + hero.offsetHeight) {
evSticky.classList.add('visible');
} else {
evSticky.classList.remove('visible');
}
});
/* ── DYNAMIC VALUABLES POSTS ── */
(function() {
var grid = document.getElementById('evBlogGrid');
var API = 'https://www.concentus.com/wp-json/wp/v2/';
function stripTags(html) {
var tmp = document.createElement('div');
tmp.innerHTML = html;
return tmp.textContent || tmp.innerText || '';
}
function truncate(str, n) {
if (str.length <= n) return str;
return str.substr(0, str.lastIndexOf(' ', n)) + '…';
}
function renderCards(posts) {
if (!posts || posts.length === 0) {
grid.innerHTML = '
';
return;
}
var html = '';
posts.forEach(function(post) {
var title = stripTags(post.title.rendered);
var excerpt = truncate(stripTags(post.excerpt.rendered), 140);
var link = post.link;
var thumb = '';
if (post._embedded && post._embedded['wp:featuredmedia'] && post._embedded['wp:featuredmedia'][0] && post._embedded['wp:featuredmedia'][0].source_url) {
var imgUrl = post._embedded['wp:featuredmedia'][0].source_url;
var sizes = post._embedded['wp:featuredmedia'][0].media_details && post._embedded['wp:featuredmedia'][0].media_details.sizes;
if (sizes && sizes.medium_large) imgUrl = sizes.medium_large.source_url;
thumb = '';
} else {
thumb = '
';
}
html += '
';
html += '
' + thumb + '
';
html += '
';
html += 'VALUABLES';
html += '' + title + '';
html += '
';
});
})();
/* ── ASSETS DROPDOWN ── */
(function() {
var trigger = document.getElementById('cwaAssetsTrigger');
var menu = document.getElementById('cwaAssetsMenu');
var label = document.getElementById('cwaAssetsLabel');
var hidden = document.getElementById('cwaAssets');
var arrow = trigger ? trigger.querySelector('svg') : null;
if (!trigger || !menu) return;
trigger.addEventListener('click', function(e) {
e.stopPropagation();
var open = menu.style.display === 'block';
menu.style.display = open ? 'none' : 'block';
if (arrow) arrow.style.transform = open ? '' : 'rotate(180deg)';
trigger.style.borderColor = open ? '#e2e2d9' : '#3185fc';
});
menu.querySelectorAll('.cwa-opt').forEach(function(opt) {
opt.addEventListener('mouseenter', function() { opt.style.background = '#f5f7ff'; });
opt.addEventListener('mouseleave', function() { opt.style.background = ''; });
opt.addEventListener('click', function() {
label.textContent = opt.textContent;
label.style.color = '#222';
hidden.value = opt.dataset.val;
menu.style.display = 'none';
if (arrow) arrow.style.transform = '';
trigger.style.borderColor = '#e2e2d9';
});
});
document.addEventListener('click', function() {
menu.style.display = 'none';
if (arrow) arrow.style.transform = '';
trigger.style.borderColor = '#e2e2d9';
});
})();
/* ── FORM SUBMIT ── */
(function() {
var form = document.getElementById('cwaContactForm');
if (!form) return;
form.addEventListener('submit', function(e) {
e.preventDefault();
var btn = form.querySelector('.cwa-btn-submit');
btn.textContent = 'Sending...';
btn.disabled = true;
var payload = {
input_1: document.getElementById('cwaFirstName').value,
input_6: document.getElementById('cwaLastName').value,
input_3: document.getElementById('cwaEmail').value,
input_4: document.getElementById('cwaPhone').value,
input_5: document.getElementById('cwaAssets').value,
input_8: 'Empowered Values - Landing Page'
};
fetch('https://www.concentus.com/wp-json/gf/v2/forms/26/submissions', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
})
.then(function(res) {
return res.json().then(function(data) { return { status: res.status, data: data }; });
})
.then(function(r) {
if (r.status >= 200 && r.status < 300 && r.data.is_valid !== false) {
var msg = '
';
msg += '
Your Complimentary Consultation
';
msg += '
We’ll Be in Touch Shortly
';
msg += '
Our team will reach out to you soon to schedule your complimentary, no-obligation consultation. This is not a sales call — it is simply an opportunity for us to learn about your situation and share how we may be able to help.
';
msg += '
In the meantime, if you have any questions or would prefer to connect sooner, please reach out directly.
';
msg += '
';
var modalBody = document.querySelector('.ev-modal-body');
if (modalBody) { modalBody.innerHTML = msg; }
} else {
throw new Error('Status ' + r.status);
}
})
.catch(function() {
btn.textContent = 'Request My Session';
btn.disabled = false;
alert('There was a problem submitting the form. Please try again or call us at 610-994-9190.');
});
});
})();
U.S. Securities and Exchange Commission
Additional information about Concentus Wealth Advisors and our investment advisor representatives is also available online at WWW.ADVISERINFO.SEC.GOV or BROKERCHECK.FINRA.ORG. You can view our firm’s information on this website by searching for Concentus Wealth Advisors or by our CRD number 170052.