/* widok3d.css */





/* Reset i font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}





body {
    background: #121212;
    background: #fff;
    color: #1a1a1a;

    -webkit-font-smoothing: antialiased;
    /* Safari, Chrome */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    text-rendering: optimizeLegibility;
    /* wyraźne kerning i ligatury */
}

/* === NAVBAR === */
/* .navbar {
    background: #121212;
    color: #fff;
    padding: 1rem 2rem;
} */

hr {
    border: none;
    /* usuwa domyślną kreskę */

    background-color: #ccc;
    /* kolor */

    margin: 30px auto;
    /* odstępy i wyśrodkowanie */
    border: 0;
    height: 1px;
    background: #ddd;

}

.navbar {
    position: fixed;
    /* przyklejony do viewportu */
    top: 0;
    /* od górnej krawędzi */
    left: 0;
    /* od lewej krawędzi */
    width: 100%;
    /* zajmuje całą szerokość */
    z-index: 9999;
    /* pierwszy plan, nad wszystkimi elementami */
    padding: 1rem 2rem;
    background: #121212;
    background: #1f1f1f;
    background: #131313;
    background: #0f0f0f;
    background: #141414;
    /* lub inny kolor tła */
    height: 66px;
    line-height: 66px;    

    /* wyrównanie tekstu w pionie */
    padding: 0 2rem;
    padding: 2.3rem 2rem;
    /* poziome odstępy */
    display: flex;
    align-items: center;
    /* wyrównanie elementów w pionie */
    /* border-bottom: 1px solid #1b1b1b; */
}

.nav-inner {

    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    /* border: 1px solid green */
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    /* ustawia obraz i tekst w jednej linii */
    align-items: center;
    /* wyśrodkowanie w pionie */
    font-weight: 500;
    font-size: 1.125rem;
    font-size: 1.0625rem;
    font-size: 1.3rem;
    letter-spacing: 0.04rem;
    color: #eee;
    text-decoration: none;
    cursor: pointer;
    gap: 0.8rem;
   
    /* odstęp między logo a tekstem */
}


.nav-logo-img {
    /* width: 32px; */
    width: 24px;
    /* tu podajesz rozmiar logo */
    height: auto;
    /* proporcje same się zachowają */
    transition: transform 0.3s ease;

}


.nav-logo span {
    transition: opacity 0.3s ease ;
}

.nav-logo:hover span {
    /* opacity: 0.86; */
}

.nav-logo:hover .nav-logo-img {
    transform:  scale(1.25);
    opacity: 1 !important;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;


    font-weight: 700;
    font-size: 1rem;

    background: #53bacc;
    background: white;
    color: white;
    color: #111;
    border: 1px solid #53bacc;
    border: 1px solid white;


   

    padding: 0.5rem 2rem; 
    padding: 0.8rem 2rem; 
    
    
    
    cursor: pointer;
    transition: background 0.2s;

    outline: 1px transparent;
    transition: outline 0.25s ease, border-color 0.25s ease, background 0.4s ease, transform 0.1s ease;
}

.nav-btn:hover {
    outline: 1px solid #ebf3f5; 
    
    background: #ebf3f5;
    border-color: #ebf3f5;  
    color: #000;

}

.nav-btn-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.5rem;
    color: #444;
    /* color: #fff; */
    display: flex;
    align-items: center;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.nav-btn:hover .nav-btn-icon { 
    opacity: 1;
    color: #222;
    font-weight: 400;
    transform: translateX(2px);
}


.nav-btn .btn-text {
    display: flex;
    align-items: center;
    line-height: 1.15;
}


/* Transparentny przycisk z ikoną po lewej */
.nav-btn-transparent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* odstęp między ikoną a tekstem */
    /* background: rgba(255, 255, 255, 0.04); */
    background: transparent;
    border: none;
    /* lub inny kolor */
    color: #ddd;
    line-height: 1;
     /* border-radius: 4px; */
    padding: 0.78rem 2rem; 
    font-size: 0.9rem;
    outline: 1px solid transparent;
    font-weight: 400;
    text-decoration: none;

    cursor: pointer;
    transition: color 0.15s ease, outline-color 0.2s ease;
}

.nav-btn-transparent-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.5rem;
    font-weight: 300;
    color: #555;
    line-height: 1;
}

/* Hover */
.nav-btn-transparent:hover {
    /* background: rgba(255, 255, 255, 0.1); */
    outline-color: #666;
    color: #fff;
}





.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    font-size: 2rem;
    color: #fff;
}

.nav-links {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.9375rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px transparent;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    /* border-bottom: 1px solid #333;  */
}



.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.6rem;
    font-weight: 300;
}






/* Widoczność elementów */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* MOBILE */
@media (max-width: 1199px) {
    .navbar {
        height: auto;
        padding: 0 1rem;
        /* wysokość dopasowuje się do zawartości */
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-btn,
    .nav-btn-transparent {
        margin-top: 40px;
    }

    .nav-inner {
        width: 100%;
    }
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    #mobile-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        margin-top: 0.5rem;
        width: 100%;
        margin-bottom: 40px;
        
    }

    #mobile-menu li {
        line-height: 3;
    }

    #mobile-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

     .menu-toggle .icon {
        font-size: 1.75rem;
    }
}

/* DESKTOP */
@media (min-width: 1200px) {
    .navbar {
        height: 66px;
        /* sztywna wysokość tylko na desktop */

        display: flex;
        align-items: center;
        /* centrowanie treści w pionie */
    }

    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none !important;
    }

    .nav-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;

    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}








/* -------------------- FOOTER start ----------------- */

.footer-container {
    background: #131313;
    border-top: 1px solid #222;

}

.footer-wrapper {
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;;

    padding: 3rem 0 3rem;
    color: #eee;
    flex-wrap: wrap;
    /* pozwala zawijać wiersze na małych ekranach */

    margin-top: auto;
    margin: 0 auto;
}



/* prawa część: kontakt */
.footer-right {

    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-contact {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-size: 0.93rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-contact span {
    color: #aaa;
    margin: 0 0.15rem;
}
.footer-contact:hover {
    opacity: 0.8;
}

 .footer-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1;
    vertical-align: middle;
    color: #555;
}

/* 🔽 RESPONSYWNOŚĆ 🔽 */
@media (max-width: 768px) {
    .footer-wrapper {
         padding: 3rem 2rem 3rem;   
    }
    
    .footer-right {
        flex-direction: column;
        text-align: right;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .footer-btn-transparent {
        margin-top: 20px;
    }
}

.footer-btn-transparent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #aaa;
    color: #ccc;
    line-height: 1;
     /* border-radius: 4px; */
    padding: 0.78rem 2rem; 
    font-size: 0.9rem;
    outline: 1px solid transparent;
    font-weight: 400;
    text-decoration: none;

    cursor: pointer;
    transition: color 0.15s ease, border 0.2s ease;
}

.footer-btn-transparent:hover {
    color: #ddd;
    border: 1px solid #ddd;
}

/* -------------------- FOOTER start ----------------- */




/* -------------------- HERO start ----------------- */


#hero .hero-container {
    background: #111;

    padding-top: 60px;
    /* navbar */


}

#hero .hero-back {

    position: relative;
    background-image: url('../img/hero-widok3d.webp');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    /* display: flex;
            align-items: center;   
            justify-content: center; */
    padding: 40px 20px;

    opacity: 0;
    animation: FadeIn 0.8s ease-in-out forwards;
}

#hero .hero-onlymobile {

    position: relative;
    background-image: url('../img/hero-widok3d-mobile.webp');
    background-size: cover;
    background-position: center;
    min-height: 70vh;

    opacity: 0;
    animation: FadeIn 0.8s ease-in-out forwards;
    display: none;
}


/* animacja powiększenia i powrotu */
@keyframes FadeIn {
    0% {
        /* transform: scale(0.7); */
        opacity: 0;
    }

    100% {
        /* transform: scale(1);   */
        opacity: 1;
    }
}


#hero .bottom-right-bubble {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Kontener na bańki */

#hero .right-bubbles-container {
    position: absolute;
    top: 50%;
    /* bottom: 100px; */
    left: 160px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* centrowanie bąbelków pod tytułem */
    gap: 20px;
}

#hero .right-bubbles-title {
    font-size: 14rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); */
    line-height: 1.1;
    margin: 0;

    opacity: 0;
    transform: scale(0.6);
    animation: ScaleIn 0.2s ease-in-out forwards;
    animation-delay: 1.2s;
}



#hero .right-bubbles-title .break {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #d1d1d1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin-bottom: 60px;
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); */
}



/* animacja powiększenia i powrotu */
@keyframes ScaleIn {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    50% {

        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



#hero .right-bubbles {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 26px;
    z-index: 2;
}

#hero .right-bubbles .title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

/* Pojedyncza bańka */
#hero .bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Ikona w kółku */
#hero .bubble .icon {
    font-family: 'Material Symbols Outlined';
    background: white;
    width: 80px;
    height: 80px;
    font-size: 2.6rem;
    font-weight: 400;
    color: #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    animation: pulse-bubble 3.5s infinite ease-in-out;
}


@keyframes pulse-bubble {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    10% {
        transform: scale(1);
        opacity: 1;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); */

    }

    90% {
        transform: scale(1);
        opacity: 1;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); */

    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}



/* Napis pod ikoną */
#hero .bubble span {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}




#hero .long-bubble {

    position: absolute;
    top: 60px;
    left: 120px;


    background: white;
    color: #666;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    /* usuwa podkreślenie */
    cursor: pointer;
    transition: all 0.3s ease;
}

#hero .long-bubble strong {
    font-weight: 800;
    color: #444;
}

#hero .long-bubble .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.7rem;
    color: #666;
    line-height: 1;
    margin-right: 6px;
}

/* HOVER */
#hero .long-bubble:hover {
    background: #222;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#hero .long-bubble:hover strong,
#hero .long-bubble:hover .icon {
    color: #aaa;

}



#hero .hero-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 180px;
    position: relative;
    z-index: 2;
    /* treść nad gradientem */
}

#hero .hero-text {
    flex: 1 1 400px;
    padding: 20px;
}



#hero .hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

#hero .form-card {
    position: absolute;
    right: 22%;
    top: 40%;
    transform: translateY(-40%) scale(0.3);
    /* przesunięcie + skalowanie */


    max-width: 420px;
    width: 100%;
    padding: 40px 50px;
    /* border-radius: 8px; */
    background-color: white;

    background: linear-gradient(-30deg, #fff, #ebf7fa);

    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
    text-align: left;
    z-index: 1;

    /* animacja */
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.15s ease-in-out;
    transition-delay: 0.1s;
}

/* animacja pojawienia się formularza */
#hero .form-card.show {
    opacity: 1;
    transform: translateY(-40%) scale(1);
}





#hero .form-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    line-height: 1.1;
    margin: 0;
}

#hero .form-top p {
    line-height: 1.1;
    font-size: 2.8rem;
    font-weight: 800;
    color: #444;
    margin: 0;
}

#hero .form-top strong {
    font-size: 3.5rem;
    font-weight: 700;
    color: #444;
}


#hero .form-top img {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.2s ease;
}

#hero .form-card:hover .form-top img {
    transform: scale(0.9);
    opacity: 0.7;
}

#hero .form-card:hover {
    transition-delay: 0s;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}



#hero .form-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    gap: 10px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 10px 12px 40px 0;
}

#hero .form-header-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.3rem;
    font-weight: 300;
    color: #888;
}




#hero .form-price {
    font-size: 1.5rem;
    color: #444;
    font-weight: 600;
    letter-spacing: -1px;
    word-spacing: 0.2rem;
    text-align: center;
    line-height: 1;
    margin: 10px 0 20px 0;
    background: transparent;


}

#hero .form-price-small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #777;
    text-align: center;
    padding: 0 20px 10px;
    margin: 0;
}



#hero .form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    background: #53bacc;

    color: white;
    padding: 16px 24px;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    /* border-radius: 6px; */
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease-in-out !important;
    line-height: 1;
}


#hero .form-btn:hover {
    opacity: 0.8;
    transition: 0.2 ease-in-out !important;
}


#hero .form-btn .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    display: flex;
    /* flex wewnątrz dla lepszego wyrównania */
    align-items: center;
    /* pionowe wyśrodkowanie ikony */
    line-height: 1;

}


#hero .toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#hero .toggle-buttons button {
    border: 0;
    outline: 0;
    flex: 1;
    padding: 10px;
    background: #f5f9fa;
    background: rgba(83, 186, 204, 0.1);
    color: #999;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.5s ease, color 0.5s ease;
}

#hero .toggle-buttons button:nth-child(1) {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

#hero .toggle-buttons button:nth-child(2) {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

