/* ==========================================================================
   VOLLSTÄNDIGE, ISOLIERTE STYLES FÜR DIE LANDING-PAGE
   ========================================================================== */

/* --- Globale Basis & Resets --- */
:root {
    --primary-color: #2c3e50;    /* War: #2c3e50 */
    --primary-dark: #1a252f;     /* Neu für Hover-States */
    --primary-light: #e8f0f7;    /* Neu für helle Hintergründe */
    --secondary-color: #6AD5C3;  /* Bleibt Mintgrün */
    --dark-blue: #1d1d1f;
    --text-color: #333;
    --text-light: #555;
    --background-grey: #f8f9fa;
    --border-light: #e0e0e0;
    --white: #ffffff;
}

body.landing-page {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Header & Navigation --- */
.landing-page .main-header {
    background-color: #222222;  /* Direkt den Farbwert verwenden, um Konflikte zu vermeiden */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #444;
}
.landing-page .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.landing-page .logo img {
    max-height: 35px;
}
.landing-page .main-nav .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.landing-page .main-nav a {
    text-decoration: none;
    color: var(--white); /* Schriftfarbe auf weiß geändert */
    font-weight: 500;
    transition: color 0.2s;
}
.landing-page .main-nav a:hover {
    color: #6AD5C3; /* Hover-Farbe auf Mintgrün geändert */
}
.landing-page .auth-button {
    background: var(--white); /* Hintergrund auf Mintgrün geändert */
    border: none; /* Rahmen entfernt */
    color: var(--ci-dark); /* Schriftfarbe auf dunkelgrau für Kontrast */
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600; /* Etwas fetter für mehr Präsenz */
    transition: all 0.2s;
}
.landing-page .auth-button:hover {
    background-color: #57c2b0; /* Etwas dunkleres Mintgrün beim Hovern */
}
.landing-page .mobile-menu-toggle { display: none; }

/* --- Hero Section --- */
.landing-page .hero-section {
    padding: 80px 0;
}
.landing-page .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.landing-page .hero-text {
    text-align: left;
}
.landing-page .hero-badge { display: inline-block; padding: 6px 12px; background-color: var(--secondary-color); border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--dark-blue); margin-bottom: 1.5rem; }
.landing-page .hero-text h1 { font-weight: 800; font-size: 52px; line-height: 1.15; color: var(--dark-blue); margin: 0 0 1.5rem 0; }
.landing-page .subheadline { font-size: 18px; line-height: 1.6; color: var(--text-light); margin-bottom: 2.5rem; }
.landing-page .hero-cta-group { display: flex; flex-wrap: wrap; gap: 15px; }
.landing-page .hero-visual img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.landing-page .button { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; }
.landing-page .button.primary-cta { background-color: var(--secondary-color); color: var(--dark-blue); }
.landing-page .button.primary-cta:hover { background-color: #57c2b0; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(106, 213, 195, 0.4); }
.landing-page .button.secondary-cta { background-color: var(--white); color: var(--dark-blue); border-color: var(--border-light); }
.landing-page .button.secondary-cta:hover { background-color: var(--background-grey); border-color: #ccc; transform: translateY(-3px); }
.landing-page .button.large { padding: 16px 36px; font-size: 16px; }
.landing-page .button i { margin-right: 8px; }

/* --- Sektionen Allgemein --- */
.landing-page .section-spacing { padding: 100px 0; }
.landing-page .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.landing-page .section-header h2 { font-size: 38px; font-weight: 700; color: var(--dark-blue); margin-bottom: 1rem; }

/* --- Kontaktformular Sektion --- */
.landing-page #kontakt-form-section {
    background-color: var(--background-grey);
}
.landing-page .form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.landing-page .form-group {
    margin-bottom: 20px;
}
.landing-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.landing-page .form-group input,
.landing-page .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}
.landing-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.landing-page .form-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
}
.landing-page .form-submit-btn:hover {
    background-color: #1a252f;
}
.landing-page #form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* --- Cookie Banner Styles --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    font-size: 14px;
    box-sizing: border-box;
}

