/* 1. VARIABLEN & RESET */
:root {
    --bg-main: #07090f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --input-bg: rgba(255, 255, 255, 0.05);
    --whatsapp-green: #25d366;
    --nav-height: 70px;
    
    /* FIX für Zeile 520 & Formular-Farben */
    color-scheme: dark; 
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
}

/* 2. HINTERGRUND & LAYOUT */
.bg-glow { 
    position: fixed; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 100vw; 
    height: 100vh; 
    background: radial-gradient(circle at 50% 10%, rgba(59, 130, 246, 0.15) 0%, rgba(7, 9, 15, 0) 50%); 
    z-index: -1; 
    pointer-events: none;
}

section { 
    padding: 100px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* 3. NAVIGATION */
nav {
    height: var(--nav-height);
    background: rgba(7, 9, 15, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text; /* FIX für Fehler 2 */
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* 4. HERO SECTION */
.hero { 
    min-height: 80vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 0 20px; 
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
}

/* 5. KOMPONENTEN (CARDS & BUTTONS) */
.section-header { text-align: center; margin-bottom: 60px; }

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.card { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 24px; 
    padding: 40px; 
    transition: 0.4s ease; 
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-10px); border-color: var(--accent-blue); }

.card.featured { border-color: var(--accent-blue); background: rgba(59, 130, 246, 0.05); }

.target-label { font-size: 0.7rem; color: var(--accent-purple); font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }

.price { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
ul li { margin-bottom: 12px; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
ul li::before { content: "✓"; color: var(--accent-blue); font-weight: bold; }

.btn { 
    background: var(--accent-gradient); 
    color: white; 
    padding: 16px 32px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    border: none; 
    cursor: pointer; 
    transition: 0.3s;
    text-align: center;
}

.btn-full { width: 100%; font-size: 1rem; }
.btn:hover { box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); transform: scale(1.02); }

/* 6. SERVICE & INFO */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.info-item { padding: 30px; background: var(--card-bg); border-radius: 20px; border-left: 4px solid var(--accent-blue); }
.info-item h4 { margin-bottom: 10px; color: var(--accent-blue); }
.info-item p { font-size: 0.9rem; color: var(--text-muted); }

/* 7. FORMULAR (KORRIGIERT) */
.form-container { 
    background: var(--card-bg); 
    border: 1px solid var(--card-border); 
    border-radius: 30px; 
    padding: 50px; 
    max-width: 800px; 
    margin: 0 auto;
}

.form-header { margin-bottom: 40px; text-align: left; }

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.form-group { margin-bottom: 25px; text-align: left; }

label { 
    display: block; 
    margin-bottom: 8px; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
}

input, select, textarea { 
    width: 100%; 
    background: var(--input-bg); 
    border: 1px solid var(--card-border); 
    padding: 14px; 
    border-radius: 12px; 
    color: white; 
    font-family: inherit; 
    font-size: 1rem; 
}

input:focus { outline: none; border-color: var(--accent-blue); }

/* Checkbox-Grid Fix */
.checkbox-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 12px; 
    margin-top: 10px; 
}

.checkbox-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 0.85rem; 
    cursor: pointer; 
    color: var(--text-main);
}

.checkbox-item input { width: auto; cursor: pointer; }

/* 8. WHATSAPP & FOOTER */
.wa-float { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: var(--whatsapp-green); 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.4); 
    z-index: 1001; 
}

footer { 
    text-align: center; 
    padding: 80px 20px; 
    border-top: 1px solid var(--card-border); 
}

.footer-links { margin-bottom: 20px; }
.footer-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    margin: 0 15px; 
    font-size: 0.85rem; 
}

/* 9. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 30px; }
    .nav-links { display: none; } /* Einfachheitshalber auf Mobile aus */
    section { padding: 60px 20px; }
}

/* Plattenspieler Container */
.turntable {
    position: relative;
    width: 250px;
    height: 250px;
    background: #1a1d23;
    border-radius: 15px;
    border: 4px solid #2a2e35;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin: 20px auto;
}

/* Die Schallplatte */
.record {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #000 30%, #111 31%, #000 35%, #111 40%, #000 45%, #111 50%, #000 55%, #111 60%, #000 65%, #111 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-record 3s linear infinite;
    border: 2px solid #222;
}

/* Das Label in der Mitte */
.record::after {
    content: '';
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    border: 3px solid #000;
}

/* Das Loch in der Mitte */
.record::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
    z-index: 2;
}

/* Der Tonarm */
.tonearm {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 10px;
    background: #888;
    transform-origin: top right;
    transform: rotate(20deg);
    border-radius: 5px;
    z-index: 10;
    transition: 0.5s;
}

