@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

html{
    font-size: 10px;
    scroll-behavior: smooth;
}
html, body{
    font-family: 'Quicksand', sans-serif;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body.menu-open{
    overflow: hidden;
}

/* ===== NAVBAR ===== */
nav{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 122px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    z-index: 100;
    transition: transform .35s ease, box-shadow .3s ease;
}
nav.nav-hidden{
    transform: translateY(-100%);
}


.nav-container{
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-big{
    font-size: 3.3rem;
    font-weight: 700; 
    color: #243082;
}
.navy{ 
    color: #243082; 
}
.orange{ 
    color: #EF870D; 
}
.logo-small{
    font-size: 1.3rem;
    font-weight: 500;
    color: #243082;
    margin-top: 2px;
    letter-spacing: .3px;
}

.buttons{ 
    display:flex; 
    align-items:center; 
    gap:40px; 
}
.buttons ol{ 
    display:flex; 
    gap:8px; 
    list-style:none; 
}
.buttons ol li a{
    position: relative;
    color:#8ba0c3; 
    text-decoration:none;
    font-size:1.5rem; 
    font-weight:500; 
    text-transform:uppercase;
    padding:1rem .5rem; 
    display:inline-block;
    transition:color .3s ease;
}
.buttons ol li a::after{
    content:''; 
    position:absolute; 
    bottom:0; left:50%;
    width:0; height:2px; 
    background:#EF870D;
    transition:width .3s ease; 
    transform:translateX(-50%);
}
.buttons ol li a:hover{ 
    color:#EF870D; 
}
.buttons ol li a:hover::after{ 
    width:70%; 
}

.btn{
    border:2px solid #EF870D; 
    color:#EF870D;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    font-size: 2rem; 
    font-weight:500; 
    transition:.3s;
    background-color: #fff;
}
.btn:hover{ 
    background:#EF870D; 
    color:#fff; 
}


.burger{
    color:#EF870D; 
    font-size:3.2rem; 
    padding:.9rem 1rem;
    position:fixed; 
    right:2rem; 
    top:1.6rem; 
    cursor:pointer;
    display:none; 
    z-index:101; 
    background:#fff; 
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.08); 
    transition:transform .3s ease;
}
.burger:hover{ 
    transform:scale(1.08); 
}

.nakladka{
    background-color: rgba(130, 165, 195, 0.94);
    position:fixed; 
    top:0; 
    right:0; 
    height:100%; 
    width:0;
    overflow:hidden; 
    z-index:200;
    display:flex; 
    align-items:center; 
    justify-content:center;
    transition: width .4s cubic-bezier(0.4,0,0.2,1);
}
.nakladka.open{ 
    width:100%; 
}

.nakladka ol{ 
    width:100%; list-style:none; 
}

.nakladka ol a{
    display:block; 
    margin-bottom:2vh; 
    padding:3vh; 
    text-align:center;
    color:#fff; 
    text-decoration:none; 
    font-size:2.2rem; 
    font-weight:600;
    text-transform:uppercase;
}
.nakladka ol a:hover{ 
    background-color:#fff; 
    color:#111; 
}

.zamknijX{
    border-radius:100px; 
    background-color:#fff; 
    color:#000;
    position:absolute; 
    top:2rem; 
    right:2rem; 
    font-size:4rem;
    padding:.3rem 1.2rem; 
    line-height:1; 
    text-decoration:none;
    cursor:pointer; 
    transition:transform .3s ease;
}
.zamknijX:hover{ 
    transform:rotate(90deg); 
}




.container{
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}






.hero{
    height:80vh;
    display: flex;
    align-items: center;
    position: relative;
    background:url(../img/att.6FdUlLzW9X4Aufvx6viiVZlLXsfvUWXvgybgn38f-G4.jpg) no-repeat right center / cover;
}
.blur{
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.70); 
    z-index: 1;
}
.hero .container{
    position: relative;
    z-index: 2; 
}
.glass{
    max-width: 500px;
}
.glass h1{
    font-size: 5rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.glass p{
    max-width: 350px;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 6rem;
    line-height: 1.6;
}
.btn2{
    border:2px solid #EF870D; 
    color:#fff;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    font-size: 2rem; 
    font-weight:500; 
    transition:.3s;
    background-color: #EF870D;
}
.btn2:hover{ 
    background:#fff; 
    color:#EF870D; 
}

section.zespol{
    padding: 5vh 0;
    min-height: 20vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
    position: relative;
}
section.zespol h2{
    font-weight: 500;
    font-size: 4rem;
    color:#1a1a2e;
    margin-bottom: .5rem;
    position: relative;
    display: inline-block;
}
section.zespol h2::after{
    content:'';
    display:block;
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, #EF870D, transparent);
    margin-top: 1rem;
}
section.zespol p{
    font-size: 1.6rem;
    color:#555;
    max-width: 850px;
    margin-top: 1.2rem;
    line-height: 1.6;
}
.zespol-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.zespol-text{
    flex: 1;       
    min-width: 0;  
}
.iconm{

    width: 300px;
    height: auto;
    flex-shrink: 0;
}





.specjalisci{
    background: #7d9cba; 
    padding: 6rem 0;
    position: relative;
    overflow: hidden; 
}
.mozg{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 340px;
    width: auto;
    z-index: 1;         
    pointer-events: none;
}
.mozg-lewy{ 
    width: 80rem;
    height: auto;
    left: -220px; 
}
.mozg-prawy{ 
    width: 50rem;
    height: auto;
    top: 500px;
    right: -100px; 
}
.specjalisci-grid,
.specjalisci h2,
.btn-center{
    position: relative;
    z-index: 2;        
}
.specjalisci .container{
    position: relative;
    z-index: 2;
   
}
.specjalisci h2{
    text-align: center;
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.specjalisci h2::after{
    content: '';
    display: block;
    width: 1000px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EF870D, transparent);
    margin: 2rem auto 6rem;
}
.specjalisci-grid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.karta{
    background: #cfe0ef;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 230px;
    height: 350px;
    text-align: center;
    transition: transform .3s ease;
}
.avatar{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden; 
    background: #c9c9c9; 
    margin: 0 auto 3rem ;
}
.avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.avatar img[alt="Małgorzata Roszkowska"]{
    object-position: top center;
    object-position:center -10px;
}

.avatar img[alt="Agnieszka Paruszewska"]{
    object-position:center -40px;
}

.avatar img[alt="Anna Paszkowska"]{
    object-position: top center;
}

.avatar img[alt="Karolina Szwarc-Kordowska"]{
    object-position: top center;
}





.rola{
    font-size: 1.8rem;
    color: #444;
    display: block;
}
.karta h3{
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-top: 1rem;
    line-height: 1.3;
}
.btn-center{
    display: block;
    width: max-content;
    margin: 8rem auto 0;
    position: relative;
    z-index: 2;
}









.pomoc{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 25vh;
    display: flex;
    align-items: center;
    background: url(../img/1.png) no-repeat right center / cover;
}
.blurpomoc{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    z-index: 1;
}
.pomoc .container{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.pomoc h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.pomoc p{
    font-size: 1.6rem;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}














.trudnosc{
    background: #cfe0ef;
    padding: 5rem 0;
}

.trudnosc-flex{
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trudnosc-text{
    flex: 1;
    min-width: 0;
}

.trudnosc-text h2{
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: .8rem;
    margin-top: 2rem;
}
.trudnosc-text h2::after{
    content: '';
    display: block;
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, #EF870D, transparent);
    margin: 1rem 0 1.5rem;
}


.trudnosc-text p{
    font-size: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.przycisk{
    position: relative;      
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    width: 260px;              
    height: 260px;
}

.trudnosc-mozg{
    position: absolute;
    inset: 0;                 
    width: 100%;
    height: 100%;
    object-fit: contain;      
    opacity: .7;
    z-index: 1;               
    pointer-events: none;
}

.przycisk .btn2{
    position: relative;
    z-index: 2;                
}


.trudnosc-zdjecia{
    flex: 1;
}
.trudnosc-zdjecia img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}


















.proces{
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: #fff;
    
}


.proces .container{
    position: relative; 
}

.proces-mozg{
    position: absolute;
    top: -3vh;
    right: 0; 
    width: 400px;
    height: auto;
    pointer-events: none;
    z-index: 0; 
}


.etykieta,
.proces h2,
.proces-lead,
.proces-grid{
    position: relative;
    z-index: 1;
}

.etykieta{
    display: block;
    color: #EF870D;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2rem;
}

.proces h2{
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a2e;
    max-width: 400px;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.proces h2::after{
       content: '';
    display: block;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, #EF870D, transparent);
    margin-top: 1rem;
}
.proces-lead{
    font-size: 1.5rem;
    color: #555;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 6rem;
}


.proces-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.proces-top{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tresc{
    margin: 3rem 1rem 3rem 2rem;
}
.numer{
    width: 32px;
    height: 32px;
    background: #EF870D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.kolo img{
    width: 50px; 
    height: auto;
}
.kolo{
    margin-top: 3rem;
    width: 93px;
    height: 93px;
    background: #CFE6FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.proces-karta h3{
    font-size: 2rem;
    font-weight: 500;
    color: #243082;
    margin-bottom: .8rem;
    line-height: 1.3;
}

.proces-karta h3::after{
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #EF870D, transparent);
    margin-top: .6rem;
} 

.proces-karta p{
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
}
.proces-karta{
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f7fafd;
    border: 1px solid #e5edf5;
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);
} 
.proces{
    padding: 6rem 0; }

.proces-cta{
    background: #d6e6f5;
    border-radius: 14px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-item{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.cta-ikona{
    width: 44px;
    height: 44px;
    background: #fff;
    color: #243082;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cta-item strong{
    display: block;
    font-size: 1.4rem;
    color: #1a1a2e;
}
.cta-item p{
    font-size: 1.2rem;
    color: #555;
    margin-top: .2rem;
}

.cta-divider{
    width: 1px;
    height: 40px;
    background: #b8cde0;
}








.dolnybox {
    max-width: 1400px;
    margin: 4rem auto; 
    background: #E7F3FD;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);
    
}

.zadbajosiebe {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 20px;
    flex-wrap: wrap;
}


.punkt{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 240px; 
}

.kolo2 {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #d6eafb;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.proces-ikona {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.tresc1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.tresc1 h3 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    color: #243082;
    font-weight: 700;
}

.tresc1 p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #243082;
}

.separator {
    height: 55px;
    width: 2px;
    background: #EF870D;
    margin: 0 15px;
    flex-shrink: 0;
}

.dolnybox .btn2{
    flex-shrink: 0; 
}










.finalna{
    background: linear-gradient(180deg, #eaf2fb 0%, #ffffff 100%);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.finalna-mozg{
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 0; 
}
.finalna-mozg-lewy{ 
    top: -60px;
    left: -280px;  
}
.finalna-mozg-prawy{ 
    right: -280px; 
    top: -60px;
    
}

.finalna .container{
    position: relative;
    z-index: 1;
}

.finalna-zdjecie img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    background: #fff;
}


.finalna-karta{
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2.5rem 3rem;
    text-align: center;
    max-width: 700px;
    margin: -50px auto 2.5rem;
    position: relative;
    z-index: 2;
}

.finalna-karta h2{
    font-size: 2.2rem;
    font-weight: 600;
    color: #243082;
    margin-bottom: .8rem;
}

.finalna-karta p{
    font-size: 1.3rem;
    color: #555;
}

.finalna-btn{
    display: block;
    width: max-content;
    margin: 0 auto;
}










.stopka{
    background: #1a2b6d;
    padding: 5rem 0 0;
}

.stopka-grid{
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
}

.stopka-brand .logo-big{ 
    font-size: 2.4rem; 
}
.stopka-brand .navy{ 
    color: #fff; 
}

.stopka-brand p{
    color: #c9d3ec;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 1.2rem;
}

.stopka-firma{
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #8b9bd1;
}

.stopka-col h4{
    color: #EF870D;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.stopka-col ul{
    list-style: none;
}

.stopka-col ul li{
    margin-bottom: .9rem;
}

.stopka-col ul li a{
    color: #c9d3ec;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color .3s ease;
}
.stopka-col ul li a:hover{
    color: #EF870D;
}

.stopka-kontakt li{
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: #c9d3ec;
    font-size: 1.5rem;
    line-height: 1.4;
}
.stopka-kontakt i{
    color: #EF870D;
    margin-top: .3rem;
    width: 16px;
}
.stopka-kontakt a{
    color: #c9d3ec;
    text-decoration: none;
}
.stopka-kontakt a:hover{
    color: #EF870D;
}

.stopka-copy{
    border-top: 1px solid #EF870D;
    margin-top: 3.5rem;
    padding: 1.6rem 0;
    text-align: center;
    color: #8b9bd1;
    font-size: 1.2rem;
}

.stopka-disclaimer{
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    text-align: center;
}

.stopka-disclaimer p{
    color: #8b9bd1;
    font-size: 1rem;
    line-height: 1.5;
}

@media all and (max-width: 700px){
    .stopka-disclaimer p{
        font-size: 1rem;
    }
}

















@media all and (max-width: 1800px){

    .hero{
        background-position: center; 
    }
    .finalna-mozg{
        display: none;
    }

}

@media all and (max-width: 1380px){
    .mozg{
        display: none;
    }
} 

@media all and (max-width: 1150px){
    .burger{ 
        display:block; 
    }
    nav{ 
        display:none; 
    }
    .specjalisci h2::after{ 
        width: 500px; 
    }
    .blur{
        width: 100%;
    }
    .hero{
        background-position: center; 
    }
    .icon{
        display: none;
    }
    
}

@media all and (max-width: 1150px){
    .proces-grid{
        grid-template-columns: repeat(2, 1fr); 
    }
    .proces-mozg{
        display: none;
    }
}


@media all and (max-width: 992px){
    .dolnybox{
        flex-direction: column; 
        align-items: stretch;
        gap: 1.5rem;
        padding: 25px 20px;
    }
    .zadbajosiebe{
        flex-direction: column; 
        align-items: flex-start;
        gap: 1.5rem;
    }
    .separator{
        display: none;
    }
    .dolnybox .btn2{
        width: 100%;
        text-align: center;
    }

}


@media all and (max-width: 900px){
    .karta{ 
        width: 45%; 
    } 
    .trudnosc-flex{
        flex-direction: column;
    }
    .trudnosc-zdjecia{
        width: 100%;
    }
    .trudnosc-text h2{ 
        font-size: 2.2rem; 
    }
    .trudnosc-text h2::after,
    .trudnosc-text h3::after{ 
        width: 160px; 
    }
    .stopka-grid{
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .stopka-brand{
        grid-column: 1 / -1; 
    }
        .proces-grid{
        grid-template-columns: 1fr; 
    }
}

@media all and (max-width: 700px){
    .numerikony{
        display: none;
    }
    .proces-mozg{ 
        display: none; 
    } 
    .proces h2{ 
        font-size: 2.2rem; 
    }

    .proces-cta{
        flex-direction: column;
    }

    .finalna-mozg{ 
        display: none; 
    }
    .finalna-zdjecie img{ 
        height: 220px; 
    }
    .finalna-karta{
        padding: 2rem 1.5rem;
        margin-top: -30px;
    }
    .finalna-karta h2{ 
        font-size: 1.8rem; 
    }
    .iconm{
        display: none;
    }
}

@media all and (max-width: 600px){
    .karta{ 
        width: 100%; max-width: 280px; 
    } 
    .pomoc{ 
        min-height: 45vh; 
    }
    .pomoc h3{ 
        font-size: 2.2rem; 
    }
    .pomoc p{ 
        font-size: 1.4rem; 
    }
       .trudnosc-text h2{ 
        font-size: 1.9rem; 
    }
    .trudnosc-text h3{ 
        font-size: 1.6rem; 
    }
    .przycisk{
        width: 100%;
        align-items: center;
    }
    .przycisk .btn2{
        width: 100%;
        text-align: center;
    }
        .stopka-grid{
        grid-template-columns: 1fr; 
    }
        .kolo2{
        display: none;
    }
    
}


@media all and (max-width: 450px){
    .specjalisci h2::after{ 
        width: 300px; 
    }
    .glass h1{ 
        font-size: 3.5rem; 
    }
}























