        :root {
            --black: #0D0D0D;
            --gold: #D4AF37;
            --gold-light: #F4E4C1;
            --burgundy: #5C1A1B;
            --cream: #F5F1E8;
            --white: #FFFFFF;
            --gray: #8B8B8B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--cream);
            background: var(--black);
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
        }

        /* Touch-friendly defaults */
        a, button, input, select, textarea {
            -webkit-tap-highlight-color: transparent;
        }

        button, .pricing-cta, .submit-btn, .hero-cta, .faq-question {
            min-height: 44px;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.25rem 1.25rem;
            z-index: 1000;
            transition: all 0.5s ease;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        nav.scrolled {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            background: rgba(13, 13, 13, 0.9);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            padding: 1rem 1.25rem;
        }
        
        nav .container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
        }

        .logo .logo-letter {
            display: inline-block;
            color: var(--gold);
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .logo .logo-4 {
            font-size: 1.7rem;
            line-height: 1;
            font-weight: 800;
            vertical-align: baseline;
            margin: 0 0.02em;
        }
        
        nav ul {
            display: flex;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            background: rgba(13, 13, 13, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 0 2rem;
            gap: 1.5rem;
            list-style: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
                        opacity 0.15s ease,
                        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
        }

        nav ul.open {
            max-height: 500px;
            opacity: 1;
            padding: 2rem;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.3s ease,
                        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav ul li {
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.15s ease, transform 0.15s ease;
            transition-delay: 0s;
        }

        nav ul.open li {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        nav ul.open li:nth-child(1) { transition-delay: 0.05s; }
        nav ul.open li:nth-child(2) { transition-delay: 0.1s; }
        nav ul.open li:nth-child(3) { transition-delay: 0.15s; }
        nav ul.open li:nth-child(4) { transition-delay: 0.2s; }
        nav ul.open li:nth-child(5) { transition-delay: 0.25s; }
        nav ul.open li:nth-child(6) { transition-delay: 0.3s; }
        nav ul.open li:nth-child(7) { transition-delay: 0.35s; }
        nav ul.open li:nth-child(8) { transition-delay: 0.4s; }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        nav a {
            text-decoration: none;
            color: var(--cream);
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--gold);
        }
        
        /* Scroll progress bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), #F5D96B, var(--gold));
            width: 0%;
            z-index: 1001;
            pointer-events: none;
            transition: none;
        }

        /* Panel - animated sections container */
        .panel {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            contain: layout style paint;
            padding: 4rem 1.25rem;
        }

        /* Cinematic fade overlay between sections */
        .panel-fade-in {
            position: absolute;
            inset: 0;
            background: var(--black);
            pointer-events: none;
            z-index: 3;
            opacity: 1;
        }

        section[id] {
            scroll-margin-top: 80px;
        }

        #about,
        #faq {
            scroll-margin-top: 160px;
        }
        
        /* Hero Section */
        .hero {
            background: var(--black);
            min-height: 100vh;
            min-height: -webkit-fill-available;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.09), transparent 65%);
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.35;
            mix-blend-mode: screen;
            pointer-events: none;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }
        
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 10vw, 4rem);
            font-weight: 400;
            line-height: 1.3;
            color: var(--white);
            margin-bottom: 2rem;
            overflow: visible;
        }
        
        .hero h1 .gold:not(.hero-line),
        .section-title .accent {
            font-style: italic;
            color: var(--gold);
            background: radial-gradient(
                circle 150px at var(--mouse-x, -300px) var(--mouse-y, -300px),
                #FFFFFF 0%,
                #FFFDE0 15%,
                #F5D96B 35%,
                var(--gold) 65%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: default;
            display: inline-block;
            padding: 0.05em 0.1em 0.4em;
            margin-bottom: -0.4em;
            overflow: visible;
        }

        .hero h1 .gold:not(.hero-line) {
            font-weight: 700;
        }

        /* Hero line 2 (gold italic) - kompatybilna z systemem .char scramble */
        .hero-line.gold {
            font-style: italic;
            font-weight: 700;
            color: var(--gold);
        }
        .hero-line.gold .char > .display {
            color: rgba(245, 220, 130, 0.32);
        }
        .hero-line.gold .char.locked-gold > .display {
            color: var(--gold);
            text-shadow: 0 0 28px rgba(212, 175, 55, 0.55);
        }

        .section-header,
        .hero-content {
            overflow: visible;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            font-weight: 300;
            opacity: 0;
        }

        .hero-cta {
            display: inline-block;
            padding: 1.25rem 3rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
        }
        
        .hero-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }
        
        .hero-cta:hover::before {
            transform: translateY(0);
        }
        
        .hero-cta:hover {
            color: var(--black);
        }

        .hero-cta-group {
            display: inline-flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-cta-secondary {
            border-color: rgba(212, 175, 55, 0.35);
            color: var(--gray);
        }

        .hero-cta-secondary::before {
            background: rgba(212, 175, 55, 0.08);
        }

        .hero-cta-secondary:hover {
            color: var(--gold);
        }

        @media (max-width: 480px) {
            .hero-cta-group {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
            }
            .hero-cta-group .hero-cta {
                width: 100%;
                text-align: center;
            }

            /* Odzysk szerokości — panel bez bocznego paddingu, container go trzyma */
            .panel {
                padding: 3.25rem 0;
            }

            /* Hero — pełna wysokość viewportu, content wycentrowany.
               Padding skalujemy z dvh, żeby na niskich ekranach nic nie wypadało za hero. */
            .hero {
                padding: clamp(3.5rem, 8dvh, 5rem) 0 clamp(2rem, 5dvh, 4rem);
                min-height: 100vh;
                min-height: 100dvh;
            }
            .hero-content {
                padding: 0 1.25rem;
            }

            nav {
                padding: 1rem 1.1rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: clamp(2rem, 7.5vw, 2.6rem);
                line-height: 1.2;
            }

            .section-label {
                letter-spacing: 3px;
                margin-bottom: 1rem;
            }

            /* Dynamiczne skalowanie — bierzemy mniejszą wartość z szerokości i wysokości viewportu,
               żeby napis zawsze mieścił się w hero (nawet na niskich telefonach 360x640). */
            .hero h1 {
                font-size: clamp(2.6rem, min(15vw, 11dvh), 5rem);
                line-height: 1.05;
                margin-bottom: clamp(0.9rem, 2.5dvh, 1.75rem);
                letter-spacing: -0.01em;
            }

            .hero-line.gold {
                font-size: 1.08em;
            }

            .hero-subtitle {
                font-size: clamp(0.85rem, 2.4dvh, 1rem);
                line-height: 1.65;
                margin-bottom: clamp(1rem, 3dvh, 2rem);
            }

            .hero-cta,
            .hero-cta-secondary {
                padding: clamp(0.75rem, 1.8dvh, 1rem) 1.5rem;
                font-size: 0.78rem;
                letter-spacing: 1.5px;
            }

            /* About — mniejszy gap, mniej "wstrzykniętego" oddechu */
            .about-content {
                gap: 2rem;
            }
            .about-text h3 {
                font-size: 1.45rem;
                margin-bottom: 1rem;
            }
            .about-philosophy {
                padding: 1.25rem 1.25rem 1.25rem 1.25rem;
                margin-top: 1.5rem;
            }

            /* Process — kompaktowe kafle, mniejszy odstęp między krokami */
            .process-timeline {
                gap: 1.75rem;
            }
            .process-number {
                width: 64px;
                height: 64px;
                font-size: 1.5rem;
                margin-bottom: 1.25rem;
            }
            .process-step h3 {
                font-size: 1.1rem;
            }

            /* Realizacje + projekty — pełna szerokość kart */
            .realizacje-grid,
            .pricing-grid {
                gap: 1.25rem;
            }
            .pricing-card {
                padding: 2rem 1.25rem;
            }
        }

        /* Features Section */
        .features {
            background: var(--black);
            overflow: hidden;
        }

        #sacred-geometry-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.35;
            mix-blend-mode: screen;
            pointer-events: none;
        }

        .features .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 1.25rem;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.75rem, 7vw, 2.5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.3;
            overflow: visible;
        }
        
        /* .accent styled above with shimmer */
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .feature-card {
            text-align: center;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--gold);
            transition: all 0.5s;
        }
        
        .feature-card:hover .feature-icon {
            background: var(--gold);
            color: var(--black);
            transform: rotate(180deg);
        }
        
        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--cream);
        }
        
        .feature-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 0.95rem;
            font-weight: 300;
        }
        
        /* Realizacje Section */
        .realizacje {
            background: linear-gradient(135deg, #0D0D0D 0%, rgba(92,26,27,0.06) 100%);
        }

        .realizacje .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            width: 100%;
        }

        .realizacje-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .realizacja-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.15);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .realizacja-card:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-6px);
            box-shadow: 0 24px 64px rgba(212, 175, 55, 0.08);
        }

        .realizacja-mockup-link {
            display: block;
            text-decoration: none;
        }

        .realizacja-mockup {
            padding: 0;
            background: none;
        }

        .mockup-browser {
            overflow: hidden;
        }

        .mockup-topbar {
            display: none;
        }

        .mockup-screen {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .mockup-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 3px;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mockup-content.luxe-nails {
            background: linear-gradient(135deg, #1a0a1a 0%, #2d1a2e 50%, #1a0f0f 100%);
            color: var(--gold);
        }

        .mockup-content.aim {
            background: linear-gradient(135deg, #0a1520 0%, #0d2340 50%, #091220 100%);
            color: var(--gold);
        }

        .mockup-content .mockup-subtitle {
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(212, 175, 55, 0.5);
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }

        .realizacja-info {
            padding: 2rem 2rem 2.5rem;
        }

        .realizacja-type {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
            display: block;
            margin-bottom: 0.75rem;
        }

        .realizacja-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .realizacja-desc {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        .realizacja-link {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease, opacity 0.3s;
        }

        .realizacja-link:hover {
            opacity: 0.7;
            gap: 0.8rem;
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(135deg, #0D0D0D 0%, #1A0F0F 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 1px solid var(--gold);
            background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.02));
            box-shadow:
                0 0 40px rgba(212,175,55,0.08),
                0 0 80px rgba(212,175,55,0.05),
                0 0 120px rgba(212,175,55,0.03);
            animation: featured-glow 4s ease-in-out infinite alternate;
        }

        @keyframes featured-glow {
            0% {
                box-shadow:
                    0 0 40px rgba(212,175,55,0.08),
                    0 0 80px rgba(212,175,55,0.05),
                    0 0 120px rgba(212,175,55,0.03);
            }
            100% {
                box-shadow:
                    0 0 50px rgba(212,175,55,0.12),
                    0 0 100px rgba(212,175,55,0.07),
                    0 0 150px rgba(212,175,55,0.04);
            }
        }
        
        .pricing .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0;
            width: 100%;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--black);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .testimonial-card {
            position: relative;
            padding: 2.75rem 2rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 4px;
            transition: border-color 0.4s ease, transform 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            border-color: rgba(212, 175, 55, 0.35);
            transform: translateY(-3px);
        }

        .testimonial-quote-mark {
            position: absolute;
            top: -0.25rem;
            left: 1.25rem;
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            line-height: 1;
            color: var(--gold);
            opacity: 0.5;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--cream);
            line-height: 1.8;
            font-size: 1rem;
            font-weight: 300;
            margin: 0 0 1.5rem;
        }

        .testimonial-author {
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            padding-top: 1rem;
            margin-top: auto;
        }

        .testimonial-author-name {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .testimonial-author-role {
            color: var(--gray);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .testimonial-author-package {
            display: inline-block;
            margin-top: 0.6rem;
            padding: 0.25rem 0.7rem;
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 999px;
            color: var(--gold);
            font-size: 0.7rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .testimonial-placeholder-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(212, 175, 55, 0.6);
            border: 1px solid rgba(212, 175, 55, 0.25);
            padding: 0.2rem 0.5rem;
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.4);
        }

        .testimonials-note {
            text-align: center;
            color: var(--gray);
            font-size: 0.8rem;
            margin-top: 2rem;
            font-style: italic;
            opacity: 0.7;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-assurance {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem 1.75rem;
            max-width: 920px;
            margin: 0 auto 3rem;
            padding: 1.25rem 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.18);
            border-radius: 4px;
            background: rgba(212, 175, 55, 0.03);
        }

        .pricing-assurance li {
            color: var(--gray);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-assurance li span {
            color: var(--gold);
            font-weight: 600;
        }

        .pricing-assurance-note {
            max-width: 920px;
            margin: -2.25rem auto 3rem;
            text-align: center;
            font-size: 0.75rem;
            color: var(--gray);
            opacity: 0.7;
            font-style: italic;
            letter-spacing: 0.3px;
        }

        @media (max-width: 600px) {
            .pricing-assurance {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
            }
            .pricing-assurance-note {
                margin: -2rem 1rem 2.5rem;
                text-align: left;
            }
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            padding: 3rem 2rem;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.04);
        }
        
        /* .pricing-card.featured styles merged above with glow */
        
        .pricing-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            padding: 0.5rem 1.5rem;
            background: var(--gold);
            color: var(--black);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .pricing-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .pricing-description {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 3rem;
            font-weight: 300;
        }
        
        .pricing-price {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }
        
        .pricing-amount {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 8vw, 3.5rem);
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }
        
        .pricing-currency {
            font-size: 1.5rem;
            color: var(--gray);
            margin-left: 0.5rem;
        }
        
        .pricing-delivery {
            font-size: 0.75rem;
            color: var(--gray);
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .pricing-includes {
            font-size: 0.8rem;
            color: var(--gold);
            font-weight: 400;
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .pricing-compare-wrapper {
            margin: 4rem auto 0;
            max-width: 1100px;
        }

        .pricing-compare-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            text-align: center;
            color: var(--cream);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .pricing-compare-scroll {
            position: relative;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 4px;
        }

        /* Fade hint na prawej krawędzi — pokazuje, że tabela scrolluje się w bok */
        .pricing-compare-scroll::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 48px;
            pointer-events: none;
            background: linear-gradient(90deg, transparent, var(--black) 85%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .pricing-compare-scroll.is-scrollable::after {
            opacity: 1;
        }
        .pricing-compare-scroll.is-scroll-end::after {
            opacity: 0;
        }

        /* Sticky pierwsza kolumna — reguły dołączone do .pricing-compare thead/tbody th poniżej */

        .pricing-compare {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            min-width: 640px;
            background: rgba(255, 255, 255, 0.015);
            font-size: 0.9rem;
        }

        .pricing-compare thead th {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--gold);
            padding: 1.25rem 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(212, 175, 55, 0.25);
            background: rgba(212, 175, 55, 0.04);
            letter-spacing: 0.5px;
        }

        .pricing-compare thead th.cmp-feature {
            text-align: left;
            color: var(--cream);
            position: sticky;
            left: 0;
            z-index: 3;
            background: var(--black);
            box-shadow: 1px 0 0 rgba(212, 175, 55, 0.18);
        }

        .pricing-compare thead th.cmp-featured {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-light);
        }

        .pricing-compare tbody th {
            text-align: left;
            font-weight: 400;
            color: var(--cream);
            padding: 0.95rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            background: var(--black);
            position: sticky;
            left: 0;
            z-index: 2;
            box-shadow: 1px 0 0 rgba(212, 175, 55, 0.12);
        }

        .pricing-compare tbody td {
            text-align: center;
            color: var(--gray);
            padding: 0.95rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .pricing-compare tbody td.cmp-featured {
            background: rgba(212, 175, 55, 0.05);
            color: var(--cream);
        }

        .pricing-compare tbody tr:last-child th,
        .pricing-compare tbody tr:last-child td {
            border-bottom: none;
        }

        .pricing-compare tbody tr:hover th,
        .pricing-compare tbody tr:hover td {
            background: rgba(212, 175, 55, 0.06);
        }

        .pricing-compare .cmp-yes {
            color: var(--gold);
            font-weight: 600;
        }

        .pricing-compare .cmp-no {
            color: rgba(139, 139, 139, 0.5);
        }

        .pricing-vat-note {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 300;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 3rem;
            flex-grow: 1;
        }

        .price-1 .pricing-features {
            padding-top: 23px;
        }
        
        .pricing-features li {
            padding: 1rem 0;
            color: var(--cream);
            font-size: 0.9rem;
            font-weight: 300;
            border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-cta {
            width: 100%;
            padding: 1.25rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 0;
        }
        
        .pricing-cta:hover::before {
            transform: translateY(0);
        }
        
        .pricing-cta:hover {
            color: var(--black);
        }
        
        .pricing-cta span {
            position: relative;
            z-index: 1;
        }
        
        /* Contact Section */
        .contact {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--black);
            padding: 4rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Contact — flowing light sweeps L→R */
        .contact-sweep-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .contact-sweep {
            position: absolute;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.06) 30%, rgba(212,175,55,0.14) 50%, rgba(212,175,55,0.06) 70%, transparent 100%);
            filter: blur(30px);
            animation: contact-flow 7s ease-in-out infinite;
            will-change: transform;
        }
        .contact-sweep:nth-child(1) {
            top: 15%;
            height: 100px;
            animation-duration: 7s;
            animation-delay: 0s;
        }
        .contact-sweep:nth-child(2) {
            top: 45%;
            height: 140px;
            animation-duration: 9s;
            animation-delay: -3s;
        }
        .contact-sweep:nth-child(3) {
            top: 75%;
            height: 110px;
            animation-duration: 8s;
            animation-delay: -5s;
        }

        @keyframes contact-flow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .contact .container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .contact-form {
            display: grid;
            gap: 2.5rem;
            margin-top: 4rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        input, textarea {
            padding: 1.5rem 0;
            border: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--cream);
            transition: all 0.3s;
        }
        
        input::placeholder, textarea::placeholder {
            color: var(--gray);
        }
        
        input:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
            border-bottom-color: var(--gold);
        }

        /* Focus visible dla przycisków i linków — tylko klawiatura, nie mysz */
        .hero-cta:focus-visible,
        .pricing-cta:focus-visible,
        .submit-btn:focus-visible,
        .faq-question:focus-visible,
        .hamburger:focus-visible,
        .sticky-cta:focus-visible,
        .realizacja-link:focus-visible,
        .realizacja-mockup-link:focus-visible,
        nav a:focus-visible,
        footer a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
        }
        
        textarea {
            resize: none;
            min-height: 150px;
        }
        
        .form-status {
            text-align: center;
            font-size: 0.9rem;
            margin-top: 1.25rem;
            min-height: 1.2em;
            letter-spacing: 0.3px;
            color: var(--gray);
            transition: opacity 0.3s ease;
        }
        .form-status.sending { color: var(--gold); opacity: 0.85; }
        .form-status.success { color: var(--gold); }
        .form-status.error { color: #ff6b6b; }

        .submit-btn {
            justify-self: center;
            padding: 1.25rem 3rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 0;
        }
        
        .submit-btn:hover::before {
            transform: translateY(0);
        }
        
        .submit-btn:hover {
            color: var(--black);
        }
        
        .submit-btn span {
            position: relative;
            z-index: 1;
        }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Skip link — widoczny tylko dla nawigacji klawiaturą */
        .skip-link {
            position: fixed;
            top: -100%;
            left: 1rem;
            padding: 0.75rem 1.5rem;
            background: var(--gold);
            color: var(--black);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
            z-index: 99999;
            transition: top 0.2s ease;
        }
        .skip-link:focus {
            top: 1rem;
        }

        .form-group {
            width: 100%;
        }

        .form-consent {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-top: -0.5rem;
        }

        .form-consent input[type="checkbox"] {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 3px;
            padding: 0;
            accent-color: var(--gold);
            cursor: pointer;
            border-bottom: none;
        }

        .form-consent label {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.6;
            font-weight: 300;
            cursor: pointer;
        }

        .form-consent .privacy-link {
            color: var(--gold);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: opacity 0.3s ease;
        }

        .form-consent .privacy-link:hover {
            opacity: 0.75;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
        }

        /* About Section */
        .about {
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        /* About section — CSS grid background with sweep */
        .about-grid-bg {
            display: none;
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
            opacity: 0.35;
            mix-blend-mode: screen;
            background-image:
                linear-gradient(rgba(212,175,55,0.85) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212,175,55,0.85) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
        }

        /* Animated scan line sweep */
        .about-grid-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(212,175,55,0.6) 45%,
                rgba(255,232,163,1) 50%,
                rgba(212,175,55,0.6) 55%,
                transparent 100%
            );
            animation: grid-sweep 8s ease-in-out infinite;
            will-change: transform;
            mix-blend-mode: screen;
        }

        @keyframes grid-sweep {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Center vignette for text readability */
        .about-grid-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 65% at 50% 55%, rgba(13,13,13,0.5), transparent);
            pointer-events: none;
        }

        .about .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            position: relative;
            z-index: 2;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-placeholder {
            width: 100%;
            aspect-ratio: 1/1;
            background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(92,26,27,0.08));
            border: 1px solid rgba(212, 175, 55, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 0.85rem;
            gap: 1rem;
        }

        .about-image-placeholder .placeholder-icon {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.5;
        }

        /* Avatar SVG animation */
        .about-avatar {
            overflow: hidden;
        }

        .about-avatar svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Avatar stroke-draw animation */
        .av-draw-path {
            opacity: 0;
        }

        .avatar-ring {
            opacity: 0;
        }

        .avatar-corners {
            opacity: 0;
        }

        /* Glow handled via JS with SVG feGaussianBlur stdDeviation animation */

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--gray);
            line-height: 1.9;
            font-size: 0.95rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        .about-philosophy {
            margin-top: 2rem;
            padding: 2rem;
            border-left: 2px solid var(--gold);
            background: rgba(212, 175, 55, 0.03);
        }

        .about-philosophy p {
            color: var(--cream);
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 0;
            min-height: 6em;
        }

        .tw-cursor {
            display: inline-block;
            color: var(--gold);
            font-style: normal;
            animation: tw-blink 0.75s step-end infinite;
            margin-left: 1px;
        }

        @keyframes tw-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Process Section */
        /* Unblur text reveal */
        .unblur-word {
            display: inline-block;
            opacity: 0;
            filter: blur(12px);
            transform: translateY(8px);
            transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
        }
        .unblur-word.revealed {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        /* Process number count-up */
        .process-number {
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .process-number .num-text {
            display: inline-block;
        }

        .process {
            background: linear-gradient(135deg, rgba(92,26,27,0.05) 0%, var(--black) 50%);
            position: relative;
            overflow: hidden;
        }

        .process::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 700px 500px at 20% 30%, rgba(212,175,55,0.18), transparent),
                radial-gradient(ellipse 600px 450px at 80% 70%, rgba(92,26,27,0.22), transparent);
            pointer-events: none;
            z-index: 0;
            will-change: transform;
        }

        .process .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            position: relative;
            z-index: 2;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            position: relative;
            margin-top: 1rem;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
            opacity: 0.3;
            display: none;
        }

        @media (min-width: 1025px) {
            .process-timeline::before {
                display: block;
            }
        }

        .process-step {
            text-align: center;
            position: relative;
            min-width: 0;
            padding: 0 0.5rem;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
        }

        .process-step p,
        .process-step h3 {
            max-width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .process-number {
            width: 80px;
            height: 80px;
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--gold);
            position: relative;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            /* Glassmorphism */
            background: rgba(212, 175, 55, 0.04);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(212, 175, 55, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        /* Animated shine sweep */
        .process-number::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -75%;
            width: 50%;
            height: 200%;
            background: linear-gradient(
                105deg,
                transparent 30%,
                rgba(212, 175, 55, 0.08) 45%,
                rgba(212, 175, 55, 0.15) 50%,
                rgba(212, 175, 55, 0.08) 55%,
                transparent 70%
            );
            transform: skewX(-15deg);
            transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .process-step:hover .process-number::before,
        .process-number.shine-active::before {
            left: 125%;
        }

        .process-step:hover .process-number {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow:
                0 8px 32px rgba(212, 175, 55, 0.1),
                0 0 20px rgba(212, 175, 55, 0.05),
                inset 0 1px 0 rgba(212, 175, 55, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            transform: translateY(-4px);
            color: var(--cream);
        }

        .process-step h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--cream);
            margin-bottom: 0.75rem;
        }

        .process-step p {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* FAQ Section */
        .faq {
            background: var(--black);
        }

        .faq .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1.25rem;
            position: relative;
            z-index: 2;
        }

        .faq-list {
            margin-top: 1rem;
        }

        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 2rem 0;
            background: none;
            border: none;
            color: var(--cream);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--gold);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .faq-answer p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 300;
            padding-bottom: 2rem;
        }

        .faq-item.active .faq-answer {
            /* max-height set dynamically via JS for iOS compatibility */
        }

        /* CTA after pricing */
        .pricing-cta-section {
            text-align: center;
            margin-top: 4rem;
            padding-top: 3rem;
        }

        .pricing-cta-section p {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .pricing-cta-section .cta-btn {
            display: inline-block;
            padding: 1.25rem 3.5rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-cta-section .cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }

        .pricing-cta-section .cta-btn:hover::before {
            transform: translateY(0);
        }

        .pricing-cta-section .cta-btn:hover {
            color: var(--black);
        }

        /* Sticky CTA button */
        .sticky-cta {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 48px;
            height: 48px;
            background: var(--gold);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .sticky-cta.visible {
            opacity: 1;
            transform: translateY(0) translateZ(0);
        }

        .sticky-cta:hover {
            transform: translateY(-3px) translateZ(0);
            box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
        }

        .sticky-cta svg {
            width: 24px;
            height: 24px;
            fill: var(--black);
        }

        /* Regulamin */
        .regulamin-section {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            background: #111;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.5s ease;
        }

        .regulamin-section.open {
            opacity: 1;
        }

        .regulamin-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .regulamin-title {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
        }

        .regulamin-content {
            color: var(--cream);
            font-size: 0.9rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .regulamin-content h3 {
            color: var(--white);
            font-size: 1.1rem;
            margin: 2rem 0 0.75rem;
            font-weight: 500;
        }

        .regulamin-content p {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            padding: 2rem 1.5rem;
            background: var(--black);
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: var(--gray);
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        
        /* ========== RESPONSIVE — MOBILE FIRST ========== */

        /* --- Tablet (≥769px) --- */
        @media (min-width: 769px) {
            #sacred-geometry-canvas {
                opacity: 0.35;
            }
            .panel {
                padding: 6rem 2rem;
            }

            .section-header {
                margin-bottom: 4rem;
            }

            .section-title {
                font-size: clamp(2rem, 5vw, 3.5rem);
            }

            .hero h1 {
                font-size: clamp(3rem, 8vw, 5rem);
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-cta {
                padding: 1.5rem 4rem;
            }

            .hero-bg {
                background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.04), transparent 60%);
            }

            .features .container {
                padding: 0 3rem;
            }

            .realizacje-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .mockup-screen {
                height: 260px;
            }

            .about .container,
            .process .container,
            .faq .container,
            .realizacje .container {
                padding: 0 3rem;
            }

            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }

            .about-grid-bg {
                display: block;
            }

            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .pricing .container {
                padding: 0 3rem;
            }

            .pricing-header {
                margin-bottom: 4rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .pricing-card.price-3 {
                grid-column: 1 / -1;
                max-width: 500px;
                justify-self: center;
                width: 100%;
            }

            .pricing-card {
                padding: 3.5rem 2.5rem;
            }

            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact {
                padding: 6rem 3rem;
            }

            footer {
                padding: 3rem;
            }

            .regulamin-container {
                padding: 4rem 3rem;
            }

            .sticky-cta {
                bottom: 2rem;
                right: 2rem;
                width: 56px;
                height: 56px;
            }

            .sticky-cta svg {
                width: 24px;
                height: 24px;
            }
        }

        /* --- Desktop (≥1025px) — pełna nawigacja --- */
        @media (min-width: 1025px) {
            nav {
                padding: 2rem 4rem;
            }

            nav.scrolled {
                padding: 1.5rem 4rem;
            }

            .hamburger {
                display: none;
            }

            nav ul {
                position: static;
                flex-direction: row;
                background: none;
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
                padding: 0;
                gap: clamp(1rem, 2vw, 3rem);
                border-bottom: none;
                max-height: none;
                overflow: visible;
                opacity: 1;
            }

            nav ul li {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .panel {
                min-height: 100vh;
                padding: 8rem 0;
            }

            .section-header {
                margin-bottom: 6rem;
            }

            .section-title {
                font-size: clamp(2.5rem, 5vw, 5rem);
            }

            .hero h1 {
                font-size: clamp(3rem, 8vw, 8rem);
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .features .container {
                padding: 0 4rem;
            }

            .about .container,
            .process .container,
            .faq .container,
            .realizacje .container {
                padding: 0 4rem;
            }

            .process-timeline {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }

            .pricing .container {
                padding: 0 4rem;
            }

            .pricing-header {
                margin-bottom: 5rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }

            .pricing-card.price-3 {
                grid-column: auto;
                max-width: none;
            }

            .pricing-card {
                padding: 4rem 3rem;
            }

            .pricing-amount {
                font-size: 4.5rem;
            }

            .contact {
                min-height: 100vh;
                padding: 8rem 4rem;
            }

            footer {
                padding: 4rem;
            }

            .regulamin-container {
                padding: 5rem 4rem;
            }
        }

        /* --- Large desktop (≥1201px) — features 3-col --- */
        @media (min-width: 1201px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 4rem;
            }
        }

        /* Landscape phone — hero nie wymusza 100vh */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 6rem 2rem 4rem;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }

            .hero-subtitle {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
        }

        /* iOS-specific fixes */
        @supports (-webkit-touch-callout: none) {
            nav {
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }

            .sticky-cta {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }

            .hero {
                min-height: -webkit-fill-available;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--black);
            border-left: 1px solid rgba(212, 175, 55, 0.15);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #D4AF37 0%, #B8941F 50%, #D4AF37 100%);
            border-radius: 0;
            border: none;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #F4E4C1 0%, #D4AF37 50%, #F4E4C1 100%);
        }

        ::-webkit-scrollbar-corner {
            background: var(--black);
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: #D4AF37 #0D0D0D;
        }
        /* Reduced motion — disable all animations */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .hero-canvas,
            #sacred-geometry-canvas {
                display: none;
            }
        }

        /* === Hero reveal animation === */
        .hero-h1 {
            line-height: 1.15;
            text-align: center;
            user-select: none;
        }

        .hero-line {
            display: flex;
            justify-content: center;
            align-items: baseline;
            min-height: 1.15em;
            white-space: nowrap;
        }

        .char {
            position: relative;
            display: inline-block;
        }
        .char > .sizer {
            visibility: hidden;
            display: inline-block;
            pointer-events: none;
        }
        .char > .display {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            text-align: center;
            color: rgba(245, 245, 245, 0.28);
            transition: color 0.25s ease, text-shadow 0.4s ease;
        }
        .char.locked-white > .display {
            color: #f5f5f5;
        }
        .char.locked-gold > .display {
            color: var(--gold);
            text-shadow: 0 0 28px rgba(212, 175, 55, 0.55);
        }
        .char.space {
            width: 0.32em;
        }

        .hero-cursor {
            display: inline-block;
            width: 4px;
            height: 0.78em;
            background: var(--gold);
            margin-left: 10px;
            align-self: center;
            animation: hero-cursor-blink 0.7s step-end infinite;
            box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
            transition: opacity 0.4s ease;
        }
        .hero-cursor.hidden { opacity: 0; }
        @keyframes hero-cursor-blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Pre-reveal stany dla pozostalych elementow hero (opacity bazowy juz w .hero-subtitle/.hero-cta) */
        .hero-subtitle.reveal-visible,
        .hero-cta.reveal-visible {
            opacity: 1;
        }

        /* Nav schowany zanim animacja sie skonczy */
        nav#nav {
            transform: translateY(-100%);
        }
        nav#nav.reveal-visible {
            transform: translateY(0) translateZ(0);
        }

        /* ===== Projects / Laboratorium Section ===== */
        .projects {
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .projects-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.35;
            mix-blend-mode: screen;
        }

        /* Mobile fallback: zamiast cieżkiego iframe (1.5 MB, mix-blend issues na iOS),
           statyczne tło kintsugi-like — gold cracks na ciemnym tle */
        .projects-bg-fallback {
            display: none;
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.5;
            background-color: #0a0a0a;
            background-image:
                radial-gradient(ellipse 60% 40% at 20% 30%, rgba(212,175,55,0.08), transparent 70%),
                radial-gradient(ellipse 50% 35% at 80% 70%, rgba(212,175,55,0.06), transparent 70%),
                url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><g stroke='%23D4A934' stroke-width='1.2' fill='none' opacity='0.55' stroke-linecap='round'><path d='M30 80 L100 130 L85 200 L160 230 L240 200 L300 250 L380 220'/><path d='M70 30 L130 90 L200 70 L260 130 L320 110 L370 170'/><path d='M50 280 L130 260 L180 180 L240 200'/><path d='M60 360 L140 330 L200 300 L280 320 L350 290'/><path d='M20 150 L90 170 L120 220'/></g><g fill='%23FFE8A3' opacity='0.8'><circle cx='100' cy='130' r='2.5'/><circle cx='160' cy='230' r='2'/><circle cx='130' cy='90' r='2'/><circle cx='260' cy='130' r='1.8'/><circle cx='200' cy='300' r='2'/><circle cx='90' cy='170' r='1.8'/></g></svg>");
            background-size: cover, cover, 400px 400px;
            background-repeat: no-repeat, no-repeat, repeat;
        }
        @media (max-width: 768px) {
            .projects-bg { display: none; }
            .projects-bg-fallback { display: block; }
        }

        .projects > .container {
            position: relative;
            z-index: 1;
        }

        .projects-intro {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 60px;
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .project-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(212,175,55,0.12);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
        }

        .project-card:hover {
            border-color: rgba(212,175,55,0.4);
            box-shadow: 0 0 40px rgba(212,175,55,0.08), 0 0 80px rgba(212,175,55,0.04);
            transform: translateY(-4px);
        }

        .project-card-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: rgba(10,10,10,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(212,175,55,0.08);
        }

        .project-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-card-placeholder {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--gold);
            opacity: 0.4;
            letter-spacing: 2px;
        }

        .project-card-body {
            padding: 28px 24px 32px;
        }

        .project-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: var(--gold);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .project-card-desc {
            color: var(--gray);
            font-size: 0.92rem;
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .project-card-tech {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .project-card-tech span {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(212,175,55,0.5);
            border: 1px solid rgba(212,175,55,0.15);
            padding: 4px 10px;
            border-radius: 4px;
        }

        .project-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold);
            text-decoration: none;
            font-size: 0.88rem;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
        }

        .project-card-link:hover {
            opacity: 0.7;
        }

        .project-card-link svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .project-badge {
            display: inline-block;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            border: 1px solid rgba(212,175,55,0.3);
            padding: 4px 12px;
            border-radius: 4px;
            opacity: 0.7;
        }

        @media (max-width: 700px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .projects {
                padding: 80px 0 60px;
            }

            .project-card-body {
                padding: 20px 18px 24px;
            }
        }

        /* Mobile-only nadpisania, które muszą być za późniejszymi domyślnymi regułami */
        @media (max-width: 480px) {
            .section-title {
                font-size: clamp(2rem, 7.5vw, 2.6rem);
                line-height: 1.2;
            }
            .section-label {
                letter-spacing: 3px;
                margin-bottom: 1rem;
            }
            /* Logo — lżejsze na mobile, żeby nie dominowało nad nagłówkami */
            .logo {
                font-size: 1.125rem;
                font-weight: 600;
                letter-spacing: 2px;
            }
            .logo .logo-4 {
                font-size: 1.25rem;
            }

            /* Pricing compare — stacked cards na mobile (bez scrolla).
               Umieszczone tutaj, by przebić bazowe reguły .pricing-compare powyżej. */
            .pricing-compare-scroll {
                overflow-x: visible;
                border: none;
                border-radius: 0;
            }
            .pricing-compare-scroll::after { display: none !important; }
            .pricing-compare {
                min-width: 0;
                width: 100%;
                background: transparent;
                font-size: 0.85rem;
                display: block;
            }
            .pricing-compare thead {
                position: absolute;
                width: 1px;
                height: 1px;
                overflow: hidden;
                clip: rect(0 0 0 0);
            }
            .pricing-compare tbody { display: block; }
            .pricing-compare tbody tr {
                display: block;
                border: 1px solid rgba(212,175,55,0.18);
                border-radius: 8px;
                padding: 0.85rem 0.9rem 0.7rem;
                margin-bottom: 0.75rem;
                background: rgba(255,255,255,0.018);
            }
            .pricing-compare tbody th {
                display: block;
                position: static;
                left: auto;
                box-shadow: none;
                background: transparent;
                padding: 0 0 0.6rem 0;
                border-bottom: 1px solid rgba(212,175,55,0.14);
                margin-bottom: 0.6rem;
                color: var(--cream);
                font-family: 'Playfair Display', serif;
                font-weight: 600;
                font-size: 0.98rem;
            }
            .pricing-compare tbody td {
                display: inline-block;
                width: calc(33.333% - 0.25rem);
                padding: 0.4rem 0.25rem;
                text-align: center;
                border-bottom: none;
                vertical-align: top;
                font-size: 0.78rem;
                line-height: 1.35;
                color: var(--cream);
            }
            .pricing-compare tbody td::before {
                display: block;
                font-size: 0.58rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: var(--gold);
                margin-bottom: 0.35rem;
                opacity: 0.7;
                font-weight: 500;
            }
            .pricing-compare tbody td:nth-of-type(1)::before { content: "Podstawowy"; }
            .pricing-compare tbody td:nth-of-type(2)::before { content: "Profesjonalny"; }
            .pricing-compare tbody td:nth-of-type(3)::before { content: "Premium"; }
            .pricing-compare tbody td.cmp-featured {
                background: rgba(212,175,55,0.07);
                border-radius: 4px;
                color: var(--cream);
            }
            .pricing-compare tbody tr:hover th,
            .pricing-compare tbody tr:hover td { background: transparent; }
            .pricing-compare tbody tr:hover td.cmp-featured { background: rgba(212,175,55,0.1); }
        }
