Answer 6 honest questions and find out exactly what’s been getting in the way — and what to do differently.
Taken by over 400 women. No email required to start.
Question 1 of 6
Your lifestyle
How would you describe your typical week?
Question 2 of 6
Past attempts
What’s got in the way before when you’ve tried to get fit?
Question 3 of 6
Your body right now
How do you feel in your body at the moment?
Question 4 of 6
Your goals
What does success actually look like for you?
Question 5 of 6
Support & accountability
What kind of support do you think you need most?
Question 6 of 6
Readiness
How ready are you to actually do something about this?
Your results are ready
Pop your details below and we’ll show you exactly where you are — and what will make the difference this time.
First name
Email address
No spam, ever. Just your results and the occasional useful email from Untamed Fitness.
Your result
You’re ready — you just need the right structure around you
You know what you want and you’re not far off. The reason things haven’t stuck before isn’t lack of willpower — it’s that you’ve been trying to fit a generic programme around a very full life. With the right support, accountability and a plan built specifically for you, this time will be different.
What will make the difference
A personalised plan that works around your actual schedule
Regular check-ins so nothing falls through the cracks
Nutrition guidance that fits your lifestyle — not a diet
Someone in your corner when life gets busy
— or —
Your result
You’re almost there — a few key changes will unlock everything
You’ve made progress before and you know you’re capable. The missing piece is usually consistency — and consistency comes from having a system that fits your life, not one you have to squeeze in around it. A little structure and the right guidance could change everything.
Where to focus
Building habits that stick even on your busiest weeks
Understanding what your body needs at this stage of life
Closing the gap between knowing and actually doing
Having someone help you troubleshoot when things go off track
— or —
Your result
The foundations need attention — but that’s completely fixable
You’re not stuck — you’re just starting from a place where everything feels a bit overwhelming. That’s actually the perfect time to get proper support, because building the right foundations now means you won’t have to keep starting over. Many of the women who’ve had the best results with us started exactly where you are.
What you need right now
Small, manageable steps that build momentum without overwhelm
Help auditing your schedule to find where fitness can genuinely fit
A supportive coach who meets you where you are — no judgement
A long-term approach, not a quick fix
— or —
var answers = {};
function startQuiz() { showStep(‘qs-1’); }
function showStep(id) {
document.querySelectorAll(‘.qstep’).forEach(s => s.classList.remove(‘active’));
document.getElementById(id).classList.add(‘active’);
window.scrollTo(0, 0);
}
function selectOpt(el, q, val) {
el.parentElement.querySelectorAll(‘.qopt’).forEach(o => o.classList.remove(‘selected’));
el.classList.add(‘selected’);
answers[q] = val;
var btn = document.getElementById(‘qnext-‘ + q);
if (btn) btn.disabled = false;
}
function nextQ(n) { showStep(‘qs-‘ + n); }
function showEmailCapture() { showStep(‘qs-email’); }
function showResult() {
var name = document.getElementById(‘eq-name’).value.trim();
var email = document.getElementById(‘eq-email’).value.trim();
if (!name || !email) { alert(‘Please pop in your name and email to see your results.’); return; }
var score = 0;
if (answers[1] === 1) score += 2;
if (answers[1] === 2) score += 1;
if (answers[2] === 1 || answers[2] === 3) score += 2;
if (answers[3] === 1 || answers[3] === 2) score += 2;
if (answers[4] === 4) score += 1;
if (answers[5] === 4) score += 2;
if (answers[6] === 1) score -= 1;
if (answers[6] === 3 || answers[6] === 4) score += 2;
var result = score <= 3 ? 'a' : score <= 7 ? 'b' : 'c';
showStep('qs-result-' + result);
}