#hero .toggle-buttons button:hover {
    background: rgba(83, 186, 204, 0.16);
    transition: background 0.25s ease, color 0.25s ease;
}

#hero .toggle-buttons .active {
    background: rgba(83, 186, 204, 0.26);

    color: #53bacc;
    /* color: #666; */
    font-weight: 600;

}


#hero .slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 30px 15px 0 15px;
}

#hero .slider-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    position: relative;
    color: #444;
}

#hero .slider-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


/* sprawdzic co to */
/* #toggle-switch {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ccc;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
} */

#slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    /* będzie nadpisywane w JS */
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

#slider::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
    /* przezroczysty, bo tło ustawia JS */
    border-radius: 3px;
}

#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #53bacc;
    background: #50b8aa;
    /* kolor kropki */
    border: none;
    outline: 4px solid white;
    margin-top: -4px;
    position: relative;
    z-index: 2;
    
}


#hero .tooltip {
    position: absolute;
    top: -50px;
    /* font-size: 1.25rem; */
    font-size: 1.1rem;
    font-weight: 500;
    background: #444;
    background: #48a498;
    color: #fff;    
    /* background: #444; */
    /* color: #fff; */
    padding: 6px 14px;
    border-radius: 40px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.3);
    transition: left 0.5s ease;
    animation: pulse-hero 1.4s infinite ease-in-out;
}


@keyframes pulse-hero {
    0% {
        transform: scale(0.8);
        opacity: 0.9;
    }

    60% {
        transform: scale(1);
        opacity: 1;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); */

    }

    100% {
        transform: scale(0.8);
        opacity: 0.9;
    }
}


#hero .slider-icons {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #53bacc;
    margin-top: 4px;
}



#hero .slider-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 26px;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #53bacc;
    opacity: 0.9;
}

#hero .slider-icon.scale-up {
    transform: scale(1.25);
    color: #53bacc;
    opacity: 0.9;
}




@media (max-width: 1200px) {

     #hero .hero-onlymobile {
        display: block;
     }

    #hero .hero-content {
        margin: 0 auto;
        /* usuwa margin: 180px */
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;

    }


    #hero .hero-back {
        min-height: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* pionowe centrowanie dzieci */
        /* background-image: url('../img/hero-widok3d-mobile.webp'); */
        background-image: none;
         
    }

    #hero .right-bubbles-container {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 0px auto 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: none;

        /* środek w poziomie */
        justify-content: flex-start;
        
        text-align: center;

    }



    #hero .form-card {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        margin: 0 auto;
        padding: 140px 40px;
        width: 100%;
        max-width: 400px;
        max-width: 100%;
        background: white;
        border-radius: 0;
        opacity: 0;
        transition: transform 0.2s ease, opacity 0.35s ease;
    }

    #hero .form-card.show {
        transform: scale(1);
        opacity: 1;
    }

    #hero .right-bubbles-title {
        text-align: center;
         font-size: 9rem;
        font-weight: 600;
        animation-delay: 0.5s;
    }

    #hero .right-bubbles-title .break {
        font-size: 1.7rem;
        font-weight: 800;
    }
    
    #hero .right-bubbles {
        flex-direction: row;
        /* pionowo na mobile */
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }


    /* Ikona w kółku */
#hero .bubble .icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: 400;
   
}
    #hero .long-bubble {
        display: none;
    }



}

/* -------------------- HERO end  ----------------- */



/* -------------------- BIG-IMAGE start  ----------------- */

    #big-image {
        margin: 0;
        padding: 0;
        background: #161616;
    }


.big-image-container {
  position: relative;
  width: 100%;
  min-height: 90vh; /* maksymalna wysokość desktop */
  overflow: hidden; 
}

/* big-scroll-wrapper */
.big-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Obrazek desktop */
.big-scroll-wrapper img.responsive-img {
  display: block;
  width: 100%;   /* dopasowanie szerokości */
  height: auto;  /* proporcjonalna wysokość */
  max-width: none;
}

/* Ikona */
.big-image-container .icon {
     font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 2.2rem;
    width: 50px;
    height: 50px;

    color: #444;

  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  padding: 10px;
  
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 999px) {
    .big-image-container {
        padding-bottom: 60px;
    }
  .big-scroll-wrapper {
    overflow-x: auto; /* swipe natywny */
    overflow-y: hidden;
    white-space: nowrap;
  }

  .big-scroll-wrapper img.responsive-img {
    height: 800px;      /* ustawiona wysokość */
    width: auto !important; /* proporcjonalna szerokość */
    padding: 100px 20px;
  }
}


/* Desktop - min-width 1000px, możesz dopasować */
@media (min-width: 1000px) {
  .big-image-container {
    display: flex;
    justify-content: center; /* poziome wyśrodkowanie */
    align-items: center;     /* pionowe wyśrodkowanie */
    width: 100%;
    /* max-height: 90vh; */
    overflow: hidden;
    padding-bottom: 200px;
  }

  .big-scroll-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .big-scroll-wrapper img.responsive-img {
    display: block;
    max-width: 100%;   /* nie powiększa ponad naturalną szerokość */
    max-height: 100%;  /* nie powiększa ponad wysokość kontenera */
    width: auto;       /* zachowuje proporcje */
    height: auto;
  }
}


/* -------------------- BIG-IMAGE end  ----------------- */









/* -------------------- MODAL start ----------------- */

#modal-buy .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    
    /* glass effect */
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%); /* Safari */
    will-change: opacity, visibility;

    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    ;
    z-index: 999999;


}

#modal-buy .overlay.active {
    opacity: 1;
    visibility: visible;
}




#modal-buy .modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 960px;
    width: 100%;
    display: flex;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;

        background: #fff;
        /* background: linear-gradient(180deg, #fff, #f1f7f8); */
        background: linear-gradient(180deg, #fff, #f5f9fa);
    /* align-items: stretch;  */
}

#modal-buy .overlay.active .modal {
    transform: scale(1);
    opacity: 1;
}

#modal-buy .overlay.closing .modal {
    transform: scale(0.8);
    opacity: 0;
}

#modal-buy .modal-left {
    flex: 1;
    padding: 24px 28px;
}

#modal-buy .modal-right {
    flex: 1;

    background-image: url('../img/modal-img_sm.webp'); /* ścieżka do obrazu */
    background-size: cover;       /* wypełnia cały kontener i zachowuje proporcje */
    background-position: center;  /* wyśrodkowanie obrazu */
    background-repeat: no-repeat; /* brak powtarzania obrazu */
}

#modal-buy .modal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #modal-buy .modal {
        flex-direction: column;
        width: 94%;
    }

    #modal-buy .modal-right {
        display: none;
    }
}

#modal-buy .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    
}

#modal-buy .header h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #444;
    /* color: #7da885; */
}

#modal-buy .close-btn {
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
}


#modal-buy .close-btn:hover {
    color: #444;
}

#modal-buy .steps {
    display: flex;
    justify-content: space-between;
    position: relative;


}

#modal-buy .steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #f5d9e4;
    background: #d5e6e9;

    transform: translateY(-50%);
    z-index: 0;
}




#modal-buy .step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 0 6px;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    color: #79c2be;   
    color: #555;
}

#modal-buy .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fdeaf2;
    background: #e2f4f7;

    color: #777;
    color: #53bacc;
   
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    margin-right: 6px;
}


@media (max-width:1000px) {
    #modal-buy .circle {
        width: 32px;
        height: 32px;
    }
}

#modal-buy .step.active .circle {
    background: #e91e63;
    background: #53bacc;
  
    /* background: #9dcfa6; */


    color: #fff;
}

#modal-buy .step.active {
    color: #e91e63;
    color: #53bacc;
  
    
    font-weight: 600;

    font-size: 1rem;
}


#modal-buy h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 12px;
}

/* Kontener kroku */
#modal-buy .step-content {
    display: none;
    max-width: 360px;
    max-width: 100%;
    margin: 24px auto 20px auto;
    text-align: center;
}

#modal-buy .step-content.active {
    display: block;
}


/* Input */
#modal-buy .input-wrapper input {
    width: 100%;
    /* pełna szerokość w obrębie kontenera */
    padding: 14px 16px;
    border: 1px solid #d9e8eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.25s ease;

}

/* Hover */
#modal-buy .input-wrapper input:hover {
    border-color: #b6d6bb;
    box-shadow: 0 0 0 4px rgba(83, 186, 204, 0.08);

    /* delikatna obwódka */
}

/* Focus */
#modal-buy .input-wrapper input:focus {
    border-color: #e91e63;
    border-color: #53bacc;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.18);
    box-shadow: 0 0 0 5px rgb(83, 186, 204, 0.12);

    /* delikatna obwódka */
}



#modal-buy .footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}

#modal-buy .btn-back {
    background: none;
    /* border: 1px solid #ddd; */
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    padding: 10px 24px;
    /* border-radius: 6px; */
    cursor: pointer;
}


#modal-buy .btn-back:hover {
    opacity: 0.8
}

#modal-buy .btn-next {
    background: #e91e63;
    background: #53bacc;



    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    /* border-radius: 6px; */
    padding: 10px 40px;
    cursor: pointer;
}



#modal-buy .btn-next:hover {
    opacity: 0.9
}

/* Ekran końcowy */
#modal-buy .confirmation {
    text-align: center;
    padding: 10px;
    padding: 0;
    margin: 0;

}

#modal-buy .confirmation img {
    max-width: 300px;
    border-radius: 8px;
}

#modal-buy .confirmation h2 {
    font-size: 2rem;
    margin: 15px 0 0;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
}

#modal-buy .confirmation p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 600;
}

#modal-buy .confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

#modal-buy .confirmation-buttons button {
    padding: 12px 24px;
    /* border-radius: 8px; */
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
}

#modal-buy .btn-return {
    font-weight: 600;
    background: transparent;
    border: 1px solid #ddd;
    color: #777;
}

#modal-buy .btn-return:hover {
    opacity: 0.8
}

#modal-buy .btn-gallery {
    background: #e91e63;
    background: #53bacc;
    color: white;
    border: none;
    font-weight: 500;
}

#modal-buy .btn-gallery:hover {
    opacity: 0.9
}


#modal-buy .error-badge {
    display: none;
    background: #efe0f7;
    /* czerwone tło */
    color: #222;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}


/* -------------------- MODAL end ----------------- */



/* -------------------- PRICE start ----------------- */

#price {
    --col1: 220px;
    --colN: 1fr;
    background: #fff;
    background: #141414;
}



#price .price-container {

    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 40px;
    box-sizing: border-box;
    opacity: 1;
    /* animation: FadeIn 1s ease-in-out forwards; */



}

/* Toggle */
#price .toggle-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
}

#price .toggle-switch small {
    color: #777;
}

#price .toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    margin: 60px 0 20px;
}

#price .toggle-header-bottom {
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    padding: 10px 0 40px;
    
}

#price .header-left h2 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 500;
    color: #ddd;
}

#price .header-left p {
    margin: 8px 0 0 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

#price .header-left small {
    margin: 12px 0 0 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
}

#price .header-left-small {
    display: flex;
    align-items: center;
    align-items: flex-start;

    gap: 8px;
    color: #ddd;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-left: 6px;
}

#price .header-left-small-right {
    margin-left: 10px;
}

#price .header-left-small .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1;
    color: #bbb;
    margin-right: 10px;
    align-self: flex-start;   /* najważniejsze */
  display: inline-flex;     /* ułatwia kontrolę wnętrza ikony */
  align-items: center;      /* centroidowanie glypha wewnątrz boxa */
  justify-content: center;
}

#price .header-right {
    display: flex;
    align-items: center;
}

#price .toggle-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    transition:  0.2s ease-in-out;
}

#price .toggle-switch span.active {
    font-size: 1.125rem;
    font-weight: 500;

    color: #fff;
    
    transition:  0.2s ease-in-out;
}

#price .toggle-switch .badge {
    background: #3fc4c9;
    background: linear-gradient(90deg, #27b4b8, #029ac9);
    color: black;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 20px;
}

#price .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

#price .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#price .slider-price {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .3s;
    border-radius: 24px;
}

#price .slider-price:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

#price input:checked+.slider-price {
    background-color: #27b4b8;
    background: linear-gradient(90deg, #27b4b8, #029ac9);
}

#price input:checked+.slider-price:before {
    transform: translateX(20px);
}

/* Pricing Header */
#price .pricing-header {
    background: #141414;
    color: white;
    display: grid;
    grid-template-columns: var(--col1) repeat(4, var(--colN));
    /* grid-template-columns: repeat(4, var(--colN)); */
    align-items: stretch;
    /* border-radius: 12px; */
    overflow: hidden;
    margin-bottom: 40px;
}

