/* ========================================
   WATT4 - GLOBALE CSS-DATEI
   ========================================
   
   Dunkles Blau-Grün Design für watt4 Website
   Responsive, mehrsprachig, Darkmodus-Unterstützung
   
   Version: 1.1.1
   Erstellt: 2025-01-XX
   v1.1: Corporate-Farben für Menüpunkte (Grün #4CAF50 für normal, Blau #2196F3 für aktiv/hover)
   v1.1.1: Cookie-Info Styles hinzugefügt (.cookie-info, .cookie-item)
   ======================================== */

/* ========================================
   CSS-VARIABLEN (DARK MODE SUPPORT)
   ======================================== */

:root {
    /* Primärfarben - Dunkles Blau-Grün */
    --primary-color: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #0f1f2e;
    --accent-color: #2d5a8a;
    --accent-light: #4a7ba7;
    --accent-dark: #1a3d5c;
    
    /* Sekundärfarben */
    --secondary-color: #3d6b5a;
    --secondary-light: #5a8a7a;
    --secondary-dark: #2a4a3a;
    
    /* Neutralfarben */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --border-color: #dee2e6;
    
    /* Schatten */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Übergänge */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Dark Mode Variablen */
[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --border-color: #404040;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
}

/* Dark Mode: Überschriften h1-h6 in Blau 400 */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

/* Dark Mode: Hero-Titel müssen weiß bleiben */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h2,
[data-theme="dark"] .hero h3,
[data-theme="dark"] .hero h4,
[data-theme="dark"] .hero h5,
[data-theme="dark"] .hero h6 {
    color: #ffffff !important; /* Weiß für Hero-Titel im Dark Mode */
}

/* ========================================
   RESET & BASIS-STYLES
   ======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1976D2; /* Blau 700 im Normal Mode */
}

h1 { font-size: 2.25rem; } /* 36px */

/* Überschreibe h1 für top-container-title - muss nach allgemeiner h1-Regel kommen */
.top-container h1.top-container-title {
    font-size: calc(1.5rem + 2pt) !important;
    color: #2196F3 !important; /* Blau im Normal Mode */
    margin-bottom: 0 !important;
}

h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

a.text-link {
    color: #2196F3; /* Corporate Blau */
    text-decoration: underline;
    font-weight: 500;
}

a.text-link:hover {
    color: #1976D2; /* Dunkleres Blau für Hover */
    text-decoration: underline;
}

/* ========================================
   LAYOUT-KOMPONENTEN
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col {
    flex: 1;
    padding: 0 0.5rem;
}

.col-12 { flex: 0 0 100%; }
.col-11 { flex: 0 0 91.666667%; }
.col-10 { flex: 0 0 83.333333%; }
.col-9 { flex: 0 0 75%; }
.col-8 { flex: 0 0 66.666667%; }
.col-7 { flex: 0 0 58.333333%; }
.col-6 { flex: 0 0 50%; }
.col-5 { flex: 0 0 41.666667%; }
.col-4 { flex: 0 0 33.333333%; }
.col-3 { flex: 0 0 25%; }
.col-2 { flex: 0 0 16.666667%; }
.col-1 { flex: 0 0 8.333333%; }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 2rem;
    width: 2rem;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu a.text-primary {
    color: var(--primary-color);
}

.nav-menu a.text-primary:hover {
    color: var(--primary-light);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* ========================================
   CARDS & PANELS
   ======================================== */

.card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.demo-assistant {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    transition: all var(--transition-normal);
}

.demo-assistant:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.demo-assistant h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-assistant p {
    font-weight: 500;
    color: var(--primary-color);
}

.demo-assistant small {
    font-style: italic;
    line-height: 1.4;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    transition: background-color var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal);
}

.footer h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: var(--text-secondary);
}

.footer a:hover {
    color: #42A5F5; /* Blau 400 für Footer-Links Hover im Normal Mode */
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-secondary);
}

.footer-bottom a {
    color: #42A5F5; /* Blau 400 für Footer-Links im Normal Mode */
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: #2196F3; /* Corporate Blau 500 für Hover */
    text-decoration: underline;
}

/* ========================================
   UTILITY-KLASSEN
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--bg-secondary); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* ========================================
   TECHNOLOGY GRID
   ======================================== */

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-grid .card {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-grid .card {
        margin-bottom: 1rem;
    }
}

