
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #eff6ff;
            --secondary: #0f172a;
            --text: #1e293b;
            --text-light: #64748b;
            --text-muted: #94a3b8;
            --bg: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --border: #e2e8f0;
            --success: #10b981;
            --accent: #c026d3;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 17px;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--secondary);
        }
        
        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nav-logo svg {
            width: 38px;
            height: 38px;
        }
        
        .nav-menu {
            display: flex;
            gap: 6px;
            list-style: none;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 18px;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        
        .nav-link.has-dropdown::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
            margin-left: 4px;
            transition: transform 0.2s ease;
        }

        /* MEGA DROPDOWN */
        .mega-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            padding: 20px;
            min-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mega-dropdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            min-width: 900px;
        }

        .dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .dropdown-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        
        .dropdown-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .dropdown-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .dropdown-content {
            flex: 1;
        }
        
        .dropdown-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--secondary);
            margin-bottom: 3px;
        }
        
        .dropdown-desc {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.4;
        }
        
        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 12px 26px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
        }
        
        /* === HOVER EFFECTS — only on devices with mouse/trackpad === */
        @media (hover: hover) {
            .nav-link:hover {
                color: var(--primary);
                background: var(--primary-light);
            }

            .nav-item:hover .nav-link.has-dropdown::after {
                transform: rotate(180deg);
            }

            .nav-item:hover .mega-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }

            .dropdown-item:hover {
                background: var(--primary-light);
            }

            .dropdown-item:hover .dropdown-icon {
                background: white;
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
            }

            .nav-cta:hover {
                background: var(--accent);
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
            }
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
        }
        
        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--secondary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

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

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

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

        /* ===== CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }
        
        /* ===== HERO ===== */
        .hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 32px 80px;
            position: relative;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 100%),
                url('Kafelki_no_blue.png');
            background-size: cover, cover;
            background-position: center, center;
            background-repeat: no-repeat, no-repeat;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
        }
        
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 22px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            animation: fadeInDown 0.8s ease-out;
        }
        
        .hero-label span {
            color: var(--primary);
        }
        
        .hero h1 {
            font-size: clamp(38px, 5vw, 62px);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero h1 .hero-line1 {
            display: block;
            animation: fadeInUp 0.8s ease-out 0s both;
        }

        .hero h1 .hero-typing-line {
            display: block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
        }

        .hero h1 .typing-line-1,
        .hero h1 .typing-line-2,
        .hero h1 .typing-line-3 {
            display: inline;
        }

        .hero h1 .typing-sep {
            display: inline;
            -webkit-text-fill-color: var(--primary);
            opacity: 0.4;
            margin: 0 0.15em;
        }

        .hero h1 .typing-cursor {
            -webkit-text-fill-color: var(--primary);
            animation: blink 0.7s step-end infinite;
            font-weight: 300;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }
        
        .hero-tagline {
            font-size: clamp(22px, 2.8vw, 28px);
            font-weight: 700;
            max-width: 720px;
            margin: 0 auto 8px;
            line-height: 1.5;
            opacity: 0;
            color: var(--primary);
        }

        .hero-subline {
            font-size: clamp(17px, 2vw, 20px);
            font-weight: 400;
            color: var(--text-light);
            max-width: 720px;
            margin: 0 auto 36px;
            line-height: 1.7;
            opacity: 0;
            min-height: 1.7em;
            letter-spacing: 0.01em;
        }

        .subline-cursor {
            color: var(--primary);
            animation: blink 0.7s step-end infinite;
            font-weight: 300;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            opacity: 0;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--text);
            font-weight: 500;
        }
        
        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--success);
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
        }
        
        .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        
        .btn-primary:hover svg {
            transform: translateX(4px);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.7; }
            70% { transform: scale(1.5); opacity: 0; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        
        /* ===== SECTIONS ===== */
        section {
            padding: 100px 32px;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: clamp(32px, 4.5vw, 48px);
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* ===== PRODUKTY/USŁUGI ===== */
        .products-services {
            background: var(--bg);
        }
        
        .ps-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .ps-title {
            font-size: clamp(36px, 5vw, 56px);
            margin-bottom: 16px;
        }
        
        .ps-subtitle {
            font-size: 22px;
            color: var(--text-light);
        }
        
        .ps-grid {
            display: grid;
            grid-template-columns: 1fr 1px 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .ps-divider {
            background: linear-gradient(180deg, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
        }
        
        .ps-column h3 {
            font-size: 26px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .ps-column h3::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
        }
        
        .ps-column.products h3::after {
            background: linear-gradient(90deg, var(--accent), transparent);
        }
        
        /* Service Cards */
        .service-card {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 24px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .service-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
            transform: translateY(-4px);
        }
        
        .service-card.featured {
            background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
        }
        
        .service-icon {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            border-radius: 14px;
            overflow: hidden;
        }

        .service-icon img {
            width: 54px;
            height: 54px;
            object-fit: contain;
        }

        .service-icon svg {
            width: 26px;
            height: 26px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }
        
        .service-content h4 {
            font-size: 19px;
            margin-bottom: 6px;
        }
        
        .service-content p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .service-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .service-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }
        
        .service-card:hover .service-link svg {
            transform: translateX(4px);
        }
        
        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .product-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 28px 20px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .product-card:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 30px rgba(192, 38, 211, 0.1);
            transform: translateY(-4px);
        }
        
        .product-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            border-radius: 14px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-icon {
            background: linear-gradient(135deg, var(--primary-light) 0%, #ede9fe 100%);
        }

        .product-icon img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .product-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }

        .product-card:hover .product-icon svg {
            stroke: white;
        }
        
        .product-card h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .product-card p {
            font-size: 13px;
            color: var(--text-light);
        }
        
        /* ===== DLA KOGO ===== */
        .dla-kogo {
            background: var(--bg-secondary);
        }
        
        .dla-kogo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .dla-kogo-card {
            background: white;
            border-radius: 24px;
            padding: 48px 40px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .dla-kogo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
            border-color: var(--primary);
        }
        
        .dla-kogo-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.3s ease;
        }
        
        .dla-kogo-card:hover .dla-kogo-icon {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
        }
        
        .dla-kogo-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }
        
        .dla-kogo-card h3 {
            font-size: 26px;
            margin-bottom: 16px;
        }
        
        .dla-kogo-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .dla-kogo-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
        }
        
        /* Subsections */
        .dla-kogo-subsections {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 60px auto 0;
        }
        
        .subsection-card {
            background: white;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .subsection-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
        }
        
        .subsection-card h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .subsection-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* ===== DLACZEGO MY ===== */
        .why-us {
            background: var(--bg);
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .why-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px 28px;
            transition: all 0.3s ease;
        }
        
        .why-card:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
            transform: translateY(-6px);
        }
        
        .why-icon {
            width: 72px;
            height: 72px;
            background: var(--primary-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            overflow: hidden;
        }

        .why-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .why-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }
        
        .why-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .why-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* ===== FAQ ===== */
        .faq {
            background: var(--bg-secondary);
        }
        
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
        }
        
        .faq-question {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            font-size: 17px;
            font-weight: 600;
            color: var(--secondary);
            transition: color 0.2s ease;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question svg {
            width: 24px;
            height: 24px;
            stroke: var(--text-light);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 28px 24px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* ===== CONTACT FORM ===== */
        .contact {
            background: var(--bg-dark);
            color: white;
        }
        
        .contact .section-label {
            color: var(--primary);
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }
        
        .contact-info h3 {
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .contact-detail-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-detail-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--primary);
        }
        
        .contact-detail-text a {
            color: white;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
        }
        
        .contact-detail-text span {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin-top: 2px;
        }
        
        /* Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.2s ease;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 18px;
        }
        
        .form-group select option {
            background: var(--bg-dark);
            color: white;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-submit:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
        }
        
        .form-privacy {
            text-align: center;
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-privacy a {
            color: var(--primary);
            text-decoration: none;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--bg-dark);
            padding: 60px 32px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-brand h4 {
            font-size: 22px;
            color: white;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            font-size: 15px;
        }
        
        .footer-section h5 {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 14px;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.2s ease;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        .footer-legal {
            display: flex;
            gap: 32px;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }
        
        .footer-legal a:hover {
            color: white;
        }

        /* ===== NEWSLETTER ===== */
        .footer-newsletter {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 20px;
            text-align: center;
        }

        .footer-newsletter h3 {
            color: white;
            font-size: 28px;
            margin-bottom: 12px;
        }

        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 28px;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
        }

        .newsletter-btn {
            padding: 16px 32px;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* ===== NEWSLETTER POPUP ===== */
        .newsletter-popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .newsletter-popup.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        .newsletter-popup-content {
            background: white;
            padding: 48px;
            border-radius: 24px;
            max-width: 560px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
        }

        .newsletter-popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 32px;
            color: var(--text-light);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .newsletter-popup-close:hover {
            background: var(--bg-secondary);
            color: var(--text);
        }

        .newsletter-popup h3 {
            font-size: 32px;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .newsletter-popup p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.6;
        }

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

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .footer-newsletter {
                padding: 32px 24px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-popup-content {
                padding: 32px 24px;
            }

            .newsletter-popup h3 {
                font-size: 24px;
            }

            .newsletter-popup p {
                font-size: 16px;
            }
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 24px;
            max-width: 480px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            z-index: 9999;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(120%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .cookie-banner.visible {
            transform: translateY(0);
        }
        
        .cookie-banner.hidden {
            display: none;
        }
        
        .cookie-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        
        .cookie-header svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
        }
        
        .cookie-header h4 {
            font-size: 18px;
            font-weight: 600;
        }
        
        .cookie-banner > p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .cookie-banner a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .cookie-options {
            display: none;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
            padding: 16px;
            background: var(--bg-secondary);
            border-radius: 12px;
        }
        
        .cookie-options.visible {
            display: flex;
        }
        
        .cookie-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .cookie-option-info {
            flex: 1;
        }
        
        .cookie-option-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .cookie-option-desc {
            font-size: 12px;
            color: var(--text-muted);
        }
        
        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
            margin-left: 16px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--border);
            border-radius: 24px;
            transition: all 0.3s ease;
        }
        
        .toggle-slider::before {
            content: '';
            position: absolute;
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .toggle-switch input:checked + .toggle-slider {
            background: var(--primary);
        }
        
        .toggle-switch input:checked + .toggle-slider::before {
            transform: translateX(20px);
        }
        
        .toggle-switch input:disabled + .toggle-slider {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 12px;
        }
        
        .cookie-btn {
            flex: 1;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            border: none;
            font-family: inherit;
        }
        
        .cookie-btn-accept {
            background: var(--primary);
            color: white;
        }
        
        .cookie-btn-accept:hover {
            background: var(--accent);
        }
        
        .cookie-btn-reject {
            background: var(--bg-secondary);
            color: var(--text);
            border: 1px solid var(--border);
        }
        
        .cookie-btn-reject:hover {
            border-color: var(--text-muted);
        }
        
        .cookie-btn-settings {
            background: transparent;
            color: var(--text-light);
            font-size: 13px;
            padding: 10px;
            width: 100%;
            margin-top: 8px;
        }
        
        .cookie-btn-settings:hover {
            color: var(--primary);
        }
        
        /* ===== BLUR REVEAL EFFECT ===== */
        .blur-reveal {
            filter: blur(12px);
            opacity: 0.3;
            transform: translateY(20px);
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blur-reveal.visible {
            filter: blur(0);
            opacity: 1;
            transform: translateY(0);
        }
        
        .blur-reveal-subtitle {
            filter: blur(10px);
            opacity: 0;
            transform: translateY(15px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }
        
        .blur-reveal-subtitle.visible {
            filter: blur(0);
            opacity: 1;
            transform: translateY(0);
        }
        
        .animated-underline {
            position: relative;
            display: inline-block;
        }
        
        .animated-underline::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            opacity: 0.25;
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
            border-radius: 2px;
        }
        
        .animated-underline.visible::after {
            transform: scaleX(1);
        }
        
        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .ps-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .ps-divider {
                display: none;
            }
            
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dla-kogo-subsections {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: stretch;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 8px 0;
                box-shadow: 0 8px 30px rgba(0,0,0,0.1);
                border-top: 1px solid var(--border);
                max-height: calc(100vh - 80px);
                max-height: calc(100dvh - 80px);
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                z-index: 999;
            }

            .nav-menu.mobile-open {
                display: flex;
            }

            .nav-item {
                border-bottom: 1px solid var(--border);
            }

            .nav-item:last-child {
                border-bottom: none;
            }

            .nav-link {
                padding: 14px 20px;
                width: 100%;
                justify-content: space-between;
            }

            .mega-dropdown {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                padding: 0;
                min-width: auto;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
            }

            .mega-dropdown.dropdown-open {
                max-height: 2000px;
                opacity: 1;
                visibility: visible;
                padding: 4px 0 8px 0;
                background: var(--bg-secondary);
                transform: none;
            }

            .nav-link.has-dropdown.dropdown-active::after {
                transform: rotate(180deg);
            }

            .mega-dropdown-grid {
                display: flex;
                flex-direction: column;
                min-width: auto;
            }

            .dropdown-icon {
                display: none;
            }

            .dropdown-item {
                padding: 10px 20px 10px 32px;
                gap: 0;
            }

            .dropdown-title {
                font-size: 14px;
            }

            .dropdown-desc {
                font-size: 12px;
            }

            .serwis-cities {
                max-height: none;
                opacity: 1;
                overflow: visible;
                padding: 4px 20px 8px 32px;
            }

            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-container {
                padding: 0 20px;
            }
            
            section {
                padding: 70px 20px;
            }
            
            .hero {
                padding: 120px 20px 60px;
                min-height: auto;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dla-kogo-grid {
                grid-template-columns: 1fr;
            }
            
            .dla-kogo-subsections {
                grid-template-columns: 1fr;
            }
            
            .why-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .cookie-banner {
                left: 12px;
                right: 12px;
                max-width: none;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }

            /* Comparison table + IDC mobile */
            .comparison-header {
                display: none !important;
            }
            .comparison-row {
                grid-template-columns: 1fr !important;
                border-bottom: 1px solid var(--border) !important;
            }
            .comparison-row > div {
                border-left: none !important;
            }
            .comparison-row > div:first-child {
                padding-bottom: 4px !important;
                font-size: 16px !important;
            }
            .comparison-row > div:nth-child(2) {
                padding-top: 0 !important;
                padding-bottom: 8px !important;
            }
            .comparison-row > div:nth-child(3) {
                border-radius: 0 !important;
            }
            .idc-numbers {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .idc-case-grid {
                grid-template-columns: 1fr !important;
            }
            .idc-case-grid > div:nth-child(2) {
                transform: rotate(90deg);
            }
        }
    