<!DOCTYPE html>

<html lang="de">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>think-smart.io</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        

        body {

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', Arial, sans-serif;

            background: #ffffff;

            color: #000000;

            line-height: 1.6;

            overflow-x: hidden;

        }

        

        .section {

            min-height: 100vh;

            padding: 120px 60px;

            display: flex;

            flex-direction: column;

            justify-content: center;

            position: relative;

        }

        

        .section-number {

            position: absolute;

            top: 40px;

            right: 60px;

            font-size: 120px;

            font-weight: 300;

            color: #e0e0e0;

            line-height: 1;

        }

        

        .container {

            max-width: 1200px;

            margin: 0 auto;

            position: relative;

            z-index: 2;

        }

        

        h1 {

            font-size: 56px;

            font-weight: 300;

            margin-bottom: 50px;

            line-height: 1.2;

        }

        

        h2 {

            font-size: 42px;

            font-weight: 300;

            margin-bottom: 40px;

            line-height: 1.3;

        }

        

        .subline {

            font-size: 24px;

            font-weight: 300;

            margin-bottom: 40px;

            line-height: 1.5;

            max-width: 800px;

        }

        

        .description {

            font-size: 18px;

            font-weight: 300;

            color: #666;

            max-width: 600px;

            line-height: 1.6;

        }

        

        .plus-sign {

            font-style: italic;

        }

        

        .bullet-list {

            list-style: none;

            margin: 40px 0;

            font-size: 20px;

            font-weight: 300;

            line-height: 1.8;

        }

        

        .bullet-list li {

            margin-bottom: 12px;

        }

        

        .two-column {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 80px;

            margin-top: 60px;

        }

        

        .column h3 {

            font-size: 28px;

            font-weight: 400;

            margin-bottom: 30px;

        }

        

        .column ul {

            list-style: none;

            font-size: 18px;

            font-weight: 300;

        }

        

        .column ul li {

            margin-bottom: 15px;

            padding-left: 25px;

            position: relative;

        }

        

        .column ul li:before {

            content: "";

            position: absolute;

            left: 0;

        }

        

        /* Contact Form */

        .contact-form {

            max-width: 600px;

            margin-top: 50px;

        }

        

        .form-group {

            margin-bottom: 25px;

        }

        

        .form-group label {

            display: block;

            font-size: 16px;

            font-weight: 400;

            margin-bottom: 8px;

            color: #333;

        }

        

        .form-group input,

        .form-group textarea {

            width: 100%;

            padding: 14px 18px;

            font-size: 16px;

            font-family: inherit;

            border: 1px solid #ddd;

            border-radius: 8px;

            transition: border-color 0.3s ease;

        }

        

        .form-group input:focus,

        .form-group textarea:focus {

            outline: none;

            border-color: #000;

        }

        

        .form-group textarea {

            resize: vertical;

            min-height: 120px;

        }

        

        /* Honeypot - verstecktes Feld gegen Spam */

        .honeypot {

            position: absolute;

            left: -9999px;

            width: 1px;

            height: 1px;

        }

        

        .submit-button {

            display: inline-block;

            padding: 18px 50px;

            background: #000;

            color: #fff;

            text-decoration: none;

            font-size: 20px;

            font-weight: 400;

            border-radius: 50px;

            border: none;

            cursor: pointer;

            transition: all 0.3s ease;

        }

        

        .submit-button:hover {

            background: #333;

            transform: translateY(-2px);

        }

        

        .form-message {

            margin-top: 20px;

            padding: 15px;

            border-radius: 8px;

            display: none;

        }

        

        .form-message.success {

            background: #d4edda;

            color: #155724;

            border: 1px solid #c3e6cb;

            display: block;

        }

        

        .form-message.error {

            background: #f8d7da;

            color: #721c24;

            border: 1px solid #f5c6cb;

            display: block;

        }

        

        /* Footer */

        footer {

            background: #000;

            color: #fff;

            padding: 60px 60px 40px;

        }

        

        .footer-content {

            max-width: 1200px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: 1fr 1.5fr;

            gap: 80px;

            margin-bottom: 40px;

        }

        

        .footer-section h4 {

            font-size: 18px;

            font-weight: 500;

            margin-bottom: 20px;

        }

        

        .footer-section p,

        .footer-section a {

            font-size: 15px;

            font-weight: 300;

            line-height: 1.8;

            color: #ccc;

            text-decoration: none;

        }

        

        .footer-section a:hover {

            color: #fff;

        }

        

        /* Privacy Notice unter Footer */

        .privacy-notice {

            background: #fff;

            padding: 20px 60px;

            text-align: center;

        }

        

        .privacy-notice p {

            font-size: 11px;

            color: #666;

            line-height: 1.6;

            max-width: 1200px;

            margin: 0 auto;

        }

        

        .privacy-notice a {

            color: #666;

            text-decoration: underline;

        }

        

        .privacy-notice a:hover {

            color: #000;

        }

        

        /* Datenschutzerklärung */

        .privacy-policy {

            background: #fff;

            padding: 60px 60px 80px;

        }

        

        .privacy-policy .container {

            max-width: 900px;

        }

        

        .privacy-policy h3 {

            font-size: 32px;

            font-weight: 400;

            margin-bottom: 40px;

            text-align: center;

        }

        

        .privacy-policy h4 {

            font-size: 18px;

            font-weight: 500;

            margin-top: 30px;

            margin-bottom: 15px;

        }

        

        .privacy-policy p {

            font-size: 14px;

            line-height: 1.8;

            color: #333;

            margin-bottom: 15px;

        }

        

        .privacy-policy ul {

            font-size: 14px;

            line-height: 1.8;

            color: #333;

            margin-bottom: 15px;

            margin-left: 20px;

        }

        

        /* Logo mit Icon-Platzhalter */

        .logo {

            position: fixed;

            top: 40px;

            left: 60px;

            z-index: 100;

            display: flex;

            align-items: center;

            gap: 12px;

        }

        

      .logo-icon {

    width: 40px;

    height: 40px;

    object-fit: contain;

}

        

        .logo-text {

            font-size: 22px;

            font-weight: 500;

        }

        

        /* Responsive */

        @media (max-width: 768px) {

            .section {

                padding: 80px 30px;

            }

            

            h1 {

                font-size: 38px;

            }

            

            h2 {

                font-size: 32px;

            }

            

            .subline {

                font-size: 20px;

            }

            

            .two-column {

                grid-template-columns: 1fr;

                gap: 40px;

            }

            

            .footer-content {

                grid-template-columns: 1fr;

                gap: 40px;

            }

            

            .section-number {

                font-size: 80px;

                right: 30px;

            }

            

            .logo {

                left: 30px;

            }

            

            .logo-icon {

    width: 32px;

    height: 32px;

}


            

            .logo-text {

                font-size: 18px;

            }

            

            footer {

                padding: 40px 30px 30px;

            }

            

            .privacy-notice {

                padding: 20px 30px;

            }

            

            .privacy-policy {

                padding: 40px 30px 60px;

            }

        }

        

        .highlight {

            font-weight: 400;

        }

    </style>