.cookie-banner-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-content p {
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-content p a:hover {
    color: #98E8D9;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-btn.primary {
    background-color: var(--secondary-color);
    color: #222222;
}

.cookie-btn.primary:hover {
    background-color: #57c2b0;
    transform: translateY(-1px);
}

.cookie-btn.secondary {
    background-color: #7f8c8d;
    color: #fff;
}

.cookie-btn.secondary:hover {
    background-color: #95a5a6;
    transform: translateY(-1px);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-banner-content p {
        font-size: 13px;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* --- Footer --- */
.landing-page .main-footer { padding: 60px 0 20px 0; background-color: var(--dark-blue); color: #ccc;}
.landing-page .footer-columns-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; }
.landing-page .footer-logo { max-width: 150px; margin-bottom: 15px; }
.landing-page .footer-nav ul { list-style: none; padding: 0; margin: 0; }
.landing-page .footer-nav a { color: #ccc; text-decoration: none; line-height: 2; transition: color .2s; }
.landing-page .footer-nav a:hover { color: var(--white); }
.landing-page .footer-legal-copyright-row { border-top: 1px solid #444; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }

/* --- Login Modal --- */
.modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #fefefe; margin: 15% auto; padding: 30px; border: none; width: 90%; max-width: 400px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.login-submit-button { width: 100%; background-color: var(--primary-color); color: white; padding: 12px; border-radius: 8px; border: none; font-size: 16px; cursor: pointer; }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .landing-page .hero-content { grid-template-columns: 1fr; text-align: center; }
    .landing-page .hero-text, .landing-page .hero-visual { text-align: center; }
    .landing-page .hero-cta-group { justify-content: center; }
}

@media (max-width: 768px) {
    .landing-page .main-nav, .landing-page .header-right-group { display: none; }
    .landing-page .mobile-menu-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; }
    .landing-page .hero-text h1 { font-size: 36px; }
}

/* ==========================================================================
   ZUSATZ: VERSCHÖNERTES LOGIN-MODAL
   ========================================================================== */

.landing-page .modal-content.login-modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.landing-page .login-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 30px 0;
}

.landing-page .login-modal-content .form-row {
    margin-bottom: 20px;
    text-align: left;
}

.landing-page .login-modal-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
}

.landing-page .login-modal-content input[type="email"],
.landing-page .login-modal-content input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.landing-page .login-modal-content input[type="email"]:focus,
.landing-page .login-modal-content input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(100, 19, 163, 0.1);
}

.landing-page .login-modal-content .login-submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.landing-page .login-modal-content .login-submit-button:hover {
    background-color: #1a252f;
}

.landing-page .login-modal-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ccc;
    transition: color 0.2s;
}
.landing-page .login-modal-content .close:hover {
    color: #888;
}

/* ==========================================================================
   DESIGN-UPGRADE & FORMULAR-LIMITIERUNG (Zusatz zu landing-page-style.css)
   ========================================================================== */

/* --- Verfeinerte Typografie für einen hochwertigeren Look --- */
.landing-page .hero-text h1 {
    line-height: 1.2;
    letter-spacing: -0.02em; /* Lässt große Schrift kompakter wirken */
}

.landing-page .subheadline {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a; /* Etwas weicher als reines Grau */
}

.landing-page .section-header h2 {
    letter-spacing: -0.015em;
}

.landing-page .process-content h3 {
    font-size: 28px;
}

