			/* inter-regular - latin */
		@font-face {
		  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 400;
		  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		}
		/* inter-600 - latin */
		@font-face {
		  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 600;
		  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		}
		/* inter-800 - latin */
		@font-face {
		  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
		  font-family: 'Inter';
		  font-style: normal;
		  font-weight: 800;
		  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		}
	
	
	
        /* --- CSS Variablen & Globales Reset --- */
        :root {
            --color-bg-main: #0a0a12; /* Sehr dunkler Hintergrund */
            --color-bg-secondary: rgba(22, 33, 62, 0.85); /* Leicht transparenter Container-Hintergrund */
            --color-text-primary: #ffffff;
            --color-text-secondary: #a0a0b0;
            --color-accent-cyan: #00d4ff; /* Deine Cyan Farbe */
            --color-accent-lime: #a2ff00; /* Deine Lime Farbe */
            --border-light: rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-bg-main);
            color: var(--color-text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Hintergrund Video & Overlay --- */
        .video-background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .video-background-container video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        /* Das Overlay macht das Video dunkler und dezenter */
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 18, 0.70); /* Stärke der Abdunkelung anpassen (0.7 - 0.9) */
            z-index: -1;
        }


        /* --- Hilfsklassen & Buttons --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-cyan {
            background-color: var(--color-accent-cyan);
            color: #000;
        }
        .btn-cyan:hover { background-color: #00b8dd; box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }

        .btn-lime {
            background-color: var(--color-accent-lime);
            color: #000;
        }
        .btn-lime:hover { background-color: #8ce600; box-shadow: 0 0 15px rgba(162, 255, 0, 0.4); }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--color-accent-cyan);
            color: var(--color-accent-cyan);
        }
        .btn-outline:hover {
            background: var(--color-accent-cyan);
            color: #000;
        }


        /* --- Header & Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 18, 0.5); /* Leichter Glassmorphism Effekt */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            display: flex;
            align-items: center;
			margin-top:10px;
        }
        /* Simuliertes Logo Icon basierend auf deinem Bild */
        .logo-icon {
            color: var(--color-accent-cyan);
            margin-right: 0.5rem;
        }
        .logo span { color: var(--color-accent-lime);}
		
		.logo span img {width:350px; height:auto;}

        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li { margin-left: 2rem; }
        .main-nav a {
            text-decoration: none;
            color: var(--color-text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .main-nav a:hover { color: var(--color-text-primary); }

        .header-actions {
            display: flex;
            gap: 1rem;
        }

        /* --- Hero Section --- */
        .hero-section {
            height: 90vh; /* Fast volle Bildschirmhöhe */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px; /* Platz für fixierten Header */
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .highlight-miete {
            color: var(--color-accent-cyan);
            display: block; /* Erzwingt neue Zeile für den Miet-Teil */
            font-size: 4rem;
            margin-top: 0.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--color-text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Pricing Section --- */
        .pricing-section {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .pricing-grid {
            display: grid;
            /* Automatische Spalten für Desktop */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: flex-start;
        }

        .pricing-card {
            background-color: var(--color-bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
            position: relative;
            backdrop-filter: blur(5px);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--color-accent-cyan);
        }
        /* Spezielles Styling für das mittlere Paket (Business) */
        .pricing-card.featured {
            border-color: var(--color-accent-lime);
            box-shadow: 0 0 30px rgba(162, 255, 0, 0.1);
        }

        .plan-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-text-secondary);
        }
        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: #fff;
        }
        .plan-price span {
            font-size: 1.2rem;
            color: var(--color-text-secondary);
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
            display: inline-block; /* Damit text-align left im center container klappt */
        }
        .plan-features li {
            margin-bottom: 0.8rem;
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
        }
        /* Kleiner Haken vor den Features */
        .plan-features li::before {
            content: '✓';
            color: var(--color-accent-lime);
            margin-right: 10px;
            font-weight: bold;
        }

        /* --- Footer --- */
        footer {
            text-align: center;
            padding: 3rem 0;
            margin-top: 5rem;
            border-top: 1px solid var(--border-light);
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 1024px) {
            /* Verstecke normale Navigation auf Tablets */
            .main-nav { display: none; }
        }

        @media (max-width: 768px) {
            /* Header Anpassungen für Mobile */
            header { padding: 1rem; }
            .logo { font-size: 1.5rem; }
			.logo span img {width:150px; height:auto;display: flex; justify-content: center;}
            /* Buttons im Header kleiner machen */
            .header-actions .btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            /* Hero Anpassungen für Mobile */
            .hero-section { height: auto; padding: 120px 1rem 60px 1rem; }
            .hero-content h1 { font-size: 2.2rem; }
            .highlight-miete { font-size: 2.8rem; }
            .hero-content p { font-size: 1rem; }

            /* Pricing Grid wird automatisch einspaltig durch CSS Grid */
        }