Digitales Lernen

Your Way

Digitales Lernen

Your Way

BE vereint von Experten geleitete Bildung und intelligente Lernwerkzeuge in einer digitalen Erfahrung.

Entdecke BE

Das Herzstück ist eine praxisnahe Bildungsplattform.
Um ihn herum gibt es intelligente Tools , die Sie auf Ihrem Weg unterstützen.
Keine Abkürzungen, nur echtes Lernen.

Das Kernerlebnis

Interaktive Bildungsplattform

Jeder lernt anders. Aus diesem Grund haben wir Live-Sitzungen, gamifizierte Tools und Fortschrittsverfolgung kombiniert, um Sie beim Lernen am besten zu unterstützen.

Es ist mehr als nur Inhalt. Es ist ein komplettes System, das entwickelt wurde, um zu helfen, dass es klick macht.

Entwickelt, um zu führen. Gebaut, um zu unterstützen.

Tools, die das Lernen beschleunigen

Intelligente Werkzeuge und von Experten geleitete Bildung bringen mehr Klarheit in den Lernprozess – helfen Ihnen, Ideen zu erkunden, komplexe Themen zu verstehen und weiterhin in Ihrem eigenen Tempo zu lernen.

Interaktive Finanzkompetenz

Geld verstehen

Machen Sie komplexe Finanzthemen zu etwas, das Sie Schritt für Schritt erkunden können. Interaktive Module, geführte Aktivitäten und praktische Übungen helfen Ihnen, die Ideen hinter alltäglichen Finanzentscheidungen zu verstehen.

Was Sie erwarten können:

.step1-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .step1-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .step1-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .step1-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .step1-progress-fill.animating { transition: width linear; } .step1-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .step1-item.active { width: 40px; height: 40px; } .step1-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .step1-item.active .step1-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .step1-content { text-align: left; position: relative; } .step1-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .step1-text.active { display: block; opacity: 1; transform: translateY(0); } .step1-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .step1-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .step1-title { font-size: 24px; } @media (max-width: 768px) { .step1-title { font-size: 16px; } }
1
2
3

Strukturierte Module

Interaktive Aktivitäten

Praktische Szenarien

class AnimatedSteps1 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.step1-item'); this.stepTexts = container.querySelectorAll('.step1-text'); this.continuousProgressFill = container.querySelector('.step1-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Expertengeführte Ausbildung

Lerne von Menschen, die das Thema kennen

Gehen Sie über die Theorie hinaus mit Lehrkräften, die Ideen zum Leben erwecken. Nehmen Sie an Live-Sitzungen teil oder lernen Sie auf Abruf in den Bereichen Wirtschaft, künstliche Intelligenz, finanzielle Kompetenz, persönliche Entwicklung und Denkweise.

Was Sie erwarten können:

.steps2-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps2-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps2-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps2-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps2-progress-fill.animating { transition: width linear; } .steps2-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps2-item.active { width: 40px; height: 40px; } .steps2-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps2-item.active .steps2-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps2-content { text-align: left; position: relative; } .steps2-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps2-text.active { display: block; opacity: 1; transform: translateY(0); } .steps2-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps2-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps2-title { font-size: 24px; } @media (max-width: 768px) { .steps2-title { font-size: 16px; } }
1
2
3

Live-Sessions

On-Demand-Lektionen

Vielfältige Fachgebiete

class AnimatedSteps2 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps2-item'); this.stepTexts = container.querySelectorAll('.steps2-text'); this.continuousProgressFill = container.querySelector('.steps2-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

KI-Lernbegleiter

Halte das Gespräch am Laufen

Neugier folgt keinem Zeitplan. Stellen Sie Fragen, überarbeiten Sie wichtige Ideen erneut und erkunden Sie verwandte Themen durch ein KI-gesteuertes Lerngespräch, das jederzeit verfügbar ist, wenn Sie lernen möchten.

Was Sie erwarten können:

.steps3-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps3-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps3-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps3-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps3-progress-fill.animating { transition: width linear; } .steps3-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps3-item.active { width: 40px; height: 40px; } .steps3-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps3-item.active .steps3-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps3-content { text-align: left; position: relative; } .steps3-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps3-text.active { display: block; opacity: 1; transform: translateY(0); } .steps3-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps3-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps3-title { font-size: 24px; } @media (max-width: 768px) { .steps3-title { font-size: 16px; } }
1
2
3

Konversationslernen

Klare Erklärungen