.landing-page .process-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- Verbesserte Button-Styles --- */
.landing-page .button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}
.landing-page .button:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* --- Mehr "Luft" und weichere Schatten für Sektionen --- */
.landing-page .hero-visual img {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.landing-page .feature-card {
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.landing-page .feature-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

/* ==========================================================
   KORRIGIERTE STYLES FÜR FEATURES-SEKTION (DEINE LÖSUNG)
   ========================================================== */

/* 1. Hauptcontainer für die Karten (jetzt als flexible Reihe) */
#funktionen .features-tabs {
    display: flex; /* Stellt die Karten in einer Reihe dar */
    overflow-x: hidden; /* Verhindert das Scrollen per Maus/Trackpad */
    scroll-behavior: smooth; /* Sorgt für sanftes Scrollen durch die Buttons */
    gap: 30px; /* Behält den Abstand zwischen den Karten bei */
    padding-bottom: 20px; /* Etwas Platz nach unten */
    padding-top: 10px;
}

/* 2. Styling der einzelnen Feature-Karten */
#funktionen .feature-card {
    flex: 0 0 calc(33.333% - 20px); /* Jede Karte nimmt ca. ein Drittel der Breite ein */
    min-width: 300px; /* Mindestbreite, damit die Karten nicht zu sehr gequetscht werden */
    display: flex; /* Macht die Karte selbst zu einem Flex-Container... */
    flex-direction: column; /* ...damit der Inhalt die gleiche Höhe erzwingt. */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    transition: all 0.3s ease;
    cursor: default; /* Ändern von 'pointer' zu 'default', da die Karte selbst nicht klickbar ist */
}

/* 3. Hover-Effekt für die Karten (ohne den oberen Rand) */
#funktionen .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-color: #ccc;
}

/* 4. Die aktive Karte (grün) */
#funktionen .feature-card.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 213, 195, 0.4);
}

/* WICHTIG: Stellt sicher, dass die Texte in der aktiven Karte lesbar bleiben */
#funktionen .feature-card.active h4,
#funktionen .feature-card.active p,
#funktionen .feature-card.active .feature-icon-main {
    color: var(--dark-blue);
}

/* Anpassung für den "Live"-Badge in der aktiven Karte */
#funktionen .feature-card.active .status-badge.live {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* 5. Positionierung und Styling der Scroll-Buttons */
#funktionen .feature-scroll-nav {
    display: flex;
    justify-content: center; /* Zentriert die Buttons */
    gap: 15px;
    margin-top: 20px; /* Schiebt die Buttons unter die Karten */
}

/* Styling der einzelnen Scroll-Buttons (bleibt größtenteils gleich) */
#funktionen .scroll-btn {
    width: 44px;
    height: 44px;
    background-color: var(--background-grey);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#funktionen .scroll-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    border-color: var(--secondary-color);
}

#funktionen .scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 6. Entfernen des alten Hover-Effekts (oberer Strich) */
/* Diese Regel wird nicht mehr benötigt und sollte gelöscht werden, falls sie noch existiert */
.feature-card::before {
    display: none;
}

/* 7. Auf Mobilgeräten werden die Buttons ausgeblendet (da man wischen kann) */
@media (max-width: 768px) {
    #funktionen .features-tabs {
       overflow-x: auto; /* Auf Mobilgeräten wischen erlauben */
       -webkit-overflow-scrolling: touch; /* Besseres Scroll-Gefühl auf iOS */
    }
    #funktionen .feature-scroll-nav {
        display: none; /* Buttons ausblenden */
    }
    #funktionen .feature-card {
        flex-basis: 80%; /* Karten auf Mobilgeräten breiter machen */
        min-width: 280px;
    }
}


/* ==========================================================
   ANPASSUNG DER FEATURES-TABS
   ========================================================== */
   
.features-tabs {
    display: flex;
    overflow-x: auto; /* Wichtig für Touch-Scrolling auf Mobile */
    gap: 24px;
    padding-bottom: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth; /* WICHTIG: Aktiviert sanftes Scrollen */
    -webkit-overflow-scrolling: touch; /* Verbessert das Scroll-Erlebnis auf iOS */
}

.features-tabs::-webkit-scrollbar {
    display: none;
}

/* --- Das ausgegraute Formular mit Störer --- */

/* 1. Der Wrapper, der das Formular und den Störer enthält */
.landing-page .form-wrapper {
    position: relative; /* Wichtig für die Positionierung des Störers */
    padding: 20px;
}

/* 2. Das Formular selbst wird ausgegraut und unklickbar */
.landing-page .form-wrapper .form-container {
    filter: grayscale(100%) blur(3px);
    opacity: 0.4;
    pointer-events: none; /* Verhindert Klicks auf das Formular */
    transition: all 0.3s ease-in-out;
}

