          /* =========================================
           GLOBAL CORE (ZMIENNE I RESET)
           ========================================= */
        :root {
            --bg-color: #0c0c0c;
            --header-bg: rgba(5, 5, 5, 0.85); 
            --header-blur: blur(15px);
            --accent: #d90429;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --font-main: 'Montserrat', sans-serif;
            --max-width: 1400px;
            --card-bg: #121214;

            /* Zmienne PCB (Hero) */
            --pcb-red-bg: #1a0505;
            --copper: #ff9d5c;
            --silver: #e0e0e0;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body { 
            background-color: var(--bg-color);
            color: var(--text-white);
            font-family: var(--font-main);
            overflow-x: hidden;
            padding-top: 110px; 
            line-height: 1.6;
        }

        /* =========================================
           MODUŁ: HEADER & NAV
           ========================================= */
        #garage-header {
            position: fixed; top: 0; left: 0; width: 100%; height: 110px;
            background-color: var(--header-bg);
            backdrop-filter: var(--header-blur); -webkit-backdrop-filter: var(--header-blur);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            z-index: 1000; display: flex; align-items: center; justify-content: center;
            transition: all 0.4s ease-in-out;
        }

        #scroll-progress {
            position: absolute; bottom: 0; left: 0; height: 3px; background: var(--accent);
            width: 0%; box-shadow: 0 0 10px var(--accent); z-index: 1002; transition: width 0.1s linear;
        }

        #garage-header.header-shrink {
            height: 80px; background-color: rgba(0, 0, 0, 0.95);
            box-shadow: 0 0 55px rgba(233, 12, 12, 0.9), 0 0 5px rgba(217, 4, 41, 0.8);
        }

        .header-container {
            width: 100%; max-width: var(--max-width); padding: 0 30px;
            display: flex; justify-content: space-between; align-items: center; height: 100%;
        }

        .logo { display: block; text-decoration: none; line-height: 0; z-index: 1001; cursor: pointer; opacity: 1; transition: opacity 0.3s ease; }
        .logo:hover { opacity: 0.55; }
        @keyframes logoFadeIn { from { opacity: 0; filter: blur(10px); transform: scale(0.95); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
        .logo img { height: 85px; width: auto; object-fit: contain; animation: logoFadeIn 2s cubic-bezier(0.3, 0.8, 0.2, 1) forwards; transition: height 0.6s ease; }
        #garage-header.header-shrink .logo img { height: 50px; }

        .desktop-nav ul { display: flex; list-style: none; gap: 40px; }
        .desktop-nav a {
            text-decoration: none; color: var(--text-gray); font-size: 14px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease; position: relative; white-space: nowrap;
        }
        .desktop-nav a:hover { color: #ffffff; }
        .desktop-nav a.nav-clicked { color: var(--accent) !important; text-shadow: 0 0 15px rgba(217, 4, 41, 0.6); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0%; height: 2px; background-color: var(--accent); transition: 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }

        .contact-btn { display: flex; align-items: center; gap: 12px; color: white; font-weight: 600; font-size: 15px; text-decoration: none; transition: 0.3s; white-space: nowrap; }
        .contact-btn:hover { color: var(--accent); }
        .contact-btn i { color: var(--accent); font-size: 16px; }

        .garage-burger-container { display: none; width: 50px; justify-content: flex-end; align-items: center; height: 100%; }
        .garage-burger-trigger { position: relative; z-index: 999; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; width: 35px; height: 24px; cursor: pointer; }
        .garage-line { height: 2px; background-color: #ffffff; border-radius: 4px; transition: background-color 0.3s ease, width 0.3s ease; }
        .line-1 { width: 100%; } .line-2 { width: 70%; } .line-3 { width: 40%; }
        .garage-burger-container:hover .garage-line { width: 100%; background-color: var(--accent); box-shadow: 0 0 4px rgba(217, 4, 41, 1.0); }
        .garage-burger-trigger.active .garage-line { background-color: var(--accent) !important; width: 100% !important; box-shadow: 0 0 10px rgba(217, 4, 41, 0.9); }

        #garage-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(5, 5, 5, 0.6); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.4s ease; }
        #garage-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
        .garage-links { display: flex; flex-direction: column; align-items: center; gap: 35px; text-align: center; }
        .garage-links a { color: #ffffff; font-family: var(--font-main); font-size: 22px; font-weight: 500; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; display: block; opacity: 0; transform: translateY(30px); transition: all 0.3s ease; }
        .garage-links a:hover { color: var(--accent); text-shadow: 0 0 55px rgba(217, 4, 41, 1.0), 0 0 40px rgba(217, 4, 41, 0.3); transform: scale(1.1); }
        .garage-close { position: fixed; top: 30px; right: 30px; font-size: 35px; color: white; cursor: pointer; transition: 0.3s; z-index: 2001; line-height: 1; }
        .garage-close.active { color: var(--accent); transform: rotate(90deg); }
        #garage-overlay.is-open .garage-links a { animation: linkSlideIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
        #garage-overlay.is-open .garage-links a:nth-child(1) { animation-delay: 0.1s; }
        #garage-overlay.is-open .garage-links a:nth-child(2) { animation-delay: 0.15s; }
        #garage-overlay.is-open .garage-links a:nth-child(3) { animation-delay: 0.2s; }
        #garage-overlay.is-open .garage-links a:nth-child(4) { animation-delay: 0.25s; }
        @keyframes linkSlideIn { from { opacity: 0; transform: translateY(30px); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

        @media (max-width: 1250px) {
            .desktop-nav { display: none; } .contact-btn { display: none; } .garage-burger-container { display: flex; }
            #garage-header { height: 80px; padding: 0 20px; } .logo img { height: 45px; } body { padding-top: 80px; }
            #garage-header.header-shrink { height: 60px; } #garage-header.header-shrink .logo img { height: 35px; }
        }

        /* =========================================
           MODUŁ: HERO SECTION
           ========================================= */
        .hero {
            display: flex;
            min-height: 75vh;
            width: 100%;
            background-color: #161618;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .laser-beam-overlay {
            position: absolute; top: 0; left: 0; width: 60%; height: 100%; z-index: 25; pointer-events: none; mix-blend-mode: screen; 
        }

        .laser-core {
            stroke: var(--accent); stroke-width: 2px; stroke-linecap: round;
            filter: drop-shadow(0 0 5px var(--accent)) drop-shadow(0 0 15px #ff0000);
            animation: laserFlicker 0.5s infinite alternate, beamPulse 1s infinite ease-in-out; opacity: 0.9;
        }

        @keyframes laserFlicker {
            0% { stroke-opacity: 1; stroke-width: 2px; }
            50% { stroke-opacity: 0.8; stroke-width: 1.5px; }
            100% { stroke-opacity: 0.95; stroke-width: 6px; filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 20px var(--accent)); }
        }

        @keyframes beamPulse { 0%, 100% { stroke: var(--accent); } 50% { stroke: #ff5e78; } }

        @media (max-width: 1100px) { .laser-beam-overlay { display: none; } }

        /* Hero: Prawa Strona (PCB SVG) */
        .hero-right {
            position: absolute; inset: 0; z-index: 1;
            background-color: var(--pcb-red-bg);
            background-image: radial-gradient(circle at 60% 50%, transparent 20%, #050000 100%);
        }

        .macro-traces { position: absolute; width: 100%; height: 100%; }
        .rails path { stroke: #1a0000; opacity: 0.6; }

        .flow-fast { stroke-dasharray: 80 400; stroke-dashoffset: 400; animation: flow 2s linear infinite; }
        .flow-mid  { stroke-dasharray: 120 600; stroke-dashoffset: 600; animation: flow 3.5s linear infinite; }
        .flow-slow { stroke-dasharray: 150 800; stroke-dashoffset: 800; animation: flow 6s linear infinite; }
        @keyframes flow { to { stroke-dashoffset: -1000; } }

        .pad-light { animation: padPulse 2s infinite ease-in-out; }
        @keyframes padPulse {
            0%, 100% { opacity: 0.4; fill: #aaa; }
            50% { opacity: 1; fill: #fff; filter: drop-shadow(0 0 5px #fff); }
        }

        /* Hero: Lewa Strona (Tekst) */
      .hero-left {
            position: absolute; top: 0; left: 0; bottom: 0; width: 60%; background: #161618; z-index: 20;
            display: flex; align-items: center; padding-left: 10%;
            clip-path: polygon(0 0, 90% 0, 75% 100%, 0 100%);
            filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)) !important;
        }

        .hero-left::after {
            content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 2px; 
            background: linear-gradient(to bottom, transparent, var(--accent), transparent); opacity: 0.7;
        }

        .hero-content { max-width: 550px; padding-right: 50px; }
        .hero-subtitle { color: #ff3333; font-family: sans-serif; letter-spacing: 2px; font-size: 14px; font-weight: 700; display: block; margin-bottom: 20px; }
        .hero-left h1 { color: #fff; font-size: clamp(35px, 4vw, 65px); line-height: 1.3; font-weight: 800; margin-bottom: 30px; }
        .hero-left p { color: #aaa; font-size: 16px; line-height: 1.6; max-width: 90%; margin-bottom: 40px; }
        .hero-btn { background: rgba(255,255,255,0.05); color: #fff; padding: 15px 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
        .hero-btn:hover { background: var(--accent); border-color: var(--accent); }

        .mobile-hero-img-container { display: none; }

        /* Hero: Callouts */
        .callout { position: absolute; z-index: 10; display: flex; flex-direction: column; }
        .pos-1 { top: 58%; left: 60%; } .pos-2 { top: 20%; left: 65%; } .pos-3 { bottom: 30%; right: 20%; } 

        .anchor-point { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 5px #fff; z-index: 2; }
        .callout-line { width: 1px; height: 30px; background: rgba(255,255,255,0.3); margin-left: 2.5px; }
        .callout-box { background: rgba(0,0,0,0.9); border: 1px solid rgba(255,255,255,0.2); padding: 4px 10px; margin-left: 10px; border-left: 2px solid #ffaa00; }
        .box-red { border-left: 2px solid #ff3333; }
        .label-title { display: block; font-family: monospace; font-size: 9px; color: #888; }
        .label-value { display: block; font-family: monospace; font-size: 11px; font-weight: 700; color: #fff; }
        .blink-text { animation: blink 0.5s infinite alternate; color: #ffaa00; }
        @keyframes blink { 0% { opacity: 0.5; } 100% { opacity: 1; } }

        /* Hero: Mobile Overrides */
        @media (max-width: 1100px) {
            .hero { display: flex; flex-direction: column; height: auto; min-height: 100vh; padding-top: 140px; background-color: #161618; overflow: hidden; }
            .hero-left { position: relative; width: 100%; height: auto; background: transparent; padding: 0 25px 0 25px; z-index: 20; text-align: center; clip-path: none; filter: none; margin: 0; }
            
            .mobile-hero-img-container {
                display: block; width: 90%; margin: 40px auto 0 auto; position: relative; z-index: 25; will-change: transform; 
                clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
                filter: drop-shadow(0 10px 15px rgba(217, 4, 41, 0.2));
            }
            .mobile-hero-img-container img { width: 100%; height: auto; display: block; transform: scale(1.1); transition: transform 0.5s ease; }
            .mobile-hero-img-container:active img { transform: scale(1.0); }

            .hero-left::after {
                content: ''; display: block; width: 1px; height: 60px; margin: 10px auto; 
                background-image: linear-gradient(to bottom, transparent 0%, var(--accent) 50%, transparent 100%); opacity: 0.5;
            }

            .laser-beam-overlay { display: none !important; }
            .hero-content { padding: 0; margin: 0 auto; }
            .hero-left h1 { font-size: 32px; margin-bottom: 20px; }
            .hero-btn { width: 50%; justify-content: center; }

            .hero-right { position: relative; width: 100%; height: 300px; background-color: #161618; z-index: 10; margin-top: 0px; border: none !important; mask-image: none !important; -webkit-mask-image: none !important; overflow: hidden; }
            .hero-right::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, #161618 10%, rgba(22, 22, 24, 0) 100%); z-index: 15; pointer-events: none; }
            .hero-right svg defs filter, .hero-right svg g[filter] { filter: none !important; }
            .macro-traces { width: 100%; height: 100%; transform: scale(1.4) translateY(10%); opacity: 0.8; }

            .rails path { stroke: #2a2a2e !important; opacity: 0.5 !important; }
            .flow-fast, .flow-mid, .flow-slow { animation: none !important; stroke: var(--copper) !important; opacity: 0.6 !important; stroke-dasharray: 0 !important; }
            .pad-light { animation: none !important; fill: #fff !important; opacity: 0.9 !important; }

            .pos-2, .pos-3, .pos-4 { display: none !important; }
            .pos-1 { top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 30; }
            .blink-text { animation: none !important; opacity: 1 !important; }
            .callout-box { background: rgba(0,0,0,0.9) !important; border: 1px solid #444 !important; }
        }

        /* =========================================
           MODUŁ: SEKCJA BIAŁA (O FIRMIE)
           ========================================= */
        .section-white { position: relative; background-color: #ffffff; color: #111; padding: 100px 0; overflow: hidden; z-index: 50; }
        .bg-blob { position: absolute; top: 50%; left: -10%; width: 600px; height: 600px; background-color: #e0f2fe; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translateY(-50%) rotate(-15deg); z-index: 1; opacity: 0.6; pointer-events: none; }
        .white-container { max-width: var(--max-width); margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .image-wrapper { position: relative; }
        .organic-shape-img { width: 100%; height: auto; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: border-radius 0.5s ease; object-fit: cover; aspect-ratio: 1 / 1; }
        .organic-shape-img:hover { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
        .content-wrapper { display: flex; flex-direction: column; align-items: flex-start; }
        .accent-subtitle { color: #3b82f6; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; }
        .section-title { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 25px; color: #111; }
        .section-text { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 35px; }
        .btn-dark { background-color: #333; color: #fff; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: background 0.3s; }
        .btn-dark:hover { background-color: var(--accent); }
        @media (max-width: 900px) {
            .white-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .content-wrapper { align-items: center; }
            .bg-blob { width: 300px; height: 300px; left: 50%; top: 20%; transform: translate(-50%, -50%); }
            .section-title { font-size: 32px; }
        }

        /* =========================================
   MODUŁ: USŁUGI (SERVICES) - TECH GRID
   ========================================= */
.section-services {
    background-color: var(--bg-color, #050505);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.service-header {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.service-header span {
    color: var(--accent, #d90429);
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* SIATKA KART */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    
    /* Domyślny stan: widoczny (fallback dla braku JS) */
    opacity: 1;
    transform: translateY(0);
    
    /* Standardowe przejścia dla hovera */
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

/* Stan początkowy animacji (nadawany przez JS) */
.service-card.observer-ready {
    opacity: 0; /* Ukryj, czekaj na sygnał */
    transform: translateY(40px); /* Przesuń w dół */
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* Stan końcowy animacji (nadawany przez Observer) */
.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Efekt Hover */
.service-card:hover {
    transform: translateY(-5px); 
    border-color: var(--accent, #d90429);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card i {
    font-size: 28px;
    color: var(--accent, #d90429);
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #999;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 90%; 
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-services { padding: 80px 0; }
    .service-header h2 { font-size: 32px; }
    .services-grid { gap: 16px; padding: 0 20px; }
    .service-card { padding: 30px; }
}


        /* =========================================
           MODUŁ: SLOT MACHINE (LIGHT MODE v3)
           ========================================= */
        #slot-machine-brands {
            position: relative;
            background-color: #f4f4f5; 
            color: #18181b; 
            padding: 100px 0;
            overflow: hidden;
            border-top: 1px solid #e4e4e7;
        }

        .light-grid-bg {
            position: absolute; inset: 0;
            background-image: 
                linear-gradient(#e4e4e7 1px, transparent 1px),
                linear-gradient(90deg, #e4e4e7 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.6;
            z-index: 1;
        }
        .light-grid-bg::after {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle, transparent 20%, #f4f4f5 90%);
        }

        .brands-container-slot {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .slot-header { margin-bottom: 60px; }

        .slot-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 42px;
            line-height: 1.1;
            font-weight: 700;
            color: #18181b;
        }

        .highlight-red {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        .highlight-red::after {
            content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px;
            background: rgba(217, 4, 41, 0.2); z-index: -1; transform: skewX(-20deg);
        }

        /* --- RAMA MASZYNY --- */
        .slot-machine-frame {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px 35px; /* Dodane 15px po bokach (20+15=35) */
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 
                0 20px 40px -10px rgba(0,0,0,0.1),
                0 0 0 1px rgba(0,0,0,0.05);
            position: relative;
            margin-bottom: 40px;
        }

        /* OKNO POJEDYNCZEGO SLOTA */
        .slot-window {
            width: 200px;
            height: 200px;
            background: #fafafa;
            border: 1px solid #e4e4e7;
            border-radius: 12px;
            position: relative;
            overflow: hidden; 
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: crosshair;
        }

        .slot-window:hover {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(217, 4, 41, 0.15);
            z-index: 10;
        }

        .slot-reel img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            filter: grayscale(100%) brightness(0); 
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .slot-window:hover .slot-reel img {
            filter: grayscale(0%) brightness(1) drop-shadow(0 5px 15px rgba(0,0,0,0.2));
            opacity: 1;
            transform: scale(1.1);
        }

        .blur-spin {
            animation: spinEffect 0.4s ease-out;
        }

        @keyframes spinEffect {
            0% { transform: translateY(-150%); filter: blur(10px) grayscale(100%) brightness(0); opacity: 0; }
            50% { filter: blur(5px) grayscale(100%) brightness(0); }
            100% { transform: translateY(0); filter: blur(0) grayscale(100%) brightness(0); opacity: 0.7; }
        }

        .slot-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.02) 100%);
            pointer-events: none;
            z-index: 5;
        }

        .slot-footer-text {
            height: 30px;
            overflow: hidden;
        }
        .slot-footer-text p {
            font-family: 'Space Grotesk', sans-serif; 
            font-weight: 600;
            color: var(--accent);
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0;
            animation: textSlideUp 0.5s ease-out;
        }

        @keyframes textSlideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @media (max-width: 768px) {
            .slot-machine-frame { gap: 10px; padding: 25px; }
            .slot-window { width: 120px; height: 120px; }
            .slot-reel img { width: 45px; height: 45px; }
            .slot-title { font-size: 32px; }
        }

        /* =========================================
           MODUŁ: FOOTER
           ========================================= */
        footer {
            background-color: #050505;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 80px 0 30px 0;
            font-size: 14px;
        }

        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col ul li a { color: var(--text-gray); text-decoration: none; transition: 0.2s; }
        .footer-col ul li a:hover { color: var(--accent); }

        .footer-contact p { color: var(--text-gray); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .footer-contact i { color: var(--accent); }

        .copyright {
            text-align: center;
            color: #444;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        @media(max-width: 900px) {
            .footer-container { grid-template-columns: 1fr; gap: 40px; }
        }

    /* =========================================
   MODUŁ: WHY US & PROCESS (BIAŁY TECH)
   ========================================= */
.section-process {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #111;
}

/* Dekoracja: Ścieżki PCB po bokach */
.tech-lines-decor {
    position: absolute;
    top: 0; bottom: 0;
    width: 150px;
    opacity: 0.05;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        45deg,
        #000 0,
        #000 1px,
        transparent 1px,
        transparent 10px
    );
}
.tech-lines-decor.left { left: -50px; transform: skewX(-20deg); }
.tech-lines-decor.right { right: -50px; transform: skewX(20deg); }

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- SEKCJA: DLACZEGO MY --- */
.why-us-wrapper {
    text-align: center;
    margin-bottom: 100px;
}

.process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    
    /* ANIMACJA WEJŚCIA */
    opacity: 1;
    transform: translateY(0);
    transition: 
        opacity 0.6s ease-out,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.why-item i {
    color: var(--accent);
    font-size: 20px;
    background: rgba(217, 4, 41, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- SEKCJA: PROCES (KROKI) --- */
.steps-wrapper {
    text-align: center;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    border: 2px solid #e5e5e5;
    padding: 30px 20px;
    border-radius: 8px;
    width: 250px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    text-transform: uppercase;
    background: #fff;
    position: relative;

    /* ANIMACJA TRANSITION */
    /* Ważne: dodajemy border-color i transform do transition, żeby "mruganie" było płynne */
    transition: 
        opacity 0.8s ease-out,
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.5s ease, 
        box-shadow 0.5s ease;
    will-change: opacity, transform, border-color;
    
    /* Domyślny stan (widoczny, JS zmieni na hidden na start) */
    opacity: 1;
    transform: translateY(0);
}

/* Klasy pomocnicze do JS (Reveal on Scroll) */
.why-item.reveal-hidden,
.step-card.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
}

.why-item.reveal-active,
.step-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Styl Aktywny (Hover LUB Automatyczna Pętla) */
.step-card:hover,
.step-card.step-highlight {
    border-color: var(--accent);
    transform: translateY(-8px); /* Lekkie uniesienie */
    box-shadow: 0 15px 30px rgba(217, 4, 41, 0.1);
    z-index: 2; /* Żeby cień nie był przycięty */
}

/* Podświetlenie numerka w tle */
.step-card::after {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    color: #e5e5e5;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 30px;
    transition: color 0.5s ease;
}

.step-card:hover::after,
.step-card.step-highlight::after {
    color: var(--accent);
}

.step-arrow {
    color: var(--accent);
    font-size: 24px;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .steps-grid { flex-direction: column; gap: 40px; }
    .step-arrow { transform: rotate(90deg); }
    .process-title { font-size: 24px; }
    .why-item { font-size: 16px; text-align: left; width: 100%; }
}


    