Thema-Erkundung

class AnimatedSteps3 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps3-item'); this.stepTexts = container.querySelectorAll('.steps3-text'); this.continuousProgressFill = container.querySelector('.steps3-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Verzichtserklärung

Die Produkte von BE bieten ausschließlich Bildungsinhalte und Lernwerkzeuge. Sie bieten keine finanzielle, investitionelle oder professionelle Beratung an, und ein konkretes Lern- oder Finanzergebnis ist nicht garantiert. Inhalte und Funktionen variieren je nach Abo.

Das zu lernen

Bewegt sich mit dir

Du wirst immer Unterstützung haben, wenn du sie brauchst, und Raum zum Wachsen.

Fang mit dem an, was dich interessiert. Entdecke in deinem eigenen Tempo. Komm zurück, wann immer dich Neugier an einen neuen Ort führt.

Wählen Sie Ihr Lernerlebnis

Vergleichen Sie Abonnementpläne und finden Sie die Kombination aus EdTech-Produkten und -Funktionen, die für Sie funktioniert.

Häufig gestellte Fragen zu BE Club-Produkten

Welche Produkte bietet BE (BE Club) an?

BE (BE Club) bietet drei EdTech-Produkte an: Interaktive Finanzkompetenz, Expertengeführte Ausbildung und einen KI-Lernbegleiter.

Es handelt sich um ein digitales Lernerlebnis, das strukturierte Module, geführte Aktivitäten und praktische Übungen nutzt, um finanzielle Konzepte leichter zu erforschen und verständlich zu machen.

Es kombiniert Live-Sitzungen und On-Demand-Lektionen, die von Lehrkräften aus den Bereichen Wirtschaft, Künstliche Intelligenz, Finanzkompetenz, persönliche Entwicklung und Denkweise geleitet werden.

Es handelt sich um ein KI-gestütztes Lernwerkzeug, das es Nutzern ermöglicht, Fragen zu stellen, wichtige Ideen erneut zu betrachten und verwandte Themen durch Gespräche zu erkunden.

Verfügbare Themen umfassen Wirtschaft, künstliche Intelligenz, finanzielle Bildung, persönliche Entwicklung und Denkweise. Der Inhalt variiert je nach Abo.

Die Produkte sind für verschiedene Erfahrungsstufen konzipiert, mit geführten Inhalten, die es den Nutzern ermöglichen, mit grundlegenden Themen zu beginnen und in ihrem eigenen Tempo voranzukommen.

Ja. Verfügbare Lernformate umfassen Live-Lehrstunden und On-Demand-Unterricht. Stundenpläne, Fächer und Verfügbarkeit variieren je nach Abo.

BE (BE Club)-Produkte werden digital über Abonnementpläne bereitgestellt. Zugangsdaten werden nach Aktivierung des ausgewählten Abonnements bereitgestellt.

Jedes Abonnement bietet Zugang zu ausgewählten Produkten, Inhalten und Funktionen. Überprüfen Sie die Plandetails sorgfältig, da der Zugang je nach Abo und Standort variiert.

Die Preise variieren je nach gewähltem Abonnement und Standort. Besuchen Sie die Preisseite, um die derzeit verfügbaren Optionen zu vergleichen.

Berechtigte Käufe können je nach Ihrem Standort und den geltenden Bedingungen innerhalb von 7 oder 14 Tagen eine Rückerstattung erhalten. Prüfen Sie vor dem Kauf die Rückerstattungsrichtlinie.

Der AI Learning Companion ist darauf ausgelegt, das Lernen zu unterstützen, aber KI-generierte Antworten können unvollständig oder ungenau sein. Wichtige Informationen sollten stets unabhängig überprüft werden

Verzichtserklärung

BE (BE Club)-Produkte werden ausschließlich zu Bildungszwecken bereitgestellt und stellen keine Finanz-, Investment-, Rechts- oder Steuerberatung dar. KI-generierte Inhalte können unvollständig oder ungenau sein und sollten unabhängig überprüft werden. Es ist kein konkretes Lern-, berufliches oder finanzielles Ergebnis garantiert.

Fordern Sie eine Produktdemo an

Füllen Sie dieses kurze Formular aus, um eine personalisierte Produktdemo anzufordern.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser sich direkt mit Ihnen in Verbindung setzen. Wenn nicht, verbinden wir Sie mit einem unserer Produktspezialisten, der Sie durch die Funktionen führen und Ihre Fragen beantworten kann.