#price .header-item {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px; 
}

#price .header-item:nth-child(3) {
    background: #1f1f1f;
}

#price .header-item:not(.header-title):hover {
    background: #222222;
}

#price .header-item:not(.header-title) .header-top {
    position: relative;
}

#price .header-item:not(.header-title) .avatar-icon {
    width: 28px;
    height: 28px;
    transition: width 0.3s ease, border-radius 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 50%;
    padding-left: 0;
}

#price .header-item:not(.header-title):hover .avatar-icon {
    width: 70px;
    border-radius: 14px;
    padding-left: 8px;
    cursor: pointer;
}

#price .header-item:not(.header-title):hover .avatar-icon::before {
    content: "kup";
    color: #1a1a1a;
    font-weight: 600;
    margin-right: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    display: inline-block;
}

#price .header-top {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#price .header-top h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: lowercase;
}

#price .avatar-icon {
    background: white;
    color: #1a1a1a;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

#price .header-item img {
    width: 70%;
    max-width: 600px;
    height: auto;
    margin: 8px 0 16px;
}

#price .header-item .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 600;
    font-size: 20px;
    vertical-align: middle;
    color: #1a1a1a;
}

#price .price {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 15px 0 10px;
}

#price .price-sm {
    font-size: 0.93rem;
    font-weight: 400;
    color: #aaa;
    padding-bottom: 15px;
    word-spacing: 0.25rem;
}

#price .header-item.header-title {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

#price .header-item.header-title h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 500;
    margin-left: 20px;
}

#price .section-pricing-table {
    background: #fff !important;
    /* max-width: 1400px; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    /* padding: 0 0 80px; */
    box-sizing: border-box;
    opacity: 1;
    
    /* animation: FadeIn 1s ease-in-out forwards; */

}



/* Pricing Table */
#price .pricing-table {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    
    border-collapse: collapse;
    /* background: white; */

    border-radius: 12px;
   
}

#price .pricing-table tr {
    display: grid;
    grid-template-columns: var(--col1) repeat(4, var(--colN));
}

#price .pricing-table th,
#price .pricing-table td {
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding: 12px;
}

#price .pricing-table tr:last-child th,
#price .pricing-table tr:last-child td {
    border-bottom: none;
}


#price .pricing-table td:nth-child(n+2) {
    display: flex;
    align-items: center;   /* pion */
    justify-content: center; /* poziom */
}



#price .pricing-table th {
    position: relative;
    padding: 0;
    text-align: left;
    font-weight: 600;
}

    #price .pricing-table th:nth-child(1) {
        /* background: #f7fbfb; */
    }

 


/* Accordion */
#price .accordion-toggle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0 20px 40px;
    cursor: pointer;
}

#price .accordion-text-img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#price .accordion-text {
    font-weight: 600;
    font-size: 1.1rem;
    /* font-size: 1.02rem; */
    line-height: 1.2;
    user-select: none;
    color: #444;
}

#price .accordion-text-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-top: 20px;
    display: block;
}

#price .accordion-chevron {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 2.2rem;
    color: #444;
    user-select: none;
    transition: transform 0.2s ease;
    margin-top: -4px;
}

#price .accordion-toggle[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

#price .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 42px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 12px;
    margin-bottom: 8px;
    color: #666;
}

#price .accordion-content.active {
    max-height: 300px;
    padding-top: 2px;
    padding-bottom: 20px;
}

#price .pricing-table-icon-sm {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-size: 1.25rem;
    color: #333;
}

#price .pricing-table-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 2.2rem;
    color: #27b4b8;
     /* color: #666; */
    color: #14adb3;
    color: #15afb4;
}

#price  .pricing-table tbody  {
  background-color: #f5f9fa;  /* delikatne tło */
 
}
#price  .pricing-table tbody tr:hover {
  background-color: #fff;  /* delikatne tło */
  
  transition: background 0.2s ease;
}

/* FAQ */
.faq-container {
    max-width: 100%;
    /* margin: 40px auto;
    padding: 40px 0; */
    background: #fff;
    background: linear-gradient(30deg, #ffffff, #f3f9fa, #fff);
    background: linear-gradient(30deg, #ffffff, #f6fbfc, #fff);
}

.faq-section {
    max-width: 1400px;
    /* max-width: 1000px; */
    /* margin: 20px auto;
    padding: 20px 20px; */
    margin: 0 auto;
}

.faq-grid {
    padding: 40px 20px;
    display: grid;
    align-items: start;
    /* grid-template-columns: 1fr 3fr; */
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1fr; */
    gap: 80px;
}

.faq-answer {
    display: none;
    padding: 2px 20px 20px 20px;
    font-size: 1.09rem;
    font-size: 1rem;
    font-size: 0.95rem;
    /* font-size: 1.125rem; */
    font-weight: 600;
    /* margin: 10px 0 0 0; */
    color: #333;
    /* color: #11989c; */
}

.faq-answer .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1;
    color: #27b4b8;
    margin-right: 8px;
}


.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle span {
    transition: 0.3s;
}

.faq-item.active .faq-toggle span {
    content: "remove";
}

.faq-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
    padding: 20px 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* usuwa niebieski highlight w mobile */
}

.faq-content-item:hover {
  /* background: #eef7f8;   */
  opacity: 0.7;
  transition: 0.2s ease;
  
}


.faq-content-item.active,
.faq-content-item.active:hover {
  /* opacity: 1 !important; */
  opacity: 1;
  background: none;

  /* transform: scale(0.95); */
    /* animation: ScaleInFaq 0.2s ease-in-out forwards; */
  /* animation: FadeIn 0.2s ease-in-out forwards; */
}

.faq-content-item.active .faq-content-item-text h3 {
    /* font-size: 1rem;
    font-weight: 700; */
}

.faq-content-item-text h3 {
    margin: 15px 0 15px;
    font-weight: 700;
    font-size: 1.125rem;
    font-size: 1.125rem;
    color: #111;
}

.faq-content-item-text strong {
    color: #27b4b8;
}

.faq-content-item.active .faq-content-item-text h3 {
    /* font-size: 1.25rem; */
    /* font-weight: 700; */
   
}

.faq-content-item.active .faq-answer {
    display: block;
}

.faq-toggle span {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 1.8rem;
    color: #27b4b8;
    color: #333;
    transition: 0.3s;
    margin-left: 50px;
}



.faq-content-item.active .faq-toggle span {
    content: 'remove';
    font-weight: 600;
    color: #23a1a5;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 12px;
}

.faq-header h2 {
    margin: 0 0 10px;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;

}

.faq-subinfo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #555;
    color: #11989c;
    font-weight: 600;
    
}

.faq-subinfo a {
    color: #555;
    color: #11989c;
    font-weight: 600;
    text-decoration: none;
}

.faq-subinfo strong {
    display: block;
    font-weight: 700;
    color: #444;
    margin-top: 6px;
}

.faq-subinfo strong span {
    font-weight: 400;
    color: #888;
    margin: 0 6px;
}

.faq-subinfo .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-size: 20px;
    color: #777;
}

.faq-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 20px 0 0;
}

/* DARK FAQ */
/* .faq-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 40px 0;
    background: #141414;

}

.faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 20px;
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.faq-toggle span {
    transition: 0.3s;
    color: #4fd1c5;
}

.faq-item.active .faq-toggle span {
    content: "remove";
}

.faq-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 30px 0;
    cursor: pointer;
}

.faq-content-item-text h3 {
    margin: 0 0 5px;
    font-weight: 400;
    font-size: 1.0625rem;
    color: #ddd;
    word-spacing: 0.1rem;
}

.faq-content-item.active .faq-content-item-text h3 {
    color: #4fd1c5;
  
}

.faq-answer {
    display: none;
    padding: 25px 0 20px;
    font-size: 1.25rem;
    word-spacing: 0.1rem;
    font-weight: 400;
    margin: 10px 40px 0 0;
    color: #eee;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 8px;
}

.faq-header h2 {
    margin: 0 0 10px;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
}

.faq-toggle span {
    font-weight: 400;
    font-size: 2.4rem;
    color: #bbb;
}

.faq-subinfo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ccc;
    font-weight: 500;
}

.faq-subinfo strong {
    display: block;
    font-weight: 700;
    color: #eee;
    margin-top: 6px;
}

.faq-subinfo strong span {
    font-weight: 400;
    color: #aaa;
    margin: 0 6px;
}

.faq-subinfo .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 20px;
    color: #bbb;
}

.faq-content-item.active .faq-toggle .icon,
.faq-content-item:hover .faq-toggle .icon {
    font-weight: 800;
    color: #27b4b8;
}

.faq-subinfo a {
    color: #4fd1c5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.faq-subinfo a:hover {
    color: #27b4b8;
    text-decoration: underline;
}

.faq-image {
    width: 70%;
    height: auto;
    display: block;
    margin: 40px 0 0 0;
} */

/* RESPONSYWNOŚĆ */
@media (max-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0px;
        padding: 20px;
    }
}

@media (max-width: 768px) {

    
    .faq-answer {
        padding: 2px 4px 20px 4px;
    }
    
    #price .price-container {
        padding: 0;
        border: 0;
        margin: 0;
        
    }
    #price .section-pricing-table {
        padding: 0;
    }
    #price .pricing-header {
        grid-template-columns: 1fr;
        border-radius: 0;
        padding: 20px;
        margin: 0;
    }

    #price .pricing-table {
        font-size: 0.9rem;
         border-radius: 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
       
    }

    #price .pricing-table tr {
        display: flex;
        align-items: stretch;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    #price .pricing-table th {
        flex: 1;
    }

    #price .pricing-table td:nth-child(2) {
        flex: 1;
    }

    #price .pricing-table td:nth-child(n+3) {
        display: none;
    }

    #price .pricing-table th,
    #price .pricing-table td {
        border: none;
    }
}

@media (max-width: 1200px) {
    #price .toggle-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 40px;
        margin: 20px 0;
    }

    #price .header-left p {
        margin-bottom: 0;
    }

    #price .header-left-small {
        justify-content: center;
        align-items: center;
    }

    #price .toggle-switch {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
        flex-direction: column; /* układa elementy pionowo */
        align-items: center;    /* wyśrodkowanie w poziomie */
        margin: 0;
        
    }

