/* Globale Einstellungen */
:root {
    --primary-color: #d6ae5a;
    --primary-dark: #b89140;
    --accent-color: #d6ae5a;
    --text-color: #e0e0e0;
    --light-bg: #151515;
    --white: #ffffff;
    --dark-bg: #0d0d0d;
    --darker-bg: #111111;
    --gold: #d4af37;
    --gold-light: #e8c968;
    --gold-dark: #aa8922;
    --dark-surface: #151515;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

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

body {
    background-color: var(--dark-bg);
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Header Style --- */

header {
    background-color: rgba(10, 10, 10, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.brand-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.logo-link img {
    max-height: 55px;
    width: auto;
    display: block;
}

/* Die 3 Punkte darunter müssen jetzt auch kleiner sein, damit es passt */
.header-subtext {
    color: var(--white);
    font-size: 0.6rem;      /* Kleiner (vorher 0.75rem) */
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 3px;        /* Weniger Abstand zum Logo */
    opacity: 0.9;
}

/* Navigation Links jetzt Weiß */
nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    display: inline-block;
    color: #888888;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #ffffff;
    border-color: rgba(212,175,55,0.25);
    background: rgba(212,175,55,0.06);
}

/* Kontakt-Button in der Navi hervorheben (optional, sieht aber gut aus) */
.btn-nav-contact {
    border: 1px solid var(--white);
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-nav-contact:hover {
    background-color: var(--darker-bg);
    color: var(--primary-color) !important; /* Schrift wird lila beim Hover */
}

/* Anpassung für Handys */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding-bottom: 10px;
    }
    
    .brand-wrapper {
        flex-direction: row;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
}

/* Hero Section */
.hero {
    position: relative; /* Wichtig, damit Video und Text darin positioniert werden können */
    height: 80vh;       /* Wir machen es etwas höher für besseren Effekt (vorher 60vh) */
    width: 100%;
    overflow: hidden;   /* Schneidet alles ab, was übersteht */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fallback-Farbe, falls Video nicht lädt */
}

/* Das Video Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* WICHTIG: Video füllt den Bereich ohne Verzerrung */
    z-index: 1;        /* Liegt ganz unten */
    opacity: 0.6;      /* Video leicht transparent machen, damit Text lesbar bleibt */
}

/* Die dunkle Ebene über dem Video */
/* --- Korrigiertes Overlay (Deckt alles ab) --- */
.hero-overlay {
    position: absolute; /* HIER GEÄNDERT: Vorher relative */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Der dunkle Schleier */
    background: transparent; 
    /* Damit der Text darin trotzdem mittig bleibt: */
    display: flex;
    flex-direction: column; /* Wichtig, damit Text und Pfeile untereinander sind */
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Textschatten für Lesbarkeit auf Video */
}

/* Falls du es noch nicht hast: */
.hero h2, .hero p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Sections Allgemein */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro */
.intro {
    text-align: center;
    max-width: 800px;
}

/* Services (Leistungen) */
.services {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: #141414;
    padding: 36px 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-dark));
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    margin-top: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.vehicle-types {
    text-align: center;
    margin-top: 48px;
    padding: 20px 30px;
    background: #141414;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: #a0a0a0;
    font-size: 0.95rem;
}

.vehicle-types strong {
    color: var(--white);
    display: block;
    margin-bottom: 6px;
}

/* Process */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-item h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 10px;
}

