/* ==========================================================================
   INHALTSVERZEICHNIS
   1. Variablen (Farben & Settings)
   2. Reset & Basis-Styles
   3. Navigation
   4. Buttons & Interaktion
   5. Layout & Sektionen (Hero, Features, CTA, neue Services)
   6. Preis-Sektion (Box Design)
   7. FAQ & Akkordeon (ERWEITERT)
   8. Über mich & Kontakt
   9. Unterseiten (AGB, Impressum - Textformatierung)
   10. Footer (SAUBERE LÖSUNG)
   11. Floating Buttons (Kontakt an der Seite)
   12. Dark Mode (Farb-Anpassungen)
   13. Responsive (Mobile Ansicht)
   14. WhatsApp Datenschutz Modal
   ========================================================================== */

/* ========================================== */
/* 1. VARIABLEN (Light & Dark Mode Basis)    */
/* ========================================== */
:root {
    /* Hauptfarben */
    --primary: #016393;
    --secondary: #f14e17;
    
    /* Hintergrund & Text (Default: Light Mode) */
    --bg-body: #ffffff;
    --bg-light: #f5f5f5;
    --bg-box: #ffffff;
    
    --text-main: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --border-color: #e0e0e0;

    /* Komponenten */
    --nav-bg: var(--primary);
    --footer-bg: var(--primary);
    --hero-bg: linear-gradient(135deg, var(--primary) 0%, #014a6f 100%);
    
    /* Highlight-Boxen */
    --highlight-orange-bg: #fff3ef;
    --highlight-blue-bg: #f0f7fb;
    --highlight-yellow-bg: #fff3cd;

    /* Effekte */
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    
    color-scheme: light dark;
}

/* ========================================== */
/* 2. RESET & BASIS-STYLES                   */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================== */
/* 3. NAVIGATION                             */
/* ========================================== */
nav {
    background: var(--nav-bg);
    color: var(--text-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav .logo-container a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav .logo-container img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 4px;
    background: white;
}

nav .logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
}

nav .logo-text small {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

nav a:hover {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ========================================== */
/* 4. BUTTONS                                */
/* ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    min-width: 200px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(241,78,23,0.3);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241,78,23,0.4);
    background: #e64510;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: auto;
}

/* ========================================== */
/* 5. LAYOUT & SECTIONS                      */
/* ========================================== */
section {
    padding: 5rem 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-intro, 
.subtitle {
    display: block;
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 3rem auto !important;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.15rem;
}

/* Hero Section */
.hero {
    background: var(--hero-bg);
    color: white;
    padding: 6rem 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; animation: fadeInUp 1s ease; }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 2rem; animation: fadeInUp 1s ease 0.2s both; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.service-card .icon { font-size: 3rem; margin-bottom: 1.5rem; }
.service-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.5rem; }
.service-card .card-button { margin-top: auto; padding-top: 1rem; }

/* Before/After Section */
.before-after { background: var(--bg-light); padding: 4rem 20px; }
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.example-card { background: var(--bg-box); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.example-card:hover { transform: translateY(-5px); }
.example-header { background: var(--primary); color: white; padding: 1.5rem; text-align: center; }
.example-content { padding: 1.5rem; }
.problem, .solution { margin-bottom: 1.5rem; border-left: 3px solid; padding-left: 1rem; }
.problem { border-color: #ff6b6b; } .solution { border-color: #51cf66; }
.problem h4, .solution h4 { color: var(--primary); margin-bottom: 0.5rem; }

/* Features Section */
.features { background: var(--bg-light); }
.features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--bg-box); border-radius: 8px; box-shadow: var(--shadow); transition: var(--transition); }
.feature-item:hover { transform: translateY(-5px); }
.feature-item .check { color: var(--secondary); font-size: 1.5rem; font-weight: bold; }

/* Trust Badges */
.trust-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; padding: 3rem 2rem; background: var(--bg-box); border-radius: 15px; box-shadow: var(--shadow); border: 1px solid var(--border-color); }
.trust-badge { text-align: center; padding: 2rem 1.5rem; transition: var(--transition); border-radius: 10px; background: var(--bg-light); }
.trust-badge:hover { transform: translateY(-5px); }
.trust-badge .badge-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 1rem; display: block; }
.trust-badge strong { display: block; color: var(--primary); font-size: 1.2rem; margin-bottom: 1rem; }

/* Timeline */
#prozess { background: var(--bg-light); }
.timeline-container { position: relative; max-width: 900px; margin: 3rem auto 0; }
.timeline-container::before { content: ''; position: absolute; top: 25px; bottom: 25px; left: 50%; width: 4px; background-color: var(--border-color); transform: translateX(-50%); z-index: 1; }
.timeline-step { position: relative; width: 50%; padding: 1rem 0; margin-bottom: 2rem; z-index: 2; }
.timeline-step:nth-child(odd) { left: 0; padding-right: 45px; text-align: right; }
.timeline-step:nth-child(even) { left: 50%; padding-left: 45px; text-align: left; }
.step-number { position: absolute; top: 20px; width: 50px; height: 50px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; border: 4px solid var(--bg-box); box-shadow: var(--shadow); z-index: 10; }
.timeline-step:nth-child(odd) .step-number { right: -25px; transform: translateX(50%); }
.timeline-step:nth-child(even) .step-number { left: -25px; transform: translateX(-50%); }
.timeline-content { padding: 2rem; background: var(--bg-box); border-radius: 10px; box-shadow: var(--shadow); position: relative; transition: var(--transition); }
.timeline-step:hover .timeline-content { transform: translateY(-5px); }
.timeline-content h3 { color: var(--primary); margin-bottom: 1rem; }
.timeline-content::before { content: ''; position: absolute; top: 28px; width: 0; height: 0; border: 12px solid transparent; }
.timeline-step:nth-child(odd) .timeline-content::before { right: -24px; border-left-color: var(--bg-box); }
.timeline-step:nth-child(even) .timeline-content::before { left: -24px; border-right-color: var(--bg-box); }
.timeline-step:nth-child(6) .timeline-content { background: var(--highlight-orange-bg); border: 2px solid var(--secondary); }
.timeline-step:nth-child(6) .timeline-content::before { border-right-color: var(--highlight-orange-bg); }

/* CTA & Service Details */
.cta-section {
    background: var(--hero-bg);
    color: white;
    padding: 5rem 20px;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.cta-content { position: relative; z-index: 1; }

.cta-section .btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-section .btn-secondary:hover {
    background: #e64510;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: #e64510;
}

/* --- NEUER VERTIKALER LEISTUNGSBEREICH --- */
.services-header { text-align: center; max-width: 800px; margin: 0 auto 4rem auto; }
.services-header h2 { display: inline-block; }
.services-header p { font-size: 1.15rem; color: var(--text-light); line-height: 1.6; margin-top: 1rem; }

.services-list-vertical { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }

.service-box {
    background: var(--bg-box);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--primary);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.service-box:hover { transform: translateX(5px); }

.box-header {
    padding: 2rem 2.5rem 1rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--highlight-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.header-text h3 { margin: 0; font-size: 1.8rem; color: var(--primary); }
.header-text .sub-slogan { display: block; margin-top: 0.3rem; font-size: 1rem; color: var(--text-light); font-style: italic; }

.box-body { padding: 2rem 2.5rem; }

.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.6; }
.service-list li:last-child { margin-bottom: 0; }
.service-list li::before { content: '✓'; position: absolute; left: 0; top: 2px; color: var(--secondary); font-weight: bold; font-size: 1.3rem; }
.service-list li strong { color: var(--text-main); font-weight: 600; }

.box-footer {
    background: var(--highlight-orange-bg);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #d84315;
    border-top: 1px solid #ffe0b2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* ========================================== */
/* 6. PREIS-SEKTION (Box Design)             */
/* ========================================== */
.pricing-section { background: var(--bg-light); }

.pricing-card-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Basis-Design (Light Mode) */
.pricing-card-wide {
    background-color: var(--bg-box); /* Weiß im Light Mode */
    color: var(--text-main);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card-wide .card-header {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-wide h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card-wide .card-body {
    padding: 2.5rem;
}

.price-display { margin: 2rem 0; }

.price-display .amount {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--secondary); /* Orange */
    line-height: 1;
}

.price-display .unit {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--text-light);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem auto;
    max-width: 600px;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-main);
}

.pricing-features-list li { 
    display: flex; 
    gap: 12px; 
    align-items: flex-start; /* Haken oben bündig statt mittig */
    line-height: 1.5;        /* Bessere Lesbarkeit bei Zeilenumbruch */
    margin-bottom: 0.8rem;   /* Etwas mehr Luft zwischen den Punkten */
}

.pricing-features-list span { 
    color: var(--secondary); 
    font-weight: bold; 
    flex-shrink: 0;    /* Verhindert, dass der Haken zusammengedrückt wird */
    margin-top: 4px;   /* Schiebt den Haken optisch perfekt zur ersten Textzeile */
}

/* Zonen Box (Innerhalb der Karte) */
.zones-box {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.zones-box p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.zone-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    color: var(--text-main);
    
    /* NEU HINZUFÜGEN: */
    align-items: center; /* Stellt sicher, dass Preis und Text auf einer Höhe sind */
    gap: 15px; /* Erzwingt Mindestabstand zwischen Text und Preis */
}

.zone-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.zone-price {
    font-weight: bold;
    color: var(--primary); /* Im Darkmode passt sich das durch Variablen an */
    
    /* NEU: Verhindert den Umbruch im Preis */
    white-space: nowrap; 
    
    /* NEU: Verhindert, dass der Preis bei Platzmangel schrumpft */
    flex-shrink: 0; 
}

/* Button in Preisbox */
.btn-price-action {
    background: var(--secondary);
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.btn-price-action:hover { background: #e64510; transform: translateY(-2px); }

/* Info Boxen Unten (Hinweise) */
.pricing-info-cards { max-width: 800px; margin: 0 auto; }

.info-box-dark {
    background: var(--bg-box);
    color: var(--text-main);
    padding: 2rem;
    border-radius: 6px;
    border-left: 5px solid var(--secondary);
    text-align: left;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-box-dark p { margin-bottom: 1rem; line-height: 1.5; color: var(--text-main); }
.info-box-dark p:last-child { margin-bottom: 0; }

.text-highlight-gold { color: #ffd700; }
.text-highlight-blue { color: var(--primary); }
.text-highlight-pink { color: #d81b60; }


/* ========================================== */
/* 7. FAQ & AKKORDEON                        */
/* ========================================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-box); margin-bottom: 1rem; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.faq-question { background: var(--bg-light); padding: 1.5rem; cursor: pointer; font-weight: bold; color: var(--primary); display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { background: #e8e8e8; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--secondary); transition: var(--transition); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-item.active .faq-answer { padding: 1.5rem; max-height: 800px; }

/* NEUE FAQ DESIGNS (Clean) */
.faq-answer .faq-highlight { padding: 1rem 1.5rem; margin: 1.5rem 0; border-radius: 8px; border-left: 4px solid var(--secondary); background: var(--highlight-orange-bg); }
.faq-answer .faq-highlight-info { padding: 1rem 1.5rem; margin: 1.5rem 0; border-radius: 8px; border-left: 4px solid var(--primary); background: var(--highlight-blue-bg); }

/* Listen ohne Punkte (für Icons) */
.faq-list-clean {
    list-style: none !important; /* Override default styling */
    padding-left: 0 !important;
    margin-bottom: 1rem;
}

.faq-list-clean li {
    margin-bottom: 0.8rem;
    padding-left: 0 !important;
    position: static !important; /* Remove bullet positioning */
}
.faq-list-clean li::before { content: none !important; } /* Remove bullet character */

/* Gestrichelte Box für Vorbereitung */
.checklist-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
    margin: 1rem 0;
}

.checklist-box ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style: none !important; 
}
.checklist-box li { margin-bottom: 0.5rem; }

/* Preis-Formel (Anfahrt + Zeit) */
.pricing-formula {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 1.5rem 0;
    font-weight: bold;
    color: var(--primary);
    flex-wrap: wrap;
}

.formula-box {
    text-align: center;
    flex: 1;
    min-width: 120px;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.formula-box span {
    display: block;
    font-size: 0.85rem;
    font-weight: normal;
    color: var(--text-light);
    margin-top: 5px;
}

.formula-plus {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Erste-Hilfe Box (Nachbetreuung) */
.first-aid-box {
    margin: 1rem 0;
    border-left: 4px solid var(--secondary);
    padding-left: 1rem;
    background: linear-gradient(to right, var(--highlight-orange-bg), transparent);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Vergleichs-Grid (Was ich tue / nicht tue) */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.comparison-box {
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.comparison-box.bad {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.comparison-box.good {
    background: rgba(0, 128, 0, 0.05);
    border: 1px solid rgba(0, 128, 0, 0.1);
}

.comparison-box ul {
    list-style: none !important; 
    padding: 0 !important; 
    margin-top: 0.5rem !important;
}
.comparison-box li { padding-left: 0 !important; }
.comparison-box li::before { content: none !important; }

/* Mobile Anpassung für das Grid */
@media (max-width: 600px) {
    .comparison-grid {
        grid-template-columns: 1fr; /* Untereinander auf Handy */
    }
}


/* ========================================== */
/* 8. ÜBER MICH & KONTAKT                    */
/* ========================================== */
#about { background: var(--bg-light); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.profile-image { width: 220px; height: 220px; border-radius: 50%; margin-bottom: 1.5rem; border: 4px solid var(--secondary); box-shadow: var(--shadow); object-fit: cover; }
.about-features { text-align: left; margin-top: 2rem; background: var(--bg-box); padding: 2rem; border-radius: 8px; box-shadow: var(--shadow); }
.about-features h3 { color: var(--primary); margin-bottom: 1.5rem; text-align: center; }
.about-features li { margin: 1rem 0; padding-left: 1rem; border-left: 3px solid var(--secondary); list-style: none; }

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.contact-options, .contact-info { background: var(--bg-box); padding: 2.5rem; border-radius: 10px; box-shadow: var(--shadow); }
.contact-options { background: var(--bg-light); display: flex; flex-direction: column; min-height: 100%; }
.contact-options h3, .contact-info h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.8rem; }
.contact-btn { display: flex; align-items: center; justify-content: center; gap: 1rem; background: var(--primary); color: white; padding: 1.2rem 2rem; border-radius: 8px; text-decoration: none; font-weight: bold; transition: var(--transition); margin-bottom: 1rem; cursor: pointer; white-space: nowrap; }
.contact-btn:hover { background: #014a6f; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.contact-btn.whatsapp { background: #25D366; } .contact-btn.whatsapp:hover { background: #1da851; }
.contact-btn.email { background: var(--secondary); } .contact-btn.email:hover { background: #e64510; }

.contact-options-highlight-box { background: var(--highlight-orange-bg); padding: 1.5rem; border-radius: 8px; margin-top: 2rem; border: 2px solid var(--secondary); }
.contact-options-highlight-box h4 { color: var(--primary); text-align: center; margin-bottom: 1rem; }

.highlight-note { margin-top: 1rem; font-size: 0.95rem; font-style: italic; text-align: center; color: var(--text-main); }
.availability-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; margin: 1rem 0; font-size: 1.05rem; }
.availability-table tr { transition: transform 0.2s ease; }
.availability-table th { text-align: left; color: var(--primary); font-weight: 700; padding: 10px 15px; background: rgba(1, 99, 147, 0.05); border-radius: 6px 0 0 6px; width: 35%; white-space: nowrap; }
.availability-table td { text-align: right; color: var(--text-main); padding: 10px 15px; background: rgba(255,255,255, 0.6); border-radius: 0 6px 6px 0; font-variant-numeric: tabular-nums; white-space: nowrap; }
.payment-info { background: var(--bg-light); padding: 1.5rem; border-radius: 5px; margin-top: 2rem; border-left: 3px solid var(--secondary); }

.contact-trust-box { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.contact-trust-box h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.2rem; }
.process-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.process-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; font-size: 1rem; line-height: 1.5; color: var(--text-main); }
.process-list .process-icon { font-size: 1.2rem; background: var(--highlight-blue-bg); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }


/* ========================================== */
/* 9. UNTERSEITEN (AGB, Impressum)           */
/* ========================================== */
.page-header { background: var(--hero-bg); color: white; padding: 3rem 20px; text-align: center; transition: var(--transition); }
.page-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.content { max-width: 900px; margin: 3rem auto; padding: 0 20px; }

/* Container für Text-Seiten */
.agb-container, .datenschutz-container, .impressum-container, main { 
    background-color: var(--bg-box); 
    padding: 2rem 3rem; 
    border-radius: 10px; 
    box-shadow: var(--shadow); 
    margin: 2rem auto; 
    max-width: 900px; 
    color: var(--text-main);
}

/* Text-Formatierung auf Unterseiten */
main h1, .agb-container h1 { color: var(--primary); margin-bottom: 2rem; text-align: center; font-size: 2.2rem; }
main h2, .agb-container h2 { color: var(--primary); font-size: 1.5rem; margin: 2.5rem 0 1rem 0; padding-bottom: 0.5rem; border-bottom: 3px solid var(--secondary); }
main h3, .agb-container h3 { color: var(--primary); font-size: 1.2rem; margin: 1.5rem 0 0.8rem 0; font-weight: 700; }
main p, .agb-container p { margin-bottom: 1rem; line-height: 1.6; text-align: left; }
main ul, .agb-container ul { margin: 1rem 0 1.5rem 2rem; list-style-type: disc; }
main li, .agb-container li { margin-bottom: 0.5rem; padding-left: 5px; }
main a, .agb-container a { color: var(--primary); text-decoration: none; font-weight: 600; }
main a:hover, .agb-container a:hover { color: var(--secondary); text-decoration: underline; }


/* ========================================== */
/* 10. FOOTER (SAUBERE LÖSUNG)               */
/* ========================================== */
footer { background: var(--footer-bg); color: var(--text-white); text-align: center; padding: 3rem 20px; margin-top: 4rem; }
footer .footer-content { max-width: 1200px; margin: 0 auto; }
footer .footer-cta { background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 10px; margin-bottom: 2rem; box-shadow: var(--shadow); }
footer .footer-cta h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.footer-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--secondary); color: white; padding: 1.1rem 2.2rem; border-radius: 8px; text-decoration: none; font-weight: bold; transition: var(--transition); min-width: 200px; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(241,78,23,0.3); cursor: pointer; }
.footer-btn:hover { transform: translateY(-3px); background: #e64510; }
.footer-btn.whatsapp { background: #25D366; } .footer-btn.whatsapp:hover { background: #1da851; }

/* === FOOTER LINKS === */

/* 1. Grundzustand: Orange */
footer .footer-links a {
    color: var(--secondary); /* Dein Orange (#f14e17) */
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.2s ease; /* Sanfter Übergang beim Hover */
}

/* 2. Besuchter Zustand: Bleibt ZWINGEND Orange */
/* Dies verhindert das Standard-Lila des Browsers */
footer .footer-links a:visited {
    color: var(--secondary);
}

/* 3. Hover & Active: Weiß für visuelles Feedback */
footer .footer-links a:hover,
footer .footer-links a:active {
    color: #ffffff;
    text-decoration: underline;
}

.kleinunternehmer { margin-top: 1rem; font-size: 0.9rem; opacity: 0.9; }


/* ========================================== */
/* 11. FLOATING BUTTONS                      */
/* ========================================== */
.float-contact { 
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    z-index: 999; 
    /* Wichtig für das sanfte Hochschieben durch JS: */
    transition: bottom 0.1s linear; 
}

.float-btn { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
    transition: transform 0.3s ease, background-color 0.3s ease; 
    cursor: pointer; 
    
    /* Animation Einstellungen für Synchronität */
    animation: pulse 2s infinite;
    animation-delay: 0s; /* Alle starten gleichzeitig */
}

.float-btn:hover { 
    /* Wir skalieren nur, stoppen aber NICHT mehr das Pulsieren */
    transform: translateY(-3px) scale(1.1); 
    /* animation: none;  <-- DIESE ZEILE WURDE ENTFERNT */
}

.float-btn.email { background: var(--secondary); color: white; font-size: 1.8rem; }
.float-btn.phone { background: #0088cc; }
.float-btn.whatsapp { background: #25D366; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 78, 23, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(241, 78, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 78, 23, 0); }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ========================================== */
/* 12. DARK MODE (Anpassungen & Overrides)   */
/* ========================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-body: #222222;
        --bg-light: #333333;
        --bg-box: #2c2c2c;
        --text-main: #f5f5f5;
        --text-light: #aaaaaa;
        --border-color: #444444;
        --nav-bg: #2c2c2c;
        --hero-bg: #2c2c2c;
        --footer-bg: #1a1a1a;
        --highlight-orange-bg: #3a2f2c;
        --highlight-blue-bg: #304a5c;
        --highlight-yellow-bg: #4d4323;
    }
    .section-intro { color: #e0e0e0 !important; }
    nav { box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    nav .mobile-menu-toggle { color: #f0f0f0 !important; }
    nav .logo-container img { background: #f0f0f0; }
    @media (max-width: 768px) { nav ul { background: #222 !important; } nav ul a { color: #f0f0f0 !important; } }
    
    section, .features, #prozess, .pricing-section, #about, .before-after { background: var(--bg-body) !important; }
    section h2 { color: #f0f0f0; }
    
    .example-header { background: #1a1a1a; }
    .faq-question:hover { background: #444; }
    .cta-section .btn-secondary { background: var(--secondary); color: white; border-color: var(--secondary); }
    .trust-badge strong, .problem h4, .solution h4, .pricing-features-list span { color: #f0f0f0; }
    .service-detail .for-whom, .faq-answer .faq-highlight { color: #f0f0f0; }
    .availability-table th { background: rgba(255,255,255,0.05); color: #fff; }
    .availability-table td { background: rgba(255,255,255,0.02); color: #ddd; }
    .timeline-step:nth-child(6) .timeline-content::before { border-right-color: #3a2f2c; }
    .contact-options, .contact-info, main, .agb-container { background-color: var(--bg-box); }
    
    /* === NEUE SERVICE BOXEN IM DARKMODE === */
    .service-box { background-color: #2c2c2c; border-left-color: var(--secondary); }
    .box-header { border-bottom-color: #444; }
    .header-text h3 { color: #fff; }
    .header-text .sub-slogan { color: #aaa; }
    .service-list li strong { color: #fff; }
    .box-footer { background-color: #3a2f2c; color: #ffab91; border-top-color: #444; }

    /* === PREIS KARTE DARK MODE OVERRIDE === */
    .pricing-card-wide { background-color: #222222; border-color: #444; color: #fff; }
    .pricing-card-wide .card-header { background-color: #1a1a1a; border-color: #444; }
    .pricing-card-wide h3 { color: #fff; }
    .zones-box { background: rgba(255,255,255,0.05); border-color: #444; }
    .zones-box p { color: #aaa; }
    .zone-row { color: #fff; border-color: #444; }
    .zone-price { color: #29b6f6; } 

    /* Info Box Dark Mode */
    .info-box-dark { background: #332f2e; color: #fff; border-color: #444; }
    .info-box-dark p { color: #e0e0e0; }
    .text-highlight-gold { color: #ffd700; }
    .text-highlight-blue { color: #29b6f6; }
}


/* ========================================== */
/* 13. RESPONSIVE (Mobile Ansicht)           */
/* ========================================== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav .logo-container img { height: 40px; }
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg); padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.2); gap: 1rem; }
    nav ul.active { display: flex; }
    .mobile-menu-toggle { display: block; }

    /* In den Mobile-Bereich (ganz unten in style.css) einfügen: */

    .availability-table th, 
    .availability-table td {
    padding: 8px 6px !important; /* Weniger Abstand an den Seiten schafft Platz */
    font-size: 0.95rem; /* Schrift minimal kleiner, falls nötig */
    }
    
    .contact-container, .before-after-grid { grid-template-columns: 1fr; }
    
    .timeline-container::before { left: 25px !important; transform: translateX(0) !important; }
    .timeline-step, .timeline-step:nth-child(even) { width: 100% !important; left: 0 !important; padding-left: 70px !important; padding-right: 10px !important; text-align: left !important; }
    .timeline-step .step-number, .timeline-step:nth-child(odd) .step-number { left: 0 !important; right: auto !important; transform: translateX(0) !important; }
    .timeline-content::before, .timeline-step:nth-child(odd) .timeline-content::before { left: -24px !important; right: auto !important; border-right-color: var(--bg-box) !important; border-left-color: transparent !important; }
    .timeline-step:nth-child(6) .timeline-content::before { border-right-color: var(--highlight-orange-bg) !important; }
    
    /* Unterseiten Mobile Styles */
    .agb-container, main { padding: 1.5rem; margin: 1rem; }
    main h2, .agb-container h2 { font-size: 1.3rem; margin-top: 2rem; }
    main ul, .agb-container ul { margin-left: 1rem; }
    
    /* Preis-Karte Mobile */
    .pricing-card-wide { width: 100%; border-radius: 10px; margin: 0 1rem; width: auto;}
    .pricing-card-wide .card-body { padding: 1.5rem; }
    .price-display .amount { font-size: 2.8rem; }

    /* Neue Services Mobile */
    .box-header { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .box-body, .box-footer { padding: 1.5rem; }
    .service-box:hover { transform: none; }

    /* Lange Links auf dem Handy zwingen, umzubrechen */
    main a, .agb-container a, .content a {
    word-break: break-all; /* Zwingt den Browser, den Link an jeder beliebigen Stelle zu trennen */
    hyphens: auto;
    }

    .page-header h1 {
    word-break: break-word;  /* Erlaubt Umbruch mitten im Wort */
    hyphens: auto;           /* Versucht Silbentrennung */
    font-size: 1.8rem;       /* Schrift etwas kleiner (vorher riesig) */
    padding: 0 10px;         /* Abstand zum Rand */
    line-height: 1.2;
    }

    /* Mobile Anpassung für Buttons */
    .contact-btn {
    padding: 1.2rem 1rem !important; /* Weniger Abstand seitlich, damit der Text Platz hat */
    font-size: 1rem; /* Schrift minimal kleiner, falls es immer noch eng wird */
    width: 100%; /* Nutzt die volle Breite */
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn { width: 100%; max-width: 280px; }
    .trust-badges { flex-direction: column; }
}

/* ========================================== */
/* 14. WHATSAPP DATENSCHUTZ MODAL            */
/* ========================================== */

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.modal-box {
    background: var(--bg-box);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-top: 6px solid #25D366; /* WhatsApp Grün */
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.modal-box h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Dark Mode Anpassung für das Modal */
@media (prefers-color-scheme: dark) {
    .modal-box {
        background: #2c2c2c;
        color: #f0f0f0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}