/* ==========================================================================
   EINHEITLICHE STYLES FÜR ALLE UNTERSEITEN (NICHT DASHBOARD)
   Basierend auf landing-page-style.css
   ========================================================================== */

/* --- Import der Landing Page Variablen und Basis --- */
: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;
}

/* --- Basis Styles für alle Unterseiten --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Header (wie auf Landing Page) --- */
.main-header {
    background-color: #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #444;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    max-height: 35px;
}

.main-nav .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s;
}

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

.auth-button {
    background: var(--white);
    border: none;
    color: #222;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.auth-button:hover {
    background-color: #57c2b0;
}



/* --- Content Styles für Unterseiten --- */
.content-page-container {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: calc(100vh - 400px);
}

.content-page-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 700;
}

.content-page-container h2 {
    color: var(--dark-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.content-page-container h3 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.content-page-container p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-page-container ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.content-page-container li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.content-page-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.content-page-container a:hover {
    color: #1a252f;
    text-decoration: underline;
}

/* --- Spezifische Styles für "Unser Prozess" --- */
.prozess-schritte-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.prozess-schritt {
    background: var(--background-grey);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.prozess-schritt-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.prozess-schritt-nummer {
    background: var(--secondary-color);
    color: var(--dark-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.prozess-icon {
    font-size: 30px;
    color: var(--primary-color);
}

.prozess-titel {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.prozess-beschreibung p {
    margin-bottom: 15px;
}

.prozess-ziel {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 20px;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--background-grey);
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    text-align: center;
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
}

.primary-button:hover {
    background-color: #57c2b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 213, 195, 0.4);
}

/* --- Footer (gleich wie Landing Page) --- */
.main-footer {
    background-color: var(--dark-blue);
    padding: 60px 0 30px 0;
    color: #a9a9a9;
}

.footer-columns-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.footer-column-left {
    flex: 1;
    min-width: 200px;
}

.footer-column-left .footer-logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: #a9a9a9;
    font-size: 18px;
    transition: color 0.2s;
}

.social-media a:hover {
    color: var(--white);
}

.footer-column-middle {
    flex: 1;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #a9a9a9;
    text-decoration: none;
    line-height: 2.2;
    transition: color .2s;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-column-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.slogan-speech-bubble {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.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;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
}

.footer-legal-links span {
    margin: 0 10px;
}

.copyright {
    margin: 0;
}

/* --- Modal Styles (Login) - Abgeglichen mit Landing Page für mobile Optimierung --- */
.modal {
    display: none;
    position: fixed;
    /* Extrem hoher z-index, um auf der Preisseite über den Karten zu liegen */
    z-index: 9999; 
    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: 40px;
    border: none;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
}

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

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

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

.login-modal-content input[type="email"],
.login-modal-content input[type="password"] {
    box-sizing: border-box; /* Verhindert Layout-Sprünge durch Padding */
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

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

.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;
}

.login-submit-button:hover {
    background-color: #1a252f;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

#loginError {
    color: #e74c3c;
    background-color: #fee;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    display: none;
}

/* --- 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;
    }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .footer-columns-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-column-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-right-group {
        display: none;
    }
    
    .content-page-container h1 {
        font-size: 32px;
    }
    
    .content-page-container h2 {
        font-size: 24px;
    }
    
    .prozess-schritt {
        padding: 25px;
    }
    
    .prozess-schritt-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-copyright-row {
        flex-direction: column;
        gap: 15px;
    }
}



/* ==========================================================================
   FINALE STYLES FÜR PREIS-SEITE (NACH PLANCRAFT-VORBILD)
   ========================================================================== */

body.dark-page-background, .pricing-page-main {
    background-color: #333333;
}

.pricing-hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.pricing-main-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-hero-subtext {
    color: #aaa;
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 40px;
}

.plan-selectors-v2 {
    display: inline-flex;
    background-color: #333;
    border-radius: 12px;
    padding: 5px;
    margin: 0 auto;
}
.plan-selector-v2 {
    background: transparent;
    border: none;
    color: #ccc;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.plan-selector-v2:hover {
    background-color: #444;
}
.plan-selector-v2.active {
    background-color: var(--secondary-color);
    color: var(--dark-blue);
}
.save-badge-chip-v2 {
    background-color: #087f5b;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.pricing-cards-section {
    padding-bottom: 80px;
}
.pricing-cards-wrapper-final {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}
.price-card-final {
    background: #fff;
    color: var(--dark-blue);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.price-card-final.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #f0faf8, #ffffff);
    position: relative;
}
.price-card-final.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge-final {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--dark-blue);
    padding: 6px 15px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(106, 213, 195, 0.5);
}

.card-header-final {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.card-header-final i {
    font-size: 24px;
    color: var(--primary-color);
}
.card-header-final h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}
.price-final {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 8px 0 0 0;
}
.price-meta-final {
    font-size: 14px;
    color: var(--text-light);
    margin: 4px 0 24px 0;
    min-height: 40px;
}
.price-card-final .button {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 24px;
    background: #e9ecef;
    color: var(--dark-blue);
    border: none;
    transition: background-color 0.3s;
}

.price-card-final .button:hover {
    background-color: #d8dde2;
}

.price-card-final .button.primary-cta {
    background: var(--secondary-color);
}
.price-card-final .button.primary-cta:hover {
    background: #57c2b0;
}

.features-final {
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
    border-top: 1px solid #e9ecef;
    flex-grow: 1; 
}
.features-final li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-color);
}
.features-final li i {
    color: var(--secondary-color);
    font-size: 18px;
}
.features-final li:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 80px 0;
    color: var(--dark-blue);
}
.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}
.faq-container {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}
.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease-in-out;
    font-size: 14px;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .pricing-cards-wrapper-final {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-card-final {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
    .price-card-final.popular {
        order: -1;
        transform: scale(1); /* Reset scale for stacked layout */
    }
    .price-card-final.popular:hover {
       transform: translateY(-5px); /* Keep hover effect */
    }
}
@media (max-width: 768px) {
    .pricing-main-headline {
        font-size: 36px;
    }
    .pricing-hero-subtext {
        font-size: 16px;
    }
    .plan-selectors-v2 {
        transform: scale(0.9);
    }
}

/* ==========================================================================
   HEADER & NAVIGATION (FINAL, ROBUST VERSION)
   ========================================================================== */

/* --- Header Basis --- */
.main-header {
    background-color: #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #444;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    max-height: 35px;
}

/* --- Desktop Navigation (mit korrektem Abstand) --- */
.main-nav .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px; /* Sorgt für den korrekten, größeren Abstand */
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0; /* Setzt zur Sicherheit eventuelle Innenabstände zurück */
    margin: 0; /* Setzt zur Sicherheit eventuelle Außenabstände zurück */
}

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