/* 3. Der Störer, der über dem Formular liegt */
.landing-page .form-limiter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(1px); /* Leichter Unschärfe-Effekt für den Hintergrund */
}

.landing-page .form-limiter-overlay .limiter-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.landing-page .form-limiter-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.landing-page .form-limiter-overlay p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 450px;
}

/* ==========================================================================
   NEUE LANDING PAGE STYLES (ERGÄNZUNG ZU STYLE.CSS)
   ========================================================================== */

/* --- Allgemeine Verbesserungen & Variablen --- */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #6AD5C3;
    --dark-blue: #1d1d1f;
    --text-color: #333;
    --text-light: #555;
    --background-grey: #f8f9fa;
    --border-light: #e0e0e0;
    --white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-color);
}

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

.section-spacing {
    padding: 80px 0;
}
.section-spacing-large {
    padding: 100px 0;
}
.alternate-bg {
    background-color: var(--background-grey);
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-tag {
    display: inline-block;
    background-color: #e8f0f7;
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 1rem 0;
}
.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.button.primary-cta {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
}
.button.primary-cta:hover {
    background-color: #57c2b0;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(106, 213, 195, 0.4);
}
.button.secondary-cta {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: #e0e0e0;
}
.button.secondary-cta:hover {
    background-color: var(--background-grey);
    border-color: #ccc;
    transform: translateY(-3px);
}
.button.large {
    padding: 16px 36px;
    font-size: 16px;
}
.button i {
    margin-right: 8px;
}

/* --- Header --- */
.main-header.sticky {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--primary-color);
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-button.secondary {
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 15px;
    cursor: pointer;
}
.auth-button.secondary:hover {
    color: var(--primary-color);
}
.mobile-menu-toggle { display: none; }
.mobile-menu-container { display: none; }


/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    background-color: var(--white);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--secondary-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark-blue);
    margin: 0 0 1.5rem 0;
}
.subheadline {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}
.hero-cta-group {
    display: flex;
    gap: 15px;
}
.hero-visual .hero-image-shadow {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 20px 0;
    background-color: var(--background-grey);
    text-align: center;
}
.trust-bar p {
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trust-bar .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
}
.trust-bar .logos span {
    font-weight: 600;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.benefit-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.benefit-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0 0 10px 0;
}

/* --- Process Section --- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.process-step.reverse {
    grid-auto-flow: dense;
}
.process-step.reverse .process-content {
    grid-column: 2;
}
.process-step.reverse .process-visual {
    grid-column: 1;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}
.process-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.process-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Features Section --- */
/* ==========================================================
   KORRIGIERTE STYLES FÜR FEATURES-SEKTION
   ========================================================== */

/* --- 1. Das Raster-Layout wiederherstellen --- */
/* Dies stellt das responsive 3-spaltige Layout wieder her, 
   das auf kleineren Bildschirmen automatisch 1-spaltig wird. */
.features-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- 2. Allgemeiner Stil für die Kacheln --- */
/* Wir entfernen die alte Hover/Aktiv-Regel mit dem dunklen Rahmen. */
.feature-card {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Ein subtiler Hover-Effekt für die nicht-aktiven Kacheln */
.feature-card:not(.active):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-color: #ccc;
}


/* --- 3. Das neue Design für die "Live"-Kachel --- */
/* Hier setzen wir deine Idee mit dem mintgrünen Hintergrund um. */
.feature-card.active {
    background-color: var(--secondary-color); /* Mintgrüner Hintergrund */
    border-color: var(--secondary-color);     /* Rahmen in der gleichen Farbe */
    color: var(--dark-blue);                  /* Dunkle Schrift für Kontrast */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 213, 195, 0.4); /* Passender Schatten */
}

/* --- 4. Text- und Icon-Farben in der aktiven Kachel anpassen --- */
/* Wir müssen sicherstellen, dass die Inhalte gut lesbar sind. */
.feature-card.active h4,
.feature-card.active p,
.feature-card.active .feature-icon-main {
    color: var(--dark-blue); /* Setzt explizit alle Texte & Icons auf dunkel */
}