#price .toggle-switch .badge {
  order: 2;               /* 🔑 przenosi badge pod przełącznik */
  margin-top: 20px;
  max-width: 120px;       /* 🔑 ogranicza szerokość */
  width: auto;            /* 🔑 nie rozciąga się */
  text-align: center;
  flex: unset;            /* 🔑 usuwa "flex: 1 1 100%" */
}
    
    #price .toggle-header-bottom {
      
        padding: 20px 0 20px;
        text-align: center;
    }

   
}


       .why-container {
            max-width: 1400px;
            margin: 100px auto;
            display: flex;
            align-items: flex-start;
            gap: 120px;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .why-content-section {
            flex: 1 1 140px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .why-section-title {
            margin: 0;
            font-size: 2rem;
            font-weight: 400;
            color: #eee;
        }

        .why-content-list {
            flex: 1 1 140px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .why-content-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            gap: 40px;
        }

        .why-content-item-text {
            text-align: left;
            
        }

        .why-content-item-text h3 {
            margin: 0 0 5px;
            font-weight: 700;
            font-size: 1.125rem;
            color: #ddd;
            margin-bottom: 10px;
        }

        .why-content-item-text p {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
            color: #999;
        }

        .why-content-item-icon .icon {
            font-family: 'Material Symbols Outlined';
            font-size: 4rem;
            color: #27b4b8;
            color: #333;
            /* opacity: 0.4; */
         
        }

       @media (max-width: 768px) {

            .why-content-item-text h3 {
                margin-bottom: 20px;
            }
            .why-container {
                padding: 20px 40px;
                flex-direction: column-reverse;
                gap: 50px;
                /* mniejszy gap na mobile */
                flex-wrap: nowrap;
                /* nie dopuść do dziwnych wrapów w kolumnie */
                align-items: stretch;
            }

            /* Zatrzymaj pionowe rozciąganie sekcji (flex main axis = vertical) */
            .why-content-section,
            .why-content-list {
                flex: 0 0 auto;
                /* nie rosnij ani nie kurcz się na osi głównej */
                width: 100%;
                /* zajmij całą szerokość */
                min-width: 0;
                /* usuń wymuszone min-width z flexów (bezpieczne) */
                min-height: 0;
                /* zapobiega niechcianemu rozciąganiu w niektórych przeglądarkach */
            }

            /* mniejsze odstępy wewnątrz elementów */
            .why-content-section {
                gap: 30px;
            }

            .why-content-list {
                gap: 12px;
            }

            .why-content-item {
                padding-bottom: 50px;
            }

             .why-content-item {
                flex-direction: column;
                align-items: flex-start; /* żeby tekst był wyrównany do lewej */
                gap: 20px; /* odstęp między tekstem a ikoną */
            }

            /* Jeśli chcesz, żeby ikona ZAWSZE była pod tekstem */
            .why-content-item-icon {
                order: 2;
            }

            .why-content-item-text {
                order: 1;
            }

 
        }




/* -------------------- PRICE end ----------------- */


/* -------------------- CONTACT start ----------------- */

.container-contact {
    /*navbar */
    display: flex;
    /* min-height: 100vh; */

    flex-direction: column;
    background-color: #111;

    opacity: 0;
    animation: FadeIn 0.8s ease-in-out forwards;

}

@media(min-width: 768px) {
    .container-contact {
        flex-direction: row;
    }
}



/* .left-column {
    background-color: #111;
    flex: 1;
    background: url('../img/kontakt.webp') no-repeat center center;
    background-size: cover;
    display: block;
    position: relative;
    overflow: hidden;
} */

.left-column {
    position: relative;
    background-color: #111;
    flex: 1;
    background: url('../img/kontakt.webp') center/cover no-repeat;
    display: flex;
    /* <--- zmiana na flex */
    display: flex;
    /* <--- zmiana na flex */
    align-items: center;
    /* wyśrodkowanie pionowe */
    justify-content: center;
    /* wyśrodkowanie poziome */
    overflow: hidden;
}

/* animacja powiększenia i powrotu */
@keyframes FadeIn {
    0% {
        /* transform: scale(0.7); */
        opacity: 0;
    }

    100% {
        /* transform: scale(1);   */
        opacity: 1;
    }
}


.left-column a {
    text-decoration: none;
    color: inherit;
    cursor: pointer
}



.contact-box-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-box {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


.contact-box-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.contact-box-info .top {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-box-info small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    line-height: 1.1;
}

.contact-box .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.6rem;
    color: #555;
}


.left-column-bubble {
    position: absolute;
    /* top: 40px;
            left: 40px; */

    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    /* domyślnie obok siebie */


    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: white;
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    gap: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    word-spacing: 0.1rem;


}


.left-column-bubble:hover {
    background: #ebf5f5;
}


@media (max-width: 1200px) {
    .left-column-bubble {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 1.25rem;
    }
}

.left-column-bubble .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.6rem;
    color: #888;
}

.left-column-bubble p {
    font-size: 0.9rem;
    color: #555;
}

.left-column-bubble-2 {
    position: absolute;
    bottom: 44px;
    left: 50px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.left-column-bubble-2 .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 2rem;
    color: #444;
}


.left-column-bubble-3 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;

    background: white;
    border-radius: 30px;
    padding: 6px 20px;

    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.left-column-bubble-3:hover {
    background: #ebf5f5;
}


.left-column-bubble-3 .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.6rem;
    color: #777;
}


.right-column {
    width: 100%;
    padding: 40px 60px 40px 120px;
    background-color: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* kluczowe dla oddzielenia top i bottom */
    min-height: 100vh;
    /* żeby dolna sekcja była przy samym dole */
}

.top-section {
    padding-top: 60px;
    /* navbar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: left; */

    flex: 1;
    width: 100%;
}

.top-section .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.6rem;
    margin-left: 2px;
    vertical-align: middle;
    color: #555;
}

.bottom-section {
    font-size: 0.9rem;
    color: #aaa;
    padding: 30px 0;
    border-top: 1px solid #333;
}



.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.contact-row a {
    text-decoration: none;
    color: inherit;
    cursor: pointer
}

.contact-row .label {
    color: #ddd;
    font-weight: 600;
}

.contact-row .label-2 {
    color: #777;
    margin: 0 6px;
    font-weight: 500;
}

.contact-row .right {
    display: flex;
    align-items: center;
    color: #ddd;
}

.contact-row .input-icon {
    margin-left: 0;
    margin-right: 8px;
    color: #fff;
}

.top-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    /* wyśrodkowanie */
    color: #888;
}


@media(max-width: 768px) {


    .left-column {
        width: 100%;
        padding: 180px 20px 160px;
        order: 1;
    }

    .right-column {
        padding: 0 40px 20px;
        width: 100%;
        order: 2;
    }

    .top-section {
        padding-top: 20px;
        margin-bottom: 60px;
    }
}

@media(min-width: 768px) {
    .right-column {
        width: 600px;
        /* Tutaj możesz zmieniać szerokość prawej kolumny */
    }
}

.container-contact h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.container-contact label {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #bbb;
    /* display: block; */

   display: flex;
    align-items: center;
    justify-content: space-between; /* badge po prawej */
    margin-bottom: 8px;
    font-weight: 500;
}

.container-contact .label-text {
    display: flex;
    align-items: center;
}

.container-contact .contact-error-badge {
    display: none; /* domyślnie ukryty */
    background-color: #53bacc;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 8px;
}


/* wspólny styl dla inputów i textarea */
#contact input,
#contact textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    background: #2b2b2b;
    color: #ddd;
    font-size: 1rem;
    outline: none;
    /* tu dodajemy startowy cień, nawet przezroczysty */
    /* box-shadow: 0 0 0 3px rgba(139, 92, 246, 0); */
    transition: .25s ease;
}

#contact input:focus,
#contact textarea:focus {
    /* border-color: #8b5cf6; */
    outline-color: #554b70;
    /* box-shadow: 0 0 0 3px rgba(139, 92, 246, .25); */
    /* background-color: #272727; */
}

/* dla klawiatury */
#contact input:focus-visible,
#contact textarea:focus-visible {
    border-color: #554b70;
    box-shadow: 0 0 0 2px #554b70;
    box-shadow: 0 0 0 2px #ddd;
    background: #202020;
    transition: .25s ease;

    font-size: 1.0625rem;

    background: #eee;
    color: #000;
    font-weight: 600;
}


#contactForm {
    transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease;
    max-height: 1000px; /* wystarczająca wysokość formularza */
    overflow: hidden;
    padding: 0 2px;
}

.fade-out {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
}




/* szacunek dla prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    #contact input,
    #contact textarea {
        transition: none;
    }
}


.container-contact button {
    padding: 12px 20px;
    margin-top: 40px;
    /* border-radius: 28px; */
    border: none;
    background: #fff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease;
}

.container-contact button:hover {
    background: #dbeeee;
}

.container-contact .link {
    margin-top: 10px;
    margin-left: 50px;
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: none;
}

.container-contact .input-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.6rem;
    vertical-align: middle;
    margin-right: 8px;
    margin-left: 0px;
    color: #555;
}

/* -------------------- CONTACT end ----------------- */

/* -------------------- FEAT start ----------------- */



#feat {
    background: #161616;
    padding: 120px 40px 200px;
    /* min-height: 100vh; */
}

.container-feat {
    text-align: center;
    margin-bottom: 120px;
}

.feat-header {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ddd;
    margin: 2rem 0;
}

.feat-subheader {
    display: inline-flex;
    align-items: flex-start;
    font-size: 1.25rem;
    font-weight: 400;
    color: #bbb;
}

.feat-header-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.5;
    margin-right: 20px;

}

.flex-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.flex-item-left,
.flex-item-center,
.flex-item-right {
    flex: 1;
}



.flex-item-center {
    flex: 2;
    /* środkowa większa */
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-img {
    max-width: 100%;
    height: auto;
}


.flex-hero-col {
    position: relative;
}

.flex-hero-col img {
    display: block;
    width: 100%;
    transition: opacity 0.6s ease;
}

.flex-hero-col img.flex-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.flex-hero-col:hover img.flex-hover-img {
    opacity: 1;
}

.flex-hero-col:hover img.flex-main-img {
    opacity: 0;
}

.flex-hero-col .icon-badge {
    position: absolute;
    top: 0;
    right: 50px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Material Symbols Outlined';
    font-size: 28px;
    font-weight: 200;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 111;
}

.feat-accordion-list {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
}

.feat-accordion-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 25px 12px;
}

.feat-avatar-label {
    /* font-size: 1.125rem; */
    font-size: 1.0625rem;
    word-spacing: 0.15rem;
    font-weight: 500;
    color: #ddd;
}

.feat-avatar {
    width: 3.4rem;
    height: 3.4rem;
    background-color: #eee;
    /* background-color: #333; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 20px;
    flex-shrink: 0;

    transition: transform 0.2s ease, background-color 0.2s ease;

}

.feat-avatar-ico {
    font-family: 'Material Symbols Outlined';
    font-size: 1.8rem;
    font-weight: 300;
    color: #53bacc;

    color: #555;
}




/* RESPONSYWNOŚĆ - pomniejsz ikony i label */
@media (max-width: 1000px) {

    #feat {
    padding: 40px 10px 60px;
    }

    .feat-accordion-item {
        padding: 0 0;
    }
    
    .container-feat {
        text-align: center;
        margin-bottom: 80px;
        padding: 40px;
    }

    .feat-header {
        font-size: 2rem;
        /* text-align: left; */
    }

    .feat-subheader {
        font-size: 1.125rem;
        text-align: left;
    }
  


    .feat-avatar-label {
        font-size: 1.125rem;
    }

    .feat-accordion-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feat-avatar-label {
        margin: 0.5rem 0 0;
        /* odstęp od ikony */
        order: 2;
        /* label zawsze pod spodem */
    }

    .feat-avatar {
        order: 1;
        /* ikona zawsze na górze */
        margin: 0;
        /* reset marginesów */
    }

}

/* RESPONSYWNOŚĆ - pomniejsz ikony i label */
@media (max-width: 1000px) {

    .feat-accordion-item {
        padding: 15px 4px;
    }

    /* .feat-avatar {
        width: 3rem;
        height: 3rem;
    }

    .feat-avatar-ico {
        font-size: 1.4rem;
        font-weight: 400;
    } */

    .feat-avatar-label {
        font-size: 0.93rem;
        margin-bottom: 10px;
    }
}



.flex-item-left .feat-accordion-item:hover .feat-avatar {
    transform: translateX(-20px) scale(1.25);
    transform: translateY(-10px) scale(1.25);
    background-color: #53bacc;
}



.flex-item-right .feat-accordion-item:hover .feat-avatar {
    transform: translateX(20px) scale(1.25);
    transform: translateY(-10px) scale(1.25);
    background-color: #53bacc;
}



@media (max-width: 1200px) {

    .flex-item-left .feat-accordion-item:hover .feat-avatar,
    .flex-item-right .feat-accordion-item:hover .feat-avatar {
        transform: translateY(-10px) scale(1.25);
        background-color: #53bacc;
    }
}

.feat-accordion-item:hover .feat-avatar-ico {
    color: white;
}

/* prawa kolumna – odwrócenie kolejności (tekst przed ikoną) */
.flex-item-right .feat-accordion-item {
    justify-content: flex-end;
}

.flex-item-right .feat-avatar-label {
    order: 1;
    margin-right: 10px;
    text-align: right;
}

.flex-item-right .feat-avatar {
    order: 2;
}



/* @media (min-width: 800px) and (max-width: 1200px) { */
@media (max-width: 1200px) {
    .flex-container {
        display: flex;
        flex-wrap: wrap;
        /* pozwala łamać wiersze */
        flex-direction: row;
        gap: 2rem;
    }

    .flex-item-center {
        order: 1;
        flex: 0 0 100%;
        /* pełna szerokość na górze */
        margin-bottom: 0;
        /* gap i tak zrobi odstęp */
    }

    /* dwie kolumny poniżej – każda: 50% minus połowa gapu */
    .flex-item-left,
    .flex-item-right {
        order: 2;
        flex: 0 0 calc(50% - 1rem);
        /* 1rem = połowa gapu 2rem */
        max-width: calc(50% - 1rem);
    }

    .flex-item-right .feat-accordion-item {
        justify-content: flex-start;
    }

    .flex-item-right .feat-avatar-label {
        order: 2;
        margin-left: 10px;
        margin-right: 0;
        text-align: left;
    }

    .flex-item-right .feat-avatar {
        order: 1;
    }
}


@media (max-width: 1000px) {
  .feat-accordion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    min-height: 120px; /* 🔑 stała wysokość elementu */
  }

  .feat-avatar {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .feat-avatar-label {
    margin: 0;
  }
}
/* -------------------- FEAT end ----------------- */


/* -------------------- CARDS start ----------------- */

#cards {
    padding: 40px 0;

}

.cards-header-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}

.cards-header-top h2 {
    margin: 0;
    font-size: 2.6rem;
    font-weight: 700;
    color: #333;
}