/* Benefits (Vorteile) */
.benefits {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.benefit-box {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.benefit-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Partner */
.partner {
    text-align: center;
}

/* Kontaktformular */
.contact-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro p {
    color: #a0a0a0 !important;
    text-align: center;
}

.contact-form {
    background: #141414;
    padding: 44px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #d0d0d0;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group select option {
    background-color: #1e1e1e;
    color: #f0f0f0;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.btn.btn-primary.full-width,
button.btn.btn-primary {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    color: #0b0b0b;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

button.btn.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0 0 0;
}

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

.footer-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-info a {
    color: var(--white);
    text-decoration: underline;
}

.map-placeholder {
    background-color: #1a1a1a;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
    border: 1px solid #333;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #111;
    font-size: 0.9rem;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Neues Intro Modul Design --- */

.intro-module {
    padding: 60px 0;
    background-color: var(--dark-bg); /* Ganz leichtes Grau, damit sich die weiße Box abhebt */
    display: flex;
    justify-content: center;
}

.highlight-card {
    background-color: var(--darker-bg);
    border-radius: 8px;
    /* Ein eleganter, lila angehauchter Schatten lässt die Box "schweben" */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15); 
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    /* Der linke Rand in deiner Logo-Farbe macht es zum Hingucker */
    border-left: 8px solid var(--primary-color);
}

.card-content {
    padding: 40px 50px;
    text-align: center;
}

.main-question {
    font-size: 2.2rem;
    color: var(--primary-color); /* Lila Überschrift */
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.sub-question {
    font-size: 1.4rem;
    color: #c0c0c0;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Eine kleine Zierlinie zur Trennung */
.separator {
    height: 3px;
    width: 60px;
    background-color: var(--accent-color); /* Orange als Kontrast */
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.intro-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Anpassung für Handys */
@media (max-width: 768px) {
    .card-content {
        padding: 30px 20px;
    }
    .main-question {
        font-size: 1.6rem;
    }
    .sub-question {
        font-size: 1.1rem;
    }
}
/* --- Prozess Modul Design (Zuständigkeiten) --- */

.process-module-elegant {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: var(--darker-bg);
    border-radius: 8px;
    /* Sanfter Schatten rundherum */
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    padding: 40px 30px 30px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #333;
    /* Ein farbiger Akzent am unteren Rand */
    border-bottom: 5px solid var(--primary-color); 
}

/* Hover-Effekt: Karte schwebt leicht nach oben */
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* Die Nummerierung oben (der Kreis) */
.step-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    border: 3px solid var(--white);
    transform-style: preserve-3d;
    animation: none;
    z-index: 1;
}

.process-content h3 {
    color: #f0f0f0;
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Kleine Trennlinie im Design */
.divider-small {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color); /* Orange */
    margin: 0 auto 15px auto;
}

.process-content p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
    .process-module-elegant {
        padding: 60px 0;
    }
    .process-grid {
        gap: 50px; /* Mehr Platz zwischen den Karten wegen der überstehenden Kreise */
    }
}
/* --- Standorte Sektion (Deutschlandkarte) --- */

.locations-section {
    background-color: #0b0b0b;
    padding: 80px 0;
}

.locations-intro {
    text-align: center;
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.location-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.location-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.location-card > p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.location-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.location-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Karriere / Partnerprogramm Banner --- */

.career-cta {
    /* Ein schöner Verlauf von deinem Lila zu einem etwas dunkleren Ton */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden; /* Damit die Deko-Kreise nicht über den Rand ragen */
}

.career-content {
    position: relative;
    z-index: 2; /* Text muss über den Deko-Kreisen liegen */
    max-width: 800px;
    margin: 0 auto;
}

/* Kleines Label über der Überschrift */
.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.career-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.career-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Der weiße Button */
.btn-white-shadow {
    background-color: var(--darker-bg);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px; /* Pillen-Form */
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Kräftiger Schatten */
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white-shadow:hover {
    transform: translateY(-5px); /* Button schwebt hoch */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background-color: var(--accent-color); /* Wird Orange beim Hover */
    color: var(--white);
}

/* Dekorative Hintergrund-Kreise für den "Premium"-Look */
.bg-circle-1, .bg-circle-2 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05); /* Sehr transparentes Weiß */
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.bg-circle-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
    .career-content h2 {
        font-size: 2rem;
    }
    .career-cta {
        padding: 60px 0;
    }
}
/* --- Subpage Header (für Unterseiten wie Kontakt) --- */

.page-header {
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
}
/* --- Akkordeon / Dropdown Design --- */

.services-accordion-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    min-height: 60vh; /* Damit die Seite nicht zu leer wirkt */
}

.accordion {
    max-width: 800px;
    margin: 0 auto; /* Zentriert die Liste */
}

.accordion-item {
    margin-bottom: 15px; /* Abstand zwischen den Balken */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Der Button (Die Leiste, die man klickt) */
.accordion-btn {
    background-color: var(--darker-bg);
    color: #d0d0d0;
    cursor: pointer;
    padding: 20px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.4s;
    display: flex;
    justify-content: space-between; /* Text links, Icon rechts */
    align-items: center;
    border-left: 5px solid transparent; /* Platzhalter für farbigen Rand */
}

.accordion-btn:hover {
    background-color: #2a2a2a;
    color: var(--primary-color);
}

/* Wenn es aktiv/offen ist */
.accordion-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-left: 5px solid var(--accent-color); /* Oranger Akzent links */
}

/* Das Icon (+) rechts */
.icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Icon drehen wenn aktiv (wird zum X) */
.accordion-btn.active .icon {
    transform: rotate(45deg); 
}

/* Der Inhalt (versteckt) */
.accordion-content {
    background-color: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-bottom: 1px solid #2a2a2a;
}

.content-inner {
    padding: 30px;
    line-height: 1.6;
    color: #c0c0c0;
}

.content-inner ul {
    margin-top: 10px;
    padding-left: 20px;
}

.content-inner li {
    margin-bottom: 5px;
}

/* --- Design für Detailseiten (Unfallgutachten etc.) --- */

.detail-content {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.text-block-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block-centered p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.text-block-centered strong {
    color: #e0e0e0;
}

.lead-text {
    font-size: 1.15rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bg-light {
    background-color: #0e0e0e;
}

.padding-80 {
    padding: 80px 0;
}

.bg-light .section-title + p,
.padding-80 p[style] {
    color: #7a7a7a !important;
}

/* --- Task Cards (Unfallgutachten / Kaufberatung) --- */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.task-card {
    background: #141414;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.12);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.task-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.2);
}

.task-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.task-card p {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- Timeline / Ablauf --- */
.process-timeline-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(212,175,55,0.1));
    top: 0;
    bottom: 0;
    left: 30px;
    margin-left: -1px;
    z-index: 0;
}

.timeline-item {
    padding: 10px 40px 40px 80px;
    position: relative;
    z-index: 5;
}


.timeline-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .timeline-item { padding-left: 70px; }
}

/* --- Info-Box Highlight (Wertgutachten) --- */
.info-box-highlight {
    background-color: rgba(212,175,55,0.06);
    border-left: 4px solid var(--primary-color);
    padding: 24px 30px;
    margin-top: 32px;
    text-align: left;
    border-radius: 0 8px 8px 0;
}

.info-box-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-box-highlight p {
    color: #a0a0a0;
    line-height: 1.7;
}

.info-box-highlight strong {
    color: #e0e0e0;
}

/* --- Value Cards (Wertgutachten) --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    background: #141414;
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.12);
    border-top: 3px solid var(--primary-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.2);
}

.check-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,175,55,0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 56px;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(212,175,55,0.25);
}

.value-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.value-card p {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- Network Box (Kaufberatung) --- */
.network-highlight {
    padding: 60px 0;
    background-color: #0e0e0e;
}

.network-box {
    background: #141414;
    border: 1px solid rgba(212,175,55,0.15);
    border-left: 5px solid var(--primary-color);
    border-radius: 12px;
    padding: 44px 40px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.network-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.network-text h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.network-text p {
    color: #7a7a7a;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.97rem;
}

.network-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .network-box {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }
}

/* --- Use Case Grid (Oldtimer) --- */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.use-case-item {
    background: #141414;
    padding: 22px 24px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(212,175,55,0.1);
    border-left: 3px solid var(--primary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.2);
}

.check-mark {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.use-case-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.use-case-text p {
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.6;
    margin: 0;
}

/* --- Advice Box (Oldtimer) --- */
.advice-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.advice-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #141414;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 48px 44px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.advice-box h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.advice-box p {
    color: #7a7a7a;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 0.97rem;
}

.advice-box strong {
    color: #d0d0d0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #111 0%, #1a1500 50%, #111 100%);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.07), transparent);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #7a7a7a;
    margin-bottom: 36px;
    position: relative;
}

.cta-banner .btn-white-shadow {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #0b0b0b;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}

.cta-banner .btn-white-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212,175,55,0.4);
}
/* --- Partnerprogramm Styles --- */

/* Box für "Ihre Freiheit" (Haupt/Nebenberuflich) */
.flexibility-box {
    background-color: #141414;
    border: 1px solid rgba(212,175,55,0.15);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-top: 30px;
    font-style: italic;
    border-radius: 8px;
}

.flexibility-box h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Schulungs-Sektion */
.training-section {
    padding: 80px 0;
    background-color: #0e0e0e;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.training-list {
    list-style: none;
    margin-top: 20px;
}

.training-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

/* Kleiner Punkt vor der Liste */
.training-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Das Startpaket (Karte rechts) */
.starter-kit-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    text-align: center;
}

.starter-kit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color); /* Orange Überschrift */
}