/* Animation für die Drehung */
@keyframes rotate-record {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Anpassung: etwas kleiner auf dem Handy */
@media (max-width: 480px) {
    .turntable { width: 180px; height: 180px; }
    .record { width: 140px; height: 140px; }
    .tonearm { width: 70px; }
}

/* --- ANIMATIONS-LOGIK --- */

/* Basis für Reveal beim Scrollen */
.reveal {
    opacity: 1; /* ÄNDERE DAS VON 0 AUF 1 */
    transform: translateY(0); /* ÄNDERE DAS VON 30px AUF 0 */
    transition: 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero-Text Animation beim Laden */
@keyframes heroFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 { animation: heroFade 1s ease forwards; }
.hero p { animation: heroFade 1s ease 0.3s forwards; opacity: 0; }
.hero .btn { animation: heroFade 1s ease 0.6s forwards; opacity: 0; }

/* Pulsieren für den WhatsApp Button & Inklusive Badge */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float { animation: pulse 2s infinite; }
.inc-badge { animation: pulse 3s infinite ease-in-out; }

/* Card Hover Upgrade */
.card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s;
}

.card:hover {
    transform: scale(1.03) translateY(-5px) !important;
    background: rgba(59, 130, 246, 0.08);
}

/* Background Glow Movement */
@keyframes glowMove {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-48%) translateY(2%); }
    100% { transform: translateX(-50%) translateY(0); }
}
.bg-glow { animation: glowMove 10s infinite alternate ease-in-out; }

/* --- CLEAN DESIGN (OHNE BLINKEN/TEXT-BEWEGUNG) --- */

/* Sanftes Erscheinen beim Scrollen (behalten wir, aber ohne Text-Wackeln) */
.reveal {
    opacity: 1; /* ÄNDERE DAS VON 0 AUF 1 */
    transform: translateY(0); /* ÄNDERE DAS VON 30px AUF 0 */
    transition: 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Statischer Inklusive-Badge (Kein Blinken mehr) */
.inc-badge {
    background: rgba(37, 211, 102, 0.15); /* Etwas kräftiger, da kein Pulsieren */
    color: #25d366;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Statischer WhatsApp Button (Kein Pulsieren) */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Card Hover (Dezent halten) */
.card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Entferne alle @keyframes heroFade und pulse Animationen aus deinem alten Code */

/* --- PREMIUM FORMULAR STYLING --- */

.form-container { 
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--card-border); 
    border-radius: 30px; 
    padding: 50px; 
    max-width: 800px; 
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-group { margin-bottom: 25px; }

label { 
    display: block; 
    margin-bottom: 10px; 
    font-size: 0.8rem; 
    font-weight: 600;
    color: var(--accent-blue); /* Blaue Akzente für die Labels */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Die Eingabefelder */
input, select, textarea { 
    width: 100%; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 16px; 
    border-radius: 15px; 
    color: #fff; 
    font-family: inherit; 
    font-size: 1rem; 
    transition: all 0.3s ease;
    appearance: none; /* Entfernt Standard-Browser-Styles */
}

/* Dark Mode für den Kalender-Picker erzwingen */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Macht das Kalender-Icon weiß */
    cursor: pointer;
}

input:focus, select:focus, textarea:focus { 
    outline: none; 
    border-color: var(--accent-blue); 
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Dropdown Styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

/* Styling für die Optionen im Dropdown (funktioniert am besten in Chrome/Edge) */
select option {
    background-color: #1a1d23;
    color: #fff;
}

.info-note {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-left: 3px solid var(--whatsapp-green);
    margin: 20px 0;
}

/* Der neue Senden-Button im Formular */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--whatsapp-green);
    border-radius: 15px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* --- PREMIUM FORMULAR REDESIGN --- */

/* Verhindert helle Standard-Browser-Elemente */
#anfrage {
    color-scheme: dark;
}

.form-container {
    background: #0f121a; /* Tieferes Dunkelblau/Schwarz */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: clamp(20px, 5vw, 50px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    margin-left: 4px;
}

/* Input Felder Styling */
input, select, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Spezial-Fix für das Datums-Icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.5);
    cursor: pointer;
}

/* Custom Select Pfeil */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--accent-blue);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

/* Info Note Kasten */
.info-note {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    color: #25d366;
    font-size: 0.9rem;
}

/* Der neue WhatsApp Button */
.btn-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Responsive Fix */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- HERO SECTION MIT HINTERGRUNDBILD --- */
.hero { 
    min-height: 90vh; /* Etwas höher für mehr Wirkung */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 0 20px; 
    
    /* HIER KOMMT DAS BILD REIN */
    background-image: linear-gradient(to bottom, rgba(7, 9, 15, 0.5) 0%, rgba(7, 9, 15, 1) 100%), url('../assets/hero-bg.jpg');
    background-size: cover; /* Bild füllt den gesamten Bereich */
    background-position: center; /* Bild ist zentriert */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax-Effekt beim Scrollen (optional) */
    
    position: relative;
    overflow: hidden;
}