.cards-header-top p {
    margin: 4px 0 0 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* width: 75%; */
    max-width: 1600px;
    padding: 20px 20px 40px;
    justify-content: center;
    /* width: 90%; */
    margin: 0 auto;
}

.card {
    flex: 1 1 calc(50% - 20px);
    /* 4 w rzędzie na dużych ekranach */
    max-width: 1200px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #444;
}

.card-detail {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    /* ⬅️ obraz nie wychodzi poza ramkę */
    color: white;
}

.card-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    /* dziedziczy tło z .card-detail */
    transition: transform 0.4s ease;
    z-index: 0;
}

.card:hover .card-detail::before {
    transform: scale(1.06);
    /* efekt przybliżenia */
}

.card-detail>* {
    position: relative;
    z-index: 1;
    /* elementy nad obrazem */
}



.card-bubble {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card:hover .card-bubble {
    background: #222;
    color: white;
}

.card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.card:hover .card-arrow {
    background: #222;
}

.card-arrow-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 600;
    font-size: 45px;
    color: #555;
    transition: background 0.2s ease-in-out;
}

.card:hover .card-arrow-icon {
    color: #fff;
}

.details-wrapper {
    display: flex;
    align-items: flex-start;
    /* wszystko od góry */
    gap: 40px;
    width: 96%;
    margin: 0 auto;
    padding: 12px 0;
}

.details-info {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1;
    white-space: nowrap;
}

.details {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* układ pionowy */
    gap: 10px;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}



.details-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.details-img {
    display: flex;
    justify-content: flex-end;
    /* obrazek po prawej */
}

.details-img img {
    max-height: 120px;
    /* albo 100px jak wcześniej */
    max-width: 100%;
    /* nigdy nie wyjdzie poza szerokość kontenera */
    height: auto;
    /* proporcje zachowane */
    width: auto;
    /* proporcje zachowane */
    object-fit: contain;
    /* dodatkowe zabezpieczenie */
}


.details-items {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1;
}

.details-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.details-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-size: 20px;
    color: #555;
}


@media (max-width: 1200px) {

    .cards-header-top h2 {
        font-size: 2.2rem;
    }

    .cards-header-top p {
        font-size: 1.125rem;
    }

    .details-header {
        flex-direction: column;
        /* zamiast w jednym rzędzie */
        align-items: flex-start;
        /* wyrównaj do lewej */
    }

    .details-img {
        justify-content: flex-start;
        /* obrazek też do lewej */
        margin-top: 8px;
        /* odstęp od tytułu */
    }
}


/* RESPONSYWNOŚĆ */
@media (max-width: 1200px) {
    .card {
        flex: 1 1 calc(50% - 20px);
        /* 2 w rzędzie */
    }
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
        /* 1 w rzędzie */
    }
}


/* -------------------- CARDS end ----------------- */

/* -------------------- TAB start ----------------- */

#tab {
    background: #fff;
    margin: 0;
    padding: 0;
}

#tabtop {
    background: #141414;
    margin: 0;
    padding: 0;
}

.container-tab {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
    padding: 10px 0 40px;
}
.container-tabtop {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
    padding: 80px 0 20px;
}

.container-tab-header {
    margin: 0;
    padding: 0;
    color: #111;
    margin-bottom: 30px;
}



.container-tab-header-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px 80px;
}

.container-tab-header-top h2 {
    margin: 0;
    font-size: 2.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.container-tab-header-top p {
    margin: 4px 0 0 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}


.container-tab-header-top .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.5;
    margin-right: 12px;
    color: #333 !important;
}

.tab-row-ico {
    font-family: 'Material Symbols Outlined';

    font-size: 1.4rem;
    font-weight: 400;
    color: #27b4b8;
    color: #3bcacf;
    /* color: #27b8a5; */
    /* color: #888; */
    /* display: none; */
}

.tab-row-ico-mobile-strong {
    font-family: 'Material Symbols Outlined';
    font-size: 1.35rem;
    font-weight: 300;
    color: #888;
    display: none;
}

.tab-row-ico-mobile {
    font-family: 'Material Symbols Outlined';
    font-size: 1.35rem;
    font-weight: 300;
    color: #aaa;
    display: none;
}

.tab-row-ico-mobile-header {
    font-family: 'Material Symbols Outlined';
    font-size: 2rem;
    font-weight: 300;
    color: #888;
    line-height: 1;
    /* display: none; */
}




#tabtop table {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 800px; */
    table-layout: fixed;
    /* wymusza zawijanie tekstu */
    word-wrap: break-word;
}


#tabtop th {
    text-align: center;
    padding: 20px;
    font-size: 1.25rem !important;
    /* font-size: 1.0625rem !important; */
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    color: #fff;
    word-spacing: 0.25rem;
}

#tabtop td,
#tabtop th {
    vertical-align: middle;
    text-align: left;
    /* treść zaczyna się od góry */
}

#tabtop td,
#tabtop th span {
   margin-left: 10px;
}



#tabtop th {
    background-color: #edf5f7;
    background-color: #141414;

    /* border-radius: 15px; */
}

#tabtop th:nth-child(2) {
    background-color: #edf5f7;
    background-color: #141414;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

#tabtop th:nth-child(4) {
    background-color: #edf5f7;
    background-color: #141414;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}



#tabtop th:nth-child(1) {
    background-color: transparent;

}


.table-container {
    /* overflow-x: auto; */
}

#tab table {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 800px; */
    table-layout: fixed;
    /* wymusza zawijanie tekstu */
    word-wrap: break-word;
    color: #444;
}



#tab td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 0.9375rem;
    font-weight: 600;

    padding-left: 30px;
    padding-right: 80px;

    word-wrap: break-word;
    /* starsza wersja */
    overflow-wrap: break-word;
    /* nowsza wersja */
    white-space: normal;
    /* zamiast nowrap */
}

#tab td::before {
    white-space: normal;
    /* etykiety w widoku mobile też mogą się zawijać */
}

#tab td:nth-child(1) {
    background-color: #f7fbfb;

}


#tab .cell-content {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    gap: 20px;
}


#tab th {
    text-align: center;
    padding: 30px;
    font-size: 1.25rem !important;
    /* font-size: 1.0625rem !important; */
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    color: #fff;
    word-spacing: 0.25rem;

}


#tab td,
#tab th {
    vertical-align: top;
    /* treść zaczyna się od góry */
}



#tab th {
    background-color: #edf5f7;
    background-color: #141414;
    /* border-radius: 15px; */
}

#tab th:nth-child(2) {
    background-color: #edf5f7;
    background-color: #141414;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

#tab th:nth-child(4) {
    background-color: #edf5f7;
    background-color: #141414;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}



#tab th:nth-child(1) {
    background-color: #fff;

}


#tab td {
    width: 19%;
}

#tab td:first-child {
    font-size: 1.125rem;
    font-size: 1.0625rem;

    text-align: left;
    font-weight: 700;
}

#tab tr:first-child td {
    padding-top: 30px;

}

#tab .tabprice {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    padding-top: 35px;
    padding-bottom: 35px;
    color: #333;
}

.tab-hotel-img {
    width: 300px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;

    max-width: 300px;
    max-height: 160px;
    width: 100%;
    height: auto;

}

/* .tab-hotel-img:nth-child(2) {
    border-radius: 10px;
} */





@media (max-width: 1200px) {


    #tabtop table thead, 
    #tabtop table thead tr, 
    #tabtop table thead th {
        display: block; /* każdy th w nowej linii */
        width: 100%;
        text-align: center;
        margin-bottom: 5px; /* odstęp między "wierszami" */
    }

    

#tab td:nth-child(1) {
    background-color: transparent;

}

    .container-tab-header-top h2 {
    font-size: 2.2rem;
}

    #tab .tabprice {
        margin-bottom: 20px;
    }

    #tab .cell-content {
        gap: 14px;
    }

    .tab-row-ico-mobile-strong,
    .tab-row-ico-mobile {
        display: inline;
    }

    .tab-row-ico {
        display: none;
    }

    /* chowamy nagłówki */
    #tab thead {
        display: none !important;
    }

    /* 2 kolumny na wiersz – zmień procenty jak chcesz */
    #tab tr {
        display: grid !important;
        grid-template-columns: 34% 66%;
        /* ← tu ustaw proporcje */
        grid-auto-flow: row;
        column-gap: 16px;
        border-bottom: 1px solid #dbdbdb;
        padding: 14px 0;
        margin: 0 0 12px;
        background: #fff;
    }

    /* wspólne nadpisania */
    #tab td {
        width: auto !important;
        border: 0 !important;
        padding: 4px 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;

    }

    /* wyłącz mobilne etykiety */
    #tab td::before {
        content: none !important;
    }

    /* lewa kolumna = pierwszy td */
    #tab td:first-child {
        grid-column: 1 !important;
        align-self: start;
        font-weight: 700;
        font-size: 1rem;
        color: #222;
    }

    /* prawa kolumna = WSZYSTKIE pozostałe td (2., 3., 4. ...) */
    #tab td:nth-child(n+2) {
        grid-column: 2 !important;
        margin-right: 20px;
    }

    /* odstęp między wierszami w prawej kolumnie */
    #tab td:nth-child(n+3) {
        margin-top: .35rem;
    }
}

#tab td {
    white-space: normal !important;
    /* pozwól zawijać */
    word-wrap: break-word;
    /* starsze przeglądarki */
    overflow-wrap: break-word;
    /* nowsze przeglądarki */
}

/* dodatkowo, żeby cała tabela nie miała sztywnego min-width */
#tab table {
    min-width: auto !important;
    table-layout: auto !important;
}



/* -------------------- TAB end ----------------- */



/* -------------------- STAT start ----------------- */


#stat {
    animation: FadeIn 1s ease-in-out forwards;

}

.report-wrapper {
    opacity: 0;
    animation: FadeIn 0.5s ease-in-out forwards;
    animation-delay: 0.25s;
}

.features-panel {
    opacity: 0;
    animation: FadeIn 0.5s ease-in-out forwards;
    animation-delay: 0.5s;
}


.container-stat {
    background: url('../img/hero-cennik-3.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;

}

.container-stat-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 140px 100px 100px;
    gap: 20px;
}



.report-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
    /* pionowe i poziome odstępy */
    background: white;
    padding: 0;
    width: max-content;


}


.report-wrapper {
    position: relative;
    /* potrzebne dla absolutnej pozycji ikony */
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 20px 25px 5px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.report-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    padding-right: 60px;
    /* zostaw miejsce na ikonę */
    padding-bottom: 30px;
    word-break: break-word;
    /* wymusza zawijanie tekstu */
    position: relative;
}

.report-title .icon {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 2rem;
    color: #999;
}



.stat-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 200px;

}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(245, 248, 254);
    padding: 4px 30px;
    border-radius: 12px;
    /* max-width: 220px; */
    min-width: 200px;

}

.stat-title {
    /* display: flex;
            justify-content: space-between;
            align-items: center; */
    font-size: 0.9rem;
    font-weight: 700;
    word-spacing: 0.2rem;
    color: #444;
    text-transform: uppercase;
    width: 100%;
    padding: 4px 0 6px;
    text-align: center;
    margin-bottom: 10px;
}

.stat-title .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 1.2rem;
    color: #999;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(42, 105, 214);
    margin-top: 4px;
}

.stat-item img {
    width: 100%;
    max-width: 120px;
    padding: 10px 0 20px;
}

.stat-item .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 4rem;
    color: rgb(42, 105, 214);
    padding: 2px 0 10px;
}

/* Czarny panel (Fitness that he) - teraz po prawej stronie */
.features-panel {
    background: #111;
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: max-content;
    text-align: center;

    min-width: 340px;
    min-height: 420px;

    display: flex;
    flex-direction: column;
    /* jeśli elementy mają być ułożone pionowo */
    justify-content: center;
    /* wyśrodkowanie pionowe */
    align-items: center;
    /* wyśrodkowanie poziome */
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);

}




.features-panel h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}



.features-panel .btn {
    margin-bottom: 20px;
}

.features-panel .btn button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
}

.features-panel .divider {
    border: none;
    border-top: 1px solid #333;
    /* szara linia */
    margin: 20px 0 30px;
    /* odstęp nad i pod linią */
    width: 100%;
}

.features-panel .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 80%;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.87rem;
    color: #bbb;
}

.feature .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #eee;
}