.kit-items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kit-item {
    background-color: rgba(255,255,255,0.1); /* Transparentes Weiß */
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.kit-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Bewerbungsformular Bereich */
.application-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.form-wrapper-wide {
    max-width: 800px;
    margin: 0 auto;
    background: #141414;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Mobil-Anpassung */
@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: 1fr; /* Untereinander */
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr; /* Formularfelder untereinander */
    }
    
    .starter-kit-card {
        margin-top: 30px;
    }
}
/* --- Über uns Styles --- */

/* Die 3 Werte-Boxen (Professionalität etc.) */
.values-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-box {
    text-align: center;
    padding: 36px 28px;
    background: #141414;
    border: 1px solid rgba(212,175,55,0.12);
    border-top: 3px solid var(--primary-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.25);
}

.value-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}

.value-box h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-box p {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Expertise Sektion */
.expertise-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.expertise-text p {
    color: #a0a0a0;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.expertise-text strong {
    color: #e0e0e0;
}

.expertise-list {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
    font-weight: 600;
    color: #d0d0d0;
}

.expertise-list li {
    padding: 6px 0;
}

.expertise-list li::before {
    content: '✓ ';
    color: var(--primary-color);
    margin-right: 8px;
}

/* Zitat Box */
.quote-box {
    background: #141414;
    border: 1px solid rgba(212,175,55,0.2);
    border-left: 4px solid var(--primary-color);
    padding: 40px 36px;
    border-radius: 0 12px 12px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    font-family: serif;
    line-height: 1.6;
    color: #d0d0d0;
}

.quote-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    margin: 20px auto;
    border-radius: 2px;
}

.quote-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .expertise-layout {
        grid-template-columns: 1fr;
    }
    .quote-box {
        margin-top: 30px;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: 12px;
    }
}
/* --- Google Maps im Footer --- */