/* Anpassung der Texte, damit sie auf dem Bild lesbar sind */
.hero h1 { 
    font-size: clamp(2.8rem, 7vw, 5rem); 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Subtiler Schatten für bessere Lesbarkeit */
}

.hero p { 
    font-size: 1.3rem; 
    color: #fff; /* Reinweiß auf dem Bild */
    max-width: 650px; 
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* badge und btn bleiben gleich */

/* --- HERO SECTION BACKGROUND UPDATE --- */

.hero { 
    min-height: 85vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 0 20px; 

    /* HIER DAS GENERIERTE BILD EINBINDEN */
    /* background-image: 
        linear-gradient(to bottom, rgba(7, 9, 15, 0.7), rgba(7, 9, 15, 0.95)), 
        url('../assets/hero-background.jpg'); */ /* WICHTIG: Pfad anpassen! */
    
    background-size: cover; /* Füllt den ganzen Bereich aus */
    background-position: center 30%; /* Zeigt den wichtigen Teil des Bildes */
    background-repeat: no-repeat;
    
    position: relative; /* Für den Badge */
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
}

/* Fallback: Falls das Bild nicht lädt, bleibt der blaue Glow */
.hero::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.15) 0%, rgba(7, 9, 15, 0) 60%);
    z-index: -1;
}

/* Sicherstellen, dass der Text im Vordergrund bleibt */
.hero > * {
    z-index: 1;
}

/* Den Badge im Hero-Bereich etwas anheben */
.hero .badge {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid var(--card-border);
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    
    /* Hier wird dein Bild geladen */
    background: 
        linear-gradient(rgba(7, 9, 15, 0.6), rgba(7, 9, 15, 0.9)), /* Dunkler Verlauf für Lesbarkeit */
        url('../assets/hero-bg.jpg'); /* Pfad zu deinem Bild */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Erzeugt einen coolen Parallax-Effekt beim Scrollen */
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

#vorteile {
    padding: 80px 0;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vorteil-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.vorteil-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.vorteil-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vorteil-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.vorteil-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 600px) {
    .vorteil-card {
        flex-direction: column;
        padding: 20px;
    }
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.kontakt-direkt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kontakt-card:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(10px);
}

.whatsapp-btn {
    width: 100%;
    background: #25D366 !important; /* WhatsApp Grün */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
}

@media (max-width: 850px) {
    .kontakt-wrapper { grid-template-columns: 1fr; }
}

.hero {
    position: relative;
    height: 80vh; /* Oder 100vh für volle Bildschirmhöhe */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Wichtig, damit das Video nicht übersteht */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Video füllt den Bereich aus ohne Verzerrung */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 9, 15, 0.4), rgba(7, 9, 15, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Text muss über Video und Overlay liegen */
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Macht die Schrift lesbar */
}

.hero-content h1 span {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Etwas dunklerer Verlauf von oben nach unten */
    background: linear-gradient(
        to bottom, 
        rgba(7, 9, 15, 0.5) 0%, 
        rgba(7, 9, 15, 0.8) 100%
    );
    z-index: 1;
}

.hero {
    position: relative;
    height: 80vh; /* Nicht auf 100% setzen, wenn es Probleme gibt */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Ganz nach hinten */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero {
    position: relative;
    height: 80vh; /* Begrenzt den Header auf 80% der Bildschirmhöhe */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Verhindert, dass das Video aus dem Header ragt */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0; /* Ganz nach hinten */
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dunkle Schicht für Lesbarkeit */
    z-index: 1; /* Über dem Video */
}

.hero-content {
    position: relative;
    z-index: 2; /* Über Video und Overlay */
    text-align: center;
}

/* Grundlegendes Layout-Fix */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Verhindert seitliches Wackeln */
    background-color: #07090f; /* Deine dunkle Hintergrundfarbe */
}

/* Der Hero-Bereich */
.hero {
    position: relative;
    height: 80vh; /* Nimmt 80% der Bildschirmhöhe ein */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Das Video muss absolut in den Hero-Container */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dunkles Overlay über dem Video für Lesbarkeit */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 9, 15, 0.4), rgba(7, 9, 15, 0.8));
    z-index: 1;
}

/* Der Text-Inhalt */
.hero-content {
    position: relative;
    z-index: 2; /* Liegt über dem Overlay */
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* Sektionen nach dem Header */
section {
    position: relative;
    padding: 80px 20px;
    z-index: 10; /* Stellt sicher, dass die Sektionen über dem bg-glow liegen */
    background: transparent;
}

/* Fix für das Grid, damit es sichtbar ist */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}