        /* ============================================
           CSS CUSTOM PROPERTIES
           ============================================ */
        :root {
            /* Colors - Purple Metallic */
            --color-bg: #050505;
            --color-bg-elevated: #0d0d0d;
            --color-bg-card: rgba(255, 255, 255, 0.03);
            --color-accent: #B24BF3;
            --color-accent-secondary: #E040FB;
            --color-accent-light: #CE93D8;
            --color-accent-glow: rgba(178, 75, 243, 0.3);
            --color-accent-gradient: linear-gradient(135deg, #B24BF3, #E040FB, #7C4DFF);
            --color-text: #f5f5f5;
            --color-text-muted: #999999;
            --color-text-dim: #555555;
            --color-border: rgba(255, 255, 255, 0.07);
            --color-glass-bg: rgba(255, 255, 255, 0.03);
            --color-glass-border: rgba(255, 255, 255, 0.06);

            /* Typography */
            --font-display: 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            --space-2xl: 10rem;

            /* Layout */
            --max-width: 1200px;
            --nav-height: 72px;

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.6s ease;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            /* Background lives on <html> so the fixed smoke layer (z-index:-1,
               child of body) can sit behind the content but above the bg. */
            background-color: var(--color-bg);
        }

        body {
            font-family: var(--font-body);
            background-color: transparent;
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        /* ============================================
           UTILITY
           ============================================ */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .section {
            padding: var(--space-xl) 0;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: var(--space-sm);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: var(--space-md);
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            border-radius: 4px;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--color-accent-gradient);
            color: #fff;
            font-weight: 700;
        }

        .btn-primary:hover {
            box-shadow: 0 0 35px var(--color-accent-glow), 0 0 80px rgba(178, 75, 243, 0.1);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-text);
            border: 1px solid var(--color-border);
        }

        .btn-outline:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            box-shadow: 0 0 30px var(--color-accent-glow), 0 0 60px rgba(178, 75, 243, 0.08);
            transform: translateY(-2px);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: background var(--transition-base), backdrop-filter var(--transition-base);
        }

        .nav.scrolled {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--color-border);
        }

        .nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .nav-logo span {
            color: var(--color-accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            list-style: none;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--color-text);
        }

        .nav-cta {
            margin-left: var(--space-sm);
        }

        /* Language switcher */
        .nav-lang {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .lang-btn {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--color-text-dim);
            background: none;
            padding: 0.2rem 0.1rem;
            transition: color var(--transition-fast);
        }

        .lang-btn:hover {
            color: var(--color-text);
        }

        .lang-btn.active {
            color: var(--color-accent);
        }

        .lang-sep {
            color: var(--color-text-dim);
            font-size: 0.8rem;
        }

        .nav-lang-mobile {
            margin-top: var(--space-sm);
        }

        .nav-lang-mobile .lang-btn {
            font-size: 1.1rem;
        }

        .nav-lang-mobile .lang-sep {
            font-size: 1.1rem;
        }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: var(--color-text);
            transition: all var(--transition-base);
            display: block;
        }

        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu */
        .nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--space-md);
        }

        .nav-mobile.active {
            display: flex;
        }

        .nav-mobile a {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

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

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: var(--nav-height);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line span {
            display: inline-block;
            transform: translateY(110%);
            animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: 0.15s;
        }

        .hero-title .line:nth-child(2) span {
            background: var(--color-accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes revealUp {
            to {
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            font-weight: 400;
            max-width: 400px;
            opacity: 0;
            animation: fadeIn 0.8s ease 0.5s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero-cta {
            opacity: 0;
            animation: fadeIn 0.8s ease 0.7s forwards;
        }

        /* 3D Canvas area */
        .hero-3d {
            position: relative;
            width: 100%;
            max-width: 450px;
            aspect-ratio: 4 / 5;
            max-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            overflow: visible;
            --smoke: 1;
        }

        /* Purple smoke glow behind the can (fades as --smoke shrinks) */
        .hero-3d::before {
            content: '';
            position: absolute;
            inset: -8%;
            background: radial-gradient(circle at 50% 58%,
                rgba(178, 75, 243, 0.18) 0%,
                rgba(124, 77, 255, 0.08) 42%,
                transparent 68%);
            filter: blur(26px);
            z-index: 0;
            pointer-events: none;
            opacity: calc(0.3 + 0.7 * var(--smoke));
        }

        .hero-3d canvas {
            position: relative;
            z-index: 1;
            /* Let vertical swipes scroll the page on mobile */
            touch-action: pan-y;
        }

        /* "Knall" - shockwave that fires once when the page opens */
        .hero-bang {
            position: absolute;
            top: 52%;
            left: 50%;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            background: radial-gradient(circle,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(224, 64, 251, 0.85) 30%,
                rgba(178, 75, 243, 0.45) 55%,
                transparent 72%);
            box-shadow: 0 0 80px 24px rgba(178, 75, 243, 0.55);
        }

        .hero-bang.fire {
            animation: heroBang 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        @keyframes heroBang {
            0%   { transform: translate(-50%, -50%) scale(0);  opacity: 1; }
            55%  { opacity: 0.85; }
            100% { transform: translate(-50%, -50%) scale(34); opacity: 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-bang.fire { animation: none; }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeIn 0.8s ease 1.2s forwards;
            z-index: 2;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-text-dim);
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border-right: 1.5px solid var(--color-text-dim);
            border-bottom: 1.5px solid var(--color-text-dim);
            transform: rotate(45deg);
            animation: bounceArrow 2s ease-in-out infinite;
        }

        @keyframes bounceArrow {
            0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
            50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
        }

        /* ============================================
           INTRO SECTION
           ============================================ */
        .intro {
            padding: var(--space-xl) 0;
            text-align: center;
        }

        .intro-text {
            max-width: 700px;
            margin: 0 auto;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            line-height: 1.7;
            color: var(--color-text-muted);
        }

        .intro-text strong {
            color: var(--color-text);
            font-weight: 600;
        }

        /* ============================================
           MARQUEE
           ============================================ */
        .marquee-wrapper {
            overflow: hidden;
            padding: var(--space-md) 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marqueeScroll 25s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            font-family: var(--font-display);
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-text-dim);
            white-space: nowrap;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .marquee-item::after {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--color-accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

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

        /* ============================================
           SERVICES / LEISTUNGEN
           ============================================ */
        .services {
            padding: var(--space-2xl) 0 var(--space-xl);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }

        .service-card {
            background: var(--color-glass-bg);
            border: 1px solid var(--color-glass-border);
            border-radius: 12px;
            padding: var(--space-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(178, 75, 243, 0.25);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px var(--color-accent-glow), 0 0 100px rgba(178, 75, 243, 0.08);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(178, 75, 243, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-sm);
            font-size: 1.3rem;
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* ============================================
           PRICING / PAKETE
           ============================================ */
        .pricing {
            padding: var(--space-xl) 0 var(--space-2xl);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-lg);
            align-items: start;
        }

        .pricing-card {
            background: var(--color-glass-bg);
            border: 1px solid var(--color-glass-border);
            border-radius: 16px;
            padding: var(--space-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all var(--transition-base);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Featured card */
        .pricing-card.featured {
            border-color: var(--color-accent);
            background: rgba(178, 75, 243, 0.05);
            transform: scale(1.03);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 50px var(--color-accent-glow);
        }

        .pricing-badge {
            display: inline-block;
            background: var(--color-accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin-bottom: var(--space-sm);
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .pricing-subtitle {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-accent);
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .pricing-grid-2 {
            grid-template-columns: repeat(2, 1fr);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-divider {
            height: 1px;
            background: var(--color-border);
            margin: var(--space-sm) 0;
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin: var(--space-sm) 0 var(--space-md);
        }

        .pricing-features li {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            line-height: 1.4;
        }

        .pricing-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            min-width: 16px;
            border-radius: 50%;
            background: rgba(178, 75, 243, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23B24BF3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 10px;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ============================================
           USP SECTION
           ============================================ */
        .usp {
            padding: var(--space-xl) 0;
            border-top: 1px solid var(--color-border);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }

        .usp-item {
            padding: var(--space-md) 0;
            border-top: 2px solid var(--color-accent);
        }

        .usp-number {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 0.1em;
            margin-bottom: var(--space-sm);
        }

        .usp-item h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .usp-item p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            padding: var(--space-xl) 0;
            border-top: 1px solid var(--color-border);
        }

        .faq-list {
            margin-top: var(--space-lg);
            max-width: 820px;
        }

        .faq-item {
            border-top: 1px solid var(--color-border);
            padding: var(--space-sm) 0;
        }

        .faq-item:last-child {
            border-bottom: 1px solid var(--color-border);
        }

        .faq-item summary {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.4;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-sm);
            padding: 0.5rem 0;
            transition: color 0.2s ease;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--color-accent);
        }

        .faq-item summary::after {
            content: '+';
            font-family: var(--font-display);
            font-weight: 400;
            font-size: 1.4rem;
            color: var(--color-accent);
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            padding: 0.5rem 0 1rem;
            max-width: 680px;
        }

        /* ============================================
           CONTACT / CTA SECTION
           ============================================ */
        .contact {
            padding: var(--space-2xl) 0;
            text-align: center;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
            opacity: 0.15;
            pointer-events: none;
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: var(--space-sm);
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-lg);
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .contact-link {
            font-size: 1rem;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-link:hover {
            color: var(--color-accent);
        }

        .contact-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        /* Google Maps embed */
        .contact-map {
            margin: var(--space-lg) auto 0;
            max-width: 720px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--color-glass-border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
            position: relative;
            background: var(--color-bg-elevated);
        }

        .contact-map iframe {
            display: block;
            width: 100%;
            height: 340px;
            border: 0;
            filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) contrast(0.9);
        }

        .contact-address {
            margin-top: var(--space-sm);
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .contact-address strong {
            color: var(--color-text);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: var(--space-md) 0;
            border-top: 1px solid var(--color-border);
        }

        .footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--space-sm);
        }

        .footer-copy {
            font-size: 0.8rem;
            color: var(--color-text-dim);
        }

        .footer-links {
            display: flex;
            gap: var(--space-md);
            list-style: none;
        }

        .footer-links a {
            font-size: 0.8rem;
            color: var(--color-text-dim);
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--color-text-muted);
        }

        /* ============================================
           LEGAL MODALS (Impressum / Datenschutz)
           ============================================ */
        .legal-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding: var(--space-md);
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            overflow-y: auto;
        }

        .legal-modal.active {
            display: flex;
        }

        .legal-modal-box {
            position: relative;
            width: 100%;
            max-width: 640px;
            margin: auto;
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--space-lg) var(--space-md) var(--space-md);
        }

        .legal-modal-close {
            position: absolute;
            top: var(--space-sm);
            right: var(--space-sm);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--color-text-muted);
            font-size: 1.4rem;
            line-height: 1;
            transition: background var(--transition-fast), color var(--transition-fast);
        }

        .legal-modal-close:hover {
            background: var(--color-bg-card);
            color: var(--color-text);
        }

        .legal-modal-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 800;
            margin-bottom: var(--space-md);
        }

        .legal-content {
            max-width: 640px;
            margin: 0 auto;
        }

        .legal-block {
            margin-bottom: var(--space-md);
        }

        .legal-block h3 {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: var(--space-xs);
        }

        .legal-block p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--color-text-muted);
        }

        .legal-block a {
            color: var(--color-text);
            transition: color var(--transition-fast);
        }

        .legal-block a:hover {
            color: var(--color-accent);
        }

        /* ============================================
           COOKIE BANNER
           ============================================ */
        .cookie-banner {
            position: fixed;
            bottom: var(--space-md);
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            z-index: 9500;
            width: calc(100% - 2 * var(--space-md));
            max-width: 760px;
            display: flex;
            align-items: center;
            gap: var(--space-md);
            flex-wrap: wrap;
            padding: var(--space-sm) var(--space-md);
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-slow);
        }

        .cookie-banner.visible {
            transform: translateX(-50%) translateY(0);
        }

        .cookie-text {
            flex: 1 1 280px;
            font-size: 0.85rem;
            line-height: 1.6;
            color: var(--color-text-muted);
        }

        .cookie-text a {
            color: var(--color-accent);
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        .cookie-actions .btn {
            padding: 0.6rem 1.4rem;
            font-size: 0.8rem;
        }

        /* ============================================
           SCROLL REVEAL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered children */
        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
        .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
        .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
        .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }

        .reveal-stagger.visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           CUSTOM CURSOR (Desktop only)
           ============================================ */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease;
            mix-blend-mode: difference;
        }

        .cursor-ring {
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(178, 75, 243, 0.4);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }

        .cursor-ring.hovering {
            width: 50px;
            height: 50px;
            border-color: var(--color-accent);
        }

        /* ============================================
           GRAIN / NOISE OVERLAY
           ============================================ */
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9000;
            opacity: 0.035;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        /* ============================================
           ANIMATED LINES
           ============================================ */
        .animated-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .animated-lines svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .anim-line {
            fill: none;
            stroke-width: 1;
            opacity: 0.12;
        }

        .anim-line-1 {
            stroke: url(#lineGrad1);
            animation: lineDrift1 12s ease-in-out infinite;
        }

        .anim-line-2 {
            stroke: url(#lineGrad2);
            animation: lineDrift2 15s ease-in-out infinite;
        }

        .anim-line-3 {
            stroke: url(#lineGrad1);
            animation: lineDrift3 18s ease-in-out infinite;
            opacity: 0.07;
        }

        .anim-line-4 {
            stroke: url(#lineGrad2);
            animation: lineDrift4 20s ease-in-out infinite;
            opacity: 0.05;
        }

        @keyframes lineDrift1 {
            0%, 100% { d: path('M-100,300 C200,100 400,500 600,200 S1000,400 1400,150 S1800,350 2000,250'); }
            50% { d: path('M-100,350 C200,500 400,100 600,400 S1000,100 1400,350 S1800,150 2000,300'); }
        }

        @keyframes lineDrift2 {
            0%, 100% { d: path('M-100,600 C300,400 500,800 700,500 S1100,700 1400,450 S1800,650 2000,550'); }
            50% { d: path('M-100,550 C300,750 500,350 700,650 S1100,400 1400,600 S1800,400 2000,500'); }
        }

        @keyframes lineDrift3 {
            0%, 100% { d: path('M-100,150 C200,50 500,250 800,100 S1200,300 1500,80 S1800,200 2000,120'); }
            50% { d: path('M-100,100 C200,250 500,50 800,200 S1200,50 1500,220 S1800,80 2000,180'); }
        }

        @keyframes lineDrift4 {
            0%, 100% { d: path('M-100,850 C300,750 600,950 900,800 S1200,900 1500,780 S1800,880 2000,820'); }
            50% { d: path('M-100,800 C300,920 600,720 900,880 S1200,750 1500,870 S1800,760 2000,850'); }
        }

        /* ============================================
           PAKETE TEASER / TRUST / CALL CTA / TEAM / REFERENCES
           ============================================ */
        .pakete-teaser {
            text-align: center;
        }
        .pakete-teaser-text {
            max-width: 540px;
            margin: var(--space-sm) auto var(--space-md);
            color: var(--color-text-muted);
            font-size: 1.1rem;
        }

        .trust {
            text-align: center;
        }
        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--space-md);
            margin: var(--space-lg) 0;
        }
        .trust-stat {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            padding: var(--space-md) var(--space-sm);
            border: 1px solid var(--color-glass-border);
            border-radius: 16px;
            background: var(--color-glass-bg);
        }
        .trust-num {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.4rem);
            font-weight: 800;
            line-height: 1;
            background: var(--color-accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .trust-label {
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }
        .trust-logos-note {
            color: var(--color-text-dim);
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: var(--space-sm);
        }
        .trust-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-sm);
        }
        .trust-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            height: 60px;
            padding: 0 1.5rem;
            border: 1px dashed var(--color-glass-border);
            border-radius: 12px;
            color: var(--color-text-dim);
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: 0.1em;
            background: var(--color-glass-bg);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a.trust-logo:hover {
            color: var(--color-text);
            border-color: var(--color-accent);
            border-style: solid;
            transform: translateY(-2px);
        }

        .legal-stand {
            margin-top: var(--space-md);
            color: var(--color-text-dim);
            font-size: 0.8rem;
        }

        .cta-call {
            text-align: center;
        }
        .cta-call .container {
            max-width: 760px;
            padding: var(--space-xl) var(--space-md);
            border: 1px solid var(--color-glass-border);
            border-radius: 24px;
            background:
                radial-gradient(circle at 50% 0%, var(--color-accent-glow) 0%, transparent 60%),
                var(--color-glass-bg);
        }
        .cta-call-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4.5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            max-width: 640px;
            margin: var(--space-xs) auto var(--space-sm);
        }
        .cta-call-text {
            color: var(--color-text-muted);
            max-width: 520px;
            margin: 0 auto var(--space-md);
        }
        .cta-call-actions {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            flex-wrap: wrap;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }
        .team-grid--single {
            max-width: 320px;
        }
        .team-card {
            padding: var(--space-md);
            border: 1px solid var(--color-glass-border);
            border-radius: 16px;
            background: var(--color-glass-bg);
            text-align: center;
        }
        .team-photo {
            width: 84px;
            height: 84px;
            margin: 0 auto var(--space-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.6rem;
            color: #fff;
            background: var(--color-accent-gradient);
        }
        .team-name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.2rem; }
        .team-role { color: var(--color-accent); font-size: 0.9rem; margin-bottom: 0.6rem; }
        .team-bio { color: var(--color-text-muted); font-size: 0.95rem; }
        .team-intro {
            max-width: 560px;
            margin-top: var(--space-sm);
            color: var(--color-text-muted);
            font-size: 1.1rem;
        }

        .refs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }
        .ref-card {
            border: 1px solid var(--color-glass-border);
            border-radius: 16px;
            background: var(--color-glass-bg);
            overflow: hidden;
        }
        .ref-thumb {
            height: 160px;
            background:
                radial-gradient(circle at 30% 30%, rgba(178,75,243,0.35), transparent 60%),
                linear-gradient(135deg, #1a1020, #0d0d0d);
        }
        .ref-name { font-family: var(--font-display); font-size: 1.15rem; padding: var(--space-sm) var(--space-sm) 0; }
        .ref-type { color: var(--color-accent); font-size: 0.85rem; padding: 0.2rem var(--space-sm) 0; }
        .ref-quote { color: var(--color-text-muted); font-size: 0.95rem; font-style: italic; padding: 0.6rem var(--space-sm) var(--space-md); }

        /* ============================================
           RESPONSIVE - Tablet (max 1024px)
           ============================================ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                align-items: center;
            }

            .hero-tagline {
                max-width: 100%;
            }

            .hero-3d {
                max-height: 400px;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }

            .usp-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ============================================
           RESPONSIVE - Mobile (max 768px)
           ============================================ */
        @media (max-width: 768px) {
            :root {
                --space-xl: 4rem;
                --space-2xl: 6rem;
            }

            /* Nav: show hamburger, hide links */
            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .hero-3d {
                max-height: 300px;
            }

            .hero-title {
                font-size: clamp(2.2rem, 10vw, 3.5rem);
            }

            .services-grid,
            .pricing-grid,
            .usp-grid {
                grid-template-columns: 1fr;
            }

            .contact-title {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            .footer .container {
                flex-direction: column;
                text-align: center;
            }

            /* Hide custom cursor on mobile */
            .cursor-dot,
            .cursor-ring {
                display: none !important;
            }
        }

        /* ============================================
           RESPONSIVE - Small Mobile (max 480px)
           ============================================ */
        @media (max-width: 480px) {
            .hero-3d {
                max-height: 250px;
            }

            .pricing-card {
                padding: var(--space-sm);
            }

            .section {
                padding: var(--space-lg) 0;
            }
        }