.footer-map {
    height: 300px; /* Feste Höhe für die Karte */
    width: 100%;
    border-radius: 10px; /* Schöne abgerundete Ecken */
    overflow: hidden;    /* Wichtig, damit die Ecken der Karte auch rund bleiben */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Ein Schatten für Tiefe */
    border: 2px solid #444; /* Dunkler Rahmen passend zum Footer */
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block; /* Entfernt störende Lücken unten */
}

/* Mobil-Optimierung */
@media (max-width: 768px) {
    .footer-map {
        height: 250px; /* Etwas kleiner auf dem Handy */
        margin-top: 20px;
    }
}
/* --- Impressum Styles --- */

.impressum-content {
    padding: 60px 0;
    min-height: 50vh;
}

.legal-text-block {
    max-width: 800px;
    margin: 0 auto;
    background: #141414;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.12);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.legal-text-block h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.legal-text-block h2:first-child {
    margin-top: 0;
}

.legal-text-block h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #c0c0c0;
}

.legal-text-block p {
    margin-bottom: 10px;
    color: #b0b0b0;
    line-height: 1.6;
}

.legal-text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text-block a:hover {
    color: var(--gold-light, #e8c968);
}

.legal-text-block hr {
    border: none;
    border-top: 1px solid rgba(212,175,55,0.15);
    margin: 24px 0;
}

/* --- Footer Link Anpassung --- */

.footer-separator {
    margin: 0 10px;
    color: #b0b0b0;
}

.footer-link {
    color: #ccc; /* Gleiche Farbe wie der Rest des Footers */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}
/* --- Dropdown Menü im Header --- */

/* Der Container für den Menüpunkt */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Das versteckte Menü (weiße Box) */
.dropdown-content {
    display: none; /* Standardmäßig unsichtbar */
    position: absolute;
    background-color: #ffffff;
    min-width: 220px; /* Breite des Dropdowns */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Schatten für 3D-Effekt */
    z-index: 1001; /* Muss höher sein als der Header selbst */
    border-top: 4px solid var(--accent-color); /* Oranger Strich oben als Akzent */
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    top: 100%; /* Positioniert es direkt unter dem Header */
    left: 0;
}

/* Die Links im Dropdown */
.dropdown-content a {
    color: #333 !important; /* WICHTIG: Text muss dunkel sein (nicht weiß wie im Header) */
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    text-transform: none; /* Keine Großbuchstaben erzwingen */
    letter-spacing: normal;
    border-bottom: 1px solid #f5f5f5; /* Zarte Trennlinie */
}

/* Letzter Link ohne Linie unten */
.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover-Effekt für die Links im Dropdown */
.dropdown-content a:hover {
    background-color: var(--dark-bg);
    color: var(--primary-color) !important; /* Wird Lila beim Drüberfahren */
    padding-left: 25px; /* Kleiner Schiebe-Effekt nach rechts */
    transition: all 0.2s;
}

/* Der Zaubertrick: Menü anzeigen beim Hover über LI */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Kleines Pfeil-Symbol anpassen */
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Mobile Dropdown FIX (Endgültig) --- */
@media (max-width: 768px) {

    /* 1. Container & Button */
    .dropdown {
        width: 100%;
        text-align: center;
        display: block;
        margin: 5px 0;
    }

    .dropbtn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    /* 2. Der Pfeil */
    .dropbtn::after {
        content: '▼'; 
        font-size: 0.7rem;
        margin-left: 10px;
        transition: transform 0.3s ease;
        color: var(--white); 
    }

    /* Wenn offen (Klasse .open): Pfeil drehen */
    .dropbtn.open::after {
        transform: rotate(180deg);
        color: var(--accent-color);
    }

    /* 3. Das Menü */
    .dropdown-content {
        position: static;
        display: none; /* Standardmäßig zu */
        width: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        margin-top: 5px;
        border-radius: 4px;
    }

    /* 4. WICHTIG: CSS Hover auf Handy deaktivieren! 
       Damit es nicht offen bleibt, nur weil man es angetippt hat. */
    .dropdown:hover .dropdown-content {
        display: none; 
    }

    /* 5. Nur anzeigen, wenn JS die Klasse .show setzt */
    .dropdown-content.show {
        display: block !important;
    }

    /* Links Styling */
    .dropdown-content a {
        color: #ffffff !important;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-decoration: none;
    }
}
/* --- Lila Rauch-Effekt hinter den Zahlen --- */

/* 1. Die Animation (Rauch/Welle) definieren */
@keyframes gold-smoke {
    0% {
        transform: scale(1);
        opacity: 0.8;
        /* Harter, lila Schatten am Anfang */
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); 
    }
    70% {
        /* Kreis wird deutlich größer */
        transform: scale(1.6); 
        /* Wird transparenter */
        opacity: 0;  
        /* Schatten wird weich und verläuft wie Rauch */
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0); 
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


/* 3. Der Rauch-Effekt (Das Element hinter der Zahl) */
.step-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color); /* Gleiche Farbe wie der Kreis */
    z-index: -1; /* Liegt HINTER der Zahl */
    
    /* Die Animation anwenden */
    animation: gold-smoke 2s infinite ease-out;
}