/* --- 5. Den "Live"-Badge in der aktiven Kachel anpassen --- */
/* Der alte Badge wäre auf dem mintgrünen Hintergrund unsichtbar. */
.feature-card.active .status-badge.live {
    background-color: var(--white);  /* Weißer Hintergrund für den Badge */
    color: var(--dark-blue);         /* Dunkle Schrift für den Badge */
}
.feature-card {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.feature-card.active, .feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(100, 19, 163, 0.1);
}
.feature-icon-main {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.status-badge.soon {
    background-color: #ffedd5;
    color: #9a3412;
}
.status-badge.live {
    background-color: rgba(106, 213, 195, 0.15);
    color: #6AD5C3;
}

/* --- Testimonial Section --- */
.testimonial-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    margin-bottom: 20px;
}
.testimonial-card blockquote {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    border: none;
    margin: 0 0 25px 0;
}
.testimonial-card cite {
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.cta-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #ccc;
}
.cta-benefits li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* --- Footer --- */
.landing-page .main-footer {
    background-color: var(--dark-blue);
    padding: 60px 0 30px 0;
    color: #a9a9a9;
}
.landing-page .footer-container {
    display: flex;
    flex-direction: column;
}
.landing-page .footer-columns-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}
.landing-page .footer-column-left {
    flex: 1;
    min-width: 200px;
}
.landing-page .footer-column-left .footer-logo img {
    max-width: 160px; /* BEGRENZT DIE LOGO-GRÖSSE */
    height: auto;
    margin-bottom: 20px;
}
.landing-page .social-media {
    display: flex;
    gap: 15px;
}
.landing-page .social-media a {
    color: #a9a9a9;
    font-size: 18px;
    transition: color 0.2s;
}
.landing-page .social-media a:hover {
    color: var(--white);
}
.landing-page .footer-column-middle {
    flex: 1;
    text-align: center;
}
.landing-page .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-page .footer-nav a {
    color: #a9a9a9;
    text-decoration: none;
    line-height: 2.2;
    transition: color .2s;
}
.landing-page .footer-nav a:hover {
    color: var(--white);
}
.landing-page .footer-column-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.landing-page .slogan-speech-bubble {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}
.landing-page .footer-legal-copyright-row {
    width: 100%;
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}
.landing-page .footer-legal-links a {
    color: #888;
    text-decoration: none;
}
.landing-page .footer-legal-links span {
    margin: 0 10px;
}

