:root {
    --bg-dark: #070707;
    --text-light: #ffffff;
    --bg-light: #fdfdfd;
    --text-dark: #111111;
    --gray: #666666;
    --accent-glow: rgba(255, 255, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* --- GRAIN / NOISE EFFECT --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* --- ANIMACJE --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* --- TOP BAR --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(7,7,7,0.95) 0%, rgba(7,7,7,0) 100%);
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.top-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.top-nav a {
    text-decoration: none;
    color: #aaaaaa;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: var(--text-light);
}

.nav-cta {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--text-light);
    color: var(--bg-dark) !important;
}


/* --- EDITORIAL HERO (POPRAWIONY UKŁAD) --- */
.hero-editorial {
    min-height: 100vh;
    display: grid;
    
    /* Zmiana proporcji siatki: Lewa 1.3 części, Prawa 0.7 części.
       To rozszerza lewą i przesuwa zdjęcie na prawo. */
    grid-template-columns: 1.3fr 0.7fr; 
    
    padding: 10rem 5% 4rem 5%;
    gap: 6rem;
    position: relative;
    align-items: center;
}

/* LEWA STRONA */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-left h1 {
    font-size: 4.8rem;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #999;
    max-width: 85%;
    margin-bottom: 3.5rem;
}

/* HIERARCHIA CTA */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-solid {
    display: inline-block;
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.btn-solid:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-text {
    color: #aaaaaa;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-light);
    transition: width 0.3s ease;
}

.btn-text:hover {
    color: var(--text-light);
}

.btn-text:hover::after {
    width: 100%;
}

.btn-text .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

/* PRAWA STRONA */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 580px; /* Trzyma wszystko w ryzach pionu */
}

.visual-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product-glow {
    width: 100%;
    height: 600px; /* ZDECYDOWANIE POWIĘKSZONE (było 420px) */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Zwiększony promień światła */
    height: 80%;
    
    /* Radial blur w kolorach blue/purple (ok. 10% opacity) */
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(139, 92, 246, 0.08) 40%, rgba(0,0,0,0) 70%);
    
    z-index: -1;
    filter: blur(50px); /* Bardzo miękkie rozproszenie */
}

.hero-product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.05)) contrast(1.05);
}

/* --- MECHANIZM PRZESUWAJĄCEGO SIĘ MARQUEE (OPCJA 3) --- */
.hero-marquee-section {
    width: 100%;
    margin-top: auto;
    padding-top: 2rem;
}

.marquee-title {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

/* Kontener ucinający i blurujący krawędzie */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Głębszy i dłuższy blur na krawędziach (z 15% na 25%) */
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
}


/* Nieskończona gąsienica z logotypami */
.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content; /* Konieczne, by gąsienica się nie łamała */
    animation: scroll-marquee 20s linear infinite;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    /* Przesuwamy dokładnie o POŁOWĘ szerokości gąsienicy (czyli o 1 zestaw logosów) */
    100% { transform: translateX(-50%); }
}

/* Stylizowanie fałszywych logotypów (Grayscale + Subtelność) */
.marquee-track span {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.28; /* Podniesione z bazowego (często na ekranach zlewa się przy 10-15%) */
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
    cursor: default;
    white-space: nowrap;
}

.marquee-track span:hover {
    opacity: 0.85;
    filter: grayscale(0%);
}

/* Różne kroje czcionek dla efektu unikalnych logotypów marek */
.logo-serif { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }
.logo-tech { font-family: 'Space Grotesk', sans-serif; font-weight: 500; letter-spacing: -0.5px; }
.logo-clean { font-family: 'Inter', sans-serif; font-weight: 300; letter-spacing: 0.5px; }
.logo-mono { font-family: monospace; font-weight: bold; letter-spacing: -1px; font-size: 0.95rem !important; }


/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #333 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 15px;
    background: var(--text-light);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(-15px); }
    100% { transform: translateY(40px); }
}