/* 4. Die "La-Ola-Welle" (Verzögerung für jeden Schritt) */
.process-card:nth-child(2) .step-badge::after {
    animation-delay: 0.5s;
}

.process-card:nth-child(3) .step-badge::after {
    animation-delay: 1.0s;
}

.process-card:nth-child(4) .step-badge::after {
    animation-delay: 1.5s;
}
/* --- Hero Text Optimierung (Elegant & Luftig) --- */

/* Der Container für den Text */
.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    /* Flexbox sorgt für saubere vertikale Abstände */
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* "Hat es geknallt?" */
.hero h1 {
    font-size: 4rem; /* Sehr groß und dominant */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    letter-spacing: -1px; /* Modernes, enges Kerning für große Headlines */
}

/* "24h Service..." */
.hero h2 {
    font-size: 1.6rem;
    font-weight: 300; /* Dünn und edel */
    margin-bottom: 25px;
    line-height: 1.4;
    opacity: 0.95;
}

/* "Unfallgutachten | Wertgutachten..." */
.hero-services {
    font-size: 1.1rem;
    text-transform: uppercase; /* Alles Großbuchstaben */
    letter-spacing: 3px; /* Buchstaben weit auseinanderziehen = Eleganz */
    margin-bottom: 45px; /* Großer Abstand zum Button */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255,255,255,0.3); /* Feine Linie drüber */
    border-bottom: 1px solid rgba(255,255,255,0.3); /* Feine Linie drunter */
    padding: 10px 0;
    display: inline-block;
}

/* Der Button im Hero Bereich - etwas größer */
.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5); /* Lila Leuchten */
    transform: scale(1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7);
}

/* --- Die 3 "rauchigen" Pfeile (Heller & Leuchtender) --- */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 20px; 
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 25px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -10px auto; 
    opacity: 0;
    animation: scroll-smoky 2.5s infinite ease-in-out;
}

/* Die Animation mit stärkerem Leuchten */
@keyframes scroll-smoky {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-15px, -15px) scale(0.8);
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
    }
    40% {
        opacity: 1;
        transform: rotate(45deg) translate(0, 0) scale(1);
        /* HIER GEÄNDERT: Intensives weiß-lila Glühen */
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 1)); 
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px) scale(1.4);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0));
    }
}

/* Verzögerung wie gehabt */
.scroll-indicator span:nth-child(1) { animation-delay: 0s; }
.scroll-indicator span:nth-child(2) { animation-delay: 0.3s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.6s; }

/* --- Mobile Optimierung (Update für Abstände & Pfeil) --- */
@media (max-width: 768px) {
    
    /* 1. Den Scroll-Pfeil ganz nach unten schieben */
    .scroll-indicator {
        /* HIER GEÄNDERT: Von 10px auf 35px erhöht */
        bottom: 100px !important; 
        padding: 0;
    }
    
    /* 3. Überschrift etwas kompakter */
    .hero h1 {
        font-size: 2.2rem; 
        margin-bottom: 5px; /* Weniger Abstand nach unten */
        line-height: 1.1;
    }
    
    .hero h2 {
        font-size: 1.1rem;
        margin-bottom: 15px; /* Weniger Abstand nach unten */
    }

    /* 4. Die Liste (Unfallgutachten etc.) enger zusammen */
    .hero-services {
        font-size: 0.75rem;
        letter-spacing: 1px; 
        margin-bottom: 20px; /* Zieht den Button nach oben */
        line-height: 1.4;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100%;
        /* HIER GEÄNDERT: Mehr Platz nach unten schaffen (vorher 20px) */
        margin-bottom: 20px; 
    }
    
    /* Header Anpassungen (bleiben wie vorher) */
    .logo-link img {
        max-height: 25px !important;
    }
    .header-subtext {
        font-size: 0.5rem;
        margin-top: 2px;
        letter-spacing: 1px;
    }
    header {
        padding: 5px 0;
    }
    .brand-wrapper {
        margin-bottom: 5px;
    }
}
/* --- Footer Kontakt Design --- */

.footer-brand {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--primary-color); /* Lila Balken links neben dem Namen */
    padding-left: 15px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Blöcken (Adresse, Tel, etc.) */
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Oben bündig ausrichten */
    color: #ccc;
}

.contact-icon {
    font-size: 1.4rem;
    margin-right: 15px;
    min-width: 30px; /* Damit alle Texte exakt untereinander stehen */
    text-align: center;
    /* Optional: Icon in Lila färben (funktioniert bei Text-Symbolen) */
    color: var(--primary-color); 
    /* Für Emojis kann man grayscale wegnehmen, aber Textsymbole sind besser färbbar. 
       Wir nutzen hier die Standard-Emojis, das ist am sichersten. */
}

