        /* ═══════════════════════════════════════════════════════════
           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.60) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.40) 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: grid;
    grid-template-columns: auto 1fr auto;
    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: 70px !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 {
    grid-template-columns: auto auto !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;
}