/* Responsive Anpassungen für den Footer */
@media (max-width: 991px) {
    .landing-page .footer-columns-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .landing-page .footer-column-right {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .landing-page .footer-legal-copyright-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-content, .process-step, .process-step.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .process-step .process-content {
        order: 2;
    }
    .process-step .process-visual {
        order: 1;
    }
     .process-step.reverse .process-content {
        grid-column: 1;
    }
    .hero-text h1 { font-size: 42px; }
    .hero-cta-group { justify-content: center; }
    .step-number { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .main-nav, .header-buttons { display: none; }
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    .mobile-menu-container {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    .mobile-menu-container.active {
        transform: translateY(0);
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .mobile-nav a {
        font-size: 18px;
        padding: 10px;
        text-align: center;
    }

    .section-spacing, .section-spacing-large { padding: 60px 0; }
    .section-header h2 { font-size: 32px; }
    .hero-text h1 { font-size: 36px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .cta-benefits { flex-direction: column; gap: 15px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* ==========================================================================
   DESIGN-UPGRADE & FORMULAR-LIMITIERUNG (Zusatz zu landing-page-style.css)
   ========================================================================== */

/* --- Trust Bar Optimierungen --- */
.trust-bar {
    padding: 15px 0;
    background-color: #2c3e50;
    text-align: center;
}

.trust-bar p {
    font-weight: 600;
    color: #6AD5C3;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-bar .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    filter: none;
    opacity: 1;
}

.trust-bar .logos span {
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    padding-bottom: 15px;
}

/* --- Process Section Enhancements --- */
.process-step {
    margin-bottom: 40px;
}

.process-visual {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.process-visual img {
    border-radius: 16px;
    background: #ffffff;
}

/* --- Testimonial Section --- */
#testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
}

.testimonial-card {
    background-color: #ffffff;
    color: #333;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: #6AD5C3;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #6AD5C3;
    margin-bottom: 20px;
    object-fit: cover;
    background: #e8e8ea;
}

.testimonial-card blockquote {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    border: none;
    margin: 0 0 25px 0;
    color: #444;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
}

.testimonial-card cite strong {
    color: #2c3e50;
    font-weight: 700;
}

/* --- CTA Section Styling --- */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 213, 195, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.cta-benefits li i {
    color: #6AD5C3;
    margin-right: 8px;
}

/* --- Hero Section Refinements --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #6AD5C3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.subheadline {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    animation: fadeInRight 1s ease-out 0.8s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Feature Cards Hover Effects --- */
.feature-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6AD5C3 0%, #2c3e50 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card.active::before {
    transform: translateX(0);
}

/* --- Placeholder Avatar --- */
.testimonial-avatar[src="placeholder-avatar.jpg"] {
    position: relative;
    background: linear-gradient(135deg, #6AD5C3 0%, #2c3e50 100%);
}

.testimonial-avatar[src="placeholder-avatar.jpg"]::after {
    content: 'KS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 24px;
}

/* --- Responsive Optimierungen --- */
@media (max-width: 768px) {
    .trust-bar .logos {
        gap: 20px;
    }
    
    .trust-bar .logos span {
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-card blockquote {
        font-size: 18px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step {
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px auto;
    }
}

/* --- Benefit Cards Animation --- */
.benefit-card {
    animation: fadeInUp 0.6s ease-out both;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Section Tag Styling --- */
.section-tag {
    display: inline-block;
    background-color: rgba(106, 213, 195, 0.15);
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Form Wrapper Improvements --- */
.form-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.form-limiter-overlay {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.form-limiter-overlay .limiter-icon {
    font-size: 56px;
    color: #2c3e50;
    margin-bottom: 24px;
    opacity: 0.8;
}

.form-limiter-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.form-limiter-overlay p {
    font-size: 18px;
    color: #666;
    max-width: 450px;
    line-height: 1.6;
}

/* --- Button Hover States --- */
.button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

/* --- Header Sticky Scroll Effect --- */
.main-header {
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* --- Process Step Numbers --- */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6AD5C3 0%, #5bc4b3 100%);
    color: #1d1d1f;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(106, 213, 195, 0.3);
}

/* --- Mobile Menu Animation --- */
.mobile-menu-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

/* --- Footer Refinements --- */
.landing-page .footer-logo img {
    transition: transform 0.3s ease;
}

.landing-page .footer-logo:hover img {
    transform: scale(1.05);
}

.landing-page .slogan-speech-bubble {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.landing-page .slogan-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #6AD5C3;
}

/* --- Loading States --- */
.button[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.button.loading {
    color: transparent;
}

.button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Scroll Animations --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6AD5C3;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5bc4b3;
}

/* ==========================================================================
   MOBILE MENU & FLOATING BUTTON STYLES (NEU & KORRIGIERT)
   ========================================================================== */

/* --- Mobile Menu --- */
.mobile-menu-toggle {
    display: none; /* Wird nur auf kleinen Bildschirmen angezeigt */
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 1100; /* Stellt sicher, dass der Button über dem Header-Inhalt liegt */
}

/* Standardmäßig das Schließen-Icon ausblenden */
.mobile-menu-toggle .fa-times {
    display: none;
}

/* Wenn das Menü aktiv ist, das Schließen-Icon anzeigen und das Burger-Icon ausblenden */
.mobile-menu-toggle.active .fa-times {
    display: block;
}
.mobile-menu-toggle.active .fa-bars {
    display: none;
}

.mobile-menu-container {
    display: none; /* Standardmäßig auf Desktop ausblenden */
    position: absolute;
    top: 70px; /* Höhe des Headers */
    left: 0;
    right: 0;
    background: #222222;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-110%);
    transition: transform 0.3s ease-in-out;
    z-index: 998;
}

.mobile-menu-container.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a, .mobile-nav button {
    font-size: 18px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.mobile-nav a:hover {
    color: var(--secondary-color);
}

.mobile-nav button {
    margin-top: 15px;
    background: var(--secondary-color);
    color: var(--dark-blue);
    border-radius: 8px;
    font-weight: 600;
}


/* --- Floating Login Button --- */
.floating-login-btn {
    display: none; /* Auf Desktop ausgeblendet */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-login-btn:hover {
    transform: scale(1.1);
    background-color: #57c2b0;
}


/* Media Query, um mobile Elemente zu aktivieren */
@media (max-width: 768px) {
    .main-nav, .header-right-group {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-container {
        display: block; /* Macht den Container für die Animation sichtbar */
    }
    .floating-login-btn {
        display: block; /* Zeigt den Button auf Mobilgeräten an */
    }
}

/* ==========================================================================
   KORREKTUREN FÜR MOBILES MENÜ & Z-INDEX (Version 2)
   ========================================================================== */

/* --- Korrektur der Ebenen (z-index) --- */
.cookie-banner {
    z-index: 10000; /* Muss ganz oben sein */
}

.modal {
    z-index: 5000; /* Login-Fenster über allem außer dem Cookie-Banner */
}

.mobile-menu-toggle {
    z-index: 1100; /* Menü-Button über dem Header */
}

.floating-login-btn {
    display: none; /* Standardmäßig auf Desktop ausblenden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000; /* Höher als Seiteninhalt, aber unter Modal/Cookie-Banner */
    transition: all 0.3s ease;
}


/* --- Korrigierte Stile für das mobile Menü --- */

/* Der Button selbst */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    /* z-index wurde oben schon gesetzt */
}

/* Icon-Umschaltung: Standardmäßig ist das X unsichtbar */
.mobile-menu-toggle .fa-times {
    display: none;
}
.mobile-menu-toggle .fa-bars {
    display: block;
}

/* Wenn Menü aktiv ist: Das X wird sichtbar, der Burger unsichtbar */
.mobile-menu-toggle.active .fa-times {
    display: block;
}
.mobile-menu-toggle.active .fa-bars {
    display: none;
}


/* --- Media Query für mobile Ansicht --- */
@media (max-width: 768px) {
    /* Desktop-Navigation und Button ausblenden */
    .main-nav, .header-right-group {
        display: none;
    }
    
    /* Mobilen Button und den schwebenden Button einblenden */
    .mobile-menu-toggle, .floating-login-btn {
        display: block;
    }

    /* Container für mobiles Menü für Animation vorbereiten */
    .mobile-menu-container {
        display: block;
    }
}

/* ==========================================================================
   FINALE KORREKTUR V2: Button mit maximaler Priorität ausblenden
   ========================================================================== */
@media (max-width: 768px) {
    .header-right-group, #loginButton {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        top: -9999px !important;
        left: -9999px !important;
    }
}

/* Stellt sicher, dass der Desktop-Login-Button auf der Landing-Page mobil ausgeblendet wird */
@media (max-width: 768px) {
  .landing-page .header-right-group {
    display: none;
  }
}


/* ==========================================================================
   Key Facts Sektion
   ========================================================================== */
.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.key-fact-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.key-fact-item h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    line-height: 1.4;
}

.key-fact-item p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

.key-fact-item .highlight {
    color: #6AD5C3;
    font-weight: 700;
    font-size: 1.1em;
}


/* Login Error Styles */
.login-error {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-error.error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.login-error.warning {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

.login-error.success {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.login-error.info {
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.error-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.error-content i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.error-content div {
    flex: 1;
}

.error-content p {
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.error-content p:last-child {
    margin-bottom: 0;
}

/* Resend Button */
.resend-button {
    background: #6413A3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.resend-button:hover {
    background: #4e0f80;
    transform: translateY(-1px);
}

.resend-button i {
    font-size: 14px;
}

/* Password Reset Link Style */
.login-modal-content .form-row a {
    color: #6413A3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.login-modal-content .form-row a:hover {
    text-decoration: underline;
}

/* Submit Button Loading State */
.login-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-submit-button i {
    margin-right: 8px;
}