.contact-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Spezielles Styling für die Telefonzeilen */
.phone-row {
    display: flex;
    gap: 10px;
}

.phone-row span {
    min-width: 50px; /* "Büro" und "Mobil" gleich breit machen */
    color: #999;     /* Label etwas dunkler */
    font-size: 0.9rem;
}

/* Links im Footer (Tel & Mail) */
.contact-text a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobil-Anpassung */
@media (max-width: 768px) {
    .footer-brand {
        font-size: 1.5rem;
        text-align: center;
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 30px;
    }
    
    /* Auf Handy zentrieren wir den Footer Text oft */
    .footer-info {
        text-align: center;
    }

    .contact-item {
        flex-direction: column; /* Icon über den Text */
        align-items: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 1.8rem; /* Größere Icons zum Tippen */
    }

    .phone-row {
        justify-content: center; /* Telefonnummern mittig */
    }
}
/* --- Globale Scroll-Animationen --- */

/* Startzustand für ALLE animierten Elemente */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px); /* Leichte Bewegung von unten */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Sehr weich */
}

/* Endzustand */
.scroll-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Damit Karten nebeneinander nicht gleichzeitig aufploppen, 
   sondern schön nacheinander (Kaskaden-Effekt) */

/* Für 4er Grids (Leistungen, Vorteile) */
.card.visible:nth-child(1), .benefit-box.visible:nth-child(1) { transition-delay: 0.1s; }
.card.visible:nth-child(2), .benefit-box.visible:nth-child(2) { transition-delay: 0.2s; }
.card.visible:nth-child(3), .benefit-box.visible:nth-child(3) { transition-delay: 0.3s; }
.card.visible:nth-child(4), .benefit-box.visible:nth-child(4) { transition-delay: 0.4s; }

/* Für Prozess-Karten */
.process-card.visible:nth-child(1) { transition-delay: 0.1s; }
.process-card.visible:nth-child(2) { transition-delay: 0.2s; }
.process-card.visible:nth-child(3) { transition-delay: 0.3s; }
.process-card.visible:nth-child(4) { transition-delay: 0.4s; }

/* --- Gold-Smoke-Effekt für die Timeline (Unfallgutachten) --- */

.timeline-number {
    position: absolute;
    left: 5px;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #0b0b0b;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 800;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 0 0 3px #0d0d0d, 0 0 0 5px rgba(212,175,55,0.3);
    transform-style: preserve-3d;
}

/* Das pulsierende Element hinter der Zahl */
.timeline-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color); /* Lila */
    
    /* HIER GEÄNDERT: z-index -1 relativ zum Eltern-Element (.timeline-number)
       Da das Eltern-Element z-index 2 hat, liegt dieses Element auf Ebene 1,
       was immer noch ÜBER der weißen Linie (Ebene 0) ist. */
    z-index: -1; 
    
    /* Die gleiche Animation wie auf der Startseite nutzen */
    animation: gold-smoke 2s infinite ease-out;
}

/* Verzögerung für die 5 Schritte (La-Ola-Welle) */
.timeline-item:nth-child(1) .timeline-number::after {
    animation-delay: 0s;
}
.timeline-item:nth-child(2) .timeline-number::after {
    animation-delay: 0.5s;
}
.timeline-item:nth-child(3) .timeline-number::after {
    animation-delay: 1.0s;
}
.timeline-item:nth-child(4) .timeline-number::after {
    animation-delay: 1.5s;
}
.timeline-item:nth-child(5) .timeline-number::after {
    animation-delay: 2.0s;
}
/* --- Start-Animation für den Hero-Bereich --- */

/* 1. Die Bewegung definieren */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Startet etwas tiefer */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Endet am Platz */
    }
}

/* 2. Die Animation auf die Elemente anwenden */
.hero h1 {
    animation: fadeInUp 1s ease-out forwards;
}

.hero h2 {
    opacity: 0; /* Unsichtbar starten */
    animation: fadeInUp 1s ease-out 0.3s forwards; /* 0.3s Verzögerung */
}

.hero-services {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards; /* 0.6s Verzögerung */
}

.btn-hero {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards; /* 0.9s Verzögerung */
}
/* --- Lebendige Hover-Effekte --- */

/* Leistungen & Karten */
.card, .process-card, .benefit-box, .value-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; /* "Bouncy" Effekt */
}

.card:hover, .process-card:hover, .value-card:hover {
    transform: translateY(-10px) scale(1.02); /* Hebt sich ab UND wird minimal größer */
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); /* Großer, weicher Schatten */
}

/* Buttons sollen "klickbar" wirken */
.btn:active {
    transform: scale(0.95) !important; /* Beim Klicken kurz kleiner werden */
}
/* --- Neue Leistungen Module (Lebendiges Design) --- */

.services-modules {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative; /* Wichtig für die absolute Positionierung des Canvas */
    overflow: hidden;   /* Damit nichts über den Rand hinausmalt */
}