@media (max-width: 1000px) {
   
.stat-item  {
    min-width: 100%;
}
.stat-item img {
    width: 100%;
    max-width: 260px;
    padding: 10px 0 20px;
}

.stat-item .icon {
    font-size: 3rem
}
.report-panel {
    width: 100%;
    padding: 0;
}
    .stat-title {
        font-size: 0.86rem;
    }
    .stat-value {
    font-size: 2rem;
    }
    .container-stat-wrapper {
        padding: 0;
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
    .report-wrapper {
        width: 100%;
        padding: 120px 20px 60px;
    }
}

@media (max-width: 768px) {
    .container-stat {
        background: none; 
        padding: 0;
    }

    .container-stat-wrapper {
        /* width: 100%; */
        background: none;
        /* padding: 0px; */
        gap: 0;
        flex-direction: column;
        align-items: center;
    }


    .report-wrapper,
    .features-panel {
        width: 100%;
        /* max-width: 500px; */
        margin: 0;
        border-radius: 0;
        padding: 20px;
        box-shadow: none;
    }


    .report-wrapper {
         width: 100%;
        padding: 60px 40px 60px;
        display: flex;
        flex-direction: column;
        /* układa elementy pionowo */
        align-items: center;
        /* wyśrodkowanie poziome */
        justify-content: center;
        /* wyśrodkowanie pionowe */
    }

    .features-panel {
        order: 1;
    }

    .report-wrapper {
         order: 2;
    }
}

/* -------------------- STAT end ----------------- */



/* -------------------- PLUS start ----------------- */


#plus {
    /* background: #161616; */
    background: #fff;

    /* min-height: 100vh; */
}

.container-plus {
    background-color: #f2f2f2;
    background-color: #161616;
    color: #333;
    position: relative;
    background: url('../img/hero-plus.webp') no-repeat center center / cover;
    min-height: 100vh;
    padding: 6rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;

    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* jeśli chcesz rozstawienie góra–dół */
    position: relative;
    overflow: visible;
}


.container-plus-header {
    text-align: center;
    padding: 200px 40px 200px;
    background-color: #161616;
}

.plus-header {
    align-items: flex-start;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: #ddd;
    margin: 1rem 1rem 4rem;
}

.plus-item {
    display: flex;
    flex-direction: column;
    /* IKONA NAD tekstem */
    align-items: flex-start;
    /* do lewej */
    font-size: 1.125rem;
    font-weight: 500;
    color: #ccc;
}

.plus-subheader {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 6rem;
}


/* MOBILE: pionowo */
/* @media (max-width: 768px) {
            .plus-subheader {
                flex-direction: column;   
                align-items: flex-start; 
                gap: 2rem;               
            }

            .plus-subheader > * {
                flex: unset;  
                text-align: left;
            }
        } */

@media (max-width: 768px) {

   .container-plus-header {
        padding: 80px 40px 120px;
    }

    

    .plus-header {
        font-size: 2.2rem;
    }

    /* .plus-subheader {
        justify-content: center;
        gap: 4rem;
    }
    .plus-subheader>* {
        flex: 0 1 calc(50% - 4rem);
        text-align: left;
    } */

.plus-subheader {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolumny */
    gap: 2rem;
    justify-items: center; /* ikony wyśrodkowane w kolumnie */
  }

  .plus-item {
    display: flex;
    flex-direction: column;
    align-items: center;   /* ikona + tekst zawsze w środku kolumny */
    text-align: center;
    min-height: 120px;     /* 🔑 każda kratka ma równą wysokość */
  }

  .plus-header-icon {
    margin-bottom: 0.5rem;
    flex-shrink: 0;        /* ikona nie kurczy się */
  }
}

.plus-header-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 3.5rem;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 6px;
    /* odstęp od tekstu */
    line-height: 1;
}





/* .plus-header-top {
            max-width: 1600px;
            margin: 0 auto;
            padding: 40px 20px 60px;
            text-align: left;
        }

        .plus-header-top h2 {
            margin: 0;
            font-size: 2.6rem;
            font-weight: 600;
            color: #333;
        }

        .plus-header-top p {
            margin: 4px 0 0 5px;
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        } */



.centered-text {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.7);
    font-family: 'Manrope', sans-serif;
}



.bubble-lg-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1600px;
    z-index: 2;
}

.bubble-lg-section.top {
    margin-bottom: 6rem;
    padding: 50px;
}

.bubble-lg-section.bottom {
    font-size: 1.125rem;
    font-weight: 500;
    /* //position: absolute; */
    bottom: 2rem;
    /* left: 50%;
            transform: translateX(-50%); */
    padding: 0 1rem;

    /* max-width: 1600px; */
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    /* <-- to wymusi jeden rząd */
    justify-content: center;
    gap: 1.5rem;

    padding: 20px;

    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.bubble-lg {
    color: #444;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 300px;
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    /* opacity: 0; */
    /* transform: translateY(30px); */
    /* animation: fadeInUp 0.8s forwards; */

    max-width: 250px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
    will-change: transform;
}

.bubble-lg:hover {
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease-in-out;
}

.bubble-lg:hover .icon-white,
.bubble-lg:hover .icon-dark {
    transform: translateY(-3px);
    transition: all 0.15s ease;
}

.bubble-lg-dark {
    background: #333;
    color: white;
}

.bubble-lg::after {
    content: "";
    position: absolute;
    bottom: -12px;
    /* odległość od dymka */
    left: 30%;
    /* transform: translateX(-30%); */
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
    /* kolor strzałki */

}

.bubble-lg-dark::after {
    border-top: 12px solid #333;
    /* kolor strzałki */
    font-weight: 100;
}



.bubble-lg.large {
    max-width: 360px;
    font-size: 1.5rem;
    font-weight: 700;
}

.bubble-lg.small {
    max-width: 250px;
    font-size: 1.0125rem;
    font-weight: 400;
}

.bubble-lg .icon-white {
    font-family: 'Material Symbols Outlined';
    font-size: 3rem;
    font-weight: 500;
    color: #bbb;
    color: #53bacc;
    flex-shrink: 0;
    align-self: flex-start;
}

.bubble-lg .icon-dark {
    font-family: 'Material Symbols Outlined';
    font-size: 2.6rem;
    font-weight: 400;
    color: #999;
    flex-shrink: 0;
    align-self: flex-start;
}

.bubble-lg .textsmall {
    display: flex;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    color: #666;
}




@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {



    .bubble-lg-section.top {
        width: 100%;
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        margin-bottom: 8rem;

    }

    /* .bubble-lg-section.bottom {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            } */


    /* .bubble-lg.small {
                max-width: 60%;
                font-size: 1rem;
            } */


    .bubble-lg-section.bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* dwie równe kolumny */
        gap: 1rem;
    }

    .bubble-lg.small {
        max-width: 100%;
        /* usuń ograniczenie szerokości */
        font-size: 1rem;
    }

    .bubble-lg {
        max-width: 100%;
    }

    .bubble-lg.large {
        max-width: 100%;
        font-size: 1.125rem;
    }



    .bubble-lg .icon-white {
        font-size: 2.5rem
    }

    .bubble-lg .icon-dark {
        font-size: 1.5rem
    }



}

/* -------------------- PLUS end ----------------- */



/* -------------------- HOTSPOT start ----------------- */

#hotspot {
    color: #222;
    background: #fff;
    background: linear-gradient(30deg, #ffffff, #d8eaf0, #fff);
    overflow-x: hidden;
    padding: 80px 20px 40px;

}

.container-hotspot {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    /* poziome wyśrodkowanie */
    align-items: center;
    /* pionowe wyśrodkowanie */
    min-height: 100vh;
    /* pełna wysokość okna */
}

.container-hotspot-wrap {
    width: 100%;

}

.hotspot-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* desktop: h1 lewo, hotspot-btn prawo */
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-bottom: 60px;
}

.hotspot-header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 40px;
}

.hotspot-header p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}


.hotspot-btn {
    background-color: #333;
    color: white;
    /* border-radius: 50px; */
    padding: 14px 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}


.hotspot-bubble-lg {
    color: #fff;
    background: #333;
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 300px;
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    /* opacity: 0; */
    /* transform: translateY(30px); */
    /* animation: fadeInUp 0.8s forwards; */

    text-decoration: none;
    cursor: pointer;

    max-width: 250px;

    transition: opacity 0.3s ease, box-shadow 0.3s ease;

    will-change: transform;

    max-width: 250px;
    font-size: 1.0125rem;
    font-weight: 400;
}

.hotspot-bubble-lg:hover {
    opacity: 0.9;
    box-shadow: none;
}

.hotspot-bubble-lg .icon-dark {
    font-family: 'Material Symbols Outlined';
    font-size: 2.6rem;
    font-weight: 400;
    color: #999;
    flex-shrink: 0;
    align-self: flex-start;
}


.hotspot-btn:hover {
    opacity: 0.8;
}

/* .hotspot-btn-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 3rem;
    color: #555;
    margin-left: 6px;
} */


.hotspot-btn-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 3rem;
    color: #fff; /* kolor ikony */
    background-color: #555; /* kolor tła */
    width: 6rem !important;     
    height: 6rem !important;     
    line-height: 1;
    display: flex;    
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* okrągłe tło */
    /* margin-left: 6px; */
}

/* MOBILE */
@media (max-width: 768px) {

    #hotspot {
        padding: 60px 0 0;
    }
    .container-hotspot-wrap {
        width: 100%;
        padding: 0 40px;
    }

    .hotspot-header {
        gap: 1rem;
        flex-direction: column;
        /* h1 nad hotspot-btn */
        align-items: center;
        /* wyśrodkowanie h1 + avatar */
        text-align: center;
    }

    .hotspot-header h1 {
        font-size: 2.2rem;
    }

    .hotspot-header p {
        margin-bottom: 40px;
    }

    .hotspot-btn {
        margin-top: 1rem;
        /* odstęp od h1 */
    }
}


.hotspot-image-wrapper {
    position: relative;
    max-width: 90%;
    /* ograniczenie szerokości */
    margin: 0 auto 60px;
    /* auto marginesy dla centrowania */
    box-sizing: border-box;
    display: flex;
    /* upewniamy się że zawartość się centruje */
    justify-content: center;
}

.hotspot-image-wrapper img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    /* dodatkowe centrowanie */
    /* testowo */
}

.hotspot {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #53bacc;
            border: 2px solid #53bacc;

    background-color: #3aa1ca;
      border: 2px solid #3aa1ca;    


    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 1.8s infinite ease-in-out;
    transition: border 0.2s ease, transform 0.3s ease;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}



.hotspot .hotspot-icon,
.hotspot span {
    font-family: 'Material Symbols Outlined';
    font-size: 2.2rem;
    font-weight: 300;
    color: white;

}

.hotspot .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 2.2rem;
    font-weight: 200;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    /* potrzebne, żeby działał transform */

}

/* powiększenie przy hover */
.hotspot:hover .icon {
    transform: scale(1.1);

}

.hotspot:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    background: #52b6dd;
      border: 2px solid #52b6dd;    
    transition: background 0.2s ease, border 0.2s ease, transform 0.8s ease, box-shadow 0.5s ease;
    transform: scale(1.3);
    border: 8px solid #52b6dd;
    animation: none;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
        /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); */

    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}


@media (max-width: 768px) {

    .hotspot {
        width: 40px;
        height: 40px;
    }

    .hotspot .icon {
        font-family: 'Material Symbols Outlined';
        font-size: 1.8rem;
        font-weight: 200;

    }

}


.hotspot-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

.hotspot-modal.show {
    opacity: 1;
    visibility: visible;
}

.hotspot-modal-content {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hotspot-modal-content img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 0.6rem;
}

.hotspot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hotspot-modal-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.hotspot-modal-title .title-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.4rem;
    font-weight: 400;
    color: #53bacc;
    color: #666;
    opacity: 0.7;
}



.hotspot-modal-subtitle {
    font-size: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #555;
    text-align: right;
    flex-shrink: 0;
    margin-top: 2px;
}

.hotspot-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    font-size: 1.4rem;
    cursor: pointer;
    color: #999;
}

.hotspot-feat-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    
    position: relative;
    z-index: 1;

    /* left: 30%;
            transform: translateX(-30%); 
            max-width: 500px; */
    width: 100%;
    /* background: white; */
    padding: 0 0 20px;
    /* border-radius: 16px; */
    text-align: center;
    /* box-shadow: 0 0 120px rgba(0, 0, 0, 0.9); */
    justify-items: center;
}

.hotspot-feat-content {

    width: 100%;
    padding: 40px 20px 100px;
}

.hotspot-feat-content h1 {
    font-size: 1.8rem;
    font-weight: 500;
}

.subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.hotspot-feat-container h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.hotspot-feat-bubble-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.hotspot-feat-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background: #f6f9fa;
    background: #f8fcfd;
    padding: 10px;
    border-radius: 12px;
}

.hotspot-feat-bubble .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 0.5rem;
    color: #666;
}

/* -------------------- HOTSPOT end ----------------- */


