<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Uncategorized | Gedankenrevolution</title>
	<atom:link href="https://gedankenrevolution.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://gedankenrevolution.com</link>
	<description>Gudrun Schönhofer</description>
	<lastBuildDate>Sun, 17 Aug 2025 16:10:13 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://gedankenrevolution.com/wp-content/uploads/2022/03/Gedankenrevolution_LOVE_Schriftzug_80px.png</url>
	<title>Uncategorized | Gedankenrevolution</title>
	<link>https://gedankenrevolution.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title></title>
		<link>https://gedankenrevolution.com/248260-2/</link>
		
		<dc:creator><![CDATA[G. Schönhofer]]></dc:creator>
		<pubDate>Sun, 17 Aug 2025 16:10:12 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://gedankenrevolution.com/?p=248260</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner"><!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Gedankenrevolution - DramaRama Funnel</title>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .hero {
            background: linear-gradient(135deg, #6d132c 0%, #8b1a3a 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .claim {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid #ffd700;
            padding: 30px;
            border-radius: 15px;
            font-size: 1.3rem;
            font-weight: bold;
            margin: 40px auto;
            max-width: 800px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        /* Hooks Section */
        .hooks {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .hooks h2 {
            text-align: center;
            color: #6d132c;
            font-size: 2.5rem;
            margin-bottom: 60px;
        }
        
        .hook-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .hook-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(109, 19, 44, 0.1);
            border-left: 5px solid #6d132c;
            transform: translateY(0);
            transition: all 0.3s ease;
        }
        
        .hook-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(109, 19, 44, 0.15);
        }
        
        .hook-card .icon {
            color: #ffd700;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .hook-card h3 {
            color: #6d132c;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .hook-card p {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
        }
        
        /* Self-Check Section */
        .self-check {
            padding: 80px 0;
            background: linear-gradient(135deg, #6d132c 0%, #8b1a3a 100%);
            color: white;
        }
        
        .self-check h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .self-check-intro {
            text-align: center;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
        }
        
        .quiz-container {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .question {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            border-left: 4px solid #ffd700;
        }
        
        .question label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .question input[type="checkbox"] {
            margin-right: 15px;
            transform: scale(1.2);
        }
        
        .quiz-button {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #6d132c;
            border: none;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 40px auto 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        .quiz-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }
        
        .result {
            margin-top: 30px;
            padding: 30px;
            background: rgba(255,255,255,0.15);
            border-radius: 15px;
            text-align: center;
            display: none;
        }
        
        .result h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-top: 20px;
            opacity: 0.9;
        }
        
        /* Workbook Section */
        .workbook {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .workbook-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .workbook-info h2 {
            color: #6d132c;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .workbook-features {
            list-style: none;
            margin: 30px 0;
        }
        
        .workbook-features li {
            padding: 10px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .workbook-features li::before {
            content: '✓';
            color: #ffd700;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .workbook-visual {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(109, 19, 44, 0.1);
        }
        
        .workbook-icon {
            font-size: 5rem;
            color: #6d132c;
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #6d132c 0%, #8b1a3a 100%);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #6d132c;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid #ffd700;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }
        
        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 40px 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .workbook-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hook-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body data-rsssl=1>
    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <h1>Gedankenrevolution</h1>
                <p class="subtitle">Schluss mit Mindset-BlaBla</p> 
                <div class="claim">
                    „Hast du ein Problem, schau in dein System – denn die Wurzel des Problems steckt in der Wurzel des Systems."
                </div>
            </div>
        </div>
    </section>

    <!-- Hooks Section -->
    <section class="hooks">
        <div class="container">
            <h2>Erkennst du dich wieder?</h2>
            <div class="hook-grid">
                <div class="hook-card">
                    <div class="icon">
                        <i class="fas fa-mask"></i>
                    </div>
                    <h3>Schönreden hilft nicht</h3>
                    <p>„Mindset ist wie Schminke auf Schimmel – hübsch von außen, aber innen fault's weiter."</p> 
                </div>
                <div class="hook-card">
                    <div class="icon">
                        <i class="fas fa-search"></i>
                    </div>
                    <h3>Die wahren Ursachen</h3>
                    <p>„Hast du ein Problem? Dann schau in dein System – die Wurzel steckt in der Wurzel."</p> 
                </div>
                <div class="hook-card">
                    <div class="icon">
                        <i class="fas fa-sync-alt"></i>
                    </div>
                    <h3>Der ewige Kreislauf</h3>
                    <p>„Du drehst dich im Kreis? Dein Unterbewusstsein kennt nur ein Programm: DramaRama."</p> 
                </div>
            </div>
        </div>
    </section>

    <!-- Self-Check Section -->
    <section class="self-check">
        <div class="container">
            <h2>DramaRama Self-Check</h2>
            <p class="self-check-intro">
                Dein unterbewusstes Navigationssystem ist auf DramaRama programmiert. 
                Dieser Self-Check zeigt dir erste Hinweise, welche Muster dich steuern.
            </p> 
            
            <div class="quiz-container">
                <form id="selfCheck">
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q1" value="1">
                            Ich lande immer wieder in denselben Konflikten – egal, wie sehr ich mich anstrenge.
                        </label>
                    </div>
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q2" value="1">
                            Ich habe schon vieles probiert (Mindset, Affirmationen, Kurse), aber nichts hält dauerhaft.
                        </label>
                    </div>
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q3" value="1">
                            In meiner Familie gab es ungelöste Konflikte (z. B. Krieg, Flucht, Verlust).
                        </label>
                    </div>
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q4" value="1">
                            Meine Herkunft (Religion, Politik, Kultur) prägt mich stärker, als mir lieb ist.
                        </label>
                    </div>
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q5" value="1">
                            Ich trage Verantwortung für Dinge, die eigentlich nicht zu mir gehören.
                        </label>
                    </div>
                    <div class="question">
                        <label>
                            <input type="checkbox" name="q6" value="1">
                            Ich fühle mich oft fremdgesteuert.
                        </label>
                    </div>
                    
                    <button type="button" class="quiz-button" onclick="calculateResult()">
                        👉 Self-Check auswerten
                    </button>
                    
                    <div id="result" class="result">
                        <h3 id="resultTitle"></h3>
                        <p id="resultText"></p> 
                        <p class="quote">„Ohne Wurzeln keine Flügel." – Bertold Ulsamer</p> 
                    </div>
                </form>
            </div>
        </div>
    </section>

    <!-- Workbook Section -->
    <section class="workbook">
        <div class="container">
            <div class="workbook-content">
                <div class="workbook-info">
                    <h2>DramaRama entlarven – Das Workbook</h2>
                    <p>Gehe tiefer und entdecke die Muster, die dich wirklich steuern. Dieses Workbook gibt dir die Werkzeuge an die Hand, um endlich zu verstehen, warum du immer wieder in dieselben Fallen tappst.</p> 
                    
                    <ul class="workbook-features">
                        <li>Wer gehört wirklich zu deinem System?</li>
                        <li>Einführung ins Genogramm als Kompass</li>
                        <li>Übungen, um Muster sichtbar zu machen</li>
                        <li>Erste Rootfinder®-Tools</li>
                        <li>Schritt-für-Schritt Anleitung</li>
                        <li>Sofort als PDF download</li>
                    </ul>
                </div>
                
                <div class="workbook-visual">
                    <div class="workbook-icon">
                        <i class="fas fa-book-open"></i>
                    </div>
                    <h3>47 Seiten geballtes Wissen</h3>
                    <p>Für nur <strong>19€</strong></p> 
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="cta">
        <div class="container">
            <h2>Bereit für deine Gedankenrevolution?</h2>
            <p>Schluss mit oberflächlichen Lösungen. Zeit für echte Veränderung.</p> 
            
            <div class="cta-buttons">
                <a href="#" class="btn btn-primary">📖 Workbook für 19€ holen</a>
                <a href="#" class="btn btn-secondary">🚀 Rootfinder® Academy</a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="container">
            <p>&copy; 2025 Gedankenrevolution. Alle Rechte vorbehalten.</p> 
        </div>
    </footer>

    <script>
        function calculateResult() {
            const checkboxes = document.querySelectorAll('#selfCheck input[type="checkbox"]:checked');
            const score = checkboxes.length;
            const resultDiv = document.getElementById('result');
            const resultTitle = document.getElementById('resultTitle');
            const resultText = document.getElementById('resultText');
            
            let title = '';
            let text = '';
            
            if (score <= 2) {
                title = 'Du hast ein gutes Gespür für dich';
                text = 'Einige unbewusste Muster könnten noch da sein, aber du scheinst bereits einen guten Zugang zu dir selbst zu haben. Das Workbook könnte dir helfen, noch tiefer zu gehen.';
            } else if (score >= 3 && score <= 4) {
                title = 'Dein Unterbewusstsein funkt dazwischen';
                text = 'Zeit für dein Genogramm! Die Muster sind da und wollen entdeckt werden. Du bist bereit für den nächsten Schritt.';
            } else {
                title = 'Willkommen im DramaRama!';
                text = 'Dein Navigationssystem ist auf alte Muster programmiert. Aber keine Sorge – jetzt wo du es weißt, kannst du etwas dagegen tun. Das Workbook ist genau das Richtige für dich!';
            }
            
            resultTitle.textContent = title;
            resultText.textContent = text;
            resultDiv.style.display = 'block';
            
            // Smooth scroll to result
            resultDiv.scrollIntoView({ behavior: 'smooth' });
        }
        
        // Add some interactive effects
        document.addEventListener('DOMContentLoaded', function() {
            // Animate cards on scroll
            const observerOptions = {
                threshold: 0.1,
                rootMargin: '0px 0px -50px 0px'
            };
            
            const observer = new IntersectionObserver(function(entries) {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.animation = 'fadeInUp 0.6s ease-out forwards';
                    }
                });
            }, observerOptions);
            
            document.querySelectorAll('.hook-card, .workbook-visual').forEach(card => {
                observer.observe(card);
            });
        });
    </script>
</body>
</html></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