/* Das neue Canvas Element */
#dotsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}


/* Die Karte an sich */
.module-card {
    background-color: var(--darker-bg);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden; /* Damit der Hover-Effekt nicht überlappt */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none; /* Unterstreichung vom Link entfernen */
    color: var(--text-color);
    border-top: 5px solid transparent; /* Platzhalter für den farbigen Strich */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* "Bouncy" Animation */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Damit alle gleich hoch sind */
}

/* Das Icon */
.module-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: transform 0.4s ease, background 0.4s;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.module-card p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1; /* Drückt den Button nach unten */
}

/* Der "Fake"-Button Text */
.btn-text {
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: letter-spacing 0.3s;
}

/* --- HOVER EFFEKTE (Das macht es lebendig) --- */

.module-card:hover {
    transform: translateY(-15px); /* Karte schwebt hoch */
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2); /* Lila Schatten */
    border-top: 5px solid var(--primary-color); /* Lila Strich oben erscheint */
}

.module-card:hover .module-icon {
    transform: rotate(10deg) scale(1.1); /* Icon dreht sich leicht */
    background: rgba(212, 175, 55, 0.1); /* Icon Hintergrund wird lila getönt */
}

.module-card:hover h3 {
    color: var(--primary-dark);
}

.module-card:hover .btn-text {
    letter-spacing: 2px; /* Text zieht sich auseinander */
    color: var(--primary-color);
}

/* Ein subtiler Farbverlauf im Hintergrund beim Hover */
.module-bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.module-card:hover .module-bg-hover {
    opacity: 1;
}
/* WICHTIG: Auf dem Handy (Mobile) sollten sie trotzdem untereinander stehen (1 Spalte), 
   damit man den Text lesen kann. */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr; /* Auf Handy 1 unter dem anderen */
    }
}

/* =========================================
   NEW DESIGN OVERRIDES (DARK & GOLD)
   ========================================= */

.nav-left ul,
.nav-right ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left {
    flex: 0 0 auto;
    margin-right: 4px;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    margin-left: 4px;
}

.brand-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Brand text next to logo */
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
}

/* Hero logo – mittig über dem Content */
.hero-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 0px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 350px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.35))
            drop-shadow(0 0 8px rgba(212,175,55,0.15));
}

@media (max-width: 600px) {
    .hero-logo { height: 130px; }
    .hero-logo-center { padding-top: 12px; }
    .brand-text { display: none; }
}

.logo-ok {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-sub {
    display: flex;
    flex-direction: column;
}

.logo-kfz {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-sach {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 2px;
}


/* =========================================
   HERO – PREMIUM REDESIGN
   ========================================= */

.hero {
    background-color: #080808;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero video,
.hero-overlay {
    display: none;
}

/* Radial background glow */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}


/* ---- LEFT: Text ---- */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.text-gold-gradient {
    background: linear-gradient(90deg, #c9962c, #f5d060, #c9962c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-title-sub {
    font-size: 2.6rem;
    font-weight: 700;
    color: #cccccc;
    letter-spacing: -0.3px;
}

.hero-description {
    color: #7a7a7a;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #c9962c, #f0c84a, #b8850f);
    color: #080808;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px 28px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(212,175,55,0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(212,175,55,0.40);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px 28px;
    border-radius: 8px;
    border: 1px solid #2e2e2e;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.06);
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid #1e1e1e;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.trust-label {
    font-size: 0.72rem;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: #222;
}

/* ---- RIGHT: Car image ---- */
.hero-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}

/* Rotating rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-ring-1 {
    width: 500px;
    height: 500px;
    animation: rotateSlow 30s linear infinite;
    border-style: dashed;
    border-color: rgba(212,175,55,0.08);
}

.hero-ring-2 {
    width: 380px;
    height: 380px;
    border-color: rgba(212,175,55,0.14);
    animation: rotateSlow 20s linear infinite reverse;
}

.hero-ring-3 {
    width: 240px;
    height: 240px;
    border-color: rgba(212,175,55,0.20);
}

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Glow under car */
.hero-car-glow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.22) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.hero-car-img {
    position: relative;
    z-index: 2;
    width: 540px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9))
            drop-shadow(0 0 60px rgba(212,175,55,0.08));
    animation: carFloat 5s ease-in-out infinite;
    mix-blend-mode: lighten;
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-hint span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%   { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 20px; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px;
        gap: 0;
    }
    .hero-title { font-size: 2.8rem; }
    .hero-title-sub { font-size: 2rem; }
    .hero-badge { margin: 0 auto 28px auto; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-content { height: 360px; }
    .hero-car-img { width: 380px; }
    .hero-ring-1 { width: 360px; height: 360px; }
    .hero-ring-2 { width: 270px; height: 270px; }
    .hero-ring-3 { width: 170px; height: 170px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.1rem; }
    .hero-title-sub { font-size: 1.5rem; }
    .hero-car-img { width: 280px; }
    .hero-image-content { height: 280px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
    .hero-trust { flex-wrap: wrap; gap: 16px; }
    .hero-container { padding: 40px 20px; }
}

/* keep old classes harmless */
.text-gold { color: var(--gold); }
.ok-badge-sub { color: var(--text-white); font-size: 0.5rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- Hero Car Image --- */
.hero-car-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Hero: Background gradient glow --- */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%,
        rgba(212, 175, 55, 0.07) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}


/* --- btn-gold hover --- */
.btn-gold {
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-dark {
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-dark:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}


/* =========================================
   LEISTUNGEN – PREMIUM CARDS
   ========================================= */

.leistungen-section {
    padding: 80px 0 100px;
    background-color: #080808;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.leistung-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    background: #111111;
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.leistung-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6),
                0 0 0 1px rgba(212,175,55,0.15);
}

/* Goldener Glow-Streifen links beim Hover */
.leistung-border-glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #c9962c, #f5d060, #c9962c);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 16px 0 0 16px;
}