/* -------------------- JAKTO start ----------------- */
#jakto {
    margin: 0;
    color: #222;
    background: linear-gradient(to top right, #ffffff, #f1f8f9, #fef6f0);

}

.container-jakto {


    padding: 60px 20px 100px;
    gap: 2rem;


    /* width: 90%; */
    max-width: 1400px;
    /* szerokość 90% */
    margin: 0 auto;
    /* wyśrodkowanie poziome */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    /* min-height: 100vh; */
    /* min-height: 100vh; */

}

.jakto-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding: 20px;

}

/* Precyzyjne szerokości */
.jakto-column.left {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;

}

.jakto-column.right {
    width: 60%;
    position: relative;
    /* potrzebne dla dymka */

}


.jakto-column h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;

}

.jakto-description {
    font-size: 0.9375rem;
    /* font-size: 1rem; */
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #444;
    display: flex;
    /* ważne: flex layout */
    align-items: center;
    margin-bottom: 30px;
}

.jakto-description-icon {
    font-family: 'Material Symbols Outlined';
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1px;
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    /* color: #53bacc; */
    margin-right: 10px;
}

.jakto-image-wrapper {
    padding: 40px 40px 0 40px;
    position: relative;
    text-align: left;
}

.jakto-image-wrapper img {
    width: 100%;
    /* ← Dopasowuje do szerokości kontenera */
    height: auto;
    display: block;
    margin: 0;
    text-align: left;
    /* ← Wyrównanie do lewej */
}


.jakto-like-bubble {
    position: absolute;
    background: white;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    gap: 0.5rem;
    z-index: 5;
    max-width: 250px;
}

.jakto-like-bubble .avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    margin-left: 2px;
    margin-right: 8px;
}

.jakto-like-bubble .like-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

.jakto-like-bubble .like-text strong {
    font-weight: bold;
    color: #444;
}

.jakto-like-bubble.bottom-right {
    top: 30%;
    right: 4%;
}

.jakto-like-bubble.top-left {
    top: 10%;
    left: 4%;
}

.jakto-accordion {
    margin-top: auto;
    /* To spycha akordeon na dół */
    border: none;
    overflow: hidden;

}

.jakto-accordion-item {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;

}


.jakto-accordion-header {
    /* background: #fff; */
    font-size: 1.25rem;
    /* font-size: 1.125rem; */
    /* font-size: 1.375rem; */
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jakto-accordion-header .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.jakto-accordion-content {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1rem;
    /* background: #fafafa; */
}

.jakto-accordion-content.open {
    padding: 0 1rem;
}






@media (max-width: 900px) {

    .jakto-column h2 {
        font-size: 2rem;
    }

    .jakto-like-bubble.bottom-right {
            top: 92%;
            right: 0%;
        }

    .container-jakto {
        flex-direction: column;
        align-items: stretch;
    }

    .jakto-column {
        justify-content: flex-start;
    }

    .jakto-column.left {
        width: 100%
    }


    .jakto-column.right {
        width: 100%
    }

    .jakto-image-wrapper {
        padding: 0;
    }



}

/* -------------------- JAKTO end ----------------- */

/* -------------------- CALL start ----------------- */

.container-call {
    background: #111111;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* zmień proporcje wg potrzeb */
    min-height: 100vh;
}

/* Kolumna lewa */
.call-left {
    width: 70%;
    margin: 0 auto;
    /* padding: 40px 80px 40px 200px; */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.call-left-container {
    width: 80%;
    height: 90%;
    /* margin: auto 0 auto 100px ; */
    margin: auto;
}

.call-center-content {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.call-top-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}



.call-buttons {
    display: flex;
    justify-content: space-between;
}



.call-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.4rem 1rem;
    /* border-radius: 20px; */
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    /* usuwa podkreślenie linku */
    cursor: pointer;

    transition: background 0.25s ease;
}


.call-btn:hover {
    color: #ddd;
    border: 1px solid #bbb;
}

.call-btn.newsletter {
    display: flex;
    align-items: center;
    gap: 0.4rem;

    padding: 0.4rem 1rem;

    /* border-radius: 50px; */
    background: #fff;
    color: #222;
    font-weight: 600;
    gap: 0.4rem;
}

.call-btn.newsletter:hover {
    border-color: #dbf1f5;
    background: #dbf1f5;
}

.call-btn .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.125rem;
    font-weight: 400;
    color: #333;
}

.call-heading {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
}



.call-form {
    display: flex;
    align-items: center;
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #333;
    max-width: 350px;
}

.call-form input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    background: transparent;
    color: #eee;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

/* hover dla całej formy */
.call-form:hover {
    background: #1b1b1b;
    border: 1px solid #444;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.06);
    /* zmiana koloru przy hover */
}


/* focus-within: zmiana obramowania całej formy */
.call-form:focus-within {
    border: 1px solid #53bacc;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.09);
}

/* focus w inputach wewnątrz form */
.call-form input:focus {
    background: #1b1b1b;
    /* albo inny kolor, np jaśniejszy */
    color: white;

}





.call-form button {
    background: #53bacc;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-form button:hover {
    background: #fff;

}

.call-form button .icon {
    font-family: 'Material Symbols Outlined';
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}

.call-form button:hover .icon {
    color: #555;
    font-weight: 600;
}

.call-image-box {
    margin-top: auto;
    margin-bottom: 50px;
    /* desktop -> na dole */
}

.call-image-box img {
    width: 600px;
    /* border-radius: 15px; */
    max-width: 100%;
    /* żeby nie wychodził poza ekran */

}

/* Kolumna prawa */
.call-right {
    position: relative;
    background: url('../img/hero-call-3.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.call-projects {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.call-project-box {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 1rem 1.7rem;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.call-project-box .top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

.call-project-box .top .icon {
    font-family: 'Material Symbols Outlined';
    color: #888;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}

.call-project-box h3 {
    margin: 0 0 0.6rem;
    font-size: 1.35rem;
    font-weight: 700;
}



.call-project-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.call-top-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.call-project-info small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin-top: 10px;
    display: none;
}

.call-project-info .icon {
    font-family: 'Material Symbols Outlined';
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}


.call-error-badge {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #fff;
  background: #e53935;
  padding: 6px 12px;
  border-radius: 6px;
  display: none;
  text-align: center;
}


/* Mobile */
@media (max-width: 768px) {
    .container-call {
        display: flex;
        flex-direction: column;
    }

    .call-left-container {
        order: 2;
    }

    .call-projects {
        display: flex;
        flex-direction: column;
    }

    .call-left {
        width: 90%;
        height: auto;
        min-height: 100vh;
        text-align: center;
        padding: 60px 20px 20px;
        /* heading + form wyśrodkowane */
        order: 2;
    }

    .call-top-controls {
        justify-content: space-between;
        /* zostają tak jak w desktop */
        margin-bottom: 2rem;
    }

    .call-center-content {
        margin: 40px 0;
        align-items: center;
        /* wyśrodkowanie heading i form */
    }

    .call-form {
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .call-form {
        width: 100%;
        /* zajmuje całą szerokość kontenera */
        max-width: none;
        /* usuwa ograniczenie */
        flex-direction: column;
        /* dla przycisków pod inputem, jeśli chcesz */
        gap: 1rem;
        /* odstęp między inputem a przyciskiem */
        border: none;
        border-radius: 0;
    }


    .call-form input {
        width: 100%;
        border: 1px solid #353535;
        border-radius: 20px;
    }




    .call-form {
        position: relative;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        /* poziomo */
        gap: 0;
        /* brak odstępu między inputem i buttonem */
        border: 1px solid #333;
        border-radius: 25px;
        background: #111;
    }

    .call-form input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: none;
        border-radius: 0;
        /* brak zaokrągleń wewnątrz */
        background: transparent;
    }

    .call-form button {
        position: absolute;
        flex-shrink: 0;
        /* nie zwęża się */
        width: 48px;
        /* kwadratowy przycisk */
        height: 48px;
        border-radius: 50%;
        /* okrąg */

        padding: 0;
        /* reset */
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0
    }

    .call-form button .icon {
        font-size: 1.3rem;
    }





    .call-image-box {
        margin-top: 80px;
        display: flex;
        justify-content: center;
    }

    .call-right {
        order: 1;
        padding: 100px 20px;

    }
}

/* -------------------- CALL end ----------------- */

/* -------------------- LINK start ----------------- */

#how {
    margin: 0;
    padding: 60px 20px;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.how-container {
    width: 100%;
    padding: 60px 40px;
    max-width: 1200px;
    /* background: #f0f6f8; */
    border-radius: 20px;
}


.how-header {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.how-header-small {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
    color: #444;

}

.how-steps-wrapper {
    width: 100%;
    max-width: 1400px;
    position: relative;
}

.how-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;

}

/* linie pomiędzy */
.how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 33px;
    right: -50%;
    width: 100%;
    height: 4px;
    background-color: #888;
    background-color: #70cbdb;
    background-color: #95d9e6;
    z-index: 0;
}

.how-step-icon {
    font-size: 44px;
    font-weight: 500;
    color: #70cbdb;
    color: #95d9e6;
    background: #f0f6f8;
    background: #fff;
    border: 5px solid #53bacc;
    border: 5px solid #95d9e6;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    z-index: 1;
}

.how-step-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    color: #333;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 20px;
}

@media (max-width: 768px) {

    #how {
        padding: 60px 30px;
    }

    
    .how-container {
        padding: 40px 20px;
    }

    .how-steps-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .how-step:not(:last-child)::after {
        display: none;
    }

    .how-header {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .how-step {
        flex-direction: row;
        /* ikona + tekst obok siebie */
        align-items: center;
        text-align: left;
        gap: 60px;
        width: 70%;
        margin: 0 auto;
        justify-content: flex-start;
        /* dodatkowe wyrównanie w lewo */
    }

    .how-step-icon {
        font-size: 24px;
        font-weight: 600;
        border: 2px solid #95d9e6;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
        line-height: 1;
        flex-shrink: 0;
    }

    .how-step-label {
        font-size: 1.125rem;
        font-weight: 600;

        line-height: 1;
        margin-bottom: 24px;
    }
}

/* -------------------- LINK end ----------------- */


/* -------------------- CLIENT start ----------------- */

#client {
    overflow-x: hidden;
}

.client-hero {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #0f0f11;
    padding: 120px 20px;
}



.client-hero-media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 20px;
}

.client-hero-img {
    position: absolute;
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
    object-position: center;
    border: 20px solid #0f0f11;
    border-radius: 40px;
}

.client-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(120% 120% at 20% 20%, #6fd4ff22, transparent 60%),
                radial-gradient(120% 120% at 80% 80%, #ffd66f22, transparent 60%); */
    z-index: -1;
}

.client-hero-content {
    width: 90%;
    position: relative;
    background: #0f0f11;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 4vw, 56px);
    gap: clamp(16px, 2vw, 28px);
    align-items: flex-start;
    justify-content: flex-start;

}

.client-header {
    margin-bottom: 40px;
}

.client-title {
    color: #ddd;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.05;
    margin: 4px 0 40px;
}

.client-subtitle {
    color: #a8a8ad;
    font-size: clamp(14px, 1.6vw, 18px);
    max-width: 56ch;

}

.client-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 40px;
}

.client-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid #2a2a31;
    border-radius: 12px;
    padding: 12px 16px;
    background: #1e1e22;
    color: #eaeaea;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
    outline: none;
}

.client-btn.primary {
    background: #ffffff;
    color: #111;
    border-color: #fff;
}

.client-btn:hover {
    transform: translateY(-1px);
}

.client-btn:active {
    transform: translateY(0);
}

.client-btn .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 1.5rem;
    color: #555;
}

.client-btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a8a8ad;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease;
}

.client-btn-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.client-btn-card .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.5rem;
    color: #777;
}

.client-bottom-wrap {
    padding-top: 40px 0 40px;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
}

.client-content-section {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.07);

    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 18px;
    padding: 20px 40px;
    /* backdrop-filter: blur(6px); */
}

.client-section-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #eee;
}

.client-content-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0 20px;
    gap: 60px;
}

.client-content-section .client-content-list>.client-content-item:last-child {
    border-bottom: none;
}

.client-content-item-text h3 {
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ccc;
}

.client-content-item-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #a8a8ad;
}

.client-content-item-icon .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 36px;
    font-weight: 400;
    color: #666;
    line-height: 1;
}



/* Wersja jasna LIGHT */
.client-content-section.light {
    background: #eee;
    background: #e9eff5;
    border: 1px solid #e6e6e6;
    color: #222;
}

/* Tytuł sekcji */
.client-content-section.light .client-section-title {
    color: #111;
}