Dies ist kein Verkaufsgespräch – nur eine Gelegenheit, das Produkt in Aktion zu erkunden und zu sehen, wie es Ihren Anforderungen entspricht.

  • Wenn Sie von einem unabhängigen BE-Partner empfohlen wurden, geben Sie bitte deren Namen oder ID ein.
  • Wenn Sie über einen Empfehlungslink gekommen sind, kann dieses Feld für Sie automatisch ausgefüllt werden.
  • Wenn du keine Empfehlung hast, lass sie leer und BE weist dir einen Affiliate zu.

Vielen Dank!

Ihre Demo-Anfrage ist eingegangen.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser Sie direkt kontaktieren. Andernfalls verbinden wir Sie mit einem Produktspezialisten, der Sie durch die Demo Ihres ausgewählten Produkts führt und Ihre Fragen beantwortet.

Sie erhalten innerhalb von 24 bis 48 Stunden eine Antwort per E-Mail oder WhatsApp mit Ihren Demo-Details.

Fordern Sie eine Produktdemo an

Füllen Sie dieses kurze Formular aus, um eine personalisierte Produktdemo anzufordern.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser sich direkt mit Ihnen in Verbindung setzen. Wenn nicht, verbinden wir Sie mit einem unserer Produktspezialisten, der Sie durch die Funktionen führen und Ihre Fragen beantworten kann.

Dies ist kein Verkaufsgespräch – nur eine Gelegenheit, das Produkt in Aktion zu erkunden und zu sehen, wie es Ihren Anforderungen entspricht.

  • Wenn Sie von einem unabhängigen BE-Partner empfohlen wurden, geben Sie bitte deren Namen oder ID ein.
  • Wenn Sie über einen Empfehlungslink gekommen sind, kann dieses Feld für Sie automatisch ausgefüllt werden.
  • Wenn du keine Empfehlung hast, lass sie leer und BE weist dir einen Affiliate zu.

Vielen Dank!

Ihre Demo-Anfrage ist eingegangen.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser Sie direkt kontaktieren. Andernfalls verbinden wir Sie mit einem Produktspezialisten, der Sie durch die Demo Ihres ausgewählten Produkts führt und Ihre Fragen beantwortet.

Sie erhalten innerhalb von 24 bis 48 Stunden eine Antwort per E-Mail oder WhatsApp mit Ihren Demo-Details.

Beginnen Sie Ihre Lernreise – kein Druck, keine Verpflichtung

Formular für Konsultationsanfragen

Füllen Sie dieses kurze Formular aus, um eine kostenlose Bildungsberatung anzufordern.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser sich direkt mit Ihnen in Verbindung setzen. Wenn nicht, können wir Sie mit einem unserer geschulten Partner verbinden, der Ihre Fragen beantworten und Sie durch die verfügbaren Pakete führen kann.

Dies ist kein Verkaufsgespräch oder eine Finanzberatung – nur eine unverbindliche Gelegenheit, mehr zu erfahren.

  • Wenn Sie von einem unabhängigen BE-Partner empfohlen wurden, geben Sie bitte deren Namen oder ID ein.
  • Wenn Sie über einen Empfehlungslink gekommen sind, kann dieses Feld für Sie automatisch ausgefüllt werden.
  • Wenn du keine Empfehlung hast, lass sie leer und BE weist dir einen Affiliate zu.
Info-Symbol

Offenlegung

Die Partner sind unabhängig und betreiben eigene Unternehmen. Sie sind keine Mitarbeiter oder Vertreter der Plattform. Alle geteilten Empfehlungen sind ausschließlich lehrreich. Es werden keine Finanzberatung oder Produktgarantien angeboten.

Vielen Dank!

Ihre Anfrage ist eingegangen.

Wenn Sie von einem unabhängigen verbundenen Unternehmen empfohlen wurden, kann dieser Sie direkt kontaktieren.
Andernfalls können wir Ihre Anfrage an ein qualifiziertes, unabhängiges verbundenes Unternehmen weiterleiten, das sich mit Ihnen in Verbindung setzt, um Ihre Fragen zu beantworten.

Sie erhalten innerhalb von 24 bis 48 Stunden eine Antwort per E-Mail oder WhatsApp.

Bitte beachten Sie: Unabhängige verbundene Unternehmen sind keine Mitarbeiter des Unternehmens.

Sie betreiben ihre eigenen Geschäfte und bieten Beratung ausschließlich zu Bildungszwecken an. Es ist keine Finanzberatung oder ein Kauf erforderlich.