        body {
            font-family: 'Inter', sans-serif;
            background-color: #0f172a;
            /* brand-dark */
            color: white;
            overflow-x: hidden;
            /* Zapobiega poziomemu przewijaniu */
        }

        /* Wymagane dla Lenis Smooth Scroll */
        html.lenis {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-scrolling iframe {
            pointer-events: none;
        }
    

        /* --- ANIMACJA WEJŚCIA (Sprężyste wunięcie) --- */
        @keyframes elastic-slide-down {
            0% {
                transform: translateY(-150%);
                opacity: 0;
            }

            60% {
                transform: translateY(10%);
                opacity: 1;
            }

            80% {
                transform: translateY(-5%);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* --- EFEKT SHINE NA PRZYCISKU --- */
        @keyframes shine-sweep {
            0% {
                left: -100%;
            }

            20% {
                left: 100%;
            }

            100% {
                left: 100%;
            }
        }

        .island-shine-btn {
            position: relative;
            overflow: hidden;
        }

        .island-shine-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-20deg);
            animation: shine-sweep 3s infinite;
            /* Błysk co 3 sekundy */
        }

        /* --- KONFIGURACJA WYSPY --- */
        #island-nav-container {
            animation: elastic-slide-down 1s cubic-bezier(0.5, -0.5, 0.1, 1.5) forwards;
        }

        .island-glass {
            background: rgba(12, 7, 27, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 20px rgba(124, 58, 237, 0.05);
            /* Subtelna fioletowa poświata wewnątrz */
        }
    

        #hero-section {
            background-color: #0c071b;
            position: relative;
            padding: 80px 0 120px 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nebula-fixed {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: #0c071b;
            overflow: hidden;
        }

        .glow-v46 {
            position: absolute;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.4;
            animation: float-v46 15s infinite alternate ease-in-out;
        }

        .s-purple {
            width: 800px;
            height: 800px;
            background: #6d28d9;
            top: -10%;
            left: -5%;
        }

        .s-indigo {
            width: 600px;
            height: 600px;
            background: #4338ca;
            top: 10%;
            right: -5%;
        }

        .s-cyan {
            width: 500px;
            height: 500px;
            background: #0891b2;
            bottom: 10%;
            left: 10%;
            opacity: 0.15;
        }

        @keyframes float-v46 {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(6%, 8%) scale(1.05);
            }
        }

        .container-v46 {
            width: 90vw;
            max-width: 1100px;
            position: relative;
            z-index: 10;
            margin: 0 auto;
            text-align: center;
        }

        /* --- TYPOGRAPHY & UI --- */
        .eyebrow-v46 {
            display: inline-flex;
            align-items: center;
            padding: 8px 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border-radius: 100px;
            color: #f5f3ff;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 24px;
        }

        .h1-v46 {
            color: #ffffff;
            font-size: 3.2rem;
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .h1-v46 .accent {
            background: linear-gradient(90deg, #c084fc, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sub-v46 {
            color: #94a3b8;
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 32px auto;
            line-height: 1.6;
            font-weight: 300;
        }

        .micro-copy-v46 {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
            color: #e2e8f0;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .micro-copy-v46 b {
            color: #a855f7;
        }

        .btn-v46-main {
            background: #ffffff;
            color: #0c071b;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 800;
            text-transform: uppercase;
            font-style: italic;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-v46-main:hover {
            transform: translateY(-2px);
            background: #f5f3ff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        /* --- VISUAL COMPOSITION (Dashboard + Hardware) --- */
        .visual-composition {
            position: relative;
            margin-top: 80px;
            margin-bottom: 100px;
            text-align: left;
            /* Reset alignment for visuals */
        }

        /* Dashboard Container (Glass) */
        .dash-frame {
            position: relative;
            width: 85%;
            /* Dashboard zajmuje 85% szerokości kontenera */
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            padding: 8px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
            z-index: 10;
        }

        .dash-inner {
            border-radius: 14px;
            overflow: hidden;
            background: #020105;
        }

        /* Hardware Overlay */
        .hardware-float {
            position: absolute;
            bottom: -50px;
            right: 0;
            width: 450px;
            /* Rozmiar hardware'u */
            z-index: 20;
            /* Nad dashboardem */
            filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.9));
            transform: rotate(-3deg);
            transition: transform 0.4s ease;
        }

        .visual-composition:hover .hardware-float {
            transform: rotate(0deg) scale(1.02);
        }

        /* --- FEATURE COLUMNS --- */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            text-align: left;
            margin-bottom: 80px;
        }

        .h2-feat {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .feat-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 16px;
            display: inline-block;
        }

        .feat-p {
            font-size: 1rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .clean-list li {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cbd5e1;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 900px) {
            .h1-v46 {
                font-size: 2.5rem;
            }

            .dash-frame {
                width: 100%;
            }

            .hardware-float {
                width: 250px;
                right: -20px;
                bottom: -30px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
    

        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

        #embedded-problem-engine {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .gsap-reveal {
            opacity: 0;
            transform: translateY(20px);
        }

        .text-violet-gradient {
            background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Kafelki Główne */
        .card-gradient {
            background: linear-gradient(145deg, #ffffff 0%, #F8FAFC 100%);
            box-shadow: 0 20px 40px -10px rgba(148, 163, 184, 0.2), 0 10px 20px -5px rgba(148, 163, 184, 0.1);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .card-gradient:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 60px -15px rgba(124, 58, 237, 0.25), 0 20px 30px -10px rgba(124, 58, 237, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
        }

        /* --- SWIPER / KARUZELA (Linear Flow) --- */
        .swiper-wrapper {
            transition-timing-function: linear;
        }

        .swiper-slide {
            width: auto !important;
            display: flex;
        }

        .problem-slide {
            background: #ffffff;
            border: 1px solid #F1F5F9;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        .problem-slide:hover {
            border-color: #CBD5E1;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transform: translateY(-1px);
        }

        .icon-box-micro {
            background: #F8FAFC;
            color: #94A3B8;
            border: 1px solid #F1F5F9;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 28px;
            height: 28px;
        }
    

        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500&display=swap');

        #hud-ecosystem-section {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #080414;
            color: #FFFFFF;
            position: relative;
        }

        /* TYPOGRAFIA NAGŁÓWKA */
        .h2-hud {
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .grad-vibrant {
            background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* NOWE KAFELKI (GLASS) */
        .hud-card {
            background: rgba(18, 14, 30, 0.65);
            /* Ciemne półprzezroczyste tło */
            backdrop-filter: blur(16px);
            /* Rozmycie tła pod spodem */
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 24px;
            transition: transform 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
        }

        .hud-card:hover {
            transform: translateY(-5px);
            border-color: rgba(167, 139, 250, 0.3);
        }

        .hud-card:last-child {
            margin-bottom: 0;
        }

        /* TYPOGRAFIA WEWNĄTRZ KAFELKÓW - POWIĘKSZONA */
        .hud-model {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            /* Większe */
            color: #A78BFA;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
            opacity: 0.9;
        }

        .hud-title {
            font-size: 32px;
            /* Zwiększone z 24px */
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .hud-desc {
            font-size: 16px;
            /* Zwiększone z 13px */
            color: #CBD5E1;
            /* Jaśniejszy szary dla lepszego kontrastu */
            line-height: 1.6;
            font-weight: 400;
        }

        /* OBRAZEK */
        .main-stack-img {
            width: 100%;
            max-width: 650px;
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.7));
            /* Na desktopie przesuwamy go lekko w lewo, żeby był blisko tekstu */
            transform: translateX(-20px);
        }

        /* Animacja wejścia */
        .reveal-hud {
            opacity: 0;
            transform: translateY(30px);
        }

        @media (max-width: 1024px) {
            .main-stack-img {
                transform: none;
                max-width: 450px;
                margin: 0 auto;
            }

            .hud-card {
                padding: 24px;
            }

            .hud-title {
                font-size: 26px;
            }
        }
    

        #ww-v2-arch {
            background-color: #0c071b;
            font-family: 'Poppins', sans-serif;
            color: white;
        }

        .ww-v2-max {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Interaktywna Nawigacja - "Module Style" */
        .ww-v2-nav {
            display: flex;
            gap: 8px;
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            padding: 6px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ww-v2-nav-btn {
            position: relative;
            z-index: 10;
            padding: 12px 24px;
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #64748b;
            cursor: pointer;
            border: none;
            background: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ww-v2-nav-btn span {
            opacity: 0.4;
            font-size: 8px;
        }

        .ww-v2-nav-btn.active {
            color: white;
        }

        .ww-v2-nav-btn.active span {
            opacity: 1;
            color: #7c3aed;
        }

        /* Pływające tło przycisku */
        #ww-v2-pill {
            position: absolute;
            top: 6px;
            left: 6px;
            height: calc(100% - 12px);
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            z-index: 0;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
        }

        /* Czysty Viewport SVG */
        #ww-v2-svg-zone {
            background: radial-gradient(circle at 30% 30%, #1a1635 0%, #070514 100%);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
    

            /* --- CORE UTILS --- */
            .tab-content {
                display: none;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            .tab-content.active {
                display: block;
                opacity: 1;
            }

            /* --- TAB 1: INFINITE VERTICAL SCROLL --- */
            @keyframes vertical-scroll {
                0% {
                    transform: translateY(0);
                }

                100% {
                    transform: translateY(-50%);
                }
            }

            .scroll-container {
                mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
                -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            }

            .scroll-content {
                animation: vertical-scroll 15s linear infinite;
            }

            .scroll-container:hover .scroll-content {
                animation-play-state: paused;
            }

            /* --- TAB 2: AVATAR POP-IN --- */
            @keyframes avatar-enter {
                0% {
                    transform: scale(0.5);
                    opacity: 0;
                }

                100% {
                    transform: scale(1);
                    opacity: 1;
                }
            }

            .avatar-item {
                opacity: 0;
            }

            .tab-content.active .avatar-item {
                animation: avatar-enter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            }

            /* --- TAB 3: SUBTLE STRIKETHROUGH --- */
            .strike-wrapper {
                position: relative;
                display: inline-block;
                transition: opacity 0.5s ease, color 0.5s ease;
            }

            /* The Line */
            .strike-wrapper::after {
                content: '';
                position: absolute;
                left: 0;
                top: 55%;
                /* Slightly lower to not cover ascenders */
                width: 0;
                height: 1px;
                /* Thinner line for readability */
                background-color: rgba(239, 68, 68, 0.6);
                /* Semi-transparent red */
                transition: width 0.6s ease-in-out;
            }

            /* Animation States */
            /* Delay 1: Start immediate, fade text to gray */
            .tab-content.active .strike-item-1 .strike-wrapper {
                opacity: 0.6;
                /* Make text greyish but readable */
                transition-delay: 0.2s;
            }

            .tab-content.active .strike-item-1 .strike-wrapper::after {
                width: 100%;
                transition-delay: 0.2s;
            }

            /* Delay 2: Start after 1 finishes */
            .tab-content.active .strike-item-2 .strike-wrapper {
                opacity: 0.6;
                transition-delay: 0.8s;
            }

            .tab-content.active .strike-item-2 .strike-wrapper::after {
                width: 100%;
                transition-delay: 0.8s;
            }

            /* Success Card Entry */
            @keyframes slide-in-success {
                from {
                    transform: translateX(20px);
                    opacity: 0;
                }

                to {
                    transform: translateX(0);
                    opacity: 1;
                }
            }

            .success-card {
                opacity: 0;
            }

            .tab-content.active .success-card {
                /* Starts after strikes finish (0.8s + 0.6s = 1.4s approx) */
                animation: slide-in-success 0.6s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }

            /* --- TAB 4: NO-CODE BUILDER (GRID ANIMATION FIX) --- */
            /* Using Grid template rows is safer for layout than height */
            @keyframes open-grid {

                0%,
                30% {
                    grid-template-rows: 0fr;
                    opacity: 0;
                    margin-top: 0;
                }

                40%,
                100% {
                    grid-template-rows: 1fr;
                    opacity: 1;
                    margin-top: 0.5rem;
                }
            }

            @keyframes content-fade {

                0%,
                30% {
                    opacity: 0;
                    transform: translateY(-10px);
                }

                40%,
                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes cursor-action {
                0% {
                    top: 110%;
                    left: 90%;
                    transform: scale(1);
                    opacity: 0;
                }

                10% {
                    opacity: 1;
                }

                20% {
                    top: 90%;
                    left: 50%;
                    transform: scale(1);
                }

                /* Hover button */
                25% {
                    transform: scale(0.85);
                }

                /* Click press */
                30% {
                    transform: scale(1);
                }

                /* Click release */
                40% {
                    top: 90%;
                    left: 50%;
                    opacity: 1;
                }

                60% {
                    top: 110%;
                    left: 20%;
                    opacity: 0;
                }

                /* Move away properly */
                100% {
                    top: 110%;
                    left: 20%;
                    opacity: 0;
                }
            }

            .anim-grid-wrapper {
                display: grid;
                grid-template-rows: 0fr;
                transition: grid-template-rows 0.5s ease-out;
                overflow: hidden;
                /* Critical for containing the content */
            }

            .anim-grid-inner {
                min-height: 0;
                overflow: hidden;
            }

            .tab-content.active .anim-grid-wrapper {
                animation: open-grid 4s infinite;
            }

            .tab-content.active .anim-grid-inner {
                animation: content-fade 4s infinite;
            }

            .cursor-hand {
                position: absolute;
                z-index: 50;
                pointer-events: none;
                opacity: 0;
            }

            .tab-content.active .cursor-hand {
                animation: cursor-action 4s ease-in-out infinite;
            }

            /* --- RESPONSIVE TABS --- */
            .tab-button {
                transition: all 0.3s ease;
                cursor: pointer;
            }

            @media (min-width: 1024px) {
                .tab-button {
                    border-left: 3px solid transparent;
                    border-radius: 0 0.75rem 0.75rem 0;
                    text-align: left;
                }

                .tab-button.active {
                    background-color: #f8fafc;
                    border-left-color: #0f172a;
                }

                .tab-button.active h3 {
                    color: #0f172a;
                }

                .tab-button.active p {
                    color: #475569;
                }

                #tabs-nav::-webkit-scrollbar {
                    display: none;
                }
            }

            @media (max-width: 1023px) {
                .tab-button {
                    border: 1px solid #e2e8f0;
                    border-radius: 0.75rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    min-height: 3.5rem;
                }

                .tab-button.active {
                    background-color: #0f172a;
                    border-color: #0f172a;
                    color: #ffffff;
                }
            }
        

                            /* Kontener główny - dopasowuje się do szerokości */
                            .ww-wrapper {
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                gap: 1.5rem;
                            }

                            /* Kontener animacji z zachowaniem proporcji */
                            .ww-animation-viewport {
                                width: 100%;
                                height: 260px;
                                background: #ffffff;
                                border-radius: 1.5rem;
                                position: relative;
                                overflow: hidden;
                                border: 1px solid #f1f5f9;
                                box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
                            }

                            /* Tło siatki */
                            .ww-grid-overlay {
                                position: absolute;
                                inset: 0;
                                background-image: radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
                                background-size: 24px 24px;
                                opacity: 0.5;
                            }

                            /* Skalowalna scena - na mobilkach wszystko się pomniejsza */
                            .ww-scene {
                                position: absolute;
                                inset: 0;
                                width: 100%;
                                height: 100%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }

                            /* Centralny Lab */
                            .ww-lab-module {
                                width: 140px;
                                height: 160px;
                                background: #f0fdf4;
                                border: 1.5px solid #bbf7d0;
                                border-radius: 24px;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                justify-content: space-between;
                                padding: 1rem 0;
                                z-index: 10;
                                box-shadow: 0 10px 25px -5px rgba(22, 101, 52, 0.1);
                            }

                            .ww-pcb {
                                width: 60px;
                                height: 40px;
                                background: #1e293b;
                                border-radius: 8px;
                                padding: 6px;
                                display: flex;
                                flex-direction: column;
                                gap: 4px;
                            }

                            .ww-led-item {
                                height: 3px;
                                background: #334155;
                                border-radius: 2px;
                            }

                            .ww-led-item.on {
                                background: #34d399;
                                box-shadow: 0 0 8px #34d399;
                                animation: ww-blink 1.5s infinite;
                            }

                            /* Karty Specjalistów - Relatywne do środka */
                            .ww-remote-expert {
                                position: absolute;
                                background: white;
                                border: 1px solid #e2e8f0;
                                border-radius: 12px;
                                padding: 6px 10px;
                                display: flex;
                                align-items: center;
                                gap: 8px;
                                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                                z-index: 5;
                                white-space: nowrap;
                            }

                            /* Pozycjonowanie kart (procentowo od środka ekranu) */
                            .ww-expert-1 {
                                top: 15%;
                                left: 5%;
                                animation: ww-float 5s infinite ease-in-out;
                            }

                            .ww-expert-2 {
                                bottom: 15%;
                                left: 8%;
                                animation: ww-float 5s infinite ease-in-out -1s;
                            }

                            .ww-expert-3 {
                                top: 20%;
                                right: 5%;
                                animation: ww-float 5s infinite ease-in-out -2s;
                            }

                            @media (max-width: 640px) {
                                .ww-lab-module {
                                    width: 110px;
                                    height: 130px;
                                    border-radius: 20px;
                                }

                                .ww-pcb {
                                    width: 45px;
                                    height: 30px;
                                }

                                .ww-remote-expert {
                                    padding: 4px 8px;
                                    gap: 6px;
                                }

                                .ww-remote-expert .text-xl {
                                    font-size: 14px;
                                }

                                .ww-expert-1 {
                                    left: 2%;
                                    top: 10%;
                                }

                                .ww-expert-2 {
                                    left: 2%;
                                    bottom: 10%;
                                }

                                .ww-expert-3 {
                                    right: 2%;
                                    top: 15%;
                                }

                                .ww-name {
                                    font-size: 9px !important;
                                }

                                .ww-tag {
                                    font-size: 7px !important;
                                }
                            }

                            /* SVG Connections - Fluid */
                            .ww-svg-canvas {
                                position: absolute;
                                inset: 0;
                                width: 100%;
                                height: 100%;
                                pointer-events: none;
                            }

                            .ww-cable {
                                fill: none;
                                stroke: #6366f1;
                                stroke-width: 1.5;
                                stroke-dasharray: 6;
                                opacity: 0.15;
                            }

                            .ww-data {
                                fill: #6366f1;
                                filter: drop-shadow(0 0 3px #6366f1);
                            }

                            @keyframes ww-blink {

                                0%,
                                100% {
                                    opacity: 1;
                                }

                                50% {
                                    opacity: 0.3;
                                }
                            }

                            @keyframes ww-float {

                                0%,
                                100% {
                                    transform: translateY(0);
                                }

                                50% {
                                    transform: translateY(-6px);
                                }
                            }

                            .ww-avatar-row {
                                display: flex;
                                flex-direction: row;
                                margin-left: 8px;
                            }

                            .ww-mini-av {
                                width: 24px;
                                height: 24px;
                                border-radius: 50%;
                                border: 2px solid #f0fdf4;
                                background: white;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-size: 10px;
                                margin-left: -8px;
                                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
                            }
                        

        #bento-main-section {
            font-family: 'Poppins', sans-serif;
        }

        /* Dynamiczna nakładka gradientowa */
        #bento-fade-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 350px;
            background: linear-gradient(to top, #0a0a0a 15%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
            z-index: 20;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 40px;
            pointer-events: none;
            /* Pozwala klikać w kafelki przez gradient */
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #bento-expand-btn {
            pointer-events: auto;
            /* Przycisk zawsze klikalny */
        }

        /* Stan po rozwinięciu - gradient staje się niewidoczny i niski */
        .bento-is-expanded #bento-fade-overlay {
            background: transparent;
            height: 120px;
            padding-bottom: 20px;
        }

        /* Początkowa wysokość siatki */
        .bento-grid-collapsed {
            height: 600px;
        }
    

        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

        #team-proof-section {
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 30%, #F3E8FF 100%);
        }

        .light-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            z-index: 0;
        }

        /* --- NOWY STYL DLA INWESTORA (BIG & PROUD) --- */
        .funding-container {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            /* Delikatna fioletowa ramka */
            border: 1px solid rgba(124, 58, 237, 0.15);

            /* Duży padding = Duża ranga */
            padding: 30px 80px;
            border-radius: 30px;

            /* Mocny cień budujący głębię */
            box-shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;

            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            margin-bottom: 80px;
            position: relative;
            z-index: 20;
        }

        .funding-container:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 30px 70px -10px rgba(124, 58, 237, 0.3);
            border-color: rgba(124, 58, 237, 0.3);
        }

        .funding-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #7C3AED;
            /* Fioletowy kolor tekstu */
            margin-bottom: 16px;
            opacity: 0.8;
        }

        .fund-logo-big {
            height: 80px;
            /* OGROMNE LOGO */
            width: auto;
            /* Lekki grayscale dla elegancji, full color on hover */
            filter: grayscale(100%) opacity(0.8);
            transition: all 0.4s ease;
        }

        .funding-container:hover .fund-logo-big {
            filter: grayscale(0%) opacity(1);
        }

        /* NAGŁÓWKI I KARTY (Bez zmian) */
        .text-gradient-dark {
            background: linear-gradient(135deg, #1e293b 0%, #4c1d95 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 1);
            border-radius: 24px;
            padding: 24px;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
            position: relative;
            overflow: hidden;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -5px rgba(124, 58, 237, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .avatar-wrapper {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            background: #F1F5F9;
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.4s ease, transform 0.5s ease;
        }

        .team-card:hover .avatar-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .role-badge {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #7C3AED;
            background: rgba(124, 58, 237, 0.08);
            padding: 6px 12px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 12px;
        }
    

        .gradient-text {
            background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
        }
    

        #contact-cta {
            background-color: #0c071b;
            font-family: 'Inter', sans-serif;
        }

        /* --- THE CAPSULE --- */
        .v6-capsule {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 56px;
            backdrop-filter: blur(16px);
            display: grid;
            grid-template-columns: 1fr;
            overflow: hidden;
        }

        @media (min-width: 1024px) {
            .v6-capsule {
                grid-template-columns: 1.1fr 0.9fr;
                /* Balans 55% / 45% */
            }
        }

        /* --- INPUT STYLING (The Fix) --- */
        .v6-input-field {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            color: white;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .v6-input-field:focus {
            border-color: #7c3aed;
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
            outline: none;
        }

        /* --- FORM AURA --- */
        .v6-aura {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
        }

        /* --- TEXT ANIMATION --- */
        .v6-reveal {
            opacity: 0;
        }
    