</head>

<body>

  <div class="logo">

    <img src="kopf40.png“ alt="Think-Smart Logo" class="logo-icon">

    <span class="logo-text">think-smart.io</span>

</div>

    

    <!-- Section 01: Mission -->

    <section class="section">

        <div class="section-number">01</div>

        <div class="container">

            <h1>Gemeinsam klüger denken.</h1>

            <div class="subline">

                <strong>Augmented Collective Intelligence:</strong><br>

                KI für die Intelligenz Ihrer Gruppe.

            </div>

            <p class="description">

                Mit Think-Smart: Beratung <span class="plus-sign">+</span> App <span class="plus-sign">+</span> Moderation<br>

                für Workshops und Tagungen, die die<br>

                kollektive Intelligenz der Teilnehmenden voll entfalten.

            </p>

        </div>

    </section>

    

    <!-- Section 02: Was es leistet -->

    <section class="section" style="background: #fafafa;">

        <div class="section-number">02</div>

        <div class="container">

            <h2>Think-Smart macht Dialoge<br>

            <span class="highlight">tiefer. schneller. klarer.</span></h2>

            

            <div class="bullet-list">

                <p>beschleunigt Strategieprozesse<br>

                bringt Organisationsentwicklung auf den Punkt<br>

                nutzt Konflikte konstruktiv<br>

                kristallisiert die Spannungsfelder<br>

                und destilliert die besten Ideen</p>

            </div>

            

            <p class="description" style="margin-top: 60px;">

                Für alle Formate: Open Space, World Café,<br>

                maßgeschneiderte Dialoge. Online und in Präsenz.

            </p>

        </div>

    </section>

    

    <!-- Section 03: Für wen -->

    <section class="section">

        <div class="section-number">03</div>

        <div class="container">

            <h2>Zwei Wege, ein Ziel:<br>

            Gruppenintelligenz auf Höchstleistung.</h2>

            

            <div class="two-column">

                <div class="column">

                    <h3>Für KollegInnen aus Beratung und Moderation:</h3>

                    <ul>

                        <li>Prozessberatung für KI-Integration</li>

                        <li>Tool-Einrichtung und Echtzeit-Feedback</li>

                        <li>Reporting direkt nach der Veranstaltung</li>

                    </ul>

                </div>

                

                <div class="column">

                    <h3>Für Unternehmen und Organisationen:</h3>

                    <ul>

                        <li>Alles links. Plus Moderation.</li>

                        <li>Vor Ort oder online.</li>

                    </ul>

                </div>

            </div>

        </div>

    </section>

    

    <!-- Section 04: Kontakt -->

    <section class="section" style="background: #fafafa;">

        <div class="section-number">04</div>

        <div class="container">

            <h2>Bereit für produktivere Dialoge?</h2>

            

            <p class="subline">

                Ob Vorstandsklausur oder Großtagung:<br>

                Think-Smart macht den Unterschied.

            </p>

            

            <div id="formMessage" class="form-message"></div>

            

            <form class="contact-form" action="send-mail.php" method="POST" id="contactForm">

                <!-- Honeypot gegen Spam-Bots -->

                <div class="honeypot">

                    <label for="website">Website</label>

                    <input type="text" id="website" name="website" tabindex="-1" autocomplete="off">

                </div>

                

                <div class="form-group">

                    <label for="name">Name *</label>

                    <input type="text" id="name" name="name" required>

                </div>

                

                <div class="form-group">

                    <label for="email">E-Mail *</label>

                    <input type="email" id="email" name="email" required>

                </div>

                

                <div class="form-group">

                    <label for="organization">Organisation</label>

                    <input type="text" id="organization" name="organization">

                </div>

                

                <div class="form-group">

                    <label for="message">Ihre Nachricht *</label>

                    <textarea id="message" name="message" required></textarea>

                </div>

                

                <button type="submit" class="submit-button">Anfrage senden</button>

            </form>

        </div>

    </section>

    

    <!-- Footer -->

    <footer>

        <div class="footer-content">

            <div class="footer-section">

                <h4>Impressum & Kontakt</h4>

                <p>

                Schneidereit & Co.<br>

                Rolf Schneidereit<br>

                Aachener Str. 37-39<br>

                50674 Köln<br>

                E-Mail: hallo@think-smart.io

                +49 221 4747477

                </p>

            </div>

            

            <div class="footer-section">

                <p style="margin-top: 42px;">

                    Think-Smart ist aus der Moderationserfahrung von Schneidereit & Co. entstanden. Seit 2009 steht die Frage, wie Teams, Gruppen und ganze Organisationen klüger miteinander denken können, im Zentrum unserer Arbeit.

                </p>

            </div>

        </div>

    </footer>

    

    <!-- Privacy Notice -->

    <div class="privacy-notice">

        <p>

            Diese Website verwendet keine Cookies und erfasst keine personenbezogenen Daten über Tracking-Tools. 

            Kontaktformular-Daten werden ausschließlich zur Bearbeitung Ihrer Anfrage verwendet. 

            Weitere Informationen: <a href="#datenschutz">Datenschutzerklärung</a>

        </p>

    </div>

    

    <!-- Datenschutzerklärung -->

    <section class="privacy-policy" id="datenschutz">

        <div class="container">

            <h3>Datenschutzerklärung</h3>

            

            <h4>1. Verantwortliche Stelle</h4>

            <p>

                Schneidereit & Co.<br>

                Rolf Schneidereit<br>

                Aachener Str. 37-39<br>

                50674 Köln<br>

                E-Mail: hallo@think-smart.io

            </p>

            

            <h4>2. Erhebung und Verarbeitung personenbezogener Daten</h4>

            <p>

                Diese Website erhebt keine personenbezogenen Daten durch Cookies oder Tracking-Tools. 

                Wir setzen keine Marketing-, Analytics- oder Social-Media-Tracking-Dienste ein.

            </p>

            

            <h4>3. Kontaktformular</h4>

            <p>

                Wenn Sie uns über das Kontaktformular eine Nachricht senden, werden die von Ihnen 

                eingegebenen Daten (Name, E-Mail-Adresse, Organisation, Nachricht) ausschließlich 

                zur Bearbeitung Ihrer Anfrage verwendet und gespeichert. Die Daten werden nicht an 

                Dritte weitergegeben.

            </p>

            <p>

                <strong>Rechtsgrundlage:</strong> Art. 6 Abs. 1 lit. b DSGVO (Vertragsanbahnung) bzw. 

                Art. 6 Abs. 1 lit. a DSGVO (Einwilligung durch Absenden des Formulars)

            </p>

            <p>

                <strong>Speicherdauer:</strong> Ihre Anfrage wird gelöscht, sobald sie erledigt ist und 

                keine gesetzlichen Aufbewahrungsfristen bestehen.

            </p>

            

            <h4>4. Server-Logfiles</h4>

            <p>

                Bei jedem Zugriff auf diese Website erfasst unser Webserver automatisch technische Daten:

            </p>

            <ul>

                <li>IP-Adresse des zugreifenden Rechners</li>

                <li>Datum und Uhrzeit des Zugriffs</li>

                <li>Name und URL der abgerufenen Datei</li>

                <li>Übertragene Datenmenge</li>

                <li>Meldung über erfolgreichen Abruf</li>

                <li>Browsertyp und Version</li>

                <li>Betriebssystem des Nutzers</li>

            </ul>

            <p>

                Diese Daten werden ausschließlich zur Gewährleistung der Systemsicherheit und zur 

                Fehleranalyse verwendet. Eine Zusammenführung dieser Daten mit anderen Datenquellen 

                wird nicht vorgenommen. Die Daten werden nach 7 Tagen automatisch gelöscht.

            </p>

            <p>

                <strong>Rechtsgrundlage:</strong> Art. 6 Abs. 1 lit. f DSGVO (berechtigtes Interesse an 

                der Sicherstellung der Systemstabilität)

            </p>

            

            <h4>5. Ihre Rechte</h4>

            <p>

                Sie haben jederzeit das Recht auf:

            </p>

            <ul>

                <li>Auskunft über Ihre bei uns gespeicherten Daten (Art. 15 DSGVO)</li>

                <li>Berichtigung unrichtiger Daten (Art. 16 DSGVO)</li>

                <li>Löschung Ihrer Daten (Art. 17 DSGVO)</li>

                <li>Einschränkung der Verarbeitung (Art. 18 DSGVO)</li>

                <li>Datenübertragbarkeit (Art. 20 DSGVO)</li>

                <li>Widerspruch gegen die Verarbeitung (Art. 21 DSGVO)</li>

            </ul>

            <p>

                Zur Ausübung Ihrer Rechte wenden Sie sich bitte an: kontakt@think-smart.io

            </p>

            

            <h4>6. Beschwerderecht</h4>

            <p>

                Sie haben das Recht, sich bei einer Datenschutz-Aufsichtsbehörde über die Verarbeitung 

                Ihrer personenbezogenen Daten durch uns zu beschweren.

            </p>

            

            <h4>7. SSL-Verschlüsselung</h4>

            <p>

                Diese Website nutzt aus Sicherheitsgründen eine SSL-Verschlüsselung. Eine verschlüsselte 

                Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von "http://" auf 

                "https://" wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.

            </p>

            

            <p style="margin-top: 30px; font-size: 13px; color: #666;">

                <strong>Stand:</strong> November 2025

            </p>

        </div>

    </section>

    

    <script>

        // Smooth scroll

        document.querySelectorAll('a[href^="#"]').forEach(anchor => {

            anchor.addEventListener('click', function (e) {

                e.preventDefault();

                const target = document.querySelector(this.getAttribute('href'));

                if (target) {

                    target.scrollIntoView({

                        behavior: 'smooth'

                    });

                }

            });

        });

        

        // URL-Parameter für Feedback auslesen

        window.addEventListener('DOMContentLoaded', function() {

            const urlParams = new URLSearchParams(window.location.search);

            const messageDiv = document.getElementById('formMessage');

            

            if (urlParams.has('success')) {

                messageDiv.className = 'form-message success';

                messageDiv.textContent = 'Vielen Dank für Ihre Anfrage! Wir melden uns zeitnah bei Ihnen.';

                messageDiv.scrollIntoView({ behavior: 'smooth', block: 'center' });

                

                // URL säubern nach 3 Sekunden

                setTimeout(() => {

                    window.history.replaceState({}, document.title, window.location.pathname);

                }, 3000);

            }

            

            if (urlParams.has('error')) {

                messageDiv.className = 'form-message error';

                messageDiv.textContent = 'Fehler: ' + urlParams.get('error');

                messageDiv.scrollIntoView({ behavior: 'smooth', block: 'center' });

                

                // URL säubern nach 5 Sekunden

                setTimeout(() => {

                    window.history.replaceState({}, document.title, window.location.pathname);

                }, 5000);

            }

        });

        

        // Optional: Client-seitige Validierung

        document.getElementById('contactForm').addEventListener('submit', function(e) {

            const honeypot = document.getElementById('website').value;

            

            // Spam-Check: Honeypot-Feld sollte leer sein

            if (honeypot !== '') {

                e.preventDefault();

                alert('Spam erkannt. Formular wurde nicht gesendet.');

                return false;

            }

        });

    </script>

</body>

</html>