/* --- JASNE SEKCJE --- */
/* --- LISTY CECH (Styl Editorial z liniami) --- */
.features-list span {
    display: block;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* --- CZARNY PRZYCISK (Z drugiego screena) --- */
.btn-dark {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mt-4 {
    margin-top: 1.5rem;
}

.btn-dark:hover {
    background-color: #333333;
    transform: translateX(5px);
}
.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    /* Zmniejszony padding, aby układ był bardziej zwarty */
    padding: 5rem 5%;
}

.step-indicator {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr; 
}

.text-box h3 {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.text-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}


/* RESPANSYWNOŚĆ */
@media (max-width: 1024px) {
    .hero-editorial {
        min-height: 100vh;
    display: grid;
    
    /* Balansujemy siatkę: Lewa strona wciąż mocna, prawa dostaje więcej oddechu */
    grid-template-columns: 1.15fr 0.85fr; 
    
    padding: 10rem 5% 4rem 5%;
    gap: 3rem; /* Zmniejszyliśmy gap z 6rem na 3rem - eliminuje pusty środek */
    position: relative;
    align-items: center;
    }
    .hero-left h1 {
        font-size: 3.8rem;
    }
    .hero-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        /* Usunąłem sztywne max-height, żeby zdjęcie mogło być duże */
        transform: translateY(-20px); /* Optyczne podniesienie prawej kolumny wyżej */
    }
    .scroll-indicator {
        display: none;
    }
}
.hero-product-img {
    max-width: 100%;  /* Zdjęcie nigdy nie będzie szersze niż kontener */
    max-height: 100%; /* Zdjęcie nigdy nie będzie wyższe niż kontener */
    width: auto;      /* Zachowanie proporcji */
    height: auto;     /* Zachowanie proporcji */
    object-fit: contain; /* Dodatkowe zabezpieczenie: dopasuj bez przycinania */
    
    /* Opcjonalnie: podkręcenie kontrastu/jasności o którym rozmawialiśmy,
       jeśli koszulka jest zbyt ciemna na czarnym tle */
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)) contrast(1.1);
}
/* --- CIEMNE SEKCJE (Realizacje) --- */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 5%;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- KARUZELA REALIZACJI --- */
.carousel-wrapper {
    width: 100%;
    max-width: 1200px; /* Blokuje rozciąganie na gigantycznych ekranach */
    margin: 4rem auto 0 auto; /* Środkuje całą karuzelę na stronie */
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    padding: 0 10px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Szybsza i ostrzejsza animacja przesunięcia */
    will-change: transform;
}

.carousel-slide {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
}

.carousel-img {
    width: 100%;
    max-height: 400px; /* Zabezpieczenie przed zbyt wysokimi zdjęciami */
    aspect-ratio: 4/5;
    object-fit: cover; /* Jeśli wolisz by cała koszulka była widoczna bez ucinania krawędzi, zmień na 'contain' */
    border-radius: 4px;
    background-color: #1a1a1a;
    transition: transform 0.6s ease;
}


.carousel-slide:hover .carousel-img {
    transform: scale(0.98);
}

.gallery-info {
    margin-top: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #888;
    font-size: 0.95rem;
}

/* --- RESPONSYWNOŚĆ KARUZELI --- */
@media (max-width: 1024px) {
    .carousel-slide {
        /* 2 elementy na tabletach */
        min-width: calc(50% - 1rem); 
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        /* 1 centralny element na telefonach z kawałkiem następnego (by sugerować scroll) */
        min-width: 85%; 
    }
    .carousel-track {
        gap: 1rem;
    }
}

.placeholder-gallery-img {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: transform 0.4s ease;
}

.gallery-item:hover .placeholder-gallery-img {
    transform: scale(0.98);
}

.gallery-info {
    margin-top: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #888;
    font-size: 0.95rem;
}

/* --- KONTAKT --- */
.contact-section {
    background-color: var(--bg-dark);
    padding: 6rem 5% 10rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left h2 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.contact-left p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 80%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #888;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text-light);
}