/* ========================================
   MOBILE MENU / HAMBURGER
   ======================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: all var(--transition-normal);
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-controls {
        position: static;
        order: 2;
        margin-left: auto;
    }
    
    /* Dark mode adjustments for mobile */
    [data-theme="dark"] .nav-menu {
        background: var(--bg-primary);
        border-left-color: var(--border-color);
    }
    
    [data-theme="dark"] .hamburger-line {
        background-color: var(--text-primary);
    }
    
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        flex: 1;
        text-align: left;
    }
    
    .mobile-menu-toggle {
        order: 3;
        margin-left: 10px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* ========================================
   DARK MODE TOGGLE
   ======================================== */

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--primary-color);
    background-color: var(--bg-tertiary);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher select {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.language-switcher select:hover {
    border-color: var(--primary-color);
}

/* ========================================
   ANIMATIONEN
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .header, .footer, .nav-controls {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

/* ========================================
   TOP CONTAINER & MENU STYLES
   ======================================== */

.top-container {
    background: var(--bg-primary);
    background-image: url('../public/images/solar_plant-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.top-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    opacity: 0.5;
    z-index: 0;
}

.top-container-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.top-container h1.top-container-title,
h1.top-container-title,
.top-container-title {
    font-size: calc(1.5rem + 2pt) !important;
    font-weight: 700 !important;
    color: #2196F3 !important; /* Blau im Normal Mode */
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* Dark Mode: Grün für EnergyPool.net */
[data-theme="dark"] .top-container h1.top-container-title,
[data-theme="dark"] h1.top-container-title,
[data-theme="dark"] .top-container-title {
    color: #4CAF50 !important; /* Grün im Dark Mode */
}

.top-container-login {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-right: 1rem;
}

.cookie-item {
    display: flex;
    gap: 0.5rem;
}

.cookie-item strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 100px;
}

.cookie-item span {
    color: var(--text-secondary);
}

.top-container-user {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-button {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.login-button:hover {
    background: var(--primary-light);
    text-decoration: none;
}

.menu-container {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

nav.menu-container .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

.menu-nav {
    display: flex !important;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 1 auto !important;
}

.menu-nav li {
    margin: 0 !important;
}

.menu-nav a {
    color: #4CAF50; /* Corporate Grün für normale Menüpunkte */
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    display: block;
    white-space: nowrap;
}

.menu-nav a:hover {
    color: #2196F3; /* Corporate Blau für Hover */
    text-decoration: none;
}

.menu-nav a.active {
    color: #2196F3 !important; /* Corporate Blau für aktiven Menüpunkt */
}

/* Dark Mode: Aktive Menüpunkte müssen auch im Dark Mode blau sein */
[data-theme="dark"] .menu-nav a.active {
    color: #2196F3 !important; /* Corporate Blau für aktiven Menüpunkt im Dark Mode */
}

.menu-controls {
    display: flex !important;
    align-items: center !important;
    gap: 1rem;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

.language-switcher select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-primary);
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    color: white;
    font-size: 2.25rem; /* 36px */
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0;
}

.hero-savings {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    text-transform: uppercase;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
    padding: 3rem 0;
}

.section-alt {
    background: var(--bg-secondary);
}

/* ========================================
   BENEFITS GRID
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-direction: row !important;
}

.benefits-grid .benefit-card h3,
.benefit-card h3 {
    color: var(--primary-color) !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.benefits-grid .benefit-card p,
.benefit-card p {
    margin: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    flex: 1 !important;
    padding: 0 !important;
}

/* ========================================
   CTA FORM
   ======================================== */

.cta-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
}

.cta-form .form-group {
    margin-bottom: 1.5rem;
}

.cta-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cta-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

/* ========================================
   PRODUCTS STYLES
   ======================================== */

.content-section {
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card h2 {
    color: #1976D2; /* Blau 700 im Normal Mode */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.product-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.product-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-card .btn {
    background: #4CAF50; /* Corporate Grün */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s, color 0.3s;
}

.product-card .btn:hover {
    background: #2196F3; /* Corporate Blau für Hover */
    color: white;
    text-decoration: none;
}

.product-detail-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.product-detail-card h2 {
    color: #1976D2; /* Blau 700 im Normal Mode */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.product-price.brings {
    background: #4CAF50; /* Corporate Grün für "Bringt"-Boxen */
    color: white; /* Weißer Text für bessere Lesbarkeit */
}

.product-detail-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Dark Mode: Bessere Lesbarkeit für Product Cards */
[data-theme="dark"] .product-card h2,
[data-theme="dark"] .product-card h3 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

[data-theme="dark"] .product-card p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .product-price {
    color: #ffffff !important;
    background: var(--bg-tertiary) !important;
}

[data-theme="dark"] .product-detail-card h2,
[data-theme="dark"] .product-detail-card h3 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

[data-theme="dark"] .product-detail-card p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .example-card h3 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

[data-theme="dark"] .example-card p {
    color: var(--text-secondary) !important;
}

/* Dark Mode: Bessere Lesbarkeit für content-section Überschriften */
[data-theme="dark"] .content-section h2 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

[data-theme="dark"] .content-section h3 {
    color: #42A5F5 !important; /* Blau 400 im Dark Mode */
}

[data-theme="dark"] .content-section p {
    color: var(--text-secondary) !important;
}

/* Dark Mode: Bessere Lesbarkeit für Tabellen */
[data-theme="dark"] table th {
    color: #ffffff !important;
    background: var(--bg-tertiary) !important;
}

[data-theme="dark"] table td {
    color: var(--text-secondary) !important;
}

/* Dark Mode: Bessere Lesbarkeit für Links */
[data-theme="dark"] .back-link {
    color: #4CAF50 !important; /* Corporate Grün für bessere Sichtbarkeit */
}

[data-theme="dark"] .back-link:hover {
    color: #66BB6A !important; /* Helleres Grün beim Hover */
    text-decoration: underline !important;
}

/* Dark Mode: Allgemeine Links heller machen */
[data-theme="dark"] a {
    color: #4CAF50 !important; /* Corporate Grün für Links */
}

[data-theme="dark"] a:hover {
    color: #66BB6A !important; /* Helleres Grün beim Hover */
}

/* Dark Mode: Menü-Links sollten nicht von der allgemeinen Link-Regel überschrieben werden */
[data-theme="dark"] .menu-nav a {
    color: #4CAF50 !important; /* Corporate Grün für Menü-Links */
}

[data-theme="dark"] .menu-nav a:hover {
    color: #2196F3 !important; /* Corporate Blau für Hover */
}

/* Dark Mode: Button-Texte müssen weiß bleiben */
[data-theme="dark"] .btn,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .btn-outline,
[data-theme="dark"] button {
    color: #ffffff !important; /* Weiß für Button-Texte im Dark Mode */
}

[data-theme="dark"] .btn:hover,
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-outline:hover,
[data-theme="dark"] button:hover {
    color: #ffffff !important; /* Weiß für Button-Texte beim Hover im Dark Mode */
}

/* Dark Mode: Product-Card Buttons müssen weiß bleiben */
[data-theme="dark"] .product-card .btn,
[data-theme="dark"] .product-card .btn:hover {
    color: #ffffff !important; /* Weiß für Product-Card Button-Texte im Dark Mode */
}

/* Dark Mode: Links in content-section */
[data-theme="dark"] .content-section a {
    color: #4CAF50 !important;
}

[data-theme="dark"] .content-section a:hover {
    color: #66BB6A !important;
}

/* Dark Mode: Footer-Links heller machen */
[data-theme="dark"] .footer-bottom a {
    color: #4CAF50 !important; /* Corporate Grün für Footer-Links */
}

[data-theme="dark"] .footer-bottom a:hover {
    color: #66BB6A !important; /* Helleres Grün beim Hover */
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.cta-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 4rem 0;
}

.cta-section .btn {
    background: white;
    color: #4CAF50;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem;
}

/* ========================================
   MAKE MONEY STYLES
   ======================================== */

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.group-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.group-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.example-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
}

.marketing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.marketing-table th,
.marketing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.marketing-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-savings {
        font-size: 1.4rem;
    }
    
    .top-container-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .menu-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav.menu-container .container {
        flex-direction: column !important;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .menu-controls {
        align-self: flex-end;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card {
        padding: 2rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
}

/* Form Styles */
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

[data-theme="dark"] .alert-success {
    background-color: #0f5132;
    border-color: #0a4128;
    color: #d1e7dd;
}

[data-theme="dark"] .alert-danger {
    background-color: #842029;
    border-color: #6a1a21;
    color: #f8d7da;
}

/* Contact Form Layout */
.contact-section .row {
    gap: 2rem !important;
    align-items: flex-start !important;
    margin: 0 !important;
}

.contact-section .col-4,
.contact-section .col-8 {
    padding: 0 0.5rem !important;
}

.contact-section .card {
    margin-bottom: 0 !important;
}

.contact-form-container {
    margin-left: 0 !important;
}

.contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: left !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.contact-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    margin: 0 !important;
}

.contact-form .form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: left !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
}

.contact-form .form-group .form-label {
    width: 100% !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    display: block !important;
}

.contact-form .form-group .form-control {
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0.75rem !important;
}

.contact-form button {
    align-self: flex-start !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .contact-section .row {
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 0 !important;
    }
    
    .contact-section .col-4,
    .contact-section .col-8 {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-form-container {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

