top of page

Naplánujte si službu

Osobné stretnutie s Tiborom Michalkom.

Pozrite sa na našu dostupnosť a rezervujte si dátum a čas, ktorý vám vyhovuje

bottom of page
if (typeof window === "undefined") return; function nextQuestion(step) { const current = document.getElementById('q' + step); const next = document.getElementById('q' + (step + 1)); if (!current || !next) return; current.classList.add('hidden'); next.classList.remove('hidden'); const progress = document.getElementById('quiz-progress'); if (progress) progress.style.width = (step + 1) * 33 + '%'; } function showResult() { // výpočet, text, zobrazení výsledku }