        :root {
            --primary: #1a3d2e;
            --primary-light: #264d3b;
            --primary-dark: #0f2a1e;
            --anthracite: #2d3436;
            --anthracite-light: #4a5568;
            --offwhite: #f8f7f5;
            --white: #ffffff;
            --border: #e2e0dc;
            --success: #27ae60;
            --text: #2d3436;
            --text-light: #636e72;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 60px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--white);
        }

        .logo-text {
            font-family: 'Source Serif 4', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--anthracite);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background: var(--offwhite);
            color: var(--primary);
        }

        .nav-link.active {
            color: var(--primary);
        }

        .btn-login {
            margin-left: 16px;
            padding: 12px 24px;
            background: var(--primary);
            color: var(--white);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .btn-login:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero {
            padding: 180px 60px 120px;
            background: linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%);
        }

        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(26, 61, 46, 0.1);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
        }

        .hero-title {
            font-family: 'Source Serif 4', serif;
            font-size: 52px;
            font-weight: 700;
            line-height: 1.15;
            color: var(--anthracite);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-text {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
        }

        .btn-primary {
            padding: 16px 32px;
            background: var(--primary);
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 16px 32px;
            background: var(--white);
            color: var(--anthracite);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-visual {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .hero-stat {
            padding: 24px;
            background: var(--offwhite);
            border-radius: 12px;
        }

        .hero-stat-value {
            font-family: 'Source Serif 4', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Trust Bar */
        .trust-bar {
            padding: 40px 60px;
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .trust-bar-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-light);
            font-size: 14px;
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            background: var(--offwhite);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        /* Section Styles */
        .section {
            padding: 100px 60px;
        }

        .section-dark {
            background: var(--anthracite);
            color: var(--white);
        }

        .section-light {
            background: var(--offwhite);
        }

        .section-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-dark .section-label {
            color: var(--success);
        }

        .section-title {
            font-family: 'Source Serif 4', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--anthracite);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .section-dark .section-title {
            color: var(--white);
        }

        .section-text {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .section-dark .section-text {
            color: rgba(255,255,255,0.7);
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 12px;
            padding: 36px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background: rgba(26, 61, 46, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .benefit-title {
            font-family: 'Source Serif 4', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--anthracite);
            margin-bottom: 12px;
        }

        .benefit-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Process Section */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: rgba(255,255,255,0.2);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Source Serif 4', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
        }

        .process-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .process-text {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        /* Current Listings */
        .listings-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .listing-card {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s;
        }

        .listing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        .listing-image {
            height: 180px;
            background: var(--offwhite);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 14px;
            border-bottom: 1px solid var(--border);
        }

        .listing-content {
            padding: 24px;
        }

        .listing-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(39, 174, 96, 0.1);
            color: var(--success);
            font-size: 12px;
            font-weight: 600;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .listing-title {
            font-family: 'Source Serif 4', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--anthracite);
            margin-bottom: 8px;
        }

        .listing-category {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .listing-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .listing-value {
            font-size: 13px;
            color: var(--text-light);
        }

        .listing-value strong {
            font-size: 18px;
            color: var(--primary);
            font-weight: 600;
        }

        .listing-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
        }

        .listing-link:hover {
            text-decoration: underline;
        }

        /* Target Groups */
        .target-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .target-card {
            background: var(--white);
            border-radius: 16px;
            padding: 48px;
            border: 1px solid var(--border);
        }

        .target-icon {
            width: 64px;
            height: 64px;
            background: rgba(26, 61, 46, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .target-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .target-title {
            font-family: 'Source Serif 4', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--anthracite);
            margin-bottom: 16px;
        }

        .target-text {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .target-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .target-list li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
            color: var(--anthracite);
        }

        .target-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 60px;
            background: var(--primary);
            text-align: center;
        }

        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Source Serif 4', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .btn-white {
            padding: 16px 32px;
            background: var(--white);
            color: var(--primary);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .btn-outline-white {
            padding: 16px 32px;
            background: transparent;
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.2s;
        }

        .btn-outline-white:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.1);
        }

        /* Footer */
        .footer {
            background: var(--anthracite);
            color: var(--white);
            padding: 80px 60px 40px;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
        }

        .footer-logo-text {
            font-family: 'Source Serif 4', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-kanzlei {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
        }

        .footer-legal a:hover {
            color: var(--white);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--white);
            border-radius: 16px;
            padding: 48px;
            max-width: 440px;
            width: 100%;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: var(--offwhite);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: var(--border);
        }

        .modal-title {
            font-family: 'Source Serif 4', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--anthracite);
            margin-bottom: 12px;
        }

        .modal-text {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--anthracite);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 61, 46, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .btn-form {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
        }

        .btn-form:hover {
            background: var(--primary-dark);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-visual {
                max-width: 500px;
            }

            .benefits-grid,
            .listings-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step::after {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }

            .nav {
                display: none;
            }

            .hero {
                padding: 120px 20px 80px;
            }

            .hero-title {
                font-size: 36px;
            }

            .section {
                padding: 60px 20px;
            }

            .benefits-grid,
            .listings-grid,
            .target-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .legal-page {
                padding: 120px 20px 60px;
            }

            .legal-content h2 {
                font-size: 20px;
            }

            .legal-content h3 {
                font-size: 17px;
            }
        }

        /* Legal Pages (Impressum, Datenschutz, AGB) */
        .legal-page {
            padding: 140px 60px 80px;
            min-height: calc(100vh - 200px);
            background: var(--offwhite);
        }

        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            padding: 60px 80px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .legal-page h1 {
            font-family: 'Source Serif 4', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--anthracite);
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border);
        }

        .legal-content h2 {
            font-family: 'Source Serif 4', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--anthracite);
            margin-top: 40px;
            margin-bottom: 16px;
        }

        .legal-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--anthracite);
            margin-top: 28px;
            margin-bottom: 12px;
        }

        .legal-content p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 16px;
        }

        .legal-content ul {
            margin: 16px 0 24px 24px;
            color: var(--text);
        }

        .legal-content ul li {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .legal-content a {
            color: var(--primary);
            text-decoration: none;
        }

        .legal-content a:hover {
            text-decoration: underline;
        }

        @media (max-width: 1024px) {
            .legal-container {
                padding: 40px 50px;
            }
        }
