<!DOCTYPE html>

<html lang="de">

<head>

    <meta charset="UTF-8">

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

    <title>Immobilien Investment Rechner - Coming Soon</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        body {

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

            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

            color: #ffffff;

            min-height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

        }

        .container {

            text-align: center;

            padding: 2rem;

            max-width: 600px;

        }

        h1 {

            font-size: 2.5rem;

            margin-bottom: 1rem;

            font-weight: 700;

        }

        .highlight {

            color: #4ade80;

        }

        p {

            font-size: 1.2rem;

            color: #a0aec0;

            margin-bottom: 2rem;

            line-height: 1.6;

        }

        .badge {

            display: inline-block;

            background: rgba(74, 222, 128, 0.1);

            border: 1px solid #4ade80;

            color: #4ade80;

            padding: 0.5rem 1.5rem;

            border-radius: 50px;

            font-size: 0.9rem;

            font-weight: 500;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Immobilien-Investments <span class="highlight">smart berechnen</span></h1>

        <p>Cashflow, Rendite, Finanzierung und Vermietung – alle Analysen in einer Plattform. Bewerte potenzielle Investments in Minuten statt Tagen.</p>

        <span class="badge">Coming Soon</span>

    </div>

</body>

</html>