/* --- Rechte Button-Gruppe (Login) --- */
.header-right-group {
    display: flex;
    align-items: center;
}

.auth-button {
    background: var(--white);
    border: none;
    color: #222;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.auth-button:hover {
    background-color: #e0e0e0;
}

/* --- Mobile Menu Toggle (Burger Icon) --- */

/* ==========================================================================
   MOBILES MENÜ (FINAL, KORRIGIERTE VERSION)
   ========================================================================== */

/* --- Burger-Icon zum Öffnen/Schließen --- */
.mobile-menu-toggle {
    display: none; /* Auf Desktop ausgeblendet */
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
}
/* Logik für Icon-Wechsel (Burger/X) */
.mobile-menu-toggle .fa-times { display: none; }
.mobile-menu-toggle.active .fa-bars { display: none; }
.mobile-menu-toggle.active .fa-times { display: block; }


/* --- Der eigentliche Menü-Container (als Vollbild-Overlay) --- */
.mobile-menu-container {
    position: fixed; /* Wichtig für Vollbild-Overlay */
    top: 70px;       /* Beginnt unterhalb des Headers */
    left: 0;
    right: 0;
    bottom: 0;       /* Wichtig: Nimmt die restliche Bildschirmhöhe ein */
    background-color: #222222;
    z-index: 1050;   /* Liegt über dem Seiteninhalt */
    padding: 40px 20px;
    overflow-y: auto; /* Erlaubt scrollen bei vielen Menüpunkten */
    
    /* Animation: Gleitet von oben hinein */
    transform: translateY(-110%);
    transition: transform 0.35s ease-in-out;
}

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


/* --- Die Navigations-Links innerhalb des mobilen Menüs --- */
.mobile-nav {
    display: flex;
    flex-direction: column; /* Ordnet die Links untereinander an */
    align-items: center;    /* Zentriert die Links horizontal */
    gap: 20px;
}

.mobile-nav a, .mobile-nav button {
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 10px;
    transition: color 0.2s ease;
    border: none; /* Stellt sicher, dass der Button keinen Rahmen hat */
}

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

.mobile-nav button {
    background: var(--secondary-color);
    color: var(--dark-blue);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: auto;
    min-width: 220px; /* Gibt dem Button eine gute Größe */
    margin-top: 20px;
}

/* --- Responsive Regel, die das Burger-Icon auf Mobilgeräten aktiviert --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}


/* --- Mobile Menu Container (NEUE, ROBUSTERE LOGIK) --- */




/* --- Responsive Breakpoint --- */
@media (max-width: 768px) {
    .main-nav, .header-right-group {
        display: none;
    }
   
}


/* --- 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 den Button mobil anzuzeigen */
@media (max-width: 768px) {
    .floating-login-btn {
        display: block; /* Zeigt den Button auf Mobilgeräten an */
    }
}


/* Hero so funktionierts Section */
        .sfs-hero {
            background-color: var(--dark-blue);
            color: var(--white);
            text-align: center;
            padding: 100px 20px;
        }
        .sfs-hero h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 20px 0;
            color: var(--white);
        }
        .sfs-hero p {
            font-size: 20px;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        /* Steps Section */
        .sfs-steps-container {
            padding: 100px 0;
            background-color: var(--background-grey);
        }
        .sfs-step {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 30px;
            align-items: flex-start;
            max-width: 900px;
            margin: 0 auto 60px auto;
        }
        .sfs-step-number {
            font-size: 72px;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
            text-align: center;
        }
        .sfs-step-content h2 {
            font-size: 32px;
            margin: 0 0 15px 0;
            color: var(--dark-blue);
        }
        .sfs-step-content p {
            font-size: 18px;
            line-height: 1.7;
        }
        
        /* Feature Highlight Section */
        .sfs-feature-section {
            padding: 100px 20px;
        }
        .sfs-feature-highlight {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            max-width: 1140px;
            margin: 0 auto;
        }
        .sfs-feature-highlight.reverse .sfs-feature-text {
            grid-column: 2;
        }
        .sfs-feature-highlight.reverse .sfs-feature-visual {
            grid-column: 1;
        }
        .sfs-feature-text .feature-tag {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary-color);
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }
        .sfs-feature-text h3 {
            font-size: 36px;
            margin: 0 0 20px 0;
        }
        .sfs-feature-text p, .sfs-feature-text li {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
        }
        .sfs-feature-text ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .sfs-feature-text li {
            padding-left: 30px;
            position: relative;
            margin-bottom: 10px;
        }
        .sfs-feature-text li::before {
            content: '\f058'; /* Font Awesome check-circle */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 4px;
        }
        .sfs-feature-visual {
            background-color: var(--background-grey);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
        }
        .sfs-feature-visual i {
            font-size: 80px;
            color: var(--secondary-color);
        }
        .sfs-feature-visual p {
            font-weight: 600;
            color: var(--text-light);
            margin-top: 20px;
        }

        /* Coming Soon Section */
        .sfs-coming-soon {
            padding: 80px 20px;
            background-color: white;
            text-align: center;
        }
        .sfs-coming-soon i {
            font-size: 50px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .sfs-coming-soon h2 {
            color: var(--primary-color);
            font-size: 32px;
            margin: 0 0 15px 0;
        }
        .sfs-coming-soon p {
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media(max-width: 768px) {
            .sfs-hero h1 { font-size: 36px; }
            .sfs-hero p { font-size: 18px; }
            .sfs-step { grid-template-columns: 1fr; text-align: center; }
            .sfs-step-number { margin-bottom: 20px; }
            .sfs-feature-highlight { grid-template-columns: 1fr; text-align: center; }
            .sfs-feature-highlight.reverse .sfs-feature-text { grid-column: 1; }
            .sfs-feature-highlight.reverse .sfs-feature-visual { grid-column: 1; }
            .sfs-feature-text li { padding-left: 0; text-align: left;}
            .sfs-feature-text li::before { position: static; padding-right: 10px; }
        }

        /* BETA GATEKEEPER STYLES - Einfach löschen wenn Beta vorbei */
.beta-gatekeeper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 12px;
}

.beta-gatekeeper-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
}

.beta-gatekeeper-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.beta-gatekeeper-box input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.beta-gatekeeper-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.beta-gatekeeper-box button {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.beta-gatekeeper-box button:hover {
    background: var(--primary-hover);
}

.beta-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.beta-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--background-grey);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-light);
}
/* ENDE BETA GATEKEEPER STYLES */

/* BETA GATEKEEPER STYLES - Einfach löschen wenn Beta vorbei */
/* Stelle sicher, dass der wrapper relative Position hat */
.pricing-cards-wrapper-final {
    position: relative !important;
}

.beta-gatekeeper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* Reduziert von 1000 */
    border-radius: 16px; /* Passt zu den Karten */
}

/* BETA GATEKEEPER STYLES - Größere Box */
.beta-gatekeeper-overlay {
    position: absolute;
    top: -50px;  /* Erweitert nach oben */
    left: -20px; /* Erweitert nach links */
    right: -20px; /* Erweitert nach rechts */
    bottom: -50px; /* Erweitert nach unten */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 16px;
}

/* Alternativ: Mindesthöhe setzen */
.pricing-cards-wrapper-final {
    position: relative !important;
    min-height: 600px; /* Mindesthöhe für den Container */
}

/* Die Box selbst größer machen */
.beta-gatekeeper-box {
    background: white;
    padding: 50px 40px; /* Mehr Padding */
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.beta-gatekeeper-box h3 {
    font-size: 32px; /* Größere Überschrift */
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.beta-gatekeeper-box input {
    width: 100%;
    padding: 16px; /* Größeres Input-Feld */
    font-size: 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.beta-gatekeeper-box button {
    width: 100%;
    padding: 18px; /* Größerer Button */
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.beta-info {
    margin-top: 25px;
    padding: 20px;
    background: var(--background-grey);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}