        /* ===== LOCAL FONTS (DSGVO-konform) ===== */
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/inter-v20-latin-300.woff2') format('woff2'); }
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); }
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); }
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); }
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/inter-v20-latin-700.woff2') format('woff2'); }
        @font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/inter-v20-latin-800.woff2') format('woff2'); }
        @font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/space-grotesk-v22-latin-300.woff2') format('woff2'); }
        @font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/space-grotesk-v22-latin-regular.woff2') format('woff2'); }
        @font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/space-grotesk-v22-latin-500.woff2') format('woff2'); }
        @font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/space-grotesk-v22-latin-600.woff2') format('woff2'); }
        @font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/space-grotesk-v22-latin-700.woff2') format('woff2'); }

        /* ===== RESET & BASE ===== */
        ::selection { background: rgba(212, 176, 106, 0.3); color: inherit; }
        ::-moz-selection { background: rgba(212, 176, 106, 0.3); color: inherit; }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg-primary: #150b29;
            --bg-secondary: #1d1138;
            --bg-card: #251748;
            --bg-card-hover: #2e1d57;
            --accent: #d4b06a;
            --accent-light: #e2c58a;
            --accent-glow: rgba(212, 176, 106, 0.22);
            --accent-1: #cfa55a;
            --text-primary: #f6f1ff;
            --text-secondary: #c9bce0;
            --text-muted: #9586b3;
            --border: rgba(212, 176, 106, 0.16);
            --gradient-1: linear-gradient(135deg, #e2c58a, #c29a50);
            --gradient-2: #d4b06a;
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        html { background-color: #0F0A26; }
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background: transparent;
            position: relative;
        }
        /* Canvas-Nachthimmel (kein Bild) – wird per sky.js gezeichnet, liegt hinter allem */
        #skybg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; display: block; }

        h1, h2, h3, h4 { font-family: 'Cormorant Garamond', 'Space Grotesk', serif; line-height: 1.2; }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 16px 24px;
            transition: var(--transition);
        }
        .navbar.scrolled { padding: 10px 24px; }

        .navbar-inner {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 34px;
            background: rgba(37, 23, 72, 0.55);
            backdrop-filter: blur(32px) saturate(120%);
            -webkit-backdrop-filter: blur(32px) saturate(120%);
            border: 1px solid rgba(212, 176, 106,0.18);
            border-radius: 60px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            transition: var(--transition);
        }
        .navbar.scrolled .navbar-inner {
            padding: 12px 30px;
            background: rgba(29, 17, 56, 0.78);
            box-shadow: 0 8px 30px rgba(0,0,0,0.16);
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.5px;
            flex: 0 0 140px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0 auto;
        }
        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gradient-1);
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--text-primary); }
        .nav-links a:hover::after { width: 100%; }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            border-radius: 54px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--gradient-1);
            color: #1c1033;
            box-shadow: 0 4px 20px var(--accent-glow);
        }
        /* Sanfter Glanz von links nach rechts beim Hover (kein Pulsieren) */
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -130%;
            width: 60%; height: 100%;
            background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.65s cubic-bezier(0.4,0,0.2,1);
            pointer-events: none;
        }
        .btn-primary:hover::before { left: 150%; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1.5px solid var(--border);
        }
        .btn-outline:hover { border-color: var(--accent); background: rgba(212, 176, 106,0.12); }

        .nav-cta { padding: 10px 24px; font-size: 0.85rem; flex: 0 0 140px; text-align: center; }

        /* Hamburger Button */
        .menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 42px; height: 42px;
            background: transparent;
            border: 1.5px solid rgba(212, 176, 106,0.30);
            border-radius: 50%;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
            transition: var(--transition);
            margin-left: auto;
        }
        .menu-toggle:hover {
            border-color: rgba(212, 176, 106, 0.4);
            background: rgba(212, 176, 106, 0.08);
        }
        .menu-toggle .hamburger-lines {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            width: 18px;
        }
        .menu-toggle .hamburger-lines span {
            display: block;
            width: 18px; height: 1.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: var(--transition);
        }
        .menu-toggle .hamburger-lines span:nth-child(2) { width: 12px; }
        .menu-toggle.open .hamburger-lines span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        .menu-toggle.open .hamburger-lines span:nth-child(2) {
            opacity: 0; width: 0;
        }
        .menu-toggle.open .hamburger-lines span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* Mobile nav dropdown */
        .mobile-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 999;
            padding: 90px 24px 36px;
            background: rgba(29, 17, 56, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            pointer-events: none;
        }
        .mobile-nav.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }
        .mobile-nav a {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .mobile-nav a:hover { color: var(--text-primary); }
        .mobile-nav .btn {
            margin-top: 8px;
            padding: 14px 32px;
            font-size: 1rem;
            background: var(--gradient-1);
            color: #fff;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex; align-items: center;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(0, 206, 201, 0.15) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
        }

        /* Dot Grid Background (replaces Three.js) */
        .dot-grid-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image: radial-gradient(circle, rgba(212, 176, 106,0.18) 1.5px, transparent 1.5px);
            background-size: 32px 32px;
            background-position: 0 0;
            animation: dotFloat 8s ease-in-out infinite;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
        }
        @keyframes dotFloat {
            0%, 100% { background-position: 0 0; opacity: 0.6; }
            25% { background-position: 8px -12px; opacity: 0.8; }
            50% { background-position: -4px -20px; opacity: 1; }
            75% { background-position: 12px -8px; opacity: 0.7; }
        }

        .hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 18px;
            background: rgba(212, 176, 106, 0.1);
            border: 1px solid rgba(212, 176, 106, 0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--accent-light);
            margin-bottom: 28px;
        }
        .hero-badge .dot {
            width: 6px; height: 6px;
            background: var(--accent-light);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }
        .hero h1 .gradient-text {
            color: var(--accent);
        }
        /* Letter glow animation */
        .glow-letter {
            display: inline-block;
            opacity: 0.15;
            text-shadow: none;
            transition: opacity 0.4s ease, text-shadow 0.4s ease;
        }
        .glow-letter.lit {
            opacity: 1;
            text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px rgba(212, 176, 106,0.3);
        }
        .glow-letter.lit-done {
            opacity: 1;
            text-shadow: none;
            transition: opacity 0.4s ease, text-shadow 0.8s ease;
        }
        .hero h1 .gradient-text .glow-letter.lit {
            text-shadow: 0 0 20px rgba(212, 176, 106,0.7), 0 0 40px rgba(212, 176, 106,0.4);
        }


        /* Liquid Button */
        .liquid-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 32px;
            padding: 14px 30px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, filter 0.3s;
            background: transparent;
        }
        .liquid-btn:hover {
            transform: scale(1.05);
        }
        .liquid-btn:active {
            transform: scale(0.97);
        }
        .liquid-btn-shadow {
            position: absolute;
            inset: 0;
            border-radius: 50px;
            z-index: 0;
            box-shadow:
                0 0 6px rgba(0,0,0,0.03),
                0 2px 6px rgba(0,0,0,0.08),
                inset 3px 3px 0.5px -3px rgba(0,0,0,0.9),
                inset -3px -3px 0.5px -3px rgba(0,0,0,0.85),
                inset 1px 1px 1px -0.5px rgba(0,0,0,0.6),
                inset -1px -1px 1px -0.5px rgba(0,0,0,0.6),
                inset 0 0 6px 6px rgba(0,0,0,0.12),
                inset 0 0 2px 2px rgba(0,0,0,0.06),
                0 0 12px rgba(255,255,255,0.15);
            transition: all 0.3s;
        }
        .liquid-btn-glass {
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 12px;
            overflow: hidden;
            -webkit-backdrop-filter: url(#glass-filter);
            backdrop-filter: url(#glass-filter);
        }
        .liquid-btn-text {
            position: relative;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            pointer-events: none;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 40px;
        }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }


        /* ===== SECTIONS SHARED ===== */
        section { min-height: 100vh; padding: 120px 0; display: flex; align-items: center; }
        section > .container { width: 100%; }

        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--accent-light);
            margin-bottom: 20px;
        }
        .section-label::before {
            content: '';
            width: 24px; height: 1.5px;
            background: var(--accent-light);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.7rem, 5.4vw, 4.2rem);
            font-weight: 600;
            letter-spacing: 0;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        /* Hand-drawn circle animation */
        .hand-circle-path {
            stroke-dasharray: 1600;
            stroke-dashoffset: 1600;
        }
        .hand-circle-wrap.animated .hand-circle-path {
            animation: drawCircle 2.5s cubic-bezier(0.43, 0.13, 0.23, 0.96) forwards;
        }
        @keyframes drawCircle {
            to { stroke-dashoffset: 0; }
        }

        .section-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 56px;
        }

        /* ===== ABOUT SCROLL REVEAL WRAPPER ===== */
        .about-scroll-wrapper {
            position: relative;
            height: 250vh;
        }
        .about-scroll-wrapper #about {
            position: sticky;
            top: 0;
        }
        /* Scroll-reveal word styles */
        .sr-word {
            display: inline;
            opacity: 0.12;
            transition: opacity 0.3s ease;
        }
        .sr-word.visible {
            opacity: 1;
        }

        /* ===== SERVICES ===== */
        #services { background: var(--bg-primary); padding: 100px 0; }

        /* Services Carousel – full width breakout */
        .services-embla {
            position: relative;
            margin-top: 48px;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding: 0 48px;
        }
        .services-embla .embla__viewport {
            overflow: hidden;
        }
        .services-embla .embla__container {
            display: flex;
            gap: 16px;
        }
        .services-embla .embla__slide {
            flex: 0 0 calc(25vw - 28px);
            min-width: 0;
        }

        .service-card {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 3 / 4;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        /* Einheitlicher Overlay – gleicht Helligkeit aller Bilder an (wie aus einer Serie) */
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                linear-gradient(to top, rgba(212,176,106,0.20) 0%, transparent 45%),
                rgba(30, 17, 56, 0.22);
            transition: opacity 0.4s ease;
        }
        .service-card:hover::before { opacity: 0.85; }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }
        .service-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            z-index: 2;
        }
        .service-card h3 {
            font-size: 1.6rem;
            font-weight: 400;
            color: #fff;
            margin: 0;
            letter-spacing: -0.01em;
        }
        .service-card h3 a {
            color: #fff;
            text-decoration: none;
        }

        /* ===== ABOUT ===== */
        #about {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }
        /* Network background */
        .about-network {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .about-network svg {
            width: 100%;
            height: 100%;
        }
        .about-label-wrap {
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }
        .about-visual {
            position: relative;
            width: 320px;
            height: 320px;
            border-radius: var(--radius);
            background: var(--bg-card);
            border: 1px solid var(--border);
            overflow: hidden;
            margin: 0 auto;
        }
        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .about-content h2 { margin-bottom: 20px; }
        .about-content > p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.02rem; }

        /* Network node animations */
        @keyframes netFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-6px); } }
        @keyframes netFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5px,4px); } }
        @keyframes netFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,5px); } }
        @keyframes netFloat4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,-5px); } }
        .net-node-1 { animation: netFloat1 4s ease-in-out infinite; }
        .net-node-2 { animation: netFloat2 4.5s ease-in-out infinite; }
        .net-node-3 { animation: netFloat3 5s ease-in-out infinite; }
        .net-node-4 { animation: netFloat4 4.2s ease-in-out infinite; }
        @keyframes netLinePulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
        .net-line { animation: netLinePulse 3.5s ease-in-out infinite; }
        .net-line-d { animation: netLinePulse 4s ease-in-out infinite 0.5s; }

        /* ===== KUNDENBEWERTUNGEN (Vertical Scroll Columns) ===== */
        #testimonials { padding: 100px 0 0; overflow: hidden; flex-direction: column; }
        .testim-columns {
            display: flex;
            gap: 24px;
            justify-content: center;
            max-width: 1100px;
            margin: 48px auto 0;
            height: 550px;
            overflow: hidden;
            position: relative;
            padding: 0 24px;
            box-sizing: border-box;
        }
        .testim-fade {
            position: absolute;
            left: 0; right: 0;
            height: 100px;
            z-index: 2;
            pointer-events: none;
        }
        .testim-fade--top {
            top: 0;
            background: linear-gradient(to bottom, var(--bg-primary), transparent);
        }
        .testim-fade--bottom {
            bottom: 0;
            background: linear-gradient(to top, var(--bg-primary), transparent);
        }
        .testim-col {
            flex: 1;
            max-width: 340px;
            overflow: hidden;
        }
        .testim-col-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
            animation: testimScroll var(--duration, 25s) linear infinite;
        }
        @keyframes testimScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .testim-col:hover .testim-col-inner {
            animation-play-state: paused;
        }
        .testim-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: 0 2px 12px rgba(212, 176, 106,0.06);
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .testim-card:hover {
            border-color: rgba(212, 176, 106,0.25);
            box-shadow: 0 8px 30px rgba(212, 176, 106,0.1);
        }
        .stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
        .testim-card blockquote {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .testim-author { display: flex; align-items: center; gap: 12px; }
        .testim-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid rgba(212, 176, 106,0.15);
        }
        .testim-name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
        .testim-role { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }

        @media (max-width: 768px) {
            .testim-columns { height: 500px; }
            .testim-col:nth-child(4) { display: none; }
        }
        @media (max-width: 540px) {
            .testim-columns { gap: 16px; }
            .testim-col:nth-child(3) { display: none; }
        }

        /* ===== CTA ===== */
        /* ===== CONTACT ===== */
        .contact-header { text-align: center; margin-bottom: 50px; }
        .contact-header .section-desc { margin-left: auto; margin-right: auto; }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }
        .contact-sidebar {
            display: flex; flex-direction: column; gap: 16px;
        }
        .contact-method {
            display: flex; align-items: center; gap: 14px;
            padding: 18px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .contact-method:hover { border-color: rgba(212, 176, 106,0.2); }
        .contact-method .icon-box {
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(212, 176, 106,0.1);
            border-radius: 10px;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .contact-method .label { font-size: 0.8rem; color: var(--text-muted); }
        .contact-method .value { font-weight: 500; font-size: 0.95rem; }

        .contact-booking {
            flex-wrap: wrap;
            gap: 14px;
            padding: 18px 20px;
            background: linear-gradient(135deg, rgba(212, 176, 106,0.08), rgba(0,206,201,0.05));
            border-color: rgba(212, 176, 106,0.15);
        }
        .contact-booking .icon-box {
            width: 44px; height: 44px;
            font-size: 1.1rem;
        }
        .contact-booking .label { font-size: 0.8rem; }
        .contact-booking .value { font-size: 0.95rem; }
        .btn-booking {
            width: 100%;
            justify-content: center;
            padding: 10px 16px;
            font-size: 0.85rem;
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px;
        }
        .form-group { margin-bottom: 20px; }
        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }
        .form-group textarea { min-height: 100px; resize: vertical; }
        .form-group select { cursor: pointer; appearance: none; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        .required { color: #e74c3c; font-weight: 400; }
        .btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

        /* ===== FAQ ===== */
        #faq { padding: 100px 0; }
        .faq-list {
            max-width: 800px;
            margin: 50px auto 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .faq-item {
            background: rgba(37,23,72,0.55);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: border-color .25s, background .25s, box-shadow .25s, transform .25s;
        }
        .faq-item:hover { border-color: rgba(212, 176, 106,0.40); transform: translateY(-2px); }
        .faq-item.open {
            border-color: rgba(212, 176, 106,0.55);
            background: rgba(46,29,87,0.62);
            box-shadow: 0 16px 44px rgba(0,0,0,0.30);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
            padding: 20px 22px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            transition: color .2s;
        }
        .faq-question span { flex: 1; }
        .faq-question:hover span { color: var(--accent-light); text-decoration: none; }
        .faq-chevron {
            flex-shrink: 0;
            box-sizing: border-box;
            width: 34px !important;
            height: 34px !important;
            min-width: 34px;
            padding: 8px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: rgba(212, 176, 106,0.08);
            stroke: var(--accent-light) !important;
            opacity: 1;
            transition: transform .3s ease, background .2s, border-color .2s;
        }
        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
            background: rgba(212, 176, 106,0.18);
            border-color: rgba(212, 176, 106,0.5);
        }
        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s ease;
        }
        .faq-answer-inner {
            overflow: hidden;
        }
        .faq-item.open .faq-answer {
            grid-template-rows: 1fr;
        }
        .faq-answer p {
            color: var(--text-secondary);
            font-size: 0.96rem;
            line-height: 1.75;
            padding: 0 22px 22px;
        }

        /* ===== WARUM WIR ===== */
        #whyus { padding: 100px 0; }
        .whyus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }
        .whyus-card {
            padding: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            position: relative;
            opacity: 0;
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
        }
        /* Each card flies in from a different direction */
        .whyus-card:nth-child(1) { transform: translate(-120px, -60px) rotate(-5deg); }
        .whyus-card:nth-child(2) { transform: translateY(-100px) scale(0.8); }
        .whyus-card:nth-child(3) { transform: translate(120px, -60px) rotate(5deg); }
        .whyus-card:nth-child(4) { transform: translate(-120px, 60px) rotate(4deg); }
        .whyus-card:nth-child(5) { transform: translateY(100px) scale(0.8); }
        .whyus-card:nth-child(6) { transform: translate(120px, 60px) rotate(-4deg); }


        /* Fly-in: cards become visible */
        .whyus-card.fly-in {
            opacity: 1;
            transform: translate(0,0) rotate(0) scale(1);
        }

        .whyus-card:hover {
            border-color: rgba(212, 176, 106,0.25);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(212, 176, 106,0.1), 0 12px 30px rgba(0,0,0,0.06);
        }
        .whyus-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            opacity: 0.3;
            margin-bottom: 16px;
            transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
        }
        .whyus-card:hover .whyus-number {
            opacity: 1;
            transform: scale(1.15);
            filter: drop-shadow(0 0 12px rgba(212, 176, 106,0.5));
        }

        .whyus-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .whyus-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ===== VORHER/NACHHER IMAGE COMPARISON ===== */
        #beforeafter { min-height: auto; padding: 100px 0; }
        .img-compare {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: ew-resize;
            user-select: none;
            -webkit-user-select: none;
            box-shadow: 0 8px 40px rgba(0,0,0,0.1);
            aspect-ratio: 16 / 9;
        }
        .img-compare-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .img-compare-overlay {
            position: absolute;
            inset: 0;
            clip-path: inset(0 50% 0 0);
        }
        .img-compare-overlay .img-compare-img {
            position: absolute;
            inset: 0;
        }
        .img-compare-slider {
            position: absolute;
            top: 0; bottom: 0;
            left: 50%;
            width: 3px;
            background: #fff;
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 0 8px rgba(0,0,0,0.3);
        }
        .img-compare-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
        }
        .img-compare-label {
            position: absolute;
            bottom: 16px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 4;
            pointer-events: none;
        }
        .img-compare-label--left {
            left: 16px;
            background: rgba(0,0,0,0.6);
            color: #fff;
        }
        .img-compare-label--right {
            right: 16px;
            background: rgba(212, 176, 106,0.9);
            color: #fff;
        }
        @media (max-width: 768px) {
            .img-compare { border-radius: var(--radius-sm); }
            .img-compare-handle { width: 40px; height: 40px; }
            .img-compare-handle svg { width: 20px; height: 20px; }
        }

        /* ===== WHYUS STATS BAR ===== */
        .whyus-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 48px auto 0;
            padding: 28px 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            max-width: 860px;
            box-shadow: 0 4px 24px rgba(212, 176, 106,0.06);
        }
        .whyus-stat {
            flex: 1;
            text-align: center;
            padding: 8px 16px;
        }
        .whyus-stat-top {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 2px;
        }
        .whyus-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .whyus-stat-suffix {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .whyus-stat-label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .whyus-stat-divider {
            width: 1px;
            height: 48px;
            background: var(--border);
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .whyus-stats {
                flex-direction: column;
                gap: 0;
                padding: 24px 20px;
            }
            .whyus-stat-divider {
                width: 60%;
                height: 1px;
                margin: 12px auto;
            }
            .whyus-stat { padding: 8px 0; }
        }

        /* ===== AUTO-SCROLL MARQUEE ===== */
        .marquee-section {
            position: relative;
            width: 100%;
            padding: 32px 0;
            overflow: hidden;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .marquee-track {
            overflow: hidden;
        }
        .marquee-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            width: max-content;
            animation: marqueeScroll 30s linear infinite;
        }
        .marquee-section:hover .marquee-inner {
            animation-play-state: paused;
        }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-item {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .marquee-dot {
            font-size: 0.4rem;
            color: var(--accent);
            opacity: 0.5;
        }
        .marquee-fade {
            position: absolute;
            top: 0; bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .marquee-fade--left {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary), transparent);
        }
        .marquee-fade--right {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary), transparent);
        }

        /* ===== PAINPOINTS ===== */
        #painpoints { padding: 100px 0; }
        .painpoints-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }
        .painpoint-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: var(--transition);
            overflow: hidden;
        }
        .painpoint-card:hover {
            border-color: rgba(212, 176, 106,0.25);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(212, 176, 106,0.08), 0 12px 30px rgba(0,0,0,0.06);
        }

        .painpoint-illustration {
            height: 180px;
            background: linear-gradient(135deg, rgba(212, 176, 106,0.06) 0%, rgba(0,206,201,0.04) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: background 0.4s ease;
        }
        .painpoint-card:hover .painpoint-illustration {
            background: linear-gradient(135deg, rgba(212, 176, 106,0.14) 0%, rgba(0,206,201,0.1) 100%);
        }
        .painpoint-illustration svg {
            width: 220px; height: 150px;
            transition: transform 0.4s ease, filter 0.4s ease;
        }
        .painpoint-card:hover .painpoint-illustration svg {
            transform: scale(1.12);
            filter: drop-shadow(0 0 16px rgba(212, 176, 106,0.35));
        }

        @keyframes ppFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @keyframes ppPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        .pp-float { animation: ppFloat 3s ease-in-out infinite; }
        .pp-float2 { animation: ppFloat 3.4s ease-in-out infinite 0.4s; }
        .pp-pulse { animation: ppPulse 2.5s ease-in-out infinite; }

        .painpoint-body { padding: 28px; }
        .painpoint-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .painpoint-card p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 40px 0 30px;
            text-align: center;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .footer-nav a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-nav a:hover { color: var(--text-primary); }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .footer-socials a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }
        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .footer-legal a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .footer-legal a:hover { color: var(--text-secondary); }

        .footer-copyright {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .footer-logo {
            display: inline-block;
        }

        /* ===== Footer (mehrspaltig, Layout wie tisusposters) ===== */
        .footer { text-align: left; padding: 70px 0 28px; }
        .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
        .footer-brand { max-width: 340px; }
        .footer-wordmark { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 2rem;
            font-weight: 600; letter-spacing: 5px; color: var(--accent-light); margin-bottom: 10px; line-height: 1; }
        .footer-about { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin: 2px 0 20px; }
        .footer-brand .footer-socials { justify-content: flex-start; margin-bottom: 0; }
        .footer-col h4 { font-size: 0.76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 18px; font-weight: 700; }
        .footer-col a { display: block; color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 12px; transition: var(--transition); }
        .footer-col a:hover { color: var(--text-primary); }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
            margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
        .footer-bottom .footer-copyright { margin: 0; max-width: 620px; text-align: left; }
        .footer-pay { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
        .footer-pay .pay-badge { display: inline-flex; align-items: center; height: 28px; border-radius: 5px;
            overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }
        .footer-pay .pay-badge svg { height: 28px; width: auto; display: block; }
        .footer-made { text-align: center; margin-top: 22px; font-size: 0.8rem; color: var(--text-muted); }
        .footer-made a { color: var(--accent-light); text-decoration: none; font-weight: 600; }
        .footer-made a:hover { text-decoration: underline; }
        @media (max-width: 860px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .footer-brand { grid-column: 1 / -1; max-width: none; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
        }
        @media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

        /* ===== PORTFOLIO CAROUSEL ===== */
        #portfolio { background: var(--bg-primary); overflow: hidden; }

        .portfolio-embla { position: relative; }
        .portfolio-embla .embla__viewport { overflow: hidden; padding: 20px 20px; margin: -20px -20px; }
        .portfolio-embla .embla__container { display: flex; gap: 24px; }
        .portfolio-embla .embla__slide {
            flex: 0 0 calc((100% - 48px) / 3);
            min-width: 0;
        }

        .portfolio-embla .embla__slide {
            transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 0.5;
            transform: scale(0.92);
        }
        .portfolio-embla .embla__slide.is-active {
            opacity: 1;
            transform: scale(1);
        }
        .portfolio-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
            height: 100%;
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }
        .portfolio-card:hover {
            border-color: rgba(212, 176, 106, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .portfolio-preview {
            position: relative;
            width: 100%;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: var(--bg-primary);
        }
        .portfolio-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            pointer-events: none;
        }
        .portfolio-preview iframe {
            width: 200%;
            height: 200%;
            border: none;
            transform: scale(0.5);
            transform-origin: top left;
            pointer-events: none;
        }
        .portfolio-preview-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(10,10,15,0.9) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 20px;
            opacity: 0;
            transition: var(--transition);
        }
        .portfolio-card:hover .portfolio-preview-overlay { opacity: 1; }

        .preview-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: var(--gradient-1);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .portfolio-info {
            padding: 24px 28px;
        }
        .portfolio-info .portfolio-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .portfolio-tag {
            padding: 4px 12px;
            background: rgba(212, 176, 106, 0.1);
            border: 1px solid rgba(212, 176, 106, 0.15);
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--accent-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .portfolio-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .portfolio-info p {
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        /* Carousel Navigation */
        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .carousel-arrow {
            width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50%;
            color: var(--text-secondary);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
        }
        .carousel-arrow:hover {
            background: rgba(212, 176, 106, 0.15);
            border-color: rgba(212, 176, 106, 0.3);
            color: var(--text-primary);
            transform: scale(1.08);
        }
        .carousel-arrow:active { transform: scale(0.95); }
        .carousel-arrow.disabled {
            opacity: 0.3;
            cursor: default;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }
        .carousel-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
            background: var(--text-muted);
            opacity: 0.3;
            cursor: pointer;
            transition: var(--transition);
        }
        .carousel-dot.active {
            opacity: 1;
            background: var(--accent-light);
            box-shadow: 0 0 10px var(--accent-glow);
            transform: scale(1.2);
        }
        .carousel-dot:hover { opacity: 0.7; }

        .carousel-counter {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            min-width: 50px;
            text-align: center;
        }

        /* Live Preview Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-container {
            position: relative;
            width: 92vw;
            height: 85vh;
            max-width: 1400px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            transform: scale(0.9) translateY(30px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
        }
        .modal-topbar-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .modal-dots {
            display: flex;
            gap: 6px;
        }
        .modal-dots span {
            width: 10px; height: 10px;
            border-radius: 50%;
        }
        .modal-dots span:nth-child(1) { background: #ff5f57; }
        .modal-dots span:nth-child(2) { background: #ffbd2e; }
        .modal-dots span:nth-child(3) { background: #28c840; }

        .modal-url {
            padding: 6px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .modal-url .lock { color: #28c840; font-size: 0.7rem; }

        .modal-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .modal-close {
            width: 36px; height: 36px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

        .modal-viewport-controls {
            display: flex;
            gap: 8px;
        }
        .viewport-btn {
            padding: 6px 14px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-muted);
            font-size: 0.75rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }
        .viewport-btn.active, .viewport-btn:hover {
            background: rgba(212, 176, 106,0.15);
            border-color: rgba(212, 176, 106,0.3);
            color: var(--accent-light);
        }

        .modal-body {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1a24;
            overflow: hidden;
            padding: 0;
        }
        .modal-iframe-wrap {
            width: 100%;
            height: 100%;
            transition: width 0.4s ease, height 0.4s ease;
        }
        .modal-iframe-wrap.tablet {
            width: 768px;
            height: 100%;
            border-left: 1px solid var(--border);
            border-right: 1px solid var(--border);
        }
        .modal-iframe-wrap.mobile {
            width: 375px;
            height: 100%;
            border-left: 1px solid var(--border);
            border-right: 1px solid var(--border);
            border-radius: 20px;
        }
        .modal-body iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 900px) {
            .portfolio-embla .embla__slide { flex: 0 0 calc((100% - 24px) / 2); }
            .embla__slide { flex: 0 0 calc((100% - 24px) / 2); }
        }

        @media (max-width: 768px) {
            .portfolio-embla .embla__slide { flex: 0 0 100%; }
            .embla__slide { flex: 0 0 100%; }
            .modal-container { width: 98vw; height: 90vh; border-radius: 12px; }
            .modal-viewport-controls { display: none; }
            .modal-url { display: none; }
            .carousel-arrow { width: 40px; height: 40px; font-size: 0.95rem; }
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .contact-grid { grid-template-columns: 1fr; }
            .painpoints-grid { grid-template-columns: 1fr; }
            .whyus-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-cta { display: none; }
            .menu-toggle { display: flex; margin-left: 8px; }
            .nav-actions { margin-left: auto; }

            .hero h1 { font-size: 2.4rem; }
            .services-embla .embla__slide { flex: 0 0 75vw; }
            .services-embla { padding: 0 24px; }
            .about-network { display: none; }
            .about-scroll-wrapper { height: 200vh; }
            .form-row { grid-template-columns: 1fr; }
            .embla__slide { flex: 0 0 100%; }
            .whyus-grid { grid-template-columns: 1fr; }

            /* Portfolio: show overlay always on touch */
            .portfolio-preview-overlay {
                opacity: 1;
            }

            /* Warum tisu: disable fly-in on mobile, just show cards */
            .whyus-card {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            /* (old testimonial carousel styles removed) */
        }

        /* ===== ELECTRIC BORDER (nav-cta) ===== */
        .eb-wrap {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            isolation: isolate;
            border-radius: 30px;
        }
        .eb-canvas-container {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 2;
        }
        .eb-canvas { display: block; }
        .eb-content {
            position: relative;
            border-radius: inherit;
            z-index: 1;
        }
        .eb-layers {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 0;
        }
        .eb-glow-1, .eb-glow-2, .eb-background-glow {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-sizing: border-box;
        }
        .eb-glow-1 {
            border: 1.5px solid rgba(212, 176, 106,0.5);
            filter: blur(1px);
        }
        .eb-glow-2 {
            border: 1.5px solid rgba(212, 176, 106,0.35);
            filter: blur(4px);
        }
        .eb-background-glow {
            z-index: -1;
            transform: scale(1.15);
            filter: blur(24px);
            opacity: 0.25;
            background: linear-gradient(-30deg, #d4b06a, transparent, #cdbfe0);
        }

        /* ===== PERFORMANCE: Reduced Motion ===== */
        /* prefers-reduced-motion entfernt — testweise */

        /* ===== PERFORMANCE: GPU hints for animated elements ===== */
        .navbar-inner { will-change: padding, background; }
        .embla__slide { will-change: transform; }
        .whyus-card { will-change: transform, opacity; }
        .fade-in { will-change: opacity, transform; }

        /* ===== PERFORMANCE: Portfolio optimization ===== */
        .portfolio-preview {
            contain: layout style paint;
        }
        .portfolio-embla .embla__container {
            will-change: transform;
        }

        /* ===== ANGEBOT SUBPAGES ===== */
        .sub-hero { padding: 150px 0 60px; text-align: center; background: var(--bg-primary); }
        .sub-hero .emoji { font-size: 3rem; display:block; margin-bottom: 14px; }
        .sub-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .sub-hero p { max-width: 620px; margin: 0 auto; color: var(--text-secondary); font-size: 1.08rem; }
        .back-link { display:inline-flex; align-items:center; gap:6px; margin-bottom: 22px; font-size: 0.85rem; color: var(--accent); font-weight: 600; }
        .back-link:hover { opacity: .75; }
        .reading-section { padding: 50px 0 90px; }
        .reading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
        .reading-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px; padding: 30px 28px; transition: transform .35s ease, box-shadow .35s ease; display:flex; flex-direction:column; }
        .reading-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(168,149,196,0.25); }
        .reading-card .r-ico { font-size: 1.9rem; margin-bottom: 14px; }
        /* Hochwertige Symbolbilder (transparent, einheitliche Größe & Ausrichtung) */
        .reading-card .r-ico-symbol { width: 78px; height: 78px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 0; }
        .reading-card .r-ico-symbol img { width: 78px; height: 78px; object-fit: contain; display: block; filter: drop-shadow(0 4px 14px rgba(212,176,106,0.28)); }
        .reading-card h3 { font-family:'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.15; }
        .reading-card p { font-size: 0.93rem; color: var(--text-secondary); margin-bottom: 18px; flex-grow:1; }
        .reading-card .r-price { font-size: 0.9rem; font-weight: 600; color: var(--accent); margin-bottom: 16px; }
        .reading-card .btn { width: 100%; justify-content: center; }
        .sub-cta { background: var(--bg-secondary); padding: 72px 0; text-align:center; }
        .sub-cta h2 { font-family:'Cormorant Garamond',serif; font-size: clamp(2.1rem,4.4vw,3rem); font-weight:600; margin-bottom: 14px; color:var(--text-primary); }
        .sub-cta p { color: var(--text-secondary); margin-bottom: 26px; max-width:560px; margin-left:auto; margin-right:auto; }

        /* ===== PRISM (React Bits) ===== */
        .prism-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .prism-container canvas { display: block; }

        /* ===== MAGIC UI GLOBE (cobe) – Orts- & Reisethemen ===== */
        .globe-wrapper { position: relative; width: 100%; max-width: 480px; aspect-ratio: 1; margin: 24px auto 0; }
        .globe-canvas {
            width: 100%; height: 100%; max-width: 100%; aspect-ratio: 1;
            cursor: grab; contain: layout paint size;
            opacity: 0; transition: opacity 1s ease;
        }
        .globe-glow {
            pointer-events: none; position: absolute; inset: 0;
            background: radial-gradient(circle at 50% 200%, rgba(212, 176, 106,0.18), rgba(255,255,255,0));
        }

        /* ===== SHOP / WARENKORB ===== */
        .shop-overlay { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(74,64,56,0.45); backdrop-filter: blur(4px); }
        .shop-overlay.open { display: flex; }
        .shop-modal { position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; background: var(--bg-card); border-radius: 24px; padding: 34px 30px; box-shadow: 0 30px 80px rgba(74,64,56,0.35); animation: shopIn .25s ease; }
        @keyframes shopIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
        .shop-close, .cart-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
        .shop-close:hover, .cart-close:hover { color: var(--text-primary); }
        .shop-eyebrow { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
        .shop-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text-primary); margin: 6px 0 4px; }
        .shop-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 18px; }
        .shop-qty { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; font-size: 0.92rem; color: var(--text-secondary); }
        .qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 50px; overflow: hidden; }
        .qty-stepper button { width: 38px; height: 38px; border: none; background: var(--bg-secondary); font-size: 1.2rem; cursor: pointer; color: var(--text-primary); }
        .qty-stepper button:hover { background: rgba(212, 176, 106,0.18); }
        .qty-input { width: 46px; text-align: center; border: none; font-family: 'Inter', sans-serif; font-size: 1rem; background: transparent; color: var(--text-primary); -moz-appearance: textfield; }
        .qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
        .shop-field { margin-bottom: 14px; }
        .shop-field label { display: block; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 6px; }
        .shop-field input, .shop-field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-primary); background: var(--bg-secondary); }
        .shop-field input:focus, .shop-field textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-card-hover); }
        .shop-field .req { color: var(--accent); }
        .shop-field .opt { color: var(--text-muted); font-weight: 400; }
        .shop-nodata { font-size: 0.92rem; color: var(--text-secondary); background: var(--bg-secondary); padding: 14px 16px; border-radius: 12px; margin-bottom: 8px; }
        .shop-error { color: #c0392b; font-size: 0.85rem; margin: 6px 0; }
        .shop-actions { display: flex; gap: 12px; margin-top: 22px; }
        .shop-actions .btn { flex: 1; justify-content: center; }

        .cart-fab { position: fixed; right: 22px; bottom: 22px; z-index: 1500; width: 58px; height: 58px; border-radius: 50%; border: none; background: var(--gradient-1); color: #fff; cursor: pointer; box-shadow: 0 10px 30px rgba(212, 176, 106,0.45); display: flex; align-items: center; justify-content: center; transition: transform .25s ease; }
        .cart-fab:hover { transform: translateY(-3px); }
        .cart-badge { position: absolute; top: -6px; right: -6px; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 50px; background: #201047; color: #fff; font-size: 0.82rem; font-weight: 800; line-height: 1; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.45); display: none; align-items: center; justify-content: center; box-sizing: border-box; }

        .cart-backdrop { position: fixed; inset: 0; z-index: 1900; background: rgba(74,64,56,0.4); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
        .cart-backdrop.open { opacity: 1; pointer-events: auto; }
        .cart-drawer { position: fixed; top: 0; right: 0; z-index: 1950; width: 400px; max-width: 92vw; height: 100%; background: var(--bg-card); box-shadow: -20px 0 60px rgba(74,64,56,0.25); transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); }
        .cart-drawer.open { transform: none; }
        .cart-drawer-inner { display: flex; flex-direction: column; height: 100%; }
        .cart-head { position: relative; padding: 26px 26px 16px; border-bottom: 1px solid var(--border); }
        .cart-head h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
        .cart-body { padding: 20px 24px 30px; overflow-y: auto; flex: 1; }
        .cart-empty { text-align: center; color: var(--text-secondary); padding: 40px 0; }
        .cart-empty .btn { margin-top: 16px; }
        .cart-item { display: flex; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
        .cart-item-name { font-weight: 600; color: var(--text-primary); font-size: 0.98rem; }
        .cart-item-data { font-size: 0.78rem; color: var(--text-muted); margin: 4px 0 8px; line-height: 1.4; }
        .cart-item-qty { display: inline-flex; align-items: center; gap: 10px; }
        .cart-item-qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-secondary); cursor: pointer; font-size: 1rem; color: var(--text-primary); }
        .cart-item-side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
        .cart-item-price { font-weight: 700; color: var(--text-primary); white-space: nowrap; }
        .ci-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; line-height: 0; padding: 4px; display: inline-flex; align-items: center; justify-content: center; transition: color .2s; }
        .ci-remove:hover { color: #c0392b; }
        .cart-total { display: flex; justify-content: space-between; align-items: center; margin: 20px 0 16px; font-size: 1.05rem; color: var(--text-secondary); }
        .cart-total strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; color: var(--text-primary); }
        .cart-drawer .btn { width: 100%; justify-content: center; }
        .cart-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; text-align: center; }
        .checkout-back { background: none; border: none; color: var(--accent); font-size: 0.85rem; font-weight: 600; cursor: pointer; margin-bottom: 14px; padding: 0; }
        .checkout-h { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
        @media (max-width: 520px) { .shop-modal { padding: 28px 20px; } }

        /* ===== READING-KARTE ALS LINK + PRODUKTSEITE ===== */
        a.reading-card { text-decoration: none; color: inherit; cursor: pointer; }
        .reading-card .r-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
        .reading-card .r-foot .r-price { margin-bottom: 0; }
        .r-cart { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-1); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s ease, box-shadow .25s ease; box-shadow: 0 6px 16px rgba(212, 176, 106,0.35); }
        .reading-card:hover .r-cart { transform: scale(1.1); }

        .product-page { padding: 130px 0 80px; }
        .product-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
        .product-page .back-link { margin-bottom: 22px; }
        .product-gallery { position: static; }
        .pg-main { aspect-ratio: 1; border-radius: 26px; display: flex; align-items: center; justify-content: center; font-size: 6rem; box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
        .pg-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
        .pg-thumb { aspect-ratio: 1; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: rgba(255,255,255,0.85); }
        .product-info .section-label { margin-bottom: 12px; }
        .product-info h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4.4vw, 3.3rem); font-weight: 600; color: var(--text-primary); margin: 6px 0 8px; line-height: 1.1; }
        .product-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: 18px; }
        .product-desc { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
        .product-need { background: var(--bg-secondary); border-radius: 14px; padding: 13px 16px; margin-bottom: 22px; font-size: 0.88rem; color: var(--text-secondary); }
        .product-need b { color: var(--text-primary); }
        .product-actions { display: flex; gap: 12px; margin-top: 24px; }
        .product-actions .btn { flex: 1; justify-content: center; }
        @media (max-width: 820px) {
            .product-grid { grid-template-columns: 1fr; gap: 30px; }
            .product-gallery { position: static; max-width: 420px; margin: 0 auto; }
        }

        /* ===== RABATT / ANGEBOT ===== */
        .r-old { text-decoration: line-through; color: var(--text-muted); font-weight: 400; font-size: 0.82em; margin-right: 7px; }
        .product-price .price-old { text-decoration: line-through; color: var(--text-muted); font-size: 1.15rem; font-weight: 500; margin-right: 10px; -webkit-text-fill-color: var(--text-muted); }
        .product-price .price-badge { display: inline-block; background: var(--accent); color: #fff; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-left: 10px; vertical-align: middle; }

        /* Rabatt-Feinschliff: aktueller Preis rot, alter grau durchgestrichen */
        .r-foot .r-price { color: #ff6b6b; }
        .r-foot .r-old { color: var(--text-muted); text-decoration: line-through; }
        .pkg-price { color: #ff6b6b; }
        .pkg-price .r-old { color: var(--text-muted); text-decoration: line-through; }
        .product-price { color: #ff6b6b; }

        /* Produkt-Galerie: echtes Hauptbild */
        .pg-main-img { background-size: cover; background-position: center; font-size: 0 !important; }

        /* Produkt-Galerie: echte Bild-Thumbnails */
        .pg-thumbs-img { grid-template-columns: repeat(4, 1fr); }
        .pg-thumb-img { background-size: cover; background-position: center; cursor: pointer; opacity: 0.7; border: 2px solid transparent; transition: opacity .2s ease, border-color .2s ease; font-size: 0 !important; }
        .pg-thumb-img:hover { opacity: 1; }
        .pg-thumb-img.active { opacity: 1; border-color: var(--accent); }

        /* ===== HERO Emblem + Serifen-Headline + Trenner ===== */
        .hero-emblem { color: #e2c58a; width: 142px; margin: 48px auto 22px; filter: drop-shadow(0 0 20px rgba(212, 176, 106,0.35)); }
        .hero-emblem .emblem-svg, .hero-emblem .emblem-img { width: 100%; height: auto; display: block; }
        .hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: 0; font-size: clamp(3rem, 7.5vw, 5.6rem); line-height: 1.02; }
        .hero h1 .gradient-text { color: var(--accent-light); display: inline-block; margin-top: 10px; }
        .hero-divider { display: flex; align-items: center; justify-content: center; gap: 16px; color: #e2c58a; margin: 22px auto 0; }
        .hero-divider svg { width: 22px; height: 22px; filter: drop-shadow(0 0 8px rgba(212, 176, 106,0.9)); }
        .hero-divider i { display: block; width: 96px; max-width: 24vw; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, #d4b06a); }
        .hero-divider i:last-child { background: linear-gradient(90deg, #d4b06a, transparent); }

        /* Hero-Feinschliff: Emblem größer & tiefer, Trenner mittig */
        .hero-emblem { width: 152px; margin: 40px auto 18px; }
        .hero h1 { margin-bottom: 0; }
        .hero-divider { margin: 30px auto 30px; }

        /* ===== Hero-Lesbarkeit & Feinschliff v9 ===== */
        .hero .section-desc { color: #ffffff; text-shadow: 0 1px 14px rgba(12,7,28,0.65), 0 0 2px rgba(12,7,28,0.5); }
        .hero .btn-outline { color: #fff; border-color: rgba(231,205,122,0.85); background: rgba(18,10,40,0.38); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
        .hero .btn-outline:hover { background: rgba(18,10,40,0.55); border-color: #e2c58a; }
        /* Trenner länger */
        .hero-divider i { width: 150px; max-width: 32vw; }
        /* Emblem größer & tiefer */
        .hero-emblem { width: 190px; margin: 64px auto 20px; }
        /* Navbar-CTA Text zentriert */
        .nav-cta { justify-content: center; }
        /* Floating-Cart Icon zentriert */
        .cart-fab { line-height: 0; }
        .cart-fab svg { display: block; }

        /* Hero höher setzen + Emblem näher an Headline (v10) */
        .hero-emblem { width: 180px; margin: 46px auto 4px; }
        .hero .hero-content { margin-top: -5vh; }

        /* ===== NAVI-LOGO (Mondsichel + Wortmarke) ===== */
        .logo { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
        .logo .logo-mark { width: 30px; height: 30px; color: var(--accent-light); flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(212, 176, 106,0.55)); }
        .logo .logo-mark svg { width: 100%; height: 100%; display: block; }
        .logo .logo-word { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.7rem; letter-spacing: 0.5px; color: var(--accent-light); line-height: 1; }
        .footer-logo { justify-content: center; }
        .footer-logo .logo-word { font-size: 1.5rem; }

        /* ===== Hero-Bewertungen (Social Proof) ===== */
        .hero-rating { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; text-decoration: none; color: inherit; cursor: pointer; transition: var(--transition); }
        a.hero-rating:hover { transform: translateY(-2px); }
        a.hero-rating:hover .hero-rating-count { color: var(--accent-light); }
        .hero-avatars { display: flex; }
        .hero-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-primary);
            display: inline-flex; align-items: center; justify-content: center;
            font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; color: #1c1033;
            margin-left: -11px; box-shadow: 0 3px 10px rgba(0,0,0,0.35); }
        .hero-avatar:first-child { margin-left: 0; }
        .hero-avatar { overflow: hidden; }
        .hero-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
        .hero-rating-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
        .hero-stars { color: var(--accent-light); font-size: 16px; letter-spacing: 2px; }
        .hero-rating-count { font-size: 13.5px; color: var(--text-secondary); }
        .hero-rating-count strong { color: var(--text-primary); font-weight: 700; }
        @media (max-width: 600px) { .hero-rating-text { align-items: center; } }

        /* ===== Hero-Hintergrundvideo ===== */
        .hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
        .hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .hero-video-overlay { position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(21,11,41,0.55) 0%, rgba(21,11,41,0.60) 55%, rgba(21,11,41,0.92) 100%); }
        @media (prefers-reduced-motion: reduce) { .hero-video video { display: none; } }

        /* ===== Rechtsseiten (Impressum / Datenschutz / AGB) ===== */
        .legal-page { padding: 150px 0 90px; }
        .legal-page .container { max-width: 820px; }
        .legal-page h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 52px); font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
        .legal-page .legal-sub { color: var(--text-secondary); font-size: 15px; margin-bottom: 40px; }
        .legal-page h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--accent-light); margin: 38px 0 12px; }
        .legal-page h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 22px 0 8px; }
        .legal-page p, .legal-page li { color: var(--text-secondary); font-size: 15px; line-height: 1.75; }
        .legal-page p { margin-bottom: 12px; }
        .legal-page ul { margin: 0 0 12px 20px; }
        .legal-page li { margin-bottom: 6px; }
        .legal-page a { color: var(--accent-light); text-decoration: underline; }
        .legal-page strong { color: var(--text-primary); }
        .legal-page .legal-box { background: var(--bg-secondary); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 12px; padding: 18px 22px; margin: 18px 0; }
        .legal-page .legal-updated { margin-top: 44px; font-size: 13px; color: var(--text-secondary); opacity: 0.8; }

        /* Navi-Logo als Bild (Original) */
        .logo-img { height: 170px; width: auto; display: block; margin: -56px 4px -56px -52px; }
        .footer-logo .logo-img { height: 120px; width: auto; margin: -18px auto; }

        /* ===== Geburtshoroskop-Rad (rotierend) ===== */
        .chart-wrapper { width: min(460px, 84vw); aspect-ratio: 1; margin: 26px auto 0; }
        .chart-wrapper .chart-svg { width: 100%; height: 100%; display: block; transform-origin: 50% 50%;
            filter: drop-shadow(0 0 22px rgba(212, 176, 106,0.35)); animation: chartspin 90s linear infinite; }
        @keyframes chartspin { to { transform: rotate(360deg); } }
        @media (prefers-reduced-motion: reduce) { .chart-wrapper .chart-svg { animation: none; } }

        /* ===== NEWSLETTER-POPUP (10% Rabatt) ===== */
        .nl-overlay { position: fixed; inset: 0; z-index: 2500; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(10,6,25,0.6); backdrop-filter: blur(5px); }
        .nl-overlay.open { display: flex; animation: nlFade .25s ease; }
        @keyframes nlFade { from { opacity: 0; } to { opacity: 1; } }
        .nl-modal { position: relative; width: 100%; max-width: 440px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px 34px 28px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: nlPop .3s cubic-bezier(.2,.7,.2,1); }
        @keyframes nlPop { from { opacity:0; transform: translateY(18px) scale(.97);} to { opacity:1; transform:none; } }
        .nl-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
        .nl-close:hover { color: var(--text-primary); }
        .nl-emblem { font-size: 2rem; color: var(--accent-light); filter: drop-shadow(0 0 12px rgba(212, 176, 106,0.5)); margin-bottom: 8px; }
        .nl-modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.15; }
        .nl-lead { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 20px; }
        #nlForm { display: flex; flex-direction: column; gap: 12px; }
        #nlEmail { padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--bg-secondary); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.95rem; text-align: center; }
        #nlEmail:focus { outline: none; border-color: var(--accent); }
        #nlForm .btn { width: 100%; justify-content: center; }
        .nl-error { color: #ff6b6b; font-size: 0.82rem; min-height: 1em; margin: 0; }
        .nl-success { display: none; }
        .nl-success.show { display: block; animation: nlFade .3s ease; }
        .nl-success-title { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 10px; }
        .nl-code { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: 3px; color: var(--accent-light); background: var(--bg-secondary); border: 1px dashed var(--accent); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
        .nl-hint { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 18px; }
        .nl-done { width: 100%; justify-content: center; }
        .nl-fine { font-size: 0.72rem; color: var(--text-muted); margin-top: 16px; }

        /* ===== NEWSLETTER-SEKTION (unten) ===== */
        .nl-band { padding: 72px 0; text-align: center; background: var(--bg-secondary); border-top: 1px solid var(--border); }
        .nl-band-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--text-primary); margin: 12px 0 10px; }
        .nl-band-sub { color: var(--text-secondary); max-width: 540px; margin: 0 auto 26px; }
        .nl-band-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
        .nl-band-form input { flex: 1; min-width: 240px; padding: 15px 18px; border-radius: 50px; border: 1.5px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.95rem; }
        .nl-band-form input:focus { outline: none; border-color: var(--accent); }
        .nl-band-form .btn { white-space: nowrap; }
        .nl-band-error { color: #ff6b6b; font-size: 0.85rem; margin-top: 12px; min-height: 1em; }
        .nl-band-success { display: none; margin: 18px auto 0; max-width: 520px; padding: 16px 20px; border-radius: 14px; background: var(--bg-card); border: 1px dashed var(--accent); color: var(--text-primary); font-size: 0.95rem; }
        .nl-band-success strong { color: var(--accent-light); letter-spacing: 1px; }
        .nl-band-success.show { display: block; animation: nlFade .3s ease; }

/* ===== Durchgehender Nachthimmel: Sektionen transparent (Karten behalten ihren Hintergrund) ===== */
#services, #about, #bestseller, #testimonials, #faq, .sub-hero, .sub-cta, .nl-band, .footer { background: transparent !important; }

/* ============================================================
   KUNDENKONTO – Navi-Aktionen, Konto-Menü, Auth-Modal
   ============================================================ */
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: none; cursor: pointer;
    color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
    padding: 9px 14px; border-radius: 50px; position: relative;
    transition: var(--transition);
}
.nav-icon-btn:hover { background: rgba(212,176,106,0.10); color: var(--accent-light); }
.nav-icon-btn svg { width: 20px; height: 20px; }
.nav-account-label { line-height: 1; }
.nav-cart { padding: 9px 12px; }
.nav-cart-badge {
    position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px;
    background: var(--gradient-1); color: #1c1033; font-size: 0.68rem; font-weight: 800;
    border-radius: 50px; display: none; align-items: center; justify-content: center; line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
@media (max-width: 560px) { .nav-account-label { display: none; } .nav-icon-btn { padding: 9px; } }

/* Konto-Dropdown */
.account-menu {
    position: fixed; z-index: 1600; min-width: 236px;
    background: rgba(29,17,56,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,176,106,0.22); border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45); padding: 10px;
    opacity: 0; transform: translateY(-8px) scale(0.98); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.account-menu.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.am-head, .am-greet { padding: 8px 12px 12px; font-size: 0.95rem; color: var(--text-secondary); border-bottom: 1px solid rgba(212,176,106,0.14); margin-bottom: 8px; }
.am-greet strong { color: var(--accent-light); }
.am-item {
    display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
    background: transparent; border: none; cursor: pointer;
    color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 500;
    padding: 11px 12px; border-radius: 12px; text-decoration: none; transition: var(--transition);
}
.am-item:hover { background: rgba(212,176,106,0.12); color: var(--accent-light); }
.am-ic { display: inline-flex; opacity: 0.85; }
.am-ic svg { width: 18px; height: 18px; }
.am-primary { background: rgba(212,176,106,0.14); }
.am-highlight { background: transparent; border: none; color: var(--text-primary); font-weight: 500; }
.am-logout { margin-top: 6px; border-top: 1px solid rgba(212,176,106,0.14); border-radius: 0 0 10px 10px; color: var(--text-secondary); }
.am-note { font-size: 0.74rem; color: var(--text-muted); padding: 8px 12px 4px; line-height: 1.4; }
.mobile-readings { color: var(--accent-light) !important; font-weight: 700 !important; }

/* Auth-Modal */
.auth-modal { position: fixed; inset: 0; z-index: 3000; display: none; }
.auth-modal.open { display: block; }
.auth-backdrop { position: absolute; inset: 0; background: rgba(10,6,25,0.66); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.auth-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(420px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
    background: linear-gradient(180deg, #201340, #180d30);
    border: 1px solid rgba(212,176,106,0.24); border-radius: 24px; padding: 30px 28px 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    animation: authIn .28s cubic-bezier(.2,.7,.2,1);
}
@keyframes authIn { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.auth-close { position: absolute; top: 16px; right: 18px; background: none; border: none; color: var(--text-muted); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color .2s; }
.auth-close:hover { color: var(--text-primary); }
.auth-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--accent-light); text-align: center; margin-bottom: 18px; }
.auth-tabs { display: flex; gap: 6px; background: rgba(0,0,0,0.22); padding: 5px; border-radius: 50px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 10px; border: none; background: transparent; color: var(--text-secondary); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: var(--transition); }
.auth-tab.active { background: var(--gradient-1); color: #1c1033; }
.auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.auth-field label { font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.auth-field input { padding: 13px 15px; border: 1px solid rgba(212,176,106,0.2); border-radius: 12px; background: rgba(0,0,0,0.22); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; transition: border-color .2s; }
.auth-field input:focus { border-color: var(--accent); }
.auth-reg-only { display: none; }
.auth-modal.mode-register .auth-reg-only { display: flex; }
.auth-submit { width: 100%; justify-content: center; margin-top: 6px; }
.auth-msg { font-size: 0.85rem; line-height: 1.45; padding: 10px 12px; border-radius: 10px; margin-bottom: 12px; }
.auth-msg.err { background: rgba(255,107,107,0.12); color: #ffb3b3; border: 1px solid rgba(255,107,107,0.3); }
.auth-msg.ok { background: rgba(120,200,150,0.12); color: #b8e6c8; border: 1px solid rgba(120,200,150,0.3); }
.auth-switch { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }
.auth-switch a { color: var(--accent-light); text-decoration: none; font-weight: 600; }

/* ============================================================
   TRUST-LEISTE (digitale Produkte)
   ============================================================ */
.trust-strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; color: var(--text-secondary); font-size: 0.92rem; text-align: left; }
.trust-item .t-ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: rgba(212,176,106,0.10); border: 1px solid var(--border); color: var(--accent-light); }
.trust-item .t-ic svg { width: 20px; height: 20px; }
.trust-item strong { color: var(--text-primary); font-weight: 600; display: block; font-size: 0.95rem; }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 860px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; } }
@media (max-width: 460px) { .trust-grid { grid-template-columns: 1fr; } .trust-item { justify-content: flex-start; padding-left: 8px; } }

/* ===== iOS: Play-Button des Hintergrund-Videos ausblenden ===== */
.hero-video video::-webkit-media-controls-start-playback-button,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
}
.hero-video video { pointer-events: none; }

/* ===== Navbar auf schmalen Handys kompakter (kein Überlauf) ===== */
@media (max-width: 480px) {
    .navbar { padding: 12px 10px; }
    .navbar.scrolled { padding: 8px 10px; }
    .navbar-inner { padding: 9px 14px; border-radius: 44px; gap: 4px; }
    .navbar.scrolled .navbar-inner { padding: 8px 14px; }
    .logo { flex: 0 0 auto; min-width: 0; }
    .logo-img { height: 120px; margin: -40px 3px -40px -37px; }
    .nav-actions { gap: 2px; margin-left: auto; }
    .nav-account-label { display: none; }
    .menu-toggle { margin-left: 4px; }
    .nav-icon-btn { padding: 6px; }
}