.leistung-card:hover .leistung-border-glow {
    opacity: 1;
}

/* Nummer oben links */
.leistung-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(212,175,55,0.06);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -2px;
}

/* Icon-Kreis */
.leistung-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(212,175,55,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.leistung-card:hover .leistung-icon-wrap {
    background: rgba(212,175,55,0.14);
    border-color: rgba(212,175,55,0.35);
}

.leistung-icon {
    font-size: 1.8rem;
    line-height: 1;
}

/* Text-Bereich */
.leistung-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.leistung-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.2px;
}

.leistung-body p {
    font-size: 0.9rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin: 0;
}

.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-top: 4px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.leistung-card:hover .leistung-link {
    gap: 10px;
    color: #f5d060;
}

/* Responsive */
@media (max-width: 900px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .leistung-card {
        padding: 24px 20px;
        gap: 16px;
    }
    .leistung-icon-wrap {
        width: 52px;
        height: 52px;
    }
    .leistung-icon { font-size: 1.5rem; }
}

/* =========================================
   FLOATING CONTACT WIDGETS
   ========================================= */

.float-widgets {
    position: fixed;
    bottom: 32px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-widget {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.25s ease;
}

.float-widget:hover {
    transform: translateY(-4px) scale(1.08);
}

/* Telefon – Gold */
.float-phone {
    background: linear-gradient(135deg, #c9962c, #f5d060);
    color: #0a0a0a;
    box-shadow: 0 6px 24px rgba(212,175,55,0.45);
}

.float-phone:hover {
    box-shadow: 0 12px 32px rgba(212,175,55,0.65);
}

/* WhatsApp – Grün */
.float-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.float-whatsapp:hover {
    box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

@media (max-width: 600px) {
    .float-widgets {
        bottom: 20px;
        right: 16px;
        gap: 10px;
    }
    .float-widget {
        width: 46px;
        height: 46px;
    }
}

/* =========================================
   RESPONSIVE HAMBURGER MENU – FINAL OVERRIDE
   ========================================= */
.site-header .header-content {
    position: relative;
    width: 100%;
}

.desktop-menu-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-text {
    text-decoration: none;
}

.mobile-brand-link,
.hamburger-btn,
.mobile-menu-panel {
    display: none;
}

.hamburger-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.65);
}

.hamburger-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 2000;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
}

.mobile-menu-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #f7f7f7;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a.active {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.10);
}

.mobile-menu-panel a:not(:last-child) {
    margin-bottom: 4px;
}

.mobile-menu-panel .mobile-menu-cta {
    margin-top: 8px;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0b0b0b;
    border-color: transparent;
}

.mobile-menu-panel .mobile-menu-cta:hover {
    color: #0b0b0b;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    header.site-header {
        padding: 8px 0;
    }

    .site-header .header-content {
        min-height: 58px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 0 !important;
    }

    .desktop-menu-wrap {
        display: none !important;
    }

    .mobile-brand-link {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        color: #ffffff;
        text-decoration: none;
    }

    .mobile-brand-link img {
        width: 46px;
        height: 46px;
        object-fit: contain;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    }

    .mobile-brand-link span {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
        min-width: 0;
    }

    .mobile-brand-link strong {
        color: #ffffff;
        font-size: 0.88rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-brand-link small {
        color: var(--gold);
        font-size: 0.58rem;
        letter-spacing: 1.7px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .hamburger-btn {
        display: flex;
        flex: 0 0 auto;
    }

    .mobile-menu-panel.is-open {
        display: block;
        animation: mobileMenuIn 0.22s ease both;
    }
}

@media (max-width: 420px) {
    .mobile-brand-link strong {
        font-size: 0.74rem;
        letter-spacing: 0.6px;
    }

    .mobile-brand-link small {
        font-size: 0.5rem;
        letter-spacing: 1.1px;
    }

    .mobile-brand-link img {
        width: 40px;
        height: 40px;
    }

    .hamburger-btn {
        width: 42px;
        height: 42px;
    }
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