/* Lista */
.client-content-section.light .client-content-list {
    gap: 20px;
}

/* Item */
.client-content-section.light .client-content-item {
    border-bottom: 1px solid #d8d7d7;
}

.client-content-section.light .client-content-item-text h3 {
    color: #222;
    font-weight: 700;
}

.client-content-section.light .client-content-item-text p {
    color: #444;
    font-weight: 600;
}

.client-content-section.light .client-content-item-icon .icon {
    color: #999;
}

/* Wersja jasna LIGHT  end */


@media (max-width: 768px) {




    .client-header {
        text-align: center;

    }

    .client-title {
        padding: 2rem 0;
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .client-cta-row {
        gap: 10px;
    }

    .client-btn {
        padding: 10px 14px;
    }

    .client-section-title {
        font-size: 1.2rem;
    }

     .client-hero {
        grid-template-columns: 1fr;
        padding: 60px 16px;   /* 🔑 mniejszy padding, żeby nie wyjeżdżało */
    }

   .client-hero-img {
    position: relative;   /* 🔑 usuń absolute */
    inset: unset;
    width: 100%;          /* 🔑 dopasuj do kontenera */
    height: auto;
    border: 0;
    border-radius: 20px;  /* opcjonalnie, mniejszy radius na mobile */
    display: block;
  }

  .client-hero-content {
    width: 100%;
    padding: 20px;
  }
}

/* -------------------- CLIENT end ----------------- */


/* -------------------- ANSWERS start ----------------- */

#answers {
    color: #f1f5f9;
    background: #0f0f11;
    line-height: 1.5;
}

.answers-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 140px;
}

.answers-header {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 12px 0 60px;

    text-align: left;
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (max-width: 1000px) {

    .answers-wrapper {
        padding: 20px;
    }

    .answers-header {
        padding: 0 20px;
        font-size: 2rem;
        text-align: center;
    }

    .answers-card {
        padding: 0 20px;
    }
     .answers-grid {
        gap: 0px;
     }
}

@media (min-width: 720px) {

    .answers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .answers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.answers-card {
    background: transparent;
    /* slate-800 */
    padding: 28px 24px;
    text-align: center;
}

.answers-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
    gap: 30px;
}

.answers-pin {
    display: inline-flex;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #334155; */
    color: #888;
    /* slate-400 */
    background: transparent;
}

.answers-pin .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 6rem;
}

.answers-pin-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.answers-list {
    margin: 40px 0 0;
    list-style: none;
    text-align: left;

    /* background: #1a1919; */
    border-radius: 12px;
    padding: 20px 20px;

}

.answers-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 4px;

    border-top: 1px solid #333;
}

.answers-item:first-child {
    border-top: 0;
}

.answers-item .name {
    flex: 1;
    font-size: 0.96rem;
    color: #ccc;
    font-weight: 500;
}

.answers-item .meta .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.7rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;

}

.answers-item:hover {
    background: #201f1f;
    border-radius: 12px;
    padding-left: 10px;
    transition: background .2s ease, padding .2s ease;
    border-top: transparent;
}

/* -------------------- ANSWERS end ----------------- */


/* -------------------- BEAFER start ----------------- */

.container-beafter {
    background: #0f0f11;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 3fr;
    /* zmień proporcje wg potrzeb */
    /* min-height: 100vh; */
    padding-top: 60px;
    /* nabvar */

    animation: FadeIn 0.8s ease-in-out forwards;
}

/* Kolumna lewa */
.beafter-left {
    width: 90%;
    margin: 0 auto;
    /* padding: 40px 80px 40px 200px; */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.beafter-left-container {
    width: 80%;
    height: 90%;
    /* margin: auto 0 auto 100px ; */
    margin: auto;
}

.beafter-center-content {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beafter-head {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.beafter-head-sm {
    text-align: left;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.25rem;
    font-weight: 500;
    color: #bbb;
}

.beafter-head-ico {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    opacity: 0.5;
    margin-right: 12px;
    font-size: 1.5rem
}

.beafter-image-box {
    margin-top: auto;
    margin-bottom: 50px;
    /* desktop -> na dole */
}

/* Kolumna prawa */
.beafter-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}


.beafter-long-bubble {

    position: absolute;
    top: 20px;
    right: 60px;

    background: white;
    color: #444;
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-decoration: none;
    transition: all 0.3s ease;

    z-index: 20;
}


.beafter-long-bubble .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.4rem;
    color: #444;
    line-height: 1;
    margin-right: 3px;
}

.beafter-long-bubble-2 {

    position: absolute;
    top: 20px;
    left: 60px;

    background: white;
    color: #444;
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-decoration: none;
    transition: all 0.3s ease;

    z-index: 20;
}


.beafter-long-bubble-2 .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 1.4rem;
    color: #444;
    line-height: 1;
    /* margin-right: 3px; */
}




/* Mobile */
@media (max-width: 768px) {
    
    .beafter-long-bubble {
        right: 20px;
        font-size: 0.9rem;
    }
    .beafter-long-bubble-2 {
        left: 20px;
        font-size: 0.9rem;
    }

    
    
    .container-beafter {
        display: flex;
        flex-direction: column;
    }



    .beafter-left-container {
        order: 1;
    }



    .beafter-left {
        height: auto;
        /* min-height: 100vh; */
        text-align: center;
        padding: 0 20px 0;
        /* heading + form wyśrodkowane */
        order: 2;
    }



    .beafter-center-content {
        margin: 40px 0;
        align-items: center;
        /* wyśrodkowanie heading i form */
    }




    .beafter-image-box {
        margin-top: 80px;
        display: flex;
        justify-content: center;
    }

    .beafter-right {
        order: 2;
        padding: 100px 20px;

    }
}


.compare-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    border-radius: 26px;

}

.compare-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
    -webkit-user-drag: none;
}

.compare-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.compare-after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.compare-after-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.compare-slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    /* szeroki obszar klikalny */
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.compare-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    /* cienka pionowa linia */
    background-color: #fff;
    /* background-color: #0f0f11; */
    transform: translateX(-50%);
    pointer-events: none;
    /* nie blokuje kliknięcia */

}

.compare-bubble {
    font-family: 'Material Symbols Outlined';
    position: absolute;
    font-weight: 500;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    background: #fff;
    /* background: #0f0f11; */
    border-radius: 50%;
    border: 10px solid white;
    /* border: 10px solid #0f0f11; */
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;

}

.compare-icon-img {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    width: 58px !important;
    height: 58px !important;
    animation: pulse 1s infinite;
    user-select: none !important;
    pointer-events: none !important;
}

.compare-slider-bar.clicked .compare-icon-img {
    /* animation: none; */
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}


@media (max-width: 1200px) {
    .compare-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 360px;
        user-select: none;
        -webkit-user-drag: none;
    }

    .compare-after-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 400px;
        object-fit: cover;
    }

    .compare-bubble img {
        display: none; /* usuwa obrazek z widoku */
        width: 30px;
        height: 30px;
    }
    .compare-icon-img {
    
        width: 30px !important;
        height: 30px !important;
        
    }
}



.beafter-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 30px;
}

.beafter-pin {
    display: inline-flex;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #334155; */
    color: #888;
    /* slate-400 */
    background: transparent;
}

.beafter-pin .icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-size: 6rem;
}

.beafter-pin-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #eee;
    letter-spacing: 0.2px;
}


/* -------------------- BEAFER end ----------------- */


/* -------------------- FITNESS start ----------------- */

#fitness {
    margin: 0;
    padding: 0;
    color: #111;
    background: #fff;
    line-height: 1.5;
}

/* Global line */
.fitness-hr {
    border: none;
    /* usuwa domyślną kreskę */

    background-color: #222;
    /* kolor */

    margin: 0 auto 100px;
    /* odstępy i wyśrodkowanie */
    border: 0;
    height: 1px;
    background: #222;

}

/* Hero */
.fitness-hero {
    background: #161616;
    color: #fff;
    padding: 10px 40px 160px;
}

.fitness-hero-header {
    max-width: 1400px;
    margin: 0 auto 160px;
}

.fitness-hero h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 120px;
}

.fitness-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;

}

.fitness-hero-col {
    position: relative;
    width: 300px;
}

.fitness-hero-col img {
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: opacity 0.8s ease;
    padding: 0 0 40px;
}

.fitness-hero-col img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fitness-hero-col:hover img.hover-img {
    opacity: 1;
}

.fitness-hero-col:hover img.main-img {
    opacity: 0;
}

.fitness-hero-col .icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #333;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Material Symbols Outlined';
    font-size: 28px;
    font-weight: 200;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 111;
}



.fitness-stat {
    font-size: 4rem;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 40px;
}

.fitness-stat span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    /* margin-top: 0.15rem; */
    color: #ddd;
}

.fitness-box {
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.fitness-box small {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.fitness-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0 10px 0;
    line-height: 1.3;
}

.fitness-box .btn-normal {
    background: #333;
    color: #fff;
    border: 2px solid #333;
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    word-spacing: 0.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}


.fitness-box .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 5rem;
    font-weight: 400;
    color: #aaa;
    line-height: 1;

}

.fitness-box .btn-normal:hover {
    opacity: 0.9;
}

 
.fitness-box .btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #666;
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    word-spacing: 0.2rem;
    cursor: pointer;
    text-decoration: none;
    margin-left: 8px;
    transition: opacity 0.3s ease;
}
 
.fitness-box .btn-outline:hover {
    opacity: 0.7;
}


/* fitness-projects */
.fitness-projects {
    background: #fff;
    padding: 4rem 1rem 6rem;
}

.fitness-projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    padding: 20px;
}

.fitness-project-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.fitness-project-card-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 5rem;
    color: #999;
    flex-shrink: 0;
    margin: 0;
    line-height: 1;

}

.fitness-project-card h4 {
    margin: 0 0 40px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #333;

}

.fitness-project-card p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {

    .fitness-hero-header {
        margin: 0 auto 40px;
    }

    .fitness-project-card {
        width: 90%;
    }
    .fitness-project-card h4 {
        margin: 0 0 20px;
        font-size: 1.35rem;
     }

    .fitness-project-card p {
        font-size: 1rem;
    }

    .fitness-project-card-icon {
        font-size: 3.6rem;
      
    }

    .fitness-hero-grid {
        grid-template-columns: 1fr;
    }

    .fitness-hero h2 {
        font-size: 2rem;
        text-align: center;
    }

    .fitness-projects-grid {
        grid-template-columns: 1fr;
    }

    .fitness-projects {
        padding: 1.2rem 0;
    }

    .fitness-hero-col {
        margin: 0 auto;
        text-align: center;
        /* wyśrodkowanie tekstu i obrazka */
    }

    .fitness-hero-col img {
        margin: 0 auto 0 auto;
        /* obrazek wyśrodkowany + odstęp poniżej */
    }
}

/* -------------------- FITNESS end ----------------- */

/* -------------------- GAL start ----------------- */

.gal {
    /* padding: 10px; */
}

.gal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    margin-bottom: 6px;

}

.gal-left {
    flex: 2;
    position: relative;
}

.gal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    cursor: pointer;

}

.gal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;

}

.gal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
    border-radius: 6px;
    cursor: pointer;
}

.gal-badge {
    position: relative;
    overflow: hidden;
}

.gal-badge .icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #272626;
    color: #fff;
    background: #fff;
    color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Material Symbols Outlined';
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 111;
    opacity: 0;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

    transform: scale(0.6);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gal-badge:hover .icon-badge {
    transform: scale(1);
    opacity: 1;
}




/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #fff;
    /* background: #141414; */

    align-items: center;
    justify-content: center;
    z-index: 1000;

    /* Zamiast display: none/flex */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    /* Musi być ustawione, bo to flexbox */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox img {
    max-width: 98%;
    max-height: 98%;
    transition: transform 0.3s ease, opacity 0.1s ease;
    transform: scale(0.8);
    opacity: 0;
}

.lightbox.active img {
    transform: scale(1);
    opacity: 1;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 22px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background: #444;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}




/* responsywność */
@media (max-width: 768px) {

    .gal {
        padding: 10px;
    }

    .gal-container {
        flex-direction: column;

    }

    .gal-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gal-right img {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        object-fit: cover;
    }



}

/* -------------------- GAL end ----------------- */






/* animacja powiększenia i powrotu */
@keyframes FadeIn {
    0% {
        /* transform: scale(0.7); */
        opacity: 0;
    }

    100% {
        /* transform: scale(1);   */
        opacity: 1;
    }
}

@keyframes ScaleInFaq {
  0% {
    transform: translateY(-20px); /* start lekko zmniejszony */
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);    /* końcowy normalny rozmiar */
    opacity: 1;
  }
}