.contact-form .btn-solid {
    margin-top: 1rem;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

/* --- PEŁNA RESPONSYWNOŚĆ (Smartfony i małe tablety) --- */
@media (max-width: 768px) {
    .top-bar {
        padding: 1.5rem 5%;
    }
    
    .top-nav {
        display: none; /* Ukrywamy menu na mobile - do zrobienia hamburger menu */
    }

    .hero-editorial {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-right {
        transform: translateY(0);
        margin-top: 2rem;
    }

    .product-glow {
        height: 350px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reverse {
        direction: ltr; /* Resetujemy zmianę kierunku z desktopu */
    }

    .placeholder-content-img {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-left h2 {
        font-size: 2.5rem;
    }
}
/* --- LISTA CHECKLIST (Sprzedażowa) --- */
.check-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.check-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Czarny przycisk z poprzedniego kroku */
.btn-dark {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mt-4 {
    margin-top: 1rem;
}

.btn-dark:hover {
    background-color: #333333;
    transform: translateX(5px);
}
.actual-content-img {
    width: 100%; /* Spada do szerokości kontenera */
    border-radius: 4px;
    object-fit: contain; /* Utrzymuje format bez ucinania */
}
.fixed-ratio-img {
    height: auto; /* KLUCZOWE: Zachowuje naturalne proporcje zdjęcia (np. 16:9) */
    max-height: 500px; /* Maksymalna wysokość, by nie zdominowało ekranu */
}
.text-box {
    display: flex;
    flex-direction: column;
}
.text-box h2 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem; /* Zbliżenie do opisu, tworzy jedną bryłę */
    line-height: 1.1;
}
/* =========================================
   POPRAWKI DLA WERSJI MOBILNEJ (SMARTFONY)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Zapobieganie przesuwaniu się strony na boki */
    body, html {
        overflow-x: hidden;
    }

    /* 2. Sekcja Główna (Hero) */
    .hero-editorial {
        grid-template-columns: 1fr; /* Zmiana na 1 kolumnę */
        padding: 6rem 5% 3rem 5%;
        gap: 2rem;
        text-align: center;
    }
    .hero-left {
        align-items: center; /* Wyśrodkowanie tekstu */
    }
    .hero-left h1 {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    .hero-sub {
        max-width: 100%; /* Pełna szerokość dla opisu */
    }
    .hero-ctas {
        flex-direction: column; /* Przyciski jeden pod drugim */
        width: 100%;
        gap: 1.5rem;
    }
    .hero-ctas .btn-solid, 
    .hero-ctas .btn-text {
        width: 100%;
        margin: 0;
        text-align: center;
        justify-content: center;
    }
    .product-glow {
        height: auto;
        margin-top: 1rem;
    }
    .hero-product-img {
        max-height: 350px;
    }

    /* 3. Sekcje Kroków (Naprawa zgniecionych zdjęć) */
    .content-grid {
        display: flex;
        flex-direction: column; /* Wymuszenie stosu (jedno pod drugim) */
        gap: 2rem;
    }
    /* Ustawiamy zdjęcia zawsze nad tekstem */
    .image-box {
        order: 1;
        width: 100%;
    }
    .text-box {
        order: 2;
        width: 100%;
        text-align: left;
    }
    /* Naprawa proporcji obrazka */
    .actual-content-img.fixed-ratio-img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover; /* Zapobiega spłaszczaniu */
        border-radius: 8px;
    }
    .text-box h2 {
        font-size: 2.8rem;
    }

    /* 4. Tło z wielkim napisem */
    .bg-logo-text {
        font-size: 25vw; /* Powiększenie tekstury na mobile */
        top: 2rem;
    }

    /* 5. Przycisk pobierania PDF */
    .check-list + .btn-dark {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* 6. Kontakt */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .contact-left p {
        max-width: 100%;
    }
    .contact-form .btn-solid {
        width: 100%;
        text-align: center;
    }
}
/* =========================================
   MOCNY RESET SEKCJI HERO NA SMARTFONY
   ========================================= */
@media (max-width: 768px) {
    /* Blokujemy wyciekanie strony na boki */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Zmieniamy z Grid na bezpieczny pionowy Flexbox */
    .hero-editorial {
        display: flex !important;
        flex-direction: column !important;
        padding-top: 7rem !important; 
        padding-bottom: 2rem !important;
        gap: 2rem !important;
        width: 100% !important;
        overflow: hidden !important; 
    }

    /* Wymuszamy pełną szerokość i centrowanie dla obu kolumn */
    .hero-left, .hero-right {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Przywracamy widoczność i wielkość tekstu */
    .hero-left h1 {
        font-size: 2.8rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.1 !important;
    }

    .hero-sub {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        max-width: 90% !important;
    }

    /* Naprawa białego prostokąta - przyciski układają się pod sobą */
    .hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        align-items: center !important;
    }

    .btn-solid {
        width: 85% !important;
        max-width: 280px !important; /* Blokuje rozciąganie na 100% */
        text-align: center !important;
    }

    /* Ściągamy uciekające zdjęcie z powrotem na środek */
    .visual-container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .product-glow {
        width: 100% !important;
        height: 350px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 2rem !important;
    }

    .hero-product-img {
        max-width: 90% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    /* Chowamy gąsienicę z logotypami w ramy ekranu */
    .hero-marquee-section {
        width: 100vw !important; 
        margin-left: -5% !important; 
        overflow: hidden !important;
    }

    /* Na telefonach wyłączamy ten gigantyczny napis w tle - zajmuje za dużo miejsca */
    .bg-logo-text {
        display: none !important;
    }
}