        /* ═══════════════════════════════════════════════════════════
           CSS VARIABLES - Apple-inspirierte Farbpalette
           ═══════════════════════════════════════════════════════════ */
        :root {
            /* Primärfarben - Hell → Dunkel Transition */
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f5f5f7;
            --gray-200: #e8e8ed;
            --gray-300: #d2d2d7;
            --gray-400: #86868b;
            --gray-500: #6e6e73;
            --gray-600: #424245;
            --gray-700: #2d2d30;
            --gray-800: #1d1d1f;
            --gray-900: #0a0a0b;
            --black: #000000;
            
            /* Akzentfarben */
            --accent: #000000;
            --accent-hover: #333333;
            --accent-light: #444444;
            --success: #34c759;
            --warning: #ff9f0a;
            
            /* Gradients */
            --gradient-hero: linear-gradient(180deg, #fafafa 0%, #e8e8ed 50%, #1d1d1f 100%);
            --gradient-section-light: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
            --gradient-section-dark: linear-gradient(180deg, #1d1d1f 0%, #0a0a0b 100%);
            
            /* Schatten */
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
            
            /* Transitions */
            --transition-fast: 0.15s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            
            /* Spacing */
            --section-padding: clamp(4rem, 8vw, 8rem);
            --container-max: 1200px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           RESET & BASE STYLES
           ═══════════════════════════════════════════════════════════ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 17px;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--gray-50);
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        
        /* ═══════════════════════════════════════════════════════════
           UTILITY CLASSES
           ═══════════════════════════════════════════════════════════ */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: var(--section-padding) 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Scroll Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 250, 250, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background var(--transition-normal), box-shadow var(--transition-normal);
        }
        
        
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 52px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .nav-logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-800);
            letter-spacing: -0.02em;
        }
        
        .nav-logo span {
            font-weight: 300;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--gray-600);
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .nav-cta-mobile {
            display: none;
            font-size: 1.5rem;
            color: var(--gray-800);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 52px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            padding: 2rem;
            transform: translateY(-100%);
            transition: transform var(--transition-normal);
            z-index: 999;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
        }
        
        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .mobile-menu-links a {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--gray-800);
        }
        
        /* ═══════════════════════════════════════════════════════════
           HERO SECTION - Apple-Inspired
           ═══════════════════════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 6rem 1.5rem 4rem;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(0, 113, 227, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 113, 227, 0.1);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .hero-title { color: #ffffff !important;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
            max-width: 900px;
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }
        
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent), #333333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle { color: rgba(255,255,255,0.85) !important;
            font-size: clamp(1.125rem, 2.5vw, 1.5rem);
            color: var(--gray-500);
            max-width: 700px;
            margin: 0 auto 2rem;
            font-weight: 400;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 980px;
            font-size: 1rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        
        .btn-primary {
            background: var(--accent);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: scale(1.02);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--gray-300);
        }
        
        .btn-secondary:hover {
            background: var(--gray-100);
            border-color: var(--gray-400);
        }
        
        .btn-dark {
            background: var(--gray-800);
            color: var(--white);
        }
        
        .btn-dark:hover {
            background: var(--gray-700);
        }
        
        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: clamp(2rem, 6vw, 5rem);
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-value {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
        }
        
        .hero-stat-label { color: rgba(255,255,255,0.8) !important;
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ═══════════════════════════════════════════════════════════
           SOCIAL PROOF TICKER
           ═══════════════════════════════════════════════════════════ */
        .ticker { margin-top: 3.5rem !important; background: rgba(0,0,0,0.3) !important; border-top: 1px solid rgba(255,255,255,0.1) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important;
            background: var(--gray-100);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
            padding: 1rem 0;
            overflow: hidden;
        }
        
        .ticker-track {
            display: flex;
            animation: ticker 30s linear infinite;
        }
        
        .ticker-item { color: rgba(255,255,255,0.9) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 2rem;
            font-size: 0.875rem;
            color: var(--gray-600);
            white-space: nowrap;
        }
        
        .ticker-item strong { color: #ffffff !important;
            color: var(--gray-800);
        }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* ═══════════════════════════════════════════════════════════
           USP / VALUE PROPOSITION SECTION
           ═══════════════════════════════════════════════════════════ */
        .usp {
            background: var(--white);
            position: relative;
        }
        
        .usp-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-eyebrow {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .usp-card {
            padding: 2rem;
            border-radius: 1.5rem;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            transition: all var(--transition-normal);
        }
        
        .usp-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gray-300);
        }
        
        .usp-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent), #333333);
            border-radius: 1rem;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .usp-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        
        .usp-card p {
            color: var(--gray-500);
            font-size: 0.9375rem;
        }
        
        /* ═══════════════════════════════════════════════════════════
           PRODUCTS SECTION
           ═══════════════════════════════════════════════════════════ */
        .products {
            background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-800) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .products-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .products .section-title {
            color: #ffffff;
        }
        
        .products .section-subtitle {
            color: var(--gray-600);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition-normal);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
        }
        
        .product-card.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        
        .product-image {
            background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
            min-height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .product-content {
            padding: 2rem;
        }
        
        .product-tag {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        
        .product-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        
        .product-specs {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-bottom: 1rem;
        }
        
        .product-description {
            color: var(--gray-600);
            font-size: 0.9375rem;
            margin-bottom: 1.5rem;
        }
        
        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .product-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 0.5rem;
        }
        
        .product-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
        }
        
        /* ═══════════════════════════════════════════════════════════
           BENEFITS SECTION (DARK)
           ═══════════════════════════════════════════════════════════ */
        .benefits {
            background: var(--gradient-section-dark);
            color: var(--white);
            position: relative;
        }
        
        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='0.03' fill='none'/%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .benefits-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .benefits .section-eyebrow {
            color: var(--accent-light);
        }
        
        .benefits .section-title {
            color: var(--white);
        }
        
        .benefits .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
        }
        
        .benefit-card {
            padding: 2rem;
            border-radius: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-normal);
        }
        
        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
        }
        
        .benefit-stat {
            display: inline-block;
            background: rgba(0, 113, 227, 0.2);
            color: var(--accent-light);
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        /* ═══════════════════════════════════════════════════════════
           PROCESS / HOW IT WORKS
           ═══════════════════════════════════════════════════════════ */
        .process {
            background: var(--gray-900);
            color: var(--white);
        }
        
        .process-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .process .section-title {
            color: var(--white);
        }
        
        .process .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--gray-600));
            z-index: 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), #333333);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 0 40px rgba(0, 113, 227, 0.3);
        }
        
        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .process-step p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
        }
        
        /* ═══════════════════════════════════════════════════════════
           CONTACT SECTION
           ═══════════════════════════════════════════════════════════ */
        .contact {
            background: var(--white);
            position: relative;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        
        .contact-info > p {
            color: var(--gray-500);
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .contact-details li:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.25rem;
        }
        
        .contact-text p {
            color: var(--gray-500);
            font-size: 0.9375rem;
        }
        
        /* Contact Form */
        .contact-form-wrapper {
            background: var(--gray-50);
            border-radius: 1.5rem;
            padding: 2.5rem;
            border: 1px solid var(--gray-200);
        }
        
        .contact-form h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        
        .contact-form > p {
            color: var(--gray-500);
            margin-bottom: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.75rem;
            font-size: 1rem;
            background: var(--white);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .form-checkbox input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--accent);
        }
        
        .form-checkbox label {
            font-size: 0.875rem;
            color: var(--gray-600);
        }
        
        .form-checkbox a {
            color: var(--accent);
            text-decoration: underline;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        
        .submit-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }
        
        .submit-btn:disabled {
            background: var(--gray-400);
            cursor: not-allowed;
            transform: none;
        }
        
        .form-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 0.75rem;
            text-align: center;
            display: none;
        }
        
        .form-status.success {
            display: block;
            background: rgba(52, 199, 89, 0.1);
            color: var(--success);
        }
        
        .form-status.error {
            display: block;
            background: rgba(255, 59, 48, 0.1);
            color: #ff3b30;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FAQ SECTION
           ═══════════════════════════════════════════════════════════ */
        .faq {
            background: var(--gray-50);
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 1rem;
            margin-bottom: 1rem;
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            background: none;
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        
        .faq-question:hover {
            background: var(--gray-50);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform var(--transition-fast);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-normal);
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--gray-600);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */
        .footer {
            background: var(--black);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .footer-brand .logo span {
            font-weight: 300;
        }
        
        .footer-brand p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1.5rem;
            max-width: 280px;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: background var(--transition-fast);
        }
        
        .footer-social a:hover {
            background: var(--accent);
        }
        
        .footer-column h4 {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            transition: color var(--transition-fast);
        }
        
        .footer-column a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-copyright {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-legal {
            display: flex;
            gap: 2rem;
        }
        
        .footer-legal a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-legal a:hover {
            color: var(--white);
        }
        
        /* ═══════════════════════════════════════════════════════════
           CHAT WIDGET TRIGGER
           ═══════════════════════════════════════════════════════════ */
        .chat-trigger {
            position: fixed;
            bottom: 100px;
            right: 24px;
            background: var(--accent);
            color: var(--white);
            padding: 0.875rem 1.5rem;
            border-radius: 100px;
            font-weight: 500;
            font-size: 0.9375rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(0, 113, 227, 0.4);
            z-index: 998;
            transition: all var(--transition-fast);
            animation: pulse-chat 2s infinite;
        }
        
        .chat-trigger:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 113, 227, 0.5);
        }
        
        @keyframes pulse-chat {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(0, 113, 227, 0.4);
            }
            50% {
                box-shadow: 0 8px 40px rgba(0, 113, 227, 0.6);
            }
        }
        
        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE DESIGN
           ═══════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
            
            .footer-brand {
                grid-column: span 3;
                margin-bottom: 1rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-card.featured {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .nav-cta-mobile {
                display: block;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-brand {
                grid-column: span 2;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            body {
                font-size: 16px;
            }
            
            .hero {
                padding-top: 5rem;
            }
            
            .hero-stats {
                gap: 1.5rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-brand {
                grid-column: span 1;
            }
            
            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .chat-trigger {
                bottom: 80px;
                right: 16px;
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
            }
        }

/* TEMP FIX: Disable reveal animations until fixed */
.reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
}


/* Navigation hide/show like Amazon */
.nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker { margin-top: 3.5rem !important; background: rgba(0,0,0,0.3) !important; border-top: 1px solid rgba(255,255,255,0.1) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item { color: rgba(255,255,255,0.9) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.ticker-item strong { color: #ffffff !important;
    color: var(--gray-800);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   EXIT INTENT POPUP
   ═══════════════════════════════════════════════════════════ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup.visible .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.exit-popup-close:hover {
    background: var(--gray-200);
}

.exit-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exit-popup-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.exit-popup-content > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.exit-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exit-popup-actions .btn {
    width: 100%;
}

.exit-popup-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Modern SVG Icons */
.usp-icon-svg {
    width: 48px;
    height: 48px;
    color: #000000;
    stroke-width: 1.5;
    margin-bottom: 1.5rem;
}

.usp-card:hover .usp-icon-svg {
    color: #0077ED;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Benefit Icons */
.benefit-icon-svg {
    width: 48px;
    height: 48px;
    color: #000000;
    stroke-width: 1.5;
}

/* Contact Icons */
.contact-icon-svg {
    width: 40px;
    height: 40px;
    color: #000000;
    stroke-width: 1.5;
}
/* ═══════════════════════════════════════════════════════════
   HERO WITH BACKGROUND IMAGE
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.40) 100%),
                url('/images/gallery/premium-alpen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Award Badge im Hero */
.hero-award {
    position: absolute;
    top: 120px;
    right: 40px;
    width: 140px;
    height: auto;
    animation: awardFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-award {
        width: 100px;
        top: 100px;
        right: 20px;
    }
}

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

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery {
    background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 16/12;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-item-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS WITH IMAGES
   ═══════════════════════════════════════════════════════════ */
.product-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-card.featured .product-card-image {
    height: 300px;
}

/* ═══════════════════════════════════════════════════════════
   AWARD INLINE BADGE
   ═══════════════════════════════════════════════════════════ */
.award-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(0,113,227,0.1);
    margin-top: 1.5rem;
}

.award-inline img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.award-inline-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d1d1f;
}

.award-inline-text strong {
    color: #000000;
}

/* ═══════════════════════════════════════════════════════════
   SECONDARY TOP-BAR (Amazon-style)
   ═══════════════════════════════════════════════════════════ */
.top-bar {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 0;
    font-size: 0.8125rem;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-item:hover {
    color: #ffffff;
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar-highlight {
    color: rgba(255,255,255,0.85);
    padding: 0.375rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.top-bar-highlight:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.top-bar-arrow {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
}

.top-bar-highlight:hover .top-bar-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Adjust main nav position */
.nav {
    top: 37px !important;
}

/* Hero padding adjustment */
.hero {
    padding-top: 7rem !important;
}

/* Mobile: Hide top-bar */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav {
        top: 0 !important;
    }
    .hero {
        padding-top: 6rem !important;
    }
}

/* Award Badge Link */
.hero-award-link {
    display: block;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.hero-award-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero-award-link:hover::after {
    content: 'Zur Galerie →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION REDESIGN v5.0
   ═══════════════════════════════════════════════════════════ */

/* Top-Bar: Pure Black */
.top-bar {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* Main Navigation: Anthrazit */
.nav {
    background: #2d2d2d !important;
    border: 2px solid #000000 !important;
}

.nav-logo {
    color: #ffffff !important;
}

.nav-logo span {
    color: #ffffff !important;
}

.nav-links a {
    color: rgba(255,255,255,0.85) !important;
}

.nav-links a:hover {
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════
   CHAT FIELD REDESIGN - AI Feeling
   ═══════════════════════════════════════════════════════════ */

/* Chat Container - Taller, Less Blue, More AI-like */
.search-container {
    max-width: 800px !important;
    background: rgba(30, 30, 30, 0.95) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}

.search-container input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 1.25rem 1.5rem !important;
    height: auto !important;
    min-height: 60px !important;
}

.search-container input::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.search-container button {
    background: rgba(255,255,255,0.1) !important;
    border: none !important;
    border-left: 1px solid rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
    padding: 1.25rem 1.5rem !important;
    border-radius: 0 16px 16px 0 !important;
    font-size: 1.25rem !important;
}

.search-container button:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* Chat Response Box - AI Style */
.chat-response {
    background: rgba(25, 25, 25, 0.98) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    margin-top: 0.75rem !important;
    padding: 1.5rem !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
}

/* Follow-up Input */
.chat-response input {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 0.875rem 1rem !important;
}

.chat-response button {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
}

.chat-response button:hover {
    background: rgba(255,255,255,0.2) !important;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION + CHAT REDESIGN v5.0 - CORRECTED SELECTORS
   ═══════════════════════════════════════════════════════════ */

/* Top-Bar: Pure Black */
.top-bar {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 0.4rem 0 !important;
}

/* Main Navigation: Anthrazit */
nav.nav,
.nav#nav {
    background: #2a2a2a !important;
    border: 2px solid #000000 !important;
}

/* Chat Field Redesign - AI Style */
.search-bar-container {
    z-index: 9999 !important;
}

.search-bar {
    max-width: 860px !important;
    background: rgba(30, 30, 35, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
    overflow: hidden !important;
}

.search-bar input,
.search-bar input[type="text"] {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 1.25rem 1.5rem !important;
    height: 60px !important;
    min-height: 60px !important;
    border-radius: 16px 0 0 16px !important;
}

.search-bar input::placeholder {
    color: rgba(255,255,255,0.45) !important;
}

.search-bar .search-bar-btn,
.search-bar .search-btn {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    border-left: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 1.25rem 1.75rem !important;
    border-radius: 0 16px 16px 0 !important;
    font-size: 1.25rem !important;
    transition: background 0.2s !important;
}

.search-bar .search-bar-btn:hover,
.search-bar .search-btn:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
}

/* Chat Response Box - Claude/ChatGPT Style */
#chatResponse,
.chat-response {
    background: rgba(22, 22, 24, 0.98) !important;
    border: 2px solid #000000 !important;
    border-radius: 16px !important;
    margin-top: 0.75rem !important;
    padding: 1.5rem 1.75rem !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
    max-width: 860px !important;
    width: 100% !important;
    max-width: 860px !important;
}

/* Follow-up Input im Chat */
#chatResponse input,
.chat-response input {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 0.875rem 1rem !important;
}

#chatResponse button,
.chat-response button {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    transition: background 0.2s !important;
}

#chatResponse button:hover,
.chat-response button:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* ═══════════════════════════════════════════════════════════
   CHAT REDESIGN v5.1 - Claude Style
   ═══════════════════════════════════════════════════════════ */

/* Chat Container - Tiefer positioniert */
.search-bar-container {
    top: 150px !important;
    padding-top: 1rem !important;
}

/* Search Bar - Claude Style Form */
.search-bar {
    background: rgba(30, 30, 35, 0.85) !important;
    border: 2px solid #000000 !important;
    border-radius: 24px !important;
    box-shadow: none !important;
    max-width: 860px !important;
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 1rem 1.25rem !important;
}

/* Input Styling - Blauer Text */
.search-bar input,
.search-bar input[type="text"] {
    color: #000000 !important;
    font-size: 1.05rem !important;
    padding: 0.5rem 0 !important;
    height: auto !important;
    min-height: 40px !important;
    border-radius: 0 !important;
    flex-grow: 1 !important;
}

.search-bar input::placeholder {
    color: #000000 !important;
    opacity: 0.7 !important;
}

/* Bottom Bar mit Icons */
.search-bar-bottom {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 0.5rem !important;
}


/* Send Button - Claude Orange Style */
.search-bar .search-bar-btn,
.search-bar .search-btn {
    background: #3d3d42 !important;
    border: none !important;
    border-radius: 6px !important;
    color: rgba(255,255,255,0.65) !important;
    padding: 0 !important;
    font-size: 1rem !important;
    width: 38px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.search-bar .search-bar-btn:hover,
.search-bar .search-btn:hover {
    background: #4d4d52 !important;
    color: #ffffff !important;
}

/* Chat Response - Helleres Grau */
#chatResponse,
.chat-response {
    background: #3a3a3a !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 20px !important;
    max-width: 860px !important;
    width: 100% !important;
    max-width: 860px !important;
}

/* History Button im Chat */
.chat-history-btn {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}


.chat-history-btn:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}


.chat-history-btn svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2px !important;
}


/* Search Bar Button - Arrow Style */
.search-bar-btn {
    background: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    flex-shrink: 0 !important;
}


.search-bar-btn:hover {
    background: #000000 !important;
}


/* Search Bar Input - Blue Text */
.search-bar-input {
    color: #000000 !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.05rem !important;
    padding: 0.75rem 0 !important;
    flex-grow: 1 !important;
    width: 100% !important;
}

.search-bar-input::placeholder {
    color: #000000 !important;
    opacity: 0.7 !important;
}

/* Search Bar Layout */
.search-bar {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(30, 30, 35, 0.85) !important;
    border-radius: 20px !important;
    padding: 1rem 1.25rem !important;
    max-width: 860px !important;
    min-height: 90px !important;
}

.search-bar-bottom {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 0.5rem !important;
}


/* History Dropdown - Dark & Dotted */
#searchHistoryDropdown {
    background: #1e1e1e !important;
    border: 1px dotted #000000 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    color: #ffffff !important;
    padding: 0 !important;
    overflow: hidden !important;
    margin-top: 8px !important;
}

.history-title {
    color: #888 !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.history-item {
    color: #e0e0e0 !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    transition: background 0.2s !important;
}

.history-item:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}

.history-item svg {
    color: #000000 !important;
    opacity: 0.7 !important;
}

.history-delete {
    color: #666 !important;
}

.history-delete:hover {
    color: #ef4444 !important;
    background: rgba(255,255,255,0.05) !important;
}

/* Chat Response Box - Dark Grey */
#chatResponse,
.chat-response {
    background: #1e1e1e !important;
    border: 1px solid rgba(60, 165, 250, 0.3) !important; /* Dünner blauer Rahmen optional */
    color: #e0e0e0 !important;
    width: 100% !important;
    max-width: 860px !important;
}

/* History Button - Blue & White */
.chat-history-btn {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}


.chat-history-btn:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}


.chat-history-btn svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2px !important;
}


/* Send Button - Blue & White */
.search-bar-btn {
    background: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    flex-shrink: 0 !important;
}


.search-bar-btn:hover {
    background: #000000 !important;
}


/* Search Bar Bottom Alignment */
.search-bar-bottom {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 0.5rem !important;
}


/* FORCE Dark Mode for Chat Response */
#chatResponse,
.chat-response,
div[id^="chatResponse"] {
    background-color: #1e1e1e !important;
    background: #1e1e1e !important;
    color: #e0e0e0 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    width: 100% !important;
    max-width: 860px !important;
}

/* Ensure Autocomplete is Dark */
.autocomplete-items {
    background-color: #1e1e1e !important;
    border: 1px dotted #000000 !important;
    color: #fff !important;
}

.autocomplete-items div {
    background-color: #1e1e1e !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.autocomplete-items div:hover {
    background-color: #2d2d2d !important;
}

/* v5.4b overrides: width + blue buttons */
.search-bar {
    max-width: 900px !important;
}
#chatResponse,
.chat-response {
    max-width: 900px !important;
    width: 100% !important;
}
.search-bar-bottom {
    justify-content: flex-end !important;
    gap: 10px !important;
}
.chat-history-btn {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    padding: 8px 14px !important;
    height: 38px !important;
    white-space: nowrap !important;
}
.chat-history-btn:hover {
    background: #000000 !important;
    border-color: #000000 !important;
}
.search-bar .search-bar-btn,
.search-bar .search-btn,
.search-bar-btn {
    background: #000000 !important;
    border: 1px solid #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.search-bar .search-bar-btn:hover,
.search-bar .search-btn:hover,
.search-bar-btn:hover {
    background: #000000 !important;
    border-color: #000000 !important;
}

/* Ensure Gesprächsverlauf fits */
.chat-history-btn {
    min-width: 150px !important;
    justify-content: center !important;
}

/* v5.4e: Chatfeld weiße Schrift + blauer Rand */
.search-bar {
    border: 2px solid #000000 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45) !important;
}
.search-bar:focus-within {
    border-color: #000000 !important;
    box-shadow: 0 10px 36px rgba(0,0,0,0.5), 0 0 0 2px rgba(0,0,0,0.2) !important;
}
.search-bar input,
.search-bar input[type="text"],
.search-bar-input {
    color: #ffffff !important;
    caret-color: #000000 !important;
}
.search-bar input::placeholder,
.search-bar-input::placeholder {
    color: #e5edff !important;
    opacity: 0.9 !important;
}

/* v5.5 Navbar layout: left version, center links, right pill */
.nav-container {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
}

.nav-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.nav-version {
    margin-left: 0 !important;
    padding: 4px 10px !important;
    background: #000 !important;
    color: #ff69b4 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    line-height: 1 !important;
}

.nav-center {
    display: flex !important;
    justify-content: center !important;
}

.nav-center .nav-links {
    justify-content: center !important;
}

.nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

.nav-pv-pill {
    display: inline-flex !important;
    align-items: center !important;
    height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.35) !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.nav-pv-pill:hover {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(0, 0, 0, 0.6) !important;
}

@media (max-width: 980px) {
    .nav-center {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   v5.6 DESIGN UPDATE - Minimale Buttons & Frühere Suchen Fix
   ═══════════════════════════════════════════════════════════ */

/* 1. Chat-Buttons rechts: 50% kleiner, minimales Design */
.search-bar-bottom {
    gap: 6px !important;
}

.chat-history-btn {
    background: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
    color: #000000 !important;
    padding: 4px 10px !important;
    height: 28px !important;
    min-width: auto !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
}

.chat-history-btn:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    border-color: #000000 !important;
}

.chat-history-btn svg {
    width: 12px !important;
    height: 12px !important;
}

.search-bar-btn {
    background: #000000 !important;
    border: none !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
}

.search-bar-btn:hover {
    background: #000000 !important;
}

/* 2. Frühere Suchen: Minimale Icons + Hellblaue Schrift */
#searchHistoryDropdown {
    background: #1a1a1e !important;
    border: 1px solid rgba(0, 0, 0, 0.25) !important;
}

.history-title {
    color: rgba(0, 0, 0, 0.7) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.8px !important;
}

.history-item {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.history-item:hover {
    background: rgba(0, 0, 0, 0.08) !important;
}

.history-item-icon {
    color: rgba(0, 0, 0, 0.5) !important;
    font-size: 10px !important;
}

.history-item-text {
    color: #ffffff !important;
    font-size: 0.875rem !important;
}

.history-item-delete {
    color: rgba(255,255,255,0.3) !important;
    font-size: 14px !important;
}

.history-item-delete:hover {
    color: #ef4444 !important;
}

/* 3. Photovoltaikzaun Button in Top-Nav Style */
.top-bar-pv-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.375rem 0.75rem !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 4px !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    font-size: 0.8125rem !important;
    transition: all 0.2s !important;
}

.top-bar-pv-link:hover {
    background: rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
}

.top-bar-pv-link svg {
    width: 14px !important;
    height: 14px !important;
}

/* Navigation PV-Pill verstecken (jetzt in Top-Bar) */
.nav-pv-pill {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   v5.7 DESIGN UPDATE - Dunkles Antwortfeld & Button Redesign
   ═══════════════════════════════════════════════════════════ */

/* 1. ANTWORTFELD DUNKEL (inline-answer) */
#inlineAnswer,
.inline-answer {
    background: #1e1e22 !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}

#inlineAnswerContent,
.inline-answer-content {
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    padding: 1.25rem !important;
}

/* Follow-up Container im Antwortfeld */
.followup-container {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
}

.followup-container > div:first-child {
    color: #ffffff !important;
}

.followup-input {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
}

.followup-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.followup-input:focus {
    border-color: #000000 !important;
    background: rgba(255,255,255,0.08) !important;
}

.followup-btn {
    background: #000000 !important;
    border: none !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
}

.followup-btn:hover {
    background: #000000 !important;
}

/* 2. SEARCH BAR BUTTONS - Rechts ausgerichtet, Chronik-Style */
.search-bar-bottom {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 10px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 8px !important;
}

/* Gesprächsverlauf Button - wie Chronik-Bubble unten rechts */
.chat-history-btn {
    background: linear-gradient(135deg, #000000, #000000) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    height: auto !important;
    min-width: auto !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.2s ease !important;
}

.chat-history-btn:hover {
    background: linear-gradient(135deg, #000000, #000000) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-1px) !important;
}

.chat-history-btn svg {
    width: 14px !important;
    height: 14px !important;
}

/* Send Button - Dunkel/Minimal */
.search-bar-btn {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.8) !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.search-bar-btn:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #ffffff !important;
}

/* 3. CHATFELD - Größerer Placeholder, Blau angepasst, vertikal zentriert */
.search-bar {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 100px !important;
    padding: 1rem 1.25rem !important;
}

.search-bar-input {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    padding: 0.5rem 0 !important;
    display: flex !important;
    align-items: center !important;
}

.search-bar-input::placeholder {
    color: #ffffff !important;
    opacity: 0.85 !important;
    font-size: 1.1rem !important;
}

/* Sicherstellen dass Input vertikal zentriert ist */
.search-bar input[type="search"],
.search-bar input[type="text"] {
    margin: auto 0 !important;
}

/* 4. FRÜHERE SUCHEN - Dunkles Theme beibehalten */
#searchHistoryDropdown {
    background: #1a1a1e !important;
}

.history-item-text {
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════
   v5.8 FIX - Buttons sauber rechts, Antwort-Schrift größer
   ═══════════════════════════════════════════════════════════ */

/* RESET: Alle vorherigen Button-Styles überschreiben */
.search-bar-bottom {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 10px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: auto !important;
    width: 100% !important;
}

/* Gesprächsverlauf - Pill Style wie Chronik-Bubble */
.chat-history-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #000000, #000000) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 8px 14px !important;
    height: 34px !important;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    border-radius: 17px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.chat-history-btn:hover {
    background: linear-gradient(135deg, #000000, #000000) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
}

.chat-history-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

/* Senden Button (X) - Kompakt dunkel */
.search-bar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.7) !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    padding: 0 !important;
    font-size: 1.1rem !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.search-bar-btn:hover {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
}

/* Antwort-Text größer (wie Eingabe ~1.1rem) */
#inlineAnswerContent,
.inline-answer-content {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

#inlineAnswerContent > div,
.inline-answer-content > div {
    font-size: 1.05rem !important;
}

/* ═══════════════════════════════════════════════════════════
   v5.9 FINAL FIX - Sauberes Button-Layout & Schriftgrößen
   ═══════════════════════════════════════════════════════════ */

/* 1. SEARCH BAR LAYOUT - Input mit integriertem Button rechts */
.search-bar {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100px !important;
    padding: 1rem 1.25rem !important;
    position: relative !important;
}

.search-bar-input {
    flex: 1 !important;
    padding-right: 50px !important;
}

/* 2. BUTTON BEREICH - Gesprächsverlauf links, Action-Button rechts im Input */
.search-bar-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: auto !important;
}

/* Gesprächsverlauf Button - Sauber links */
.chat-history-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #000000, #000000) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 7px 14px !important;
    height: 32px !important;
    width: auto !important;
    min-width: unset !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    order: 1 !important;
}

.chat-history-btn:hover {
    background: linear-gradient(135deg, #000000, #000000) !important;
}

.chat-history-btn svg {
    width: 12px !important;
    height: 12px !important;
}

/* Action Button (Enter/X) - Rechts, minimal dunkel */
.search-bar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #2a2a2e !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.6) !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    order: 2 !important;
    margin-left: auto !important;
    transition: all 0.15s ease !important;
}

.search-bar-btn:hover {
    background: #3a3a3e !important;
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.2) !important;
}

/* 3. ANTWORTFELD - "Weiter fragen" Text größer & blau */
.followup-container > div:first-child,
.followup-container > div:first-of-type {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}

.followup-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
}

/* 4. FRÜHERE SUCHEN - Titel Schriftgröße anpassen */
.history-title {
    color: rgba(0, 0, 0, 0.8) !important;
    font-size: 0.75rem !important;
    padding: 10px 16px 8px !important;
    letter-spacing: 0.5px !important;
}

.history-item-text {
    color: #ffffff !important;
    font-size: 0.9rem !important;
}

.history-item-icon {
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 12px !important;
}

/* ═══════════════════════════════════════════════════════════
   v6.0 - Top-Bar Logo & Amazon-Style Suchbutton
   ═══════════════════════════════════════════════════════════ */

/* 1. TOP-BAR - Etwas höher, Logo-Styling */
.top-bar {
    padding: 0.6rem 0 !important;
}

.top-bar-logo {
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.top-bar-logo strong {
    font-weight: 300 !important;
}

.top-bar-logo .top-bar-icon {
    display: none !important;
}

/* 2. SUCHBUTTON - Amazon Style: Lupe, eckig, dunkelgrau */
.search-bar-btn {
    background: #3a3a3e !important;
    border: none !important;
    border-radius: 6px !important;
    color: rgba(255,255,255,0.7) !important;
    width: 38px !important;
    height: 32px !important;
    min-width: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
}

.search-bar-btn:hover {
    background: #4a4a4e !important;
    color: #ffffff !important;
}

/* Lupe als Default-Icon */
.search-bar-btn::before {
    content: "" !important;
}

/* Close Mode (X) wenn aktiv - vom JS gesetzt */
.search-bar-btn.close-mode {
    font-size: 1.2rem !important;
    font-weight: 300 !important;
}

/* ═══════════════════════════════════════════════════════════
   v6.1 - Clean Top-Bar & Chatfeld Button Fix
   ═══════════════════════════════════════════════════════════ */

/* 1. TOP-BAR LOGO - Gleiche Größe wie Navigation */
.top-bar-logo-link {
    text-decoration: none !important;
}

.top-bar-brand {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
}

.top-bar-brand .light {
    font-weight: 300 !important;
}

/* Navigation BlackOnion ausblenden (jetzt in Top-Bar) */
.nav-logo {
    display: none !important;
}

.nav-left {
    justify-content: flex-start !important;
}

.nav-version {
    margin-left: 0 !important;
}

/* 2. CHATFELD BUTTONS - KOMPLETT NEU */
.search-bar-bottom {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 10px !important;
    gap: 12px !important;
}

/* Gesprächsverlauf Button - Links, komplett sichtbar */
.chat-history-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #000000, #000000) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 6px 12px !important;
    height: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    border-radius: 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
}

.chat-history-btn svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
}

.chat-history-btn span {
    display: inline !important;
}

/* Suchbutton - Rechts, DUNKELGRAU, eckig */
.search-bar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #3a3a3e !important;
    border: none !important;
    border-radius: 6px !important;
    color: rgba(255,255,255,0.6) !important;
    width: 36px !important;
    height: 30px !important;
    min-width: 36px !important;
    padding: 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

.search-bar-btn:hover {
    background: #4a4a4e !important;
    color: #ffffff !important;
}

.search-bar-btn svg {
    width: 14px !important;
    height: 14px !important;
}

/* Close Mode für X */
.search-bar-btn.close-mode {
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
}

/* ═══════════════════════════════════════════════════════════
   v6.2 - FINAL BUTTON FIX & Logo größer
   ═══════════════════════════════════════════════════════════ */

/* 1. TOP-BAR LOGO 20% größer (1.25rem * 1.2 = 1.5rem) */
.top-bar-brand {
    font-size: 1.5rem !important;
}

/* 2. CHATFELD BUTTONS - ABSOLUT FINAL FIX */

/* Container reset */
.search-bar {
    position: relative !important;
    overflow: visible !important;
}

.search-bar-wrapper {
    overflow: visible !important;
}

/* Button-Zeile: Links/Rechts verteilt */
.search-bar-bottom {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 0 0 0 !important;
    margin: 10px 0 0 0 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    gap: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* Gesprächsverlauf - LINKS, blauer Pill */
.chat-history-btn {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #000000, #000000) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.chat-history-btn:hover {
    background: linear-gradient(135deg, #000000, #000000) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}

.chat-history-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

/* Suchbutton - RECHTS, DUNKELGRAU, eckig mit Lupe */
.search-bar-btn {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #3d3d42 !important;
    color: rgba(255,255,255,0.65) !important;
    width: 38px !important;
    height: 28px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
}

.search-bar-btn:hover {
    background: #4d4d52 !important;
    color: #ffffff !important;
}

.search-bar-btn svg {
    width: 15px !important;
    height: 15px !important;
}

/* X-Mode wenn Chat aktiv */
.search-bar-btn.close-mode {
    font-size: 1.3rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
}

/* ═══════════════════════════════════════════════════════════
   v6.3 - KORREKTUR ohne all:unset
   ═══════════════════════════════════════════════════════════ */

/* Gesprächsverlauf Button - FIX */
.chat-history-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #000000, #000000) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    outline: none !important;
    margin: 0 !important;
    min-width: unset !important;
    max-width: unset !important;
    width: auto !important;
}

.chat-history-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
    stroke: #ffffff !important;
    fill: none !important;
}

.chat-history-btn span {
    display: inline !important;
    color: #ffffff !important;
}

/* Suchbutton - DUNKELGRAU Fix */
.search-bar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #3d3d42 !important;
    border: none !important;
    color: rgba(255,255,255,0.65) !important;
    width: 38px !important;
    height: 28px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    outline: none !important;
}

.search-bar-btn svg {
    width: 15px !important;
    height: 15px !important;
    stroke: rgba(255,255,255,0.65) !important;
    fill: none !important;
}

.search-bar-btn:hover {
    background: #4d4d52 !important;
}

.search-bar-btn:hover svg {
    stroke: #ffffff !important;
}

/* v7.0 - Top-Bar auch beim Scrollen ausblenden */
.top-bar {
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  will-change: opacity, transform;
}

.top-bar.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
}

/* === v9.4 Send Button Orange bei Text + Clear X Rot === */
.search-bar-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    font-size: 20px !important;
    transition: background 0.2s, transform 0.2s !important;
}

.search-bar-btn.has-text {
    background: #f97316 !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

.search-bar-btn.has-text:hover {
    background: #ea580c !important;
}

/* Clear/X Button im Search Input */
.search-bar input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/contain no-repeat;
    cursor: pointer;
}

.search-bar-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/contain no-repeat;
    cursor: pointer;
}


/* v9.8 Contenteditable Placeholder */
.followup-input[contenteditable]:empty:before {
    content: attr(data-placeholder);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}
.followup-input[contenteditable] {
    min-height: 20px;
    outline: none;
}


/* === v9.9 Header + Nav Glassmorphism Kombination === */
.top-bar {
    background: rgba(30, 30, 35, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.nav {
    background: rgba(30, 30, 35, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* Entferne doppelte Trennlinie zwischen top-bar und nav */
.top-bar {
    border-bottom: none !important;
}

/* Subtle Trennung zwischen den Bereichen */
.nav {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}


/* ═══════════════════════════════════════════════════════════
   DARK HERO OVERRIDE (v9.18)
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.00) 50%, rgba(0,0,0,0.68) 100%),
                url('/images/gallery/premium-alpen.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.hero-eyebrow {
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

.hero-title, .hero h1 {
    color: #ffffff !important;
}

.hero-subtitle, .hero p {
    color: rgba(255,255,255,0.8) !important;
}

/* Award Badge im Hero */
.hero-award {
    position: absolute;
    top: 120px;
    right: 40px;
    width: 140px;
    height: auto;
    animation: awardFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-award {
        width: 100px;
        top: 100px;
        right: 20px;
    }
}

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

/* ═══════════════════════════════════════════════════════════
   UNIFIED NAV - GLASSMORPHISM (v9.18)
   ═══════════════════════════════════════════════════════════ */
.unified-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 0;
}

.unified-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    gap: 2rem;
}

.unified-nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.unified-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.unified-nav-logo-img {
    height: 32px;
    width: auto;
}

.unified-nav-brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.unified-nav-brand-text .light {
    font-weight: 300;
}

.nav-version {
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #ff69b4;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}

.unified-nav-center {
    display: flex;
    justify-content: center;
}

.unified-nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.unified-nav-links li a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.unified-nav-links li a:hover {
    color: #ffffff;
}

.unified-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.unified-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.unified-nav-pill svg {
    width: 14px;
    height: 14px;
}

.unified-nav-pill:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.unified-nav-highlight {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.unified-nav-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* Chatfeld Position */
.search-bar-container {
    margin-top: 10px !important;
    padding-top: 8px !important;
}

.hero {
    padding-top: 5rem !important;
}

/* Mobile */
@media (max-width: 980px) {
    .unified-nav-center { display: none; }
    .unified-nav-pill span { display: none; }
    .unified-nav-mobile-toggle { display: block; }
}

/* FRÜHERE SUCHEN - Heller Text (v9.19) */
.history-title {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ═══════════════════════════════════════════════════════════
   AMAZON-STYLE SCROLL BEHAVIOR + CHATFIELD OVERLAY (v9.21)
   ═══════════════════════════════════════════════════════════ */

/* Unified Nav + Chatfeld zusammen */
.unified-nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.unified-nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Search Bar Container - Overlay Position (näher an Nav) */
.search-bar-container {
    position: fixed !important;
    top: 52px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 800px !important;
    z-index: 999 !important;
    margin: 0 !important;
    padding: 8px 16px !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.search-bar-container.nav-hidden {
    transform: translateX(-50%) translateY(-150%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hero anpassen - mehr Platz oben */
.hero {
    padding-top: 180px !important;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .search-bar-container {
        top: 50px !important;
        max-width: calc(100% - 20px) !important;
        padding: 6px 10px !important;
    }
    .hero {
        padding-top: 160px !important;
    }
}

/* Chatfeld linksbündig (v9.22) */
.search-bar-container {
    left: 16px !important;
    transform: none !important;
    max-width: 600px !important;
}

.search-bar-container.nav-hidden {
    transform: translateY(-150%) !important;
}

/* Chatfeld schmaler + höher (v9.23) */
.search-bar-container {
    max-width: 480px !important;
    top: 47px !important;
}

/* Chatfeld kompakter (v9.27) - ZURÜCK: top:47px, height:60px, padding:1.25rem */
.search-bar-container {
    top: 52px !important;  /* +5px Abstand von Nav */
}
.search-bar input,
.search-bar input[type="text"] {
    height: 48px !important;      /* war 60px */
    min-height: 48px !important;  /* war 60px */
    padding: 0.75rem 1.25rem !important;  /* war 1.25rem 1.5rem */
    font-size: 0.95rem !important;
}
.search-bar .search-bar-btn,
.search-bar .search-btn {
    padding: 0.75rem 1.25rem !important;  /* war 1.25rem 1.75rem */
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.28 - Nav vereinfacht + Chat-Buttons als Tabs rechts
   ZURÜCK: .unified-nav-center { display: flex; }
           .search-bar-bottom { position: relative; }
   ═══════════════════════════════════════════════════════════════════════════ */

/* Nav: Center-Links ausblenden - nur Logo links, Pills rechts */
.unified-nav-center {
    display: none !important;
}

.unified-nav-container {
    display: flex !important;
    justify-content: space-between !important;
}

/* Chat-Buttons als vertikale Tabs rechts neben dem Chatfeld */
.search-bar-bottom {
    position: absolute !important;
    right: -130px !important;
    top: 0 !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.search-bar-wrapper {
    position: relative !important;
}

/* Beratung Button als Tab */
#chatBeratungBtn {
    width: 120px !important;
    height: 32px !important;
    padding: 4px 8px !important;
    font-size: 0.7rem !important;
    border-radius: 0 8px 8px 0 !important;
    background: rgba(40, 40, 45, 0.9) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px) !important;
}

#chatBeratungBtn:hover {
    background: rgba(60, 60, 65, 0.95) !important;
}

/* Gesprächsverlauf Button als Tab */
.chat-history-btn {
    width: 120px !important;
    height: 32px !important;
    padding: 4px 8px !important;
    font-size: 0.7rem !important;
    border-radius: 0 8px 8px 0 !important;
    background: rgba(40, 40, 45, 0.9) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    color: rgba(255,255,255,0.8) !important;
    cursor: pointer !important;
}

.chat-history-btn:hover {
    background: rgba(60, 60, 65, 0.95) !important;
}

.chat-history-btn svg {
    width: 12px !important;
    height: 12px !important;
}

.chat-history-btn span {
    font-size: 0.65rem !important;
}

/* Chatfeld breiter machen um Platz für Tabs zu schaffen */
.search-bar-container {
    max-width: 420px !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.29 - Layout-Korrektur: Logo links, Pills rechts, Chat schmaler + Tabs
   ═══════════════════════════════════════════════════════════════════════════ */

/* Nav: Logo ganz links, Pills ganz rechts */
.unified-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0.5rem 16px !important;
}

.unified-nav-left {
    margin-right: 0 !important;
}

.unified-nav-right {
    margin-left: auto !important;
}

/* Chatfeld: Schmaler, 5px unter Nav, linksbündig */
.search-bar-container {
    max-width: 380px !important;
    top: 47px !important;  /* 5px unter Nav (Nav ~42px hoch) */
    left: 16px !important;
}

/* Chatfeld Input noch kompakter */
.search-bar {
    padding: 8px !important;
}

.search-bar-top {
    gap: 8px !important;
}

/* Buttons als Tabs oben rechts am Chatfeld */
.search-bar-bottom {
    position: absolute !important;
    top: -32px !important;
    right: 0 !important;
    left: auto !important;
    flex-direction: row !important;
    gap: 4px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    justify-content: flex-end !important;
}

#chatBeratungBtn,
.chat-history-btn {
    height: 28px !important;
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    border-radius: 6px 6px 0 0 !important;
    background: rgba(40, 40, 45, 0.95) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-bottom: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.30 - Minimalistisches Chatfeld (wie ChatGPT)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Search Bar Container - kompakt */
.search-bar {
    display: flex !important;
    flex-direction: column !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    border-radius: 24px !important;
}

/* Input-Zeile - volle Breite */
.search-bar-top {
    width: 100% !important;
    display: block !important;
}

.search-bar-input {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 8px 0 !important;
    font-size: 1rem !important;
    color: rgba(255,255,255,0.9) !important;
    height: auto !important;
    min-height: auto !important;
}

.search-bar-input::placeholder {
    color: rgba(255,255,255,0.4) !important;
}

/* Buttons-Zeile - spread layout */
.search-bar-bottom--spread {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: static !important;
    margin-top: 4px !important;
}

/* Linke Aktions-Icons */
.search-bar-actions {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

/* Icon-Buttons (minimalistisch) */
.action-icon-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.action-icon-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.9) !important;
}

.action-icon-btn svg {
    width: 16px !important;
    height: 16px !important;
}

/* Send-Button (rechts) */
.send-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    background: rgba(80, 80, 90, 0.8) !important;
    border: none !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.8) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.send-btn:hover {
    background: rgba(100, 100, 110, 0.9) !important;
    color: #fff !important;
}

.send-btn svg {
    width: 18px !important;
    height: 18px !important;
}

/* Alte Styles überschreiben */
#chatBeratungBtn {
    all: unset !important;
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#chatBeratungBtn:hover {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.9) !important;
}

.chat-history-btn {
    all: unset !important;
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-history-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.9) !important;
}

.chat-history-btn span {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.31 - Neues Layout: Uhr links, Beratung-Text, X über Send, Send grün bei Text
   ═══════════════════════════════════════════════════════════════════════════ */

/* Bottom-Zeile v9.31: Links flush, Rechts flush */
.search-bar-bottom--v931 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: static !important;
    margin-top: 4px !important;
}

/* Links: Uhr + Beratung Text */
.search-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Beratung Text-Button (minimalistisch) */
.beratung-text-btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    padding: 4px 0 !important;
    transition: color 0.2s ease !important;
    font-family: inherit !important;
}

.beratung-text-btn:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* Rechts: X über Send gestapelt */
.search-bar-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
}

/* X Löschen-Button */
.clear-btn {
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.clear-btn:hover {
    color: rgba(239, 68, 68, 0.8) !important;
}

.clear-btn svg {
    width: 20px !important;
    height: 20px !important;
}

/* Send Button - Standard (grau) */
.send-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    background: rgba(80, 80, 90, 0.8) !important;
    border: none !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

/* Send Button - Aktiv (grün, wenn Text vorhanden) */
.send-btn.has-text {
    background: rgba(34, 197, 94, 0.7) !important;
    color: #fff !important;
}

.send-btn.has-text:hover {
    background: rgba(34, 197, 94, 0.9) !important;
}

.send-btn:hover {
    background: rgba(100, 100, 110, 0.9) !important;
    color: #fff !important;
}

.send-btn svg {
    width: 18px !important;
    height: 18px !important;
}

/* Uhr-Icon Button flush links */
#chatHistoryBtn {
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

#chatHistoryBtn:hover {
    color: rgba(255,255,255,0.8) !important;
}

#chatHistoryBtn svg {
    width: 18px !important;
    height: 18px !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.32 - Layout Fix: Input + X + Send auf einer Zeile
   ═══════════════════════════════════════════════════════════════════════════ */

/* Input-Zeile: horizontal, alle Elemente auf einer Linie */
.search-bar-input-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Input nimmt verfügbaren Platz */
.search-bar-input-row .search-bar-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    padding: 8px 0 !important;
    font-size: 1rem !important;
    color: rgba(255,255,255,0.9) !important;
    height: auto !important;
    min-height: auto !important;
    width: auto !important;
}

/* X-Button inline */
.search-bar-input-row .clear-btn {
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.search-bar-input-row .clear-btn:hover {
    color: rgba(239, 68, 68, 0.9) !important;
}

.search-bar-input-row .clear-btn svg {
    width: 18px !important;
    height: 18px !important;
}

/* Send-Button inline */
.search-bar-input-row .send-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    background: rgba(80, 80, 90, 0.8) !important;
    border: none !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.6) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.search-bar-input-row .send-btn.has-text {
    background: rgba(34, 197, 94, 0.7) !important;
    color: #fff !important;
}

.search-bar-input-row .send-btn:hover {
    background: rgba(100, 100, 110, 0.9) !important;
    color: #fff !important;
}

.search-bar-input-row .send-btn.has-text:hover {
    background: rgba(34, 197, 94, 0.9) !important;
}

.search-bar-input-row .send-btn svg {
    width: 16px !important;
    height: 16px !important;
}

/* Untere Zeile: Uhr + Beratung */
.search-bar-bottom-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 4px !important;
}

/* History-Icon ohne Rahmen */
.history-icon-btn {
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.history-icon-btn:hover {
    color: rgba(255,255,255,0.8) !important;
}

.history-icon-btn svg {
    width: 18px !important;
    height: 18px !important;
}

/* Antwortfeld Schließen-Button */
.inline-answer-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 24px !important;
    height: 24px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.3) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 0 !important;
    z-index: 10 !important;
}

.inline-answer-close:hover {
    color: rgba(239, 68, 68, 0.8) !important;
}

/* Inline-answer braucht position relative für close button */
.inline-answer {
    position: relative !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.33 - Fix: Doppeltes X entfernen, Text-Ausrichtung
   ═══════════════════════════════════════════════════════════════════════════ */

/* Native Browser X komplett verstecken */
.search-bar-input::-webkit-search-cancel-button,
.search-bar input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-cancel-button {
    display: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Custom Clear-Button: nur bei Hover rot, sonst grau */
.search-bar-input-row .clear-btn {
    color: rgba(255,255,255,0.4) !important;
    transition: color 0.2s ease !important;
}

.search-bar-input-row .clear-btn:hover {
    color: #ef4444 !important;
}

/* Text-Ausrichtung: Input und Antwort bündig */
.search-bar {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.inline-answer {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* Antwort-Text gleicher linker Einzug wie Eingabe */
.inline-answer-content {
    padding-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.34 - Fix: Text linksbündig, Placeholder gedämpft
   ═══════════════════════════════════════════════════════════════════════════ */

/* Placeholder: gedämpfte Farbe */
.search-bar-input::placeholder {
    color: rgba(255,255,255,0.35) !important;
    font-style: normal !important;
}

/* Input-Text normal weiß */
.search-bar-input {
    color: rgba(255,255,255,0.9) !important;
}

/* Exakt gleicher linker Rand für Eingabe und Antwort */
.search-bar-input-row {
    padding-left: 0 !important;
}

.search-bar-input-row .search-bar-input {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Antwort-Text gleicher Einzug */
.inline-answer-content > div:first-child {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Search-bar Wrapper gleicher Padding */
.search-bar-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.search-bar {
    padding-left: 20px !important;
    padding-right: 12px !important;
}

.inline-answer {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.35 - FINAL FIX: Exakte Text-Ausrichtung
   ═══════════════════════════════════════════════════════════════════════════ */

/* Reset alle Paddings für präzise Kontrolle */
.search-bar-wrapper {
    padding: 0 !important;
}

.search-bar {
    padding: 12px 16px !important;
}

/* Input hat keinen extra Padding links */
.search-bar-input-row .search-bar-input {
    padding-left: 0 !important;
    text-indent: 0 !important;
}

/* Antwort-Bereich exakt gleicher Padding */
.inline-answer {
    padding: 16px 16px !important;
    margin: 0 !important;
}

/* Antwort-Content kein extra Padding */
.inline-answer-content {
    padding: 0 !important;
}

.inline-answer-content > div {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Follow-up Container auch aligned */
.followup-container {
    padding-left: 0 !important;
}

.followup-input-wrap {
    margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.36 - KORREKTUR: Placeholder dunkler, Ausrichtung pixel-genau
   ═══════════════════════════════════════════════════════════════════════════ */

/* Placeholder deutlich dunkler als Textfarbe (#e5e5e5) */
.search-bar-input::placeholder {
    color: rgba(255,255,255,0.25) !important;
    opacity: 1 !important;
}

/* Beide Container: exakt gleiche linke Kante */
.search-bar,
.inline-answer {
    padding-left: 16px !important;
    margin-left: 0 !important;
}

/* Input: kein zusätzlicher Einzug */
.search-bar-input {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
}

/* Antwort-Text: kein zusätzlicher Einzug */
.inline-answer-content,
.inline-answer-content > div:first-of-type {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
}

/* v9.36b - Force exact alignment */
.search-bar-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.inline-answer > .inline-answer-content > div[style*="color"] {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.37 - ALIGNMENT: Input, Uhr/Beratung und Antwort alle bündig
   ═══════════════════════════════════════════════════════════════════════════ */

/* Beide Container: gleicher linker Einzug */
.search-bar {
    padding-left: 20px !important;
}

.inline-answer {
    padding-left: 20px !important;
}

/* Input-Zeile und Bottom-Row: kein extra Einzug */
.search-bar-input-row,
.search-bar-bottom-row {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Input selbst: kein extra Padding */
.search-bar-input {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
}

/* Antwort-Content: kein extra Padding */
.inline-answer-content {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.inline-answer-content > div {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.38 - FINAL ALIGNMENT + Reaktiver Follow-up Button
   ═══════════════════════════════════════════════════════════════════════════ */

/* Reset: Beide Container exakt 16px links */
.search-bar-wrapper .search-bar {
    padding-left: 16px !important;
}

.search-bar-wrapper .inline-answer {
    padding-left: 16px !important;
}

/* Input: Browser-default padding entfernen */
.search-bar-input,
input.search-bar-input,
.search-bar input[type="search"] {
    padding-left: 2px !important;
    margin-left: 0 !important;
    -webkit-padding-start: 2px !important;
}

/* Antwort-Text: gleicher mini-offset wie Input */
.inline-answer-content > div:first-of-type,
.inline-answer-content > div[style*="color"] {
    padding-left: 2px !important;
    margin-left: 0 !important;
}

/* Follow-up Button reaktiv - grün bei Text */
.followup-btn.has-text {
    background: rgba(34, 197, 94, 0.8) !important;
}

.followup-btn.has-text:hover {
    background: rgba(34, 197, 94, 0.9) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.39 - Send-Button unten rechts, Text-Alignment FINAL FIX
   ═══════════════════════════════════════════════════════════════════════════ */

/* Bottom-Row: Uhr+Beratung links, Send rechts */
.search-bar-bottom-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
}

/* Send-Button nach rechts schieben */
.search-bar-bottom-row .send-btn {
    margin-left: auto !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEXT ALIGNMENT - FINAL: Gleiche Position für Input und Antwort
   ═══════════════════════════════════════════════════════════════════════════ */

/* Beide Container: KEIN padding-left, wird per inneren Elementen gesteuert */
.search-bar {
    padding: 12px 12px 8px 12px !important;
}

.inline-answer {
    padding: 16px 12px !important;
}

/* Input-Row: linker Rand definiert Textposition */
.search-bar-input-row {
    padding-left: 4px !important;
}

/* Bottom-Row: gleicher linker Rand */
.search-bar-bottom-row {
    padding-left: 4px !important;
}

/* Antwort-Content: gleicher linker Rand */
.inline-answer-content {
    padding-left: 4px !important;
}

/* Input selbst: kein extra padding */
.search-bar-input {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Antwort-Text: kein extra padding */
.inline-answer-content > div {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.40 - ALIGNMENT FINAL: Alles auf margin-left: 8px
   ═══════════════════════════════════════════════════════════════════════════ */

/* Reset alle Container padding */
.search-bar {
    padding: 12px 12px 8px 8px !important;
}

.inline-answer {
    padding: 16px 12px 16px 8px !important;
}

/* Alle inneren Elemente: KEIN extra padding/margin links */
.search-bar-input-row,
.search-bar-bottom-row,
.inline-answer-content,
.inline-answer-content > div,
.search-bar-input {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Input: Browser-Default entfernen */
input.search-bar-input,
input[type="search"].search-bar-input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
    -webkit-padding-start: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.41 - Chatfeld höher positionieren
   ═══════════════════════════════════════════════════════════════════════════ */

.search-bar-container {
    top: 10px !important;
}

/* v9.41b - Spezifischer Selektor */
#searchBarContainer.search-bar-container,
div.search-bar-container {
    position: fixed !important;
    top: 10px !important;
    margin-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.43 - Navigation: Logo links, Menü rechts
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-left {
    margin-right: 0 !important;
    justify-content: flex-start !important;
}

.unified-nav-right {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

.unified-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.49 - Abstand Navigation zu Chatfeld: 10px
   ═══════════════════════════════════════════════════════════════════════════ */

#searchBarContainer.search-bar-container,
div.search-bar-container {
    top: 62px !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.50 - Navigation an die Ränder: Logo links, Menü rechts
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-container {
    max-width: 100% !important;
    padding: 0.6rem 1.5rem !important;
    margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.51 - Center Navigation: Minimale Text-Links mit Hover
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-center {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    justify-content: center !important;
}

.unified-nav-center a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important;
}

.unified-nav-center a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.54 - Placeholder zentriert
   ═══════════════════════════════════════════════════════════════════════════ */

.search-bar-input::placeholder {
    text-align: center !important;
}

.search-bar-input {
    text-align: center !important;
}

/* Wenn Text eingegeben wird, linksbündig */
.search-bar-input:not(:placeholder-shown) {
    text-align: left !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.55 - Cursor weiß + Alignment-Fix
   ═══════════════════════════════════════════════════════════════════════════ */

/* Cursor (Caret) weiß statt schwarz */
.search-bar-input {
    caret-color: #ffffff !important;
}

/* Alignment: Beide Felder exakt gleiche Einrückung */
.search-bar-input-row,
.followup-input-wrap {
    padding-left: 0 !important;
}

.search-bar-input,
.followup-input {
    padding-left: 4px !important;
    text-indent: 0 !important;
}

.inline-answer-content {
    padding-left: 4px !important;
}

.inline-answer-content > div {
    padding-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.56 - Navigation Hover mit weißem Kästchen
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-center a {
    padding: 6px 12px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.unified-nav-center a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.57 - Navigation Hover: nur Rahmen, keine Vergrößerung
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-center a {
    padding: 4px 8px !important;
    border-radius: 4px !important;
    border: 1px solid transparent !important;
    transition: all 0.2s ease !important;
}

.unified-nav-center a:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.58 - Navigation Links enger zusammen
   ═══════════════════════════════════════════════════════════════════════════ */

.unified-nav-center {
    gap: 0.75rem !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.62 - Zwiebel-Icon immer absolut zentral
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-center-icon-wrapper {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.nav-center-icon {
    width: 36px !important;
    height: 36px !important;
}

/* Navigation-Container: relative damit absolut funktioniert */
.unified-nav-container {
    position: relative !important;
}

/* Navigation-Links nach rechts verschieben */
.unified-nav-center {
    margin-left: auto !important;
    padding-left: 60px !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.63 - Chatfeld horizontal zentriert
   ═══════════════════════════════════════════════════════════════════════════ */

#searchBarContainer.search-bar-container,
div.search-bar-container {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.64 - Fix: Zwiebel sichtbar + Navigation korrigiert
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-center-icon-wrapper {
    z-index: 100 !important;
    pointer-events: all !important;
}

.nav-center-icon {
    width: 48px !important;
    height: 48px !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)) !important;
}

/* Navigation-Links zurück in die Mitte */
.unified-nav-center {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.66 - Zwiebel-Farbe wie BlackOnion-Text (weiß)
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-center-icon {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3)) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.70 - Zwiebel im Chat zwischen Button-Gruppen
   ═══════════════════════════════════════════════════════════════════════════ */

.chat-zwiebel-icon {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Send-Button nach rechts schieben */
.search-bar-bottom-row .send-btn {
    margin-left: auto !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.71 - Top-Nav weiter links + Zwiebel perfekt zentral im Chat
   ═══════════════════════════════════════════════════════════════════════════ */

/* Top-Nav Container weniger Padding */
.unified-nav-container {
    padding: 0.6rem 0.5rem !important;
}

/* Chatfeld-Zwiebel: flexible Zentrierung */
.chat-zwiebel-icon {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Button-Gruppen: gleichmäßige Verteilung */
.search-bar-bottom-row {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.history-icon-btn,
.beratung-text-btn {
    flex-shrink: 0 !important;
}

.search-bar-bottom-row .send-btn {
    margin-left: 0 !important;
    flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v9.72 - Top-Nav Zwiebel ganz links + Chatfeld-Zwiebel zentral
   ═══════════════════════════════════════════════════════════════════════════ */

/* Top-Nav: Logo und Text enger zusammen */
.unified-nav-left {
    gap: 8px !important;
}

.unified-nav-logo-img {
    margin-right: 0 !important;
}

/* Chatfeld-Zwiebel: zurück auf absolut zentral */
.chat-zwiebel-icon {
    flex: 0 0 auto !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Bottom-row: position relative damit absolut funktioniert */
.search-bar-bottom-row {
    position: relative !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.73 - Dim Overlay für Chat-Aktivierung (reduzierte Verdunkelung)
   ═══════════════════════════════════════════════════════════ */
#searchDimOverlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, background 0.3s ease !important;
    z-index: 900 !important;
}

#searchDimOverlay.active {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.3) !important; /* 30% Verdunkelung (20% weniger als typisch 50%) */
    pointer-events: all !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.74 - Send Button rechts + nur sichtbar bei Text
   ═══════════════════════════════════════════════════════════ */

/* Send-Button nach rechts + ausblenden wenn inaktiv */
.search-bar-bottom-row .send-btn {
    margin-left: auto !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, background 0.2s ease !important;
}

/* Send-Button einblenden wenn Text vorhanden (grün) */
.search-bar-bottom-row .send-btn.has-text {
    opacity: 1 !important;
    pointer-events: all !important;
    background: rgba(34, 197, 94, 0.7) !important;
    color: #fff !important;
}

.search-bar-bottom-row .send-btn.has-text:hover {
    background: rgba(34, 197, 94, 0.9) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.77 - Cursor weiß + Send-Button nur grün bei Text
   ═══════════════════════════════════════════════════════════ */

/* Cursor (Caret) definitiv weiß - höchste Spezifität */
.search-bar-container .search-bar .search-bar-input,
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    caret-color: #ffffff !important;
}

/* Send-Button: Standard unsichtbar + grau */
.search-bar-bottom-row .send-btn:not(.has-text) {
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(80, 80, 90, 0.8) !important;
}

/* Send-Button: nur bei .has-text sichtbar + grün */
.search-bar-bottom-row .send-btn.has-text {
    opacity: 1 !important;
    pointer-events: all !important;
    background: rgba(34, 197, 94, 0.7) !important;
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.79 - Eingabefeld wie Antwortfeld gestalten
   ═══════════════════════════════════════════════════════════ */

/* Eingabefeld exakt wie Antwortfeld stylen */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Placeholder wie im Antwortfeld */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.80 - Antwortfeld Glassmorphism wie Eingabefeld
   ═══════════════════════════════════════════════════════════ */

/* Antwortfeld mit gleichem Glass-Effekt wie Eingabefeld */
#inlineAnswer,
.inline-answer {
    background: rgba(30, 30, 35, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid #000000 !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.82 - Eingabefeld sichtbar + Placeholder heller
   ═══════════════════════════════════════════════════════════ */

/* Placeholder heller/weißer */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.85) !important;
    opacity: 1 !important;
}

/* Eingabefeld visuell sichtbar machen */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    background: rgba(40, 40, 45, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    transition: all 0.2s ease !important;
}

/* Fokus-State: noch deutlicher */
.search-bar-input:focus,
input.search-bar-input:focus,
input#mainSearchInput:focus {
    background: rgba(40, 40, 45, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    outline: none !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.83 - Bläulich-Anthrazit Farbschema (Option 2)
   REVERSIBEL - Backup: styles-v928.css.backup-before-v983
   ═══════════════════════════════════════════════════════════ */

/* Navbar - Bläuliches Anthrazit */
.unified-nav,
header.unified-nav {
    background: rgba(20, 28, 40, 0.88) !important;
}

/* Chatfeld - Bläuliches Anthrazit */
.search-bar,
.search-bar-container .search-bar {
    background: rgba(20, 28, 40, 0.88) !important;
}

/* Antwortfeld - Bläuliches Anthrazit */
#inlineAnswer,
.inline-answer {
    background: rgba(20, 28, 40, 0.88) !important;
}

/* Chronik-Button - Bläuliches Anthrazit */
#chronikBtn {
    background: rgba(20, 28, 40, 0.88) !important;
}

/* Chronik-Panel - Bläuliches Anthrazit */
#chronikPanel {
    background: rgba(20, 28, 40, 0.88) !important;
}

/* Eingabefeld Hintergrund - leicht bläulich */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    background: rgba(25, 35, 50, 0.4) !important;
}

/* Eingabefeld Focus - bläulich verstärkt */
.search-bar-input:focus,
input.search-bar-input:focus,
input#mainSearchInput:focus {
    background: rgba(25, 35, 50, 0.6) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.84 - Fix: Chatfeld bläulich + Chronik Glass-Effekt
   ═══════════════════════════════════════════════════════════ */

/* Chatfeld - alle Selektoren bläulich */
.search-bar-container .search-bar,
.search-bar,
#searchBarContainer .search-bar {
    background: rgba(20, 28, 40, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Chronik-Button - Glass-Effekt hinzufügen */
#chronikBtn {
    background: rgba(20, 28, 40, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Chronik-Panel - Glass-Effekt hinzufügen */
#chronikPanel {
    background: rgba(20, 28, 40, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Antwortfeld - Glass-Effekt sicherstellen */
#inlineAnswer,
.inline-answer {
    background: rgba(20, 28, 40, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.85 - Nav: Zwiebel + BlackOnion 1cm vom Rand
   ═══════════════════════════════════════════════════════════ */

/* Container: mehr Abstand links (ca. 1cm = ~38px) */
.unified-nav-container {
    padding-left: 38px !important;
}

/* Mobile: weniger Abstand */
@media (max-width: 768px) {
    .unified-nav-container {
        padding-left: 20px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   v9.86 - History Dropdown bläulich + Placeholder kleiner
   ═══════════════════════════════════════════════════════════ */

/* History Dropdown - bläulich mit Glass-Effekt */
#searchHistoryDropdown {
    background: rgba(20, 28, 40, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* Placeholder - eine Nummer kleiner (1.05rem → 0.95rem) */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    font-size: 0.95rem !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.88 - FAQ Dropdown mit Fragen
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown Container */
#faqDropdown {
    position: fixed;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 28, 40, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    padding: 12px !important;
    min-width: 320px !important;
    max-width: 500px !important;
    z-index: 9999 !important;
    animation: fadeInDown 0.2s ease !important;
}

/* FAQ Item */
.faq-dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    margin: 4px 0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.faq-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   v9.90 - FAQ Dropdown: 16 Items + unter Chatfeld positioniert
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - unter Chatfeld, direkt unter Zwiebel */
#faqDropdown {
    position: fixed !important;
    top: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(20, 28, 40, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    padding: 12px !important;
    min-width: 400px !important;
    max-width: 600px !important;
    max-height: 500px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    animation: fadeInDown 0.2s ease !important;
}

/* Scrollbar Styling */
#faqDropdown::-webkit-scrollbar {
    width: 8px !important;
}

#faqDropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 4px !important;
}

#faqDropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
}

#faqDropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* FAQ Items - zwei Spalten wenn Platz */
@media (min-width: 800px) {
    #faqDropdown {
        min-width: 700px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   v9.91 - FAQ Dropdown: Schmäler + kein Scroll (Best Practice)
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - kompakt und übersichtlich */
#faqDropdown {
    position: fixed !important;
    top: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(20, 28, 40, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    padding: 12px !important;
    width: 360px !important;
    max-height: none !important;
    overflow: visible !important;
    z-index: 9999 !important;
    animation: fadeInDown 0.2s ease !important;
}

/* Kein Scrollbar nötig */
#faqDropdown::-webkit-scrollbar {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.92 - FAQ schmäler + Einheitlich helleres Weiß
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 30% schmäler (360px → 252px) */
#faqDropdown {
    width: 252px !important;
}

/* ═══ SCHRIFTFARBEN - Einheitlich helleres Weiß ═══ */

/* Navbar - Helleres Weiß */
.unified-nav-brand-text,
.unified-nav-center a,
.unified-nav-pill,
.unified-nav-pill span {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Navbar Hover - Komplett Weiß */
.unified-nav-center a:hover,
.unified-nav-pill:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Chat Eingabefeld - Helleres Weiß */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Antwortfeld Text - Helleres Weiß */
#inlineAnswerContent,
.inline-answer-content,
#inlineAnswerContent > div,
.inline-answer-content > div {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* FAQ Dropdown Items - Helleres Weiß */
.faq-dropdown-item {
    color: rgba(255, 255, 255, 0.92) !important;
}

.faq-dropdown-item:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Chronik-Button Text */
#chronikBtn {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* History Dropdown Items */
.history-item {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Follow-up Input */
.followup-input,
#followupInput {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Placeholder bleibt etwas dunkler für Kontrast */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.93 - Placeholder: Leicht bläuliches Weiß (Best Practice)
   ═══════════════════════════════════════════════════════════ */

/* Placeholder - Bläuliches Weiß (passt zum Theme) */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    color: rgba(220, 235, 255, 0.78) !important;
}

/* Follow-up Placeholder auch bläulich */
.followup-input::before,
#followupInput::before,
.followup-input[data-placeholder]::before,
#followupInput[data-placeholder]::before {
    color: rgba(220, 235, 255, 0.78) !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.94 - FAQ 50% kleiner + 12 Fragen
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 50% kleiner (252px → 126px) */
#faqDropdown {
    width: 126px !important;
    padding: 8px !important;
}

/* FAQ Items - kleinere Schrift für schmales Format */
.faq-dropdown-item {
    font-size: 11px !important;
    padding: 8px 10px !important;
    margin: 3px 0 !important;
    line-height: 1.3 !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.95 - Zwiebel im Chatfeld heller (passend zum neuen Weiß)
   ═══════════════════════════════════════════════════════════ */

/* Zwiebel im Chatfeld - helleres Weiß */
.chat-zwiebel-icon {
    opacity: 0.92 !important;
}

/* Zwiebel hover - noch heller */
.chat-zwiebel-icon:hover {
    opacity: 1 !important;
    transition: opacity 0.2s ease !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.96 - FAQ: Zurück zu lesbarer Breite + normale Schrift
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - lesbare Breite (320px, ca. 50% vom Chatfeld) */
#faqDropdown {
    width: 320px !important;
    padding: 12px !important;
}

/* FAQ Items - normale Schriftgröße */
.faq-dropdown-item {
    font-size: 14px !important;
    padding: 12px 16px !important;
    margin: 4px 0 !important;
    line-height: 1.4 !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.97 - FAQ: Größere Schrift + schmäler (Text passt besser)
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - schmäler (260px) */
#faqDropdown {
    width: 260px !important;
}

/* FAQ Items - größere Schrift */
.faq-dropdown-item {
    font-size: 15px !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.98 - FAQ: 150px Breite
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 150px breit */
#faqDropdown {
    width: 150px !important;
}

/* ═══════════════════════════════════════════════════════════
   v9.99 - FAQ: min-width überschreiben (FIX)
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 150px ohne min-width Blockade */
#faqDropdown {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.0 - Einheitlich bläuliches Weiß (Theme-Konsistenz)
   ═══════════════════════════════════════════════════════════ */

/* Navbar - Bläuliches Weiß (Opacity bleibt 0.95) */
.unified-nav-brand-text,
.unified-nav-center a,
.unified-nav-pill,
.unified-nav-pill span {
    color: rgba(220, 235, 255, 0.95) !important;
}

/* Navbar Hover - Bläulich Komplett */
.unified-nav-center a:hover,
.unified-nav-pill:hover {
    color: rgba(220, 235, 255, 1) !important;
}

/* Chat Eingabefeld - Bläuliches Weiß (Opacity bleibt 0.95) */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    color: rgba(220, 235, 255, 0.95) !important;
}

/* Antwortfeld Text - Bläuliches Weiß (Opacity bleibt 0.95) */
#inlineAnswerContent,
.inline-answer-content,
#inlineAnswerContent > div,
.inline-answer-content > div {
    color: rgba(220, 235, 255, 0.95) !important;
}

/* FAQ Dropdown Items - Bläuliches Weiß (Opacity bleibt 0.92) */
.faq-dropdown-item {
    color: rgba(220, 235, 255, 0.92) !important;
}

.faq-dropdown-item:hover {
    color: rgba(220, 235, 255, 1) !important;
}

/* Chronik-Button - Bläuliches Weiß (Opacity bleibt 0.95) */
#chronikBtn {
    color: rgba(220, 235, 255, 0.95) !important;
}

/* History Dropdown Items - Bläuliches Weiß (Opacity bleibt 0.92) */
.history-item {
    color: rgba(220, 235, 255, 0.92) !important;
}

/* Follow-up Input - Bläuliches Weiß (Opacity bleibt 0.95) */
.followup-input,
#followupInput {
    color: rgba(220, 235, 255, 0.95) !important;
}

/* Zwiebel - leicht bläulicher Ton (Opacity bleibt 0.92) */
.chat-zwiebel-icon {
    filter: brightness(0) invert(1) sepia(0.15) saturate(1.5) hue-rotate(180deg) !important;
    opacity: 0.92 !important;
}

.chat-zwiebel-icon:hover {
    opacity: 1 !important;
}

/* Top-Nav Zwiebel auch bläulich */
.unified-nav-logo-img {
    filter: brightness(0) invert(1) sepia(0.15) saturate(1.5) hue-rotate(180deg) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.1 - FAQ: 250px Breite
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 250px breit */
#faqDropdown {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.2 - Frühere Suchen: Bläuliches Weiß
   ═══════════════════════════════════════════════════════════ */

/* History Dropdown Items - Bläuliches Weiß */
#searchHistoryDropdown .history-item,
.history-item,
.history-item-text {
    color: rgba(220, 235, 255, 0.92) !important;
}

/* History Item Hover */
#searchHistoryDropdown .history-item:hover,
.history-item:hover {
    color: rgba(220, 235, 255, 1) !important;
}

/* History Query Text */
.history-query {
    color: rgba(220, 235, 255, 0.92) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.3 - FAQ: 350px Breite
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - 350px breit */
#faqDropdown {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.4 - Chat-Zwiebel Opacity auf 1.0 (gleich wie Top-Navi)
   ═══════════════════════════════════════════════════════════ */

/* Chat-Zwiebel - volle Sichtbarkeit */
.chat-zwiebel-icon {
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.5 - FAQ: Glass-Effekt (hochwertig)
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - Glass-Effekt wie Navbar/Chat */
#faqDropdown {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.6 - FAQ: Stärkerer Glass-Effekt
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - Stärkerer Glass-Effekt */
#faqDropdown {
    background: rgba(20, 28, 40, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.7 - Navbar: Weißere Texte (fast reines Weiß)
   ═══════════════════════════════════════════════════════════ */

/* Navbar Brand (BlackOnion) - weißer */
.unified-nav-brand-text {
    color: rgba(255, 255, 255, 0.98) !important;
}

/* Navbar Center Links (Produkte, Vorteile, etc.) - weißer */
.unified-nav-center a {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Navbar Pills (Photovoltaik, Industriemontage) - weißer */
.unified-nav-pill,
.unified-nav-pill span {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Navbar Hover - komplett weiß */
.unified-nav-center a:hover,
.unified-nav-pill:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Top-Nav Zwiebel - heller (weniger Filter) */
.unified-nav-logo-img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.98 !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.6 - FAQ: Stärkerer Glass-Effekt
   ═══════════════════════════════════════════════════════════ */

/* FAQ Dropdown - Stärkerer Glass-Effekt */
#faqDropdown {
    background: rgba(20, 28, 40, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.7 - Navi-Text weißer (nur Navi)
   ═══════════════════════════════════════════════════════════ */

/* Navbar - noch weißer (0.95 → 0.98) */
.unified-nav-brand-text,
.unified-nav-center a,
.unified-nav-pill,
.unified-nav-pill span {
    color: rgba(230, 240, 255, 0.98) !important;
}

/* Navbar Hover - Komplett weiß mit leichtem Blau */
.unified-nav-center a:hover,
.unified-nav-pill:hover {
    color: rgba(240, 248, 255, 1) !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.8 - Navbar: Volles Weiß (opacity 1.0)
   ═══════════════════════════════════════════════════════════ */

/* Navbar - Alle Texte komplett weiß */
.unified-nav-brand-text,
.unified-nav-center a,
.unified-nav-pill,
.unified-nav-pill span {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* Top-Nav Zwiebel - voll weiß */
.unified-nav-logo-img {
    opacity: 1.0 !important;
}

/* ═══════════════════════════════════════════════════════════
   v10.9 - Überall volles Weiß (außer Placeholder)
   ═══════════════════════════════════════════════════════════ */

/* Chat Eingabefeld - volles Weiß */
.search-bar-input,
input.search-bar-input,
input#mainSearchInput {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* Antwortfeld Text - volles Weiß */
#inlineAnswerContent,
.inline-answer-content,
#inlineAnswerContent > div,
.inline-answer-content > div {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* FAQ Dropdown Items - volles Weiß */
.faq-dropdown-item {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* Chronik-Button - volles Weiß */
#chronikBtn {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* History Dropdown Items - volles Weiß */
#searchHistoryDropdown .history-item,
.history-item,
.history-item-text,
.history-query {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* Follow-up Input - volles Weiß */
.followup-input,
#followupInput {
    color: rgba(255, 255, 255, 1.0) !important;
}

/* Chat-Zwiebel - volles Weiß (keine Transparenz) */
.chat-zwiebel-icon {
    filter: brightness(0) invert(1) !important;
    opacity: 1.0 !important;
}

/* Placeholder bleibt mit reduzierter Opacity für Kontrast */
.search-bar-input::placeholder,
input.search-bar-input::placeholder,
input#mainSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.75) !important;
}

.followup-input::before,
#followupInput::before,
.followup-input[data-placeholder]::before,
#followupInput[data-placeholder]::before {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO STATS - GLASSMORPHISM NEPQ STYLE
   ═══════════════════════════════════════════════════════════ */
.hero-stats-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-stat-card {
    background: rgba(20, 28, 40, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(20, 28, 40, 0.90) !important;
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 1.0) !important;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.stat-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 1.0) !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.stat-answer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.stat-number {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1.0) !important;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-stats-glass {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stat-card {
        padding: 1.5rem 1.25rem;
    }
    
    .stat-question {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   TICKER - MODERN GLASSMORPHISM STYLE
   ═══════════════════════════════════════════════════════════ */
.ticker {
    margin-top: 3.5rem !important;
    background: rgba(20, 28, 40, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 0 !important;
    overflow: hidden !important;
}

.ticker-item {
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.875rem !important;
    padding: 0 2rem !important;
}

.ticker-item::after {
    content: '•';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.75rem;
}

.ticker-item:last-child::after {
    display: none;
}

.ticker-item strong {
    color: rgba(255, 255, 255, 1.0) !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════════
   USP SECTION - GLASSMORPHISM REDESIGN
   ═══════════════════════════════════════════════════════════ */
.usp-card {
    background: rgba(20, 28, 40, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1.5rem !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
}

.usp-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(20, 28, 40, 0.90) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.usp-icon-svg {
    width: 48px !important;
    height: 48px !important;
    color: rgba(255, 255, 255, 1.0) !important;
    stroke-width: 1.5 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

.usp-card:hover .usp-icon-svg {
    color: rgba(255, 255, 255, 1.0) !important;
    transform: scale(1.05) !important;
    opacity: 1 !important;
}

.usp-card h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 1.0) !important;
    margin-bottom: 0.75rem !important;
}

.usp-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO TITLE HIGHLIGHT FIX
   ═══════════════════════════════════════════════════════════ */
.hero-title .highlight {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 1.0) !important;
    background-clip: unset !important;
    color: rgba(255, 255, 255, 1.0) !important;
    font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════════════════
   CHAT ELEMENTS - KANTIGE ECKEN (WENIGER RUND)
   ═══════════════════════════════════════════════════════════ */
/* Search Bar / Chat Container */
.search-bar {
    border-radius: 6px !important;
}

.search-bar input,
.search-bar input[type="text"],
.search-bar-input {
    border-radius: 6px 0 0 6px !important;
}

.search-bar .search-bar-btn,
.search-bar .search-btn {
    border-radius: 0 6px 6px 0 !important;
}

/* Inline Answer / Antworten */
#inlineAnswer,
.inline-answer {
    border-radius: 6px !important;
}

/* Chat Response */
#chatResponse,
.chat-response {
    border-radius: 6px !important;
}

/* FAQ Dropdown */
#faqDropdown {
    border-radius: 6px !important;
}

/* Chronik Button */
#chronikBtn {
    border-radius: 6px !important;
}

/* Send Button */
.send-btn,
#sendBtn {
    border-radius: 6px !important;
}

/* Hero Stats Glass Cards - auch anpassen */
.hero-stat-card {
    border-radius: 8px !important;
}

/* USP Cards - auch anpassen */
.usp-card {
    border-radius: 8px !important;
}

/* ═══════════════════════════════════════════════════════════
   FIXES - OBERES CHATFELD RUND + CHRONIK HÖHER
   ═══════════════════════════════════════════════════════════ */
/* Oberes Chatfeld (Antwort) bleibt rund */
#inlineAnswer,
.inline-answer {
    border-radius: 16px !important;
}

#inlineAnswerContent,
.inline-answer-content {
    border-radius: 16px !important;
}

/* Chronik Button höher positionieren */
#chronikBtn {
    bottom: 120px !important;
}

/* ═══════════════════════════════════════════════════════════
   FORCE STYLES - MAXIMALE SPEZIFITÄT V2
   ═══════════════════════════════════════════════════════════ */
html body .search-bar-container .search-bar {
    border-radius: 6px !important;
}

html body .search-bar input[type="text"],
html body .search-bar-input {
    border-radius: 6px 0 0 6px !important;
}

html body #inlineAnswer {
    border-radius: 16px !important;
}

html body #chronikBtn {
    bottom: 120px !important;
    border-radius: 6px !important;
}

html body #faqDropdown {
    border-radius: 6px !important;
}

html body .hero-stat-card {
    border-radius: 8px !important;
}

/* Chronik Button noch höher wegen Banner */
html body #chronikBtn {
    bottom: 150px !important;
}

/* Chronik Button noch höher */
html body #chronikBtn {
    bottom: 250px !important;
}

/* Chronik Button aligned mit Hero Stats unten */
html body #chronikBtn {
    bottom: calc(100vh - 680px) !important;
    position: fixed !important;
}

@media (max-height: 900px) {
    html body #chronikBtn {
        bottom: 180px !important;
    }
}

/* Chronik Button: unterer Rand = unterer Rand Hero Stats */
html body #chronikBtn {
    bottom: 320px !important;
}

/* ═══════════════════════════════════════════════════════════
   ZWIEBEL BADGE + CHRONIK BUTTON VERSTECKEN
   ═══════════════════════════════════════════════════════════ */
/* Chronik Button komplett verstecken */
#chronikBtn {
    display: none !important;
}

/* Badge an Zwiebel */
.zwiebel-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #ef4444 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    min-width: 18px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    line-height: 1.3 !important;
}

/* Badge anzeigen wenn es Nachrichten gibt */
.zwiebel-badge[data-count]:not([data-count="0"]) {
    display: inline-block !important;
}

/* Zwiebel Fix - Sichtbarkeit sicherstellen */
.search-bar-bottom-row > div {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.chat-zwiebel-icon {
    display: block !important;
    visibility: visible !important;
    opacity: 0.65 !important;
}

/* ═══════════════════════════════════════════════════════════
   CHRONIK PANEL - POSITION WIE FAQ
   ═══════════════════════════════════════════════════════════ */
#chronikPanel {
    position: fixed !important;
    top: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 600px !important;
    max-width: 90vw !important;
    background: rgba(20, 28, 40, 0.85) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    z-index: 10000 !important;
    max-height: 500px !important;
    overflow-y: auto !important;
}

/* Badge Position verbessern */
.zwiebel-badge {
    position: absolute !important;
    top: 5px !important;
    left: calc(50% + 12px) !important;
    z-index: 10 !important;
}

/* Badge Fix - Perfekte Kreisform */
.zwiebel-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
}

/* Badge - Nur rote Zahl, kein Hintergrund */
.zwiebel-badge {
    display: none !important;
    position: absolute !important;
    top: 8px !important;
    left: calc(50% + 10px) !important;
    background: none !important;
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
    box-shadow: none !important;
    line-height: 1 !important;
    z-index: 10 !important;
}

/* Badge nur anzeigen wenn Nachrichten vorhanden */
.zwiebel-badge[data-count]:not([data-count="0"]) {
    display: inline-block !important;
}

/* Zwiebel immer gleich weiß (kein Hover) */
.chat-zwiebel-icon {
    opacity: 0.9 !important;
    transition: none !important;
}

.chat-zwiebel-icon:hover {
    opacity: 0.9 !important;
}

/* ═══════════════════════════════════════════════════════════
   CHRONIK BADGE ZUR ZWIEBEL VERSCHIEBEN
   ═══════════════════════════════════════════════════════════ */
#chronikBadge {
    position: fixed !important;
    bottom: 28px !important;
    left: calc(50% + 15px) !important;
    transform: none !important;
    background: none !important;
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-width: auto !important;
    box-shadow: none !important;
    z-index: 9999 !important;
}

#chronikBadge.hidden {
    display: none !important;
}

#chronikBadge:not(.hidden) {
    display: inline-block !important;
}

/* ═══════════════════════════════════════════════════════════
   CHRONIK BUTTON UNSICHTBAR ABER GERENDERT
   ═══════════════════════════════════════════════════════════ */
#chronikBtn {
    display: block !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    bottom: -200px !important;
    left: -200px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: visible !important;
}

/* Badge sichtbar machen und zur Zwiebel positionieren */
#chronikBtn #chronikBadge {
    opacity: 1 !important;
    pointer-events: none !important;
    position: fixed !important;
    bottom: 28px !important;
    left: 50% !important;
    margin-left: 15px !important;
    background: none !important;
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 9999 !important;
}

#chronikBtn #chronikBadge.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   BADGE ALS PSEUDO-ELEMENT AN ZWIEBEL
   ═══════════════════════════════════════════════════════════ */
.chat-zwiebel-icon[data-badge]:not([data-badge="0"])::after {
    content: attr(data-badge) !important;
    position: absolute !important;
    top: -5px !important;
    right: -10px !important;
    background: none !important;
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    z-index: 10 !important;
    display: block !important;
}

/* Zwiebel als relative Position für Badge */
.chat-zwiebel-icon {
    position: relative !important;
    display: inline-block !important;
}

/* ═══════════════════════════════════════════════════════════
   ZWIEBEL WRAPPER + BADGE POSITION FIX
   ═══════════════════════════════════════════════════════════ */
.search-bar-bottom-row > div[style*="position:relative"] {
    flex: 0 0 auto !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

#badge-test {
    right: -8px !important;
    top: -6px !important;
}

/* Badge Fix - Sichtbarkeit erzwingen */
#zwiebel-badge-real {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    z-index: 99999 !important;
}

/* ═══════════════════════════════════════════════════════════
   CHRONIK BADGE ZUR ZWIEBEL - FINALES SYSTEM
   ═══════════════════════════════════════════════════════════ */
#chronikBtn {
    position: fixed !important;
    bottom: -500px !important;
    left: -500px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: visible !important;
}

#chronikBtn #chronikBadge {
    position: fixed !important;
    bottom: 24px !important;
    left: 50% !important;
    margin-left: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: #ef4444 !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 5px !important;
    border-radius: 10px !important;
    min-width: 16px !important;
    text-align: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    z-index: 99999 !important;
}

#chronikBtn #chronikBadge.hidden {
    display: none !important;
}

#chronikBtn #chronikBadge:not(.hidden) {
    display: inline-block !important;
}

/* Hidden Klasse für Badge */
.hidden {
    display: none !important;
}

#zwiebel-badge-final.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO TITLE - DYNAMISCHER GRADIENT + GLOW
   ═══════════════════════════════════════════════════════════ */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #e0f2fe 25%,
        #bae6fd 50%,
        #e0f2fe 75%,
        #ffffff 100%
    ) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientFlow 8s ease infinite !important;
    text-shadow: 0 0 40px rgba(186, 230, 253, 0.3),
                 0 0 80px rgba(224, 242, 254, 0.2) !important;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)) !important;
    margin-bottom: 1.5rem !important;
}

.hero-title .highlight {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #93c5fd 50%,
        #ffffff 100%
    ) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientFlow 6s ease infinite reverse !important;
    font-weight: 900 !important;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Subtitle auch anpassen */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    max-width: 800px !important;
    margin: 0 auto 2rem !important;
}

/* Hero Title Fix - Sichtbar mit Gradient */
.hero-title {
    color: #ffffff !important;
    text-shadow: 0 0 40px rgba(147, 197, 253, 0.5),
                 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    animation: titlePulse 4s ease-in-out infinite !important;
}

.hero-title .highlight {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 0 60px rgba(147, 197, 253, 0.7),
                 0 2px 20px rgba(0, 0, 0, 0.5) !important;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 40px rgba(147, 197, 253, 0.5),
                     0 2px 20px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 60px rgba(147, 197, 253, 0.8),
                     0 0 80px rgba(186, 230, 253, 0.4),
                     0 2px 20px rgba(0, 0, 0, 0.5);
    }
}

/* CRITICAL FIX - Highlight muss sichtbar sein */
.hero-title .highlight {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 0 60px rgba(147, 197, 253, 0.7),
                 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* Hero Zentriert + Stats visible */
.hero {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-stats {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-stat-value {
    color: #ffffff !important;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* RESET - Zurück zu Original Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

.hero-title .highlight {
    color: #ffffff !important;
    font-weight: 700 !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

/* ULTIMATE OVERRIDE - Hero Title MUSS sichtbar sein */
html body section.hero h1.hero-title,
html body section.hero h1.hero-title span.highlight {
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    filter: none !important;
}

html body section.hero h1.hero-title span.highlight {
    display: inline !important;
    font-weight: 900 !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO TEXT - AUFFÄLLIG ABER LESBAR
   ═══════════════════════════════════════════════════════════ */
html body section.hero h1.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 
        0 0 60px rgba(147, 197, 253, 0.6),
        0 0 30px rgba(186, 230, 253, 0.4),
        0 4px 30px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 2rem !important;
}

html body section.hero h1.hero-title span.highlight {
    color: #bae6fd !important;
    text-shadow: 
        0 0 80px rgba(147, 197, 253, 0.8),
        0 0 40px rgba(186, 230, 253, 0.6),
        0 4px 30px rgba(0, 0, 0, 0.8) !important;
}

/* Ticker nach unten mit Abstand */
.ticker {
    margin-top: 5rem !important;
    margin-bottom: 3rem !important;
}

/* Ticker am unteren Rand */
.ticker {
    position: fixed !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    z-index: 100 !important;
    width: 100% !important;
}

/* Ticker Fix - Normal Flow, nicht fixed */
.ticker {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 3rem !important;
    margin-bottom: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
}

/* Hero volle Höhe + Ticker am Ende */
.hero {
    min-height: calc(100vh - 80px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    padding-bottom: 100px !important;
}

.ticker {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
}

/* Stats Section unter Hero */
.stats-section {
    padding: 4rem 0 !important;
    background: transparent !important;
}

.stats-section .hero-stats {
    position: relative !important;
    bottom: auto !important;
}

/* NEPQ Fragen im Hero */
.hero-nepq {
    margin: 2rem auto !important;
    max-width: 900px !important;
}

.nepq-question {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    color: rgba(186, 230, 253, 0.95) !important;
    font-weight: 500 !important;
    margin: 1rem 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-style: italic !important;
}

/* Stats Section Styling */
.stats-section {
    text-align: center !important;
    padding: 5rem 2rem !important;
}

.stats-section .hero-subtitle {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    max-width: 900px !important;
    margin: 0 auto 3rem !important;
}

/* Stats Section - Dunkler Hintergrund */
.stats-section {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) !important;
}

.stats-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
}

.stats-section .hero-stat-value {
    color: #ffffff !important;
}

.stats-section .hero-stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ═══════════════════════════════════════════════════════════
   ULTIMATE NEPQ - MINIMALES GEILES DESIGN
   ═══════════════════════════════════════════════════════════ */
.nepq-hero-ultimate {
    margin: 3rem auto 2rem !important;
    max-width: 1100px !important;
    padding: 0 2rem !important;
    opacity: 0 !important;
    animation: ultimateFadeIn 1.5s ease 0.5s forwards !important;
}

.nepq-ultimate-text {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    
    /* Glassmorphism - subtil */
    background: rgba(20, 28, 40, 0.25) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(186, 230, 253, 0.2) !important;
    border-radius: 16px !important;
    padding: 2rem 2.5rem !important;
    
    /* Gradient Text */
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #bae6fd 30%,
        #7dd3fc 50%,
        #bae6fd 70%,
        #ffffff 100%
    ) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    
    /* Animated Glow */
    box-shadow: 
        0 0 60px rgba(125, 211, 252, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    
    animation: 
        gradientShift 8s ease infinite,
        glowPulse 4s ease-in-out infinite !important;
    
    transition: all 0.4s ease !important;
}

.nepq-ultimate-text:hover {
    transform: translateY(-2px) !important;
    box-shadow: 
        0 0 80px rgba(125, 211, 252, 0.5),
        0 12px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 60px rgba(125, 211, 252, 0.3),
            0 8px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 100px rgba(125, 211, 252, 0.5),
            0 0 60px rgba(186, 230, 253, 0.3),
            0 8px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 768px) {
    .nepq-ultimate-text {
        font-size: 1.25rem !important;
        padding: 1.5rem 1.75rem !important;
    }
}

/* NEPQ FIX - Einfach und sichtbar */
.nepq-ultimate-text {
    color: #ffffff !important;
    background: rgba(20, 28, 40, 0.75) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 0 40px rgba(147, 197, 253, 0.6),
                 0 2px 20px rgba(0, 0, 0, 0.8) !important;
}

/* Überschriften lesbar machen */
.section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8) !important;
}

.section-eyebrow {
    color: rgba(186, 230, 253, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

/* Benefit Cards lesbar machen */
.benefit-card {
    background: rgba(20, 28, 40, 0.85) !important;
}

.benefit-card h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5) !important;
}

.benefit-stat {
    color: rgba(186, 230, 253, 0.95) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

/* Section Headers zentriert + kein Blau */
.section-eyebrow {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    text-align: center !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.section-title {
    text-align: center !important;
}

/* Sections ohne Nebel/Blur */
.section {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.usp-header,
.products-header,
.benefits-header {
    text-align: center !important;
}

/* Eyebrow minimal dunkel */
.section-eyebrow {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 0.35rem 1rem !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin: 0 auto 1rem !important;
}

/* Eyebrow ohne Bubble, größer */
.section-eyebrow {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 auto 1.5rem !important;
}

.section-eyebrow .light {
    font-weight: 300 !important;
    opacity: 0.85 !important;
}

/* Eyebrow minimalistisch dunkel auf hellem Hintergrund */
.section-eyebrow {
    color: rgba(0, 0, 0, 0.8) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.5rem 0 !important;
    margin: 0 0 2rem !important;
    border: none !important;
}

.section-eyebrow .light {
    font-weight: 400 !important;
    opacity: 0.7 !important;
}

/* Sections mit hellem Hintergrund */
.usp,
.products,
.benefits {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
}

.usp-header,
.products-header,
.benefits-header {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 3rem 0 0 !important;
}

/* BlackOnion komplett bold */
.section-eyebrow .light {
    font-weight: 600 !important;
    opacity: 1 !important;
}

/* Versionsbadge abschwächen */
.nav-version {
    background: none !important;
    color: rgba(150, 150, 150, 0.6) !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
}
