:root {
    --Midnight: #01021D;
    --White: #ffffff;
    --Persian-Blue: #235AF9;
    --Ship-Gray: #4D4D60;
    --background-black-haze: #FAFAFC;
    --Highlight: #D9D9DF;
    --subpage-background: #f2f2f2;
    --Pale-Blue: #EBF1FF;
  }


@font-face {
    font-family: 'Inter';
    src: url(fonts/Inter-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url(fonts/Inter-Bold.ttf);
    font-weight: 700;
}

body{
    margin: 0;
    padding: 0;
    background: var(--White);
    color: var(--Midnight);
    font-family: Inter;
    font-feature-settings: 'clig' off, 'liga' off;
}

h1{
    margin-bottom:0;
}

h2, h3, h4, h5, h6{
    font-weight: 400;
}

a{
    color: var(--Midnight);
    text-decoration:none;
}

a:hover{
    color: var(--Persian-Blue);
}

a, button, input[type=submit], .industry li{
    transition:.4s;
}

p{
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

.button{
    display:inline-block;
    padding: 14px 42px;
    background: var(--Persian-Blue);
    border:1px solid var(--Persian-Blue);
    border-radius:4px;
    color: var(--White);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

.button:hover{
    background: var(--White);
    color: var(--Persian-Blue);

}

@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1130px;
    }
}

.arrow-link{
    display:flex;
    align-items:center;
}

.arrow-link img{
    position:relative;
    margin-left:15px;
    transition:.4s;
}

.arrow-link:hover img{
    margin-left:25px;
}

/* START TOP NAV */

#top-nav{
    padding:35px 0;
    border-bottom:1px solid var(--Highlight);
    margin-bottom:35px;
}

#top-nav.top-nav-home{
    position:relative;
    left:-87px;
    display:flex;
    justify-content: space-between;
    width:calc(100% + 86px);
    border:none;
}

@media (max-width: 1399.98px){
    #top-nav.top-nav-home {
        left:0;
        width:100%;
    }
}

#top-nav .container{
    display:flex;
    justify-content: space-between;
    align-items:center;
}


@media (min-width: 1400px){
    #top-nav .container {
        max-width: 1305px;
    }
}


.logo-header{
    font-size:24px;
    font-weight:700;
    letter-spacing: -1.108px;
}

.logo-header a {color: var(--Persian-Blue);}

.top-nav-list{
    margin-bottom:0;
    display:flex;
    align-items:center;
    list-style:none;
}

.top-nav-list a{
    padding:7px 17px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

.top-nav-list .dropdown{
    position:relative;
}

.top-nav-list .dropdown .dropdown-icon{
    margin-top:-3px;
    margin-left:8px;
    transition:.4s;
}

.top-nav-list .dropdown:hover > a .dropdown-icon{
    transform:rotate(180deg);
}

.top-nav-list > .dropdown > .top-nav-item-dropdown, .top-nav-list > .dropdown > .top-nav-item-dropdown > .dropdown > .top-nav-item-dropdown{
    display:none;
    list-style:none;
    padding-left:0;
}

.top-nav-list > .dropdown:hover > .top-nav-item-dropdown{
    display:block;
    position:absolute;
    top:30px;
    left:0px;
    background: var(--White);
    padding:10px 5px;
    min-width:150px;
    box-shadow:0 0 20px rgba(0,0,0,0.1);
}

.top-nav-list > .dropdown > .top-nav-item-dropdown > .dropdown:hover > .top-nav-item-dropdown{
    display:block;
    position:absolute;
    top:-10px;
    left:120px;
    background: var(--White);
    padding:10px 5px;
    min-width:150px;
    box-shadow:0 0 20px rgba(0,0,0,0.1);
}

.top-nav-list > .dropdown > .top-nav-item-dropdown li{
    display:block;
}

.top-nav-list > .dropdown > .top-nav-item-dropdown li a{
    display:flex;
    justify-content:space-between;
}

.demo-link{
    display:flex;
    align-items:center;
    gap:17px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

.demo-link img{
    position:relative;
    left:0;
    transition:.4s;
}

.demo-link:hover img{
    left:10px;
}

.hamburger{
    display:flex;
    flex-direction: column;
    gap:5px;
    cursor:pointer;
}

.hamburger .line{
    width:24px;
    height:3px;
    background: var(--Midnight);
    margin:0!important;
}

@media (min-width: 1200px){
    #top-nav .menu-container{
        display:flex;
    }
}

@media (max-width: 1199.98px){
    #top-nav .menu-container, #top-nav.menu-container{
        display:flex;
        position:fixed;
        top:0;
        left:-300px;
        box-shadow:0 0 15px rgba(0,0,0,0.09);
        flex-direction: column;
        justify-content: flex-start;
        align-items:baseline;
        overflow-y: auto;
        gap:60px;
        width:300px;
        height:100vh;
        background: var(--background-black-haze);
        padding:30px;
        transition:.4s;
        z-index:99;
    }

    #top-nav .menu-container.active, #top-nav.menu-container.active{
        left:0;
    }

    #top-nav .menu-container .top-nav-list, #top-nav.menu-container .top-nav-list{
        display:flex;
        flex-direction: column;
        gap:15px;
        align-items:baseline;
        padding-left:0;
    }

    #top-nav .menu-container .top-nav-list a, #top-nav.menu-container .top-nav-list a{
        padding-left:0;
    }

    .top-nav-list > .dropdown:hover > .top-nav-item-dropdown, .top-nav-list > .dropdown > .top-nav-item-dropdown > .dropdown:hover > .top-nav-item-dropdown{
        display:block;
        position:static;
        background: none;
        padding:5px 0 0 15px;
        box-shadow:none;
    }

    .top-nav-list > .dropdown:hover > .top-nav-item-dropdown a, .top-nav-list > .dropdown > .top-nav-item-dropdown > .dropdown:hover > .top-nav-item-dropdown a{
        font-size:15px;
        line-height: 24px;
    }
}

.menu-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

/* pill */
.lang-switch{
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    border-radius:999px;
    background:#EBF1FF;
    line-height:1;
    user-select:none;
}

.lang-switch a{
    font-size:13px;
    font-weight:700;
    letter-spacing:.6px;
    text-decoration:none;
    color:#1f2b3a;
    padding:4px 6px;
    border-radius:999px;
    transition:.2s ease;
}

.lang-switch a:hover{
    color:#2f6bff;
}

.lang-switch span{
    color:#9fb6ff;
    margin:0 2px;
}

/* aktywny język */
.lang-switch a.active{
    background:#2f6bff;
    color:#fff !important;
}



/* STOP TOP NAV */

/* START INTRO */

#intro{
    position:relative;
}

#intro .container{
    position:relative;
    display:flex;
}

.hero-top-right{
    position: absolute;
    top: 18px;      /* dopasuj jeśli trzeba */
    right: 0;       /* dopasuj jeśli masz padding w containerze */
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

/* język */
.hero-top-right .lang-switch{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.hero-top-right .lang-switch a{
    color: #1f2b3a;
    text-decoration: none;
    transition: .25s ease;
}

.hero-top-right .lang-switch a:hover{
    color: #2f6bff;
}

.hero-top-right .lang-switch span{
    margin: 0 6px;
    color: #c9c9c9;
}

.hero-top-right .lang-switch a.active{
    color: #2f6bff;
}

/* WYŁĄCZ stary absolute na buttonie */
#intro .top-intro-button{
    position: static;
}

/* wrapper w prawym górnym rogu */
.hero-top-right{
    position: absolute;
    top: 19px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 20;
}


#intro .column-content{
    width:55%;
    padding-bottom:100px;
}

#intro .column-content .content{
    padding-top:80px;
}

#intro h2{
    margin-bottom:30px;
    font-size: 44px;
    line-height: 57px;
    letter-spacing: -2.03px;

}

#intro .text{
    display:block;
    margin-bottom:40px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#intro .company-list{
    margin-bottom:80px;
    padding-left:0;
    display:flex;
    gap:60px;
    list-style:none;
}

.calculator .label{
    display:block;
    margin-top:25px;
    margin-bottom:10px;
    color: var(--Ship-Gray);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

.calculator .number-input{
    display:flex;
}

.calculator .minus, .calculator .plus{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    flex:0 0 50px;
    height:62px;
    background: var(--Persian-Blue);
    border:1px solid var(--Persian-Blue);
    color: var(--White);
    font-size:24px;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
}

.calculator .minus:hover, .calculator .plus:hover{
    background: var(--White);
    color: var(--Persian-Blue);
}

.calculator .minus{
    border-top-left-radius:4px;
    border-bottom-left-radius:4px;
}

.calculator .plus{
    border-top-right-radius:4px;
    border-bottom-right-radius:4px;
}

.calculator .number-input input{
    width:calc(100% - 200px);
    border:none;
    border-top:1px solid var(--Highlight);
    border-bottom:1px solid var(--Highlight);
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
    text-align:center;
}

@media (max-width: 991.98px){
    .calculator .number-input input{
        width:100%;
    }
}

.calculator .number-input input:focus{
    box-shadow:none;
    border-top:1px solid var(--Persian-Blue);
    border-bottom:1px solid var(--Persian-Blue);
    outline:0;
}

.calculator .button-calculator{
    margin-top:40px;
}

#intro .column-image{
    position:absolute;
    z-index:-1;
    left:60%;
    width:70%;
    height:100%;
    background:url(img/bg.jpg) no-repeat center;
    background-size:cover;
    background-position: -200px;
}

@media (max-width: 1399.98px){
    #intro .column-image{
        background-position: -300px;
    }
}

@media (max-width: 1199.98px){
    #intro .column-image{
        background-position: -400px;
    }
}

@media (max-width: 991.98px){
    #intro .column-image{
        background-position: -500px;
    }
}

@media (max-width: 767.98px){
    #intro .column-image{
        display:none;
    }
    #intro .column-content{
        width:100%;
    }
}

#intro .home-nav{
    align-items:center;
    justify-content: space-between;
    padding:35px 0;
}

/* STOP INTRO */

/* START WHY */

#why{
    padding:135px 0;
}

#why h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#why .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#why .arrow-link{
    margin-top:20px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#why .box{
    display: flex;
    flex-direction: column;
    gap:9px;
    align-items: baseline;
}

#why .box .title{
    margin-top:10px;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#why .box p{
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}
#why .box p:last-child{
    margin-bottom:0;
}

#why .why-content{
    display:flex;
    flex-direction: column;
    justify-content:space-between;
}

#why.contact-section .title{
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

/* STOP WHY */

#offer{
    padding:125px 0;
    border-top: 1px solid var(--Pale-Blue);
    border-bottom: 1px solid var(--Pale-Blue);
}

#offer h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#offer .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.108px;
}

#offer .sub-color {color:var(--Ship-Gray);}

#offer .arrow-link{
    margin-top:20px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#offer .box{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 25px 20px;
}

#offer .box img {margin-bottom: 30px;}

#offer .box .title{
    margin-top:10px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#offer .box p{
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}
#offer .box p:last-child{
    margin-bottom:0;
}

#offer .why-content{
    display:flex;
    flex-direction: column;
    justify-content:space-between;
}

#offer.contact-section .title{
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#agile{
    padding:125px 0;
    border-top: 1px solid var(--Pale-Blue);
    border-bottom: 1px solid var(--Pale-Blue);
}

#agile h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#agile .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.108px;
}

#agile .sub-color {color:var(--Ship-Gray);}

#agile .arrow-link{
    margin-top:20px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#agile .box{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 25px 20px;
}

#agile .box img {margin-bottom: 30px;}

#agile .box .title{
    margin-top:10px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#agile .box p{
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}
#agile .box p:last-child{
    margin-bottom:0;
}

#stack{
    padding:125px 0;
    border-top: 1px solid var(--Pale-Blue);
    border-bottom: 1px solid var(--Pale-Blue);
}

#stack h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#stack .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.108px;
}

#projects{
    padding:125px 0;
    border-top: 1px solid var(--Pale-Blue);
    border-bottom: 1px solid var(--Pale-Blue);
}

#projects .project-content-container {margin-bottom: 90px;}

#projects h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#projects .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.108px;
}

.works-ca .item {margin-bottom: 80px;}
.works-ca .item img {width: 100%;}
.works-ca .item .img {
    position: relative;
    border-radius: 20px;
    overflow: hidden; }
.works-ca .item .img .tags {
    position: absolute;
    left: 25px;
    bottom: 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }
.works-ca .item .img .tags a {
    font-size: 14px;
    padding: 7px 15px;
    line-height: 1.5;
    border-radius: 30px;
    background: #fff;
    color:#000;}
.works-ca .item .img .tags a:hover {
    background: var(--Persian-Blue);
    color: #fff; }

.works-ca .item h6 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 25px; }

.works-ca .item:hover .img .tags {
    opacity: 1;
    visibility: visible; }

.plink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* START COUNT */

#count{
    padding:100px 0;
    background: var(--Persian-Blue);
    color: var(--White);
}

#count h2{
    font-size: 44px;
    line-height: 57px;
    letter-spacing: -2.03px;
}

#count p{
    color: rgba(255, 255, 255, 0.80);
}

/* STOP COUNT */

/* START STEPS */

#steps{
    padding:120px 0;
}

#steps .step{
    display:flex;
    flex-direction:column;
    padding:45px 20px 40px;
    background: var(--background-black-haze);
}

#steps .step .number{
    width:37px;
    height:37px;
    background: var(--Persian-Blue);
    border-radius: 4px;
    color: var(--White);
    font-size: 20px;
    line-height: 36px;
    letter-spacing: -0.723px;
    text-align: center;
}

#steps .step .title{
    margin-top:20px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#steps .step p{
    margin-top:15px;
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}


/* STOP STEPS */

/* START FAQ */

#faq{
    padding:135px 0;
}

.faq-info{
    display:flex;
    flex-direction: column;
    align-items: baseline;
    gap:30px;

}

.faq-info h2{
    font-size: 28px;
    line-height: 57px;
    letter-spacing: -2.03px;
}

.faq-info span{
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -1.108px;
}

#faq-accordion{

}

#faq-accordion .accordion-item{
    border:none;
    border-bottom:1px solid var(--Highlight);
}

#faq-accordion h2.accordion-header .accordion-button{
    outline:0;
    display:flex;
    justify-content: space-between;
    padding:30px 0;
    color: var(--Midnight);
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#faq-accordion h2.accordion-header .accordion-button:after{
    background-image: url(img/icons/accordion-show.svg);
    margin-left:90px;
}

#faq-accordion h2.accordion-header .accordion-button:not(.collapsed)::after{
    background-image: url(img/icons/accordion-hide.svg);
    height:3px;
}

.accordion-button:not(.collapsed){
    background:none;
    box-shadow:none;
}

.accordion-button:focus{
    border:none;
    box-shadow:none;
}


#faq-accordion .accordion-body p{
    margin-top:15px;
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}



/* STOP FAQ */

/* START FOOTER */

footer{
    padding:75px 0 50px;
    background: var(--Midnight);
    color: var(--White);
}

.footer-info{
    display:flex;
    flex-direction: column;
    gap:25px;
}

.footer-info .logo{
    color: var(--White);
    font-size: 31.2px;
    font-weight: 700;
    letter-spacing: -1.44px;
}

.footer-info .footer-contact{
    color: var(--White);
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1.42px;
}
.footer-info .footer-contact:hover{
    color: var(--Persian-Blue);
}

.footer-info .footer-contact img{
    margin-left:25px;
}

footer .menu-footer{
    display:flex;
    justify-content:space-between;
}

footer .menu-title{
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

footer .menu-list{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-top:25px;
    padding-left:0;
    list-style:none;
    color: var(--White);
}

footer .menu-item a{
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}

footer .copy{
    display:flex;
    justify-content:space-between;
    padding:60px 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

footer .copy a{
    color: rgba(255, 255, 255, 0.80);
}



#content-page{
    padding:40px 0 200px;
    background: var(--White);
}

@media (min-width: 992px){
    #content-page .container {
        max-width: 935px;
    }
}

#content-page .container{

}

#content-page .article-title{
    margin-bottom:50px;
    font-size: 44px;
    line-height: 57px;
    letter-spacing: -2.03px;
}

#content-page p{
    margin-bottom:35px;
    color: var(--Ship-Gray);
}

#content-page h3{
    margin-top:50px;
    margin-bottom:30px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#content-page ul{
    padding-left:20px;
    color: var(--Ship-Gray);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#content-page .content {
    font-size: 18px;
    line-height: 32px;
    color: var(--Ship-Gray);
}

/* =========================
   HEADINGS
========================= */

#content-page .content h1 {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2px;
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: 400 !important;
}

#content-page .content h2 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -1.5px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 400 !important;
}

#content-page .content h3 {
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1px;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 400 !important;
}

#content-page .content h4 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400 !important;
}

#content-page .content h5 {
    font-size: 18px;
    line-height: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 400 !important;
}

#content-page .content h6 {
    font-size: 16px;
    line-height: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   PARAGRAPHS
========================= */

#content-page .content p {
    margin-bottom: 35px;
}

/* =========================
   SMALL
========================= */

#content-page .content small {
    font-size: 14px;
    line-height: 22px;
    display: block;
    opacity: 0.8;
}

/* =========================
   LISTS
========================= */

#content-page .content ul,
#content-page .content ol {
    padding-left: 24px;
    margin-bottom: 35px;
    font-size: 20px;
}

#content-page .content li {
    margin-bottom: 10px;
}

/* =========================
   PRE / CODE
========================= */

#content-page .content pre {
    background: #f6f6f6;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
}

#content-page .content code {
    background: #f2f2f2;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 15px;
}

/* =========================
   LINKS
========================= */

#content-page .content a {
    text-decoration: underline;
}

#content-page .content a:hover {
    opacity: 0.7;
}


#get-started{
    padding:120px 0;
    background: var(--Persian-Blue);
    color: var(--White);
    text-align:center;
}

#get-started h2{
    font-size: 44px;
    line-height: 57px;
    letter-spacing: -2.03px;
}

#get-started a{
    color: var(--White);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#get-started a img{
    margin-left:15px;
}

#contact{
    padding:70px 0 100px;
    background: var(--background-black-haze);
}

#contact .content{
    padding:30px 0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    gap:30px;
}

#contact .content h2{
    margin-bottom:20px;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#contact .content span{
    color: var(--Ship-Gray);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#contact .content p{
    padding-bottom:25px;
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;

}

#contact .content .company-list{
    padding-left:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:50px;
}

#contact .contact-form{
    background: var(--White);
}

#contact .contact-form .contact-form-container{
    padding:30px 40px 40px;
}

#contact .contact-form .contact-form-container h3{
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#contact .contact-form .contact-form-container span{
    color: var(--Ship-Gray);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#contact .contact-form .contact-form-container form{
    margin-top:20px;
}

#contact .contact-form .contact-form-container input{
    padding:16px 20px;
    width:100%;
    border: 1px solid var(--Highlight);
    border-radius: 3px;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}

#contact .contact-form .contact-form-container input:required{
    background:url(img/icons/required.svg) no-repeat;
    background-position: calc(100% - 10px) 10px;
}

#contact .contact-form .contact-form-container input::placeholder{
    color: var(--Midnight);
}

#contact .contact-form .contact-form-container .checkbox{
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#contact .contact-form .contact-form-container .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#contact .contact-form .contact-form-container .checkbox .checkmark {
    position: absolute;
    top:0;
    left:0;
    width:14px;
    height:14px;
    border:1px solid var(--Highlight);
    border-radius:20px;
    transition:.4s;
}

#contact .contact-form .contact-form-container .checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

#contact .contact-form .contact-form-container .checkbox input:checked ~ .checkmark {
    background-color: var(--Persian-Blue);
    border:1px solid var(--Persian-Blue);
}

#contact .contact-form .contact-form-container .checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#contact .contact-form .contact-form-container .checkbox input:checked ~ .checkmark:after {
    display: block;
}

#contact .contact-form .contact-form-container .checkbox .checkmark:after {
    left: 4px;
    top: 2px;
    width: 4px;
    height: 8px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#contact .contact-form .contact-form-container .checkbox .label-checkbox{
    display:block;
    margin-top:-5px;
    padding-left:25px;
    color: var(--Ship-Gray);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.738px;
}

#contact .contact-form .contact-form-container input[type=submit]{
    margin-top:40px;
    border:1px solid var(--Persian-Blue);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#contact .contact-form .info{
    padding:10px 30px 15px;
    border-top:1px solid var(--Highlight);
    color: var(--Ship-Gray);
    font-size: 14px;
    line-height: 27px;
    letter-spacing: -0.646px;
    text-align:center;
}

#contact .contact-form .info a{
    color: var(--Persian-Blue);
}

#help{
    padding:90px 0;
}

#help .help-box{
    padding:50px 35px;
}

#help .help-box.bg-blue{
    background: var(--Persian-Blue);
    color: var(--White);
}

#help .help-box.bg-black-haze{
    background: var(--background-black-haze);
    color: var(--Persian-Blue);
}

#help .help-box h2{
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#help .help-box p{
    padding-top:15px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#help .help-box a{
    display:inline-block;
    margin-top:30px;
    color: var(--White);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}



#help .help-box a img{
    position:relative;
    left:0;
    transition:.4s;
}

#help .help-box a:hover img{
    left:10px;
}

#help .help-box.bg-black-haze a{
    color: var(--Persian-Blue);
}

#help .help-box a img{
    padding-left:15px;
}

#offer{
    padding:70px 0;
}

#offer .content{
    display:flex;
    flex-direction: column;
    gap:20px;
}

#offer .content h2{
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 160% */
    letter-spacing: -1.421px;
}

#offer .content .text{
    color: var(--Ship-Gray);
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.723px;
}

#offer .content .title{
    margin-top:20px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: -1.108px;
}

#offer .content .industry{
    padding-left:0;
    list-style:none;
}

#offer .content .industry li{
    padding:6px 0;
    color: var(--Ship-Gray);
    cursor:pointer;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
    transition:.4s;
}

#offer .content .industry li:before{
    content:'';
    display:inline-block;
    margin-right:20px;
    width:0;
    height:12px;
    background:url(img/icons/arrow-short-blue.svg) no-repeat center;
    transition:.4s;
}

#offer .content .industry li.active:before, #offer .content .industry li:hover:before{
    width:12px;
}

#offer .offer-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

#offer .offer-item{
    padding:30px 25px;
    background: var(--background-black-haze);
}

#offer .offer-item .name{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

#offer .offer-item .name h2{
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1.42px;
}

#offer .offer-item .name a{
    display:flex;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
}

#offer .offer-item .name a img{
    position:relative;
    margin-left:15px;
    left:0;
    transition:.4s;
}

#offer .offer-item .name a:hover img{
    left:10px;
}

#offer .offer-item .content{
    margin-top:25px;
    color: var(--Ship-Gray);
}

#offer .offer-item .attributes{
    margin-top:40px;
    display:flex;
    gap:10px;
}

#offer .offer-item .attributes span{
    padding:5px 10px;
    background: var(--Pale-Blue);
    border-radius:2px;
    color: var(--Persian-Blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 168.75% */
    letter-spacing: -0.738px;

}


#about{
    padding:70px 0;
}

#about .content{
    display:flex;
    flex-direction: column;
    gap:20px;
}

#about .content h2{
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 160% */
    letter-spacing: -1.421px;
}

#about .content .text{
    color: var(--Midnight);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.723px;
}

#specialization{
    padding:70px 0;
}

#specialization .content{
    display:flex;
    flex-direction: column;
    gap:20px;
}

#specialization .content h2{
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 160% */
    letter-spacing: -1.421px;
}

#specialization .content .text{
    color: var(--Midnight);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.723px;
}

#specialization .specialization img{display: block; max-width: 100%; filter: grayscale(1);}
#specialization .specialization h5 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.723px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.text-blue{ color: var(--Persian-Blue);}

.industry{
    padding-left:0;
    list-style:none;
}

.industry li{
    padding:6px 0;
    color: var(--Ship-Gray);
    cursor:pointer;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.831px;
    transition:.4s;
}

.industry li:before{
    content:'';
    display:inline-block;
    margin-right:20px;
    width:0;
    height:12px;
    background:url(img/icons/arrow-short-blue.svg) no-repeat center;
    transition:.4s;
}

.industry li.active:before, .industry li:before{
    width:12px;
}


.mil-text-image {
    height: 70px;
    width: 150px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50px;
    margin-bottom: -15px;
}

.mil-text-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;

}


#products{
    padding:125px 0;
    border-top: 1px solid var(--Pale-Blue);
    border-bottom: 1px solid var(--Pale-Blue);
}

#products .products-content-container {margin-bottom: 90px;}

#products h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -1.461px;
}

#products .subtitle{
    display:block;
    margin-top:15px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.108px;
}

.single-case-studies.style-swiper {
    padding: 15px;
    background: #fff;
}
.single-case-studies .thumbnail {
    overflow: hidden;
    display: block;
}
.single-case-studies .thumbnail img {
    transition: 0.4s;
    transform: scale(1.05);
    max-width: 600px;
}
.single-case-studies .inner-content {
    padding: 30px;
}
@media only screen and (max-width: 767px) {
    .single-case-studies .inner-content {
        padding: 25px 0;
    }
}
@media only screen and (max-width: 575px) {
    .single-case-studies .inner-content {
        padding: 30px 10px;
    }
}
.single-case-studies .inner-content span {
    color: #262626;
    font-size: 14px;
}
.single-case-studies .inner-content .title {
    margin-top: 12px;
    transition: 0.3s;
    font-size: 26px;
    margin-bottom: 26px;
}
@media only screen and (max-width: 575px) {
    .single-case-studies .inner-content .title {
        font-size: 26px;
    }
}
.single-case-studies .inner-content .title:hover {
    color: var(--Persian-Blue);
}
.single-case-studies:hover .thumbnail img {
    transform: scale(1);
}

.single-service-style-two {
    background: var(--Pale-Blue);
    padding: 28px 22px;
    transition: 0.3s;
    border-top: 3px solid var(--Pale-Blue);
}
.single-service-style-two .inner {
    overflow: hidden;
    height: 184px;
    display: flex;
    flex-direction: column;
}
.single-service-style-two .inner .icon {
    margin-bottom: 114px;
    transition: 0.3s;
}
.single-service-style-two .inner .icon img {
    transition: 0.3s;
}
.single-service-style-two .inner .bottom {
    transition: 0.3s;
}
.single-service-style-two .inner .bottom .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px !important;
    font-weight: 400;
    transition: 0.3s;
}

.single-service-style-two .inner .bottom p.disc {
    font-size: 14px !important;
    line-height: 18px !important;
}
@media only screen and (max-width: 575px) {
    .single-service-style-two .inner .bottom .title {
        font-size: 18px;
    }
}
.single-service-style-two .inner .bottom .title svg path {
    stroke: #262626;
}
.single-service-style-two .inner .bottom .title img {
    transition: 0.3s;
}
.single-service-style-two:hover {
    background: var(--Persian-Blue);
    border-color: var(--Persian-Blue);
}
.single-service-style-two:hover * {
    color: #fff;
}
.single-service-style-two:hover svg path {
    stroke: #fff !important;
}
.single-service-style-two:hover .inner .icon {
    margin-bottom: 45px;
}
.single-service-style-two:hover .inner .icon img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(2%) hue-rotate(32deg) brightness(104%) contrast(100%);
}
.single-service-style-two:hover .inner .title img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(2%) hue-rotate(32deg) brightness(104%) contrast(100%);
}

.pagination-navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pagination-navigation-wrapper .navigation .swiper-button-next,
.pagination-navigation-wrapper .navigation .swiper-button-prev {
    height: 48px;
    width: 48px;
    background: #EBEBFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-navigation-wrapper .navigation .swiper-button-next i,
.pagination-navigation-wrapper .navigation .swiper-button-prev i {
    color: var(--color-primary);
    transition: 0.3s;
}
.pagination-navigation-wrapper .navigation .swiper-button-next::after,
.pagination-navigation-wrapper .navigation .swiper-button-prev::after {
    display: none;
}
.pagination-navigation-wrapper .navigation .swiper-button-next:hover,
.pagination-navigation-wrapper .navigation .swiper-button-prev:hover {
    background: var(--color-primary);
    transition: 0.3s;
}
.pagination-navigation-wrapper .navigation .swiper-button-next:hover i,
.pagination-navigation-wrapper .navigation .swiper-button-prev:hover i {
    color: #fff;
}
.pagination-navigation-wrapper .navigation .swiper-button-prev {
    left: 0;
}
.pagination-navigation-wrapper .navigation .swiper-button-next {
    right: auto;
    left: 58px;
}
.pagination-navigation-wrapper .pagination-2 {
    position: absolute;
    left: auto !important;
    right: 0 !important;
}
.pagination-navigation-wrapper .pagination-2 .swiper-pagination {
    position: relative;
}
@media only screen and (max-width: 575px) {
    .pagination-navigation-wrapper .pagination-2 .swiper-pagination {
        display: none;
    }
}
.pagination-navigation-wrapper .pagination-2 .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 87px;
    height: 4px;
    border-radius: 1px;
    margin-left: 16px;
}

.float-right-style {
    width: 124%;
    max-width: 124%;
}
@media only screen and (max-width: 575px) {
    .float-right-style {
        width: 100%;
    }
}

.rts-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    max-width: max-content;
    transition: 0.3s;
    z-index: 1;
}
.rts-btn:focus {
    box-shadow: none;
}
.rts-btn img {
    max-width: 24px;
    height: auto;
}
.rts-btn.btn-bold {
    height: 48px;
}
.rts-btn.btn-border {
    border: 1px solid #D1D1D1;
    gap: 44px;
    color: #262626;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}
.rts-btn.btn-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s, border 0.5s;
}
.rts-btn.btn-border::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 0%;
    width: 200px;
    height: 200px;
    background-color: var(--Persian-Blue);
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}
.rts-btn.btn-border:hover {
    color: #fff;
    border: 1px solid transparent;
}
.rts-btn.btn-border:hover ::before {
    opacity: 0;
}
.rts-btn.btn-border:hover::after {
    opacity: 1;
    transform: scaleX(1.5) scaleY(1.5);
}
.rts-btn.btn-border:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(136deg) brightness(120%) contrast(107%);
}
.rts-btn.btn-primary {
    padding: 17px 15px;
    background: var(--Persian-Blue);
    gap: 31px;
    height: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--Persian-Blue);
}
.rts-btn.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s, border 0.5s;
}
.rts-btn.btn-primary::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 0%;
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}
.rts-btn.btn-primary:hover {
    color: var(--Persian-Blue);
}
.rts-btn.btn-primary:hover ::before {
    opacity: 0;
}
.rts-btn.btn-primary:hover::after {
    opacity: 1;
    transform: scaleX(1.5) scaleY(1.5);
}
.rts-btn.btn-primary:hover svg path {
    fill: var(--Persian-Blue) !important;
    stroke: var(--Persian-Blue);
}

.btn-border svg {
    max-width: 24px;
}
.btn-border svg path {
    stroke: #262626;
}
.btn-border:hover svg path {
    stroke: #fff;
}

.contact-modal {
    border-radius: 20px;
    overflow: hidden;
}

.contact-left {
    background: linear-gradient(135deg, var(--Persian-Blue), #023ff6);
    color: #fff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.contact-left-inner {
    max-width: 420px;
    margin: 0 auto;
}

.contact-photo {
    width: 200px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.contact-left h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-left p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.consultation-box {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
}

.consultation-box span {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

.contact-right {
    background: #fff;
    padding: 60px 40px;
}

.contact-right-inner {
    max-width: 420px;
    margin: 0 auto;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 10px 14px;
}

.btn-primary {
    border-radius: 12px;
    padding: 14px;
    font-weight: 400;
}

/* MOBILE */
@media (max-width: 991px) {
    .contact-left,
    .contact-right {
        padding: 40px 25px;
    }
}

/* Loader overlay */
.contact-right-inner { position: relative; }

.form-loader-overlay{
    position:absolute;
    inset:0;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,.85);
}

.thank-you-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:700;
    color:#fff;
    background: linear-gradient(135deg, var(--Persian-Blue), #023ff6);
    margin:0 auto;
}

.recipe-grid{
    padding: 110px 0 90px;
    color: #0f172a;
}

.recipe-grid__header{
    margin-bottom: 60px;
}

.recipe-grid__title{
    font-size: 36px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: #0f172a;
}

.recipe-grid__subtitle{
    font-size: 18px;
    margin: 0;
    color: #475569;
}

.recipe-grid__wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.recipe-grid__item{
    padding: 38px 34px 34px;
    min-height: 370px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: transparent;
    transition: background .25s ease, transform .25s ease;
}

.recipe-grid__item:nth-child(3n){
    border-right: none;
}

.recipe-grid__item:nth-last-child(-n+3){
    border-bottom: none;
}

.recipe-grid__icon{
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: left;
    margin-bottom: 90px;
}

.recipe-grid__svg{
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    transition: stroke .25s ease, transform .25s ease;
}

.recipe-grid__item-title{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin: 0 0 12px 0;
    color: #0f172a;
}

.recipe-grid__desc{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.recipe-grid__desc strong{
    color: #0f172a;
    font-weight: 600;
}

/* Hover – lekki lift + delikatne tło */
.recipe-grid__item:hover{
    background: rgba(255,255,255,0.6);
    transform: translateY(-4px);
}

.recipe-grid__item:hover .recipe-grid__svg{
    stroke: #1d4ed8;
}

/* Responsive */
@media (max-width: 992px){
    .recipe-grid__wrap{ grid-template-columns: repeat(2, 1fr); }
    .recipe-grid__item:nth-child(3n){ border-right: 1px solid rgba(15, 23, 42, 0.08); }
    .recipe-grid__item:nth-child(2n){ border-right: none; }
    .recipe-grid__item:nth-last-child(-n+3){ border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
    .recipe-grid__item:nth-last-child(-n+2){ border-bottom: none; }
}

@media (max-width: 576px){
    .recipe-grid{ padding: 80px 0 70px; }
    .recipe-grid__wrap{ grid-template-columns: 1fr; }
    .recipe-grid__item{ border-right: none; }
    .recipe-grid__item:last-child{ border-bottom: none; }
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 10%;
        left: 5%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 60%;
        left: 15%;
    }
}
@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 10%;
        left: 5%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 60%;
        left: 15%;
    }
}
@-webkit-keyframes rotating2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        bottom: 10%;
        right: 10%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        bottom: 80%;
        right: 30%;
    }
}
@keyframes rotating2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        bottom: 10%;
        right: 10%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        bottom: 80%;
        right: 30%;
    }
}
@-webkit-keyframes rotating3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        bottom: 0%;
        right: 65%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        bottom: 50%;
        right: 35%;
    }
}
@keyframes rotating3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        bottom: 0%;
        right: 65%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        bottom: 50%;
        right: 35%;
    }
}

@-webkit-keyframes rotating4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 15%;
        right: 5%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 70%;
        right: 20%;
    }
}
@keyframes rotating4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 15%;
        right: 5%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 70%;
        right: 20%;
    }
}

@-webkit-keyframes rotating5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 60%;
        left: 10%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 20%;
        left: 30%;
    }
}
@keyframes rotating5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        top: 60%;
        left: 10%;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        top: 20%;
        left: 30%;
    }
}

.hero-with-shapes .shape1 {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 78px;
    height: 78px;
    background: url("img/shapes/rounded-square2.svg");
    -webkit-animation: rotating alternate ease-in-out infinite 6s;
    animation: rotating alternate ease-in-out infinite 6s;
}
.hero-with-shapes .shape2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 78px;
    height: 78px;
    background: url("img/shapes/rounded-square2.svg");
    -webkit-animation: rotating2 alternate ease-in-out infinite 6s;
    animation: rotating2 alternate ease-in-out infinite 6s;
}
.hero-with-shapes .shape3 {
    position: absolute;
    bottom: 0%;
    right: 65%;
    width: 78px;
    height: 78px;
    background: url("img/shapes/rounded-square2.svg");
    -webkit-animation: rotating3 alternate ease-in-out infinite 6s;
    animation: rotating3 alternate ease-in-out infinite 6s;
}

.hero-with-shapes .shape4 {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 78px;
    height: 78px;
    background: url("img/shapes/rounded-square2.svg");
    -webkit-animation: rotating4 alternate ease-in-out infinite 8s;
    animation: rotating4 alternate ease-in-out infinite 8s;
}

.hero-with-shapes .shape5 {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 78px;
    height: 78px;
    background: url("img/shapes/rounded-square2.svg");
    -webkit-animation: rotating5 alternate ease-in-out infinite 7s;
    animation: rotating5 alternate ease-in-out infinite 7s;
}


#blog-similar {margin-bottom: 90px;}

#blog-similar h3 {    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1.421px;
    margin-bottom: 30px;}

#blog-similar .list-group-item{
    border-color:#e9edf2; /* delikatne linie jak w makiecie */
}
#blog-similar .thumb{
    /* gdy użyjesz <img>, ten blok niepotrzebny */
    background-image: linear-gradient(0deg,#f3f6fb,#f3f6fb);
}

#blog-similar .thumb {
    display: flex;
    align-items: center !important;     /* wyśrodkowanie w pionie */
    justify-content: center !important; /* wyśrodkowanie w poziomie */
    min-height: 100px;
}

#blog-similar .thumb-icon {
    width: 44px;   /* ustaw rozmiar */
    height: auto;
    display: block !important;
}
#blog-similar .badge.bg-soft-primary{
    background:#eaf0ff; /* jasny, miękki */
    border:1px solid #dfe7ff;
    font-weight: 400;
}
#blog-similar .blog-item{
    text-decoration:none;
    color:inherit;
    transition: background-color .2s ease, transform .2s ease;
    letter-spacing: -0.61px;
}
#blog-similar .blog-item:hover{
    background:#fafcff;
}
#blog-similar .blog-title{
    line-height:1.25;
    letter-spacing:-.01em;
    letter-spacing: -0.61px;
}
#blog-similar .chev{
    display:inline-flex; align-items:center;
    opacity:.6; transition: transform .2s ease, opacity .2s ease;
}
#blog-similar .blog-item:hover .chev{
    opacity:1; transform: translateX(4px);
}

.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4 {
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1.421px;
}

.blog-article .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #0d6efd;
    background-color: #e9f2ff;
    border: 1px solid #b6daff;
    border-radius: 5px;
    padding: 0.45rem 0.7rem;
    margin-right: 0.4rem;
    transition: all 0.2s ease-in-out;
}

.blog-article .badge:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    text-decoration: none;
    cursor: pointer;
}

.blog-article p {
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.blog-article ul,
.blog-article ol {
    margin: 1.5rem 0 1.5rem 1.5rem; /* odstęp i wcięcie */
    padding-left: 1.25rem;
}

.blog-article ul li,
.blog-article ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
    letter-spacing: -0.721px;
    color: #000;
    font-family: 'Inter', sans-serif !important;
}

.blog-article ul li::marker {
    color: #0d6efd; /* kolor kropek w listach nienumerowanych */
    font-size: 1.2rem;
}

.blog-article ol li::marker {
    font-weight: 600;
}

/* Lead (excerpt) */
.blog-article .lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
}

/* Cytat / highlight box */
.blog-article .highlight,
.blog-article blockquote {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    font-style: italic;
    color: #333;
}

/* Sidebar */
aside h5 {
    font-weight: 400;
    margin-bottom: 1rem;
}

aside .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    padding-left: 0;
    padding-right: 0;
}

aside .list-group-item:hover {
    background: #f8f9fa;
}

aside .list-group-item .fw-semibold {
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: -0.721px;
}

aside .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #0d6efd;
    background-color: #e9f2ff;
    border: 1px solid #b6daff;
    border-radius: 5px;
    padding: 0.45rem 0.7rem;
    margin-right: 0.4rem;
    transition: all 0.2s ease-in-out;
}

aside .date {
    font-size: 0.65rem;
    color: #6c757d;
    margin-bottom: 10px;
}

/* Kategorie */
aside ul li a {
    color: #0d6efd;
    transition: color 0.2s;
}

aside ul li a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Responsywność */
@media (max-width: 991.98px) {
    .blog-article h1 {
        font-size: 1.75rem;
    }
}


/* ===== Projects (Case studies) – polish ===== */

.projects-section { padding: 72px 0; }
.section-head { margin-bottom: 22px; }
.section-title { font-size: 34px; line-height: 1.15; margin: 0 0 8px; }
.section-subtitle { margin: 0; opacity: .72; font-size: 15px; line-height: 1.55; }

/* Filters box */
.projects-filters{
    display: grid;
    gap: 14px;
    padding: 18px 18px 14px;
    border-radius: 18px;
    background: #f6f8ff;
    border: 1px solid rgba(27, 86, 255, .08);
    margin: 18px 0 22px;
}

.filter-group{ display: grid; gap: 10px; }
.filter-label{
    font-size: 13px;
    font-weight: 600;
    opacity: .75;
    letter-spacing: .2px;
}

/* Pills */
.filter-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pill{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    white-space: nowrap;
}

.pill:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    background: #fff;
}

.pill.is-active{
    border-color: rgba(27, 86, 255, .35);
    box-shadow: 0 12px 30px rgba(27, 86, 255, .14);
    background: #fff;
}

/* Meta row (count + reset) */
.filter-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.results-count{
    font-size: 13px;
    opacity: .72;
}

.reset-btn{
    background: transparent;
    border: 0;
    padding: 6px 0;
    color: #1b56ff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}
.reset-btn:hover{ text-decoration: underline; }

/* Grid */
.projects-grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Cards */
.project-card{
    grid-column: span 6;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 34px rgba(0,0,0,.07);
    transition: transform .16s ease, box-shadow .16s ease;
}

.project-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.card-link{ display: block; color: inherit; text-decoration: none; height: 100%; }

/* Image: mniej “klocka”, bardziej proporcjonalnie */
.card-media{
    position: relative;
    aspect-ratio: 16/9;
    background: #eef2ff;
}
.card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

/* Badges */
.card-badges{
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.badge{
    background: rgba(0,0,0,.78);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}
.badge-soft{ background: rgba(27, 86, 255, .90); }

/* Body */
.card-body{
    padding: 14px 14px 16px;
    display: grid;
    gap: 10px;
}

.card-title{
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.card-excerpt{
    margin: 0;
    opacity: .72;
    font-size: 14px;
    line-height: 1.5;
}

/* Tech tags inside card */
.card-tags{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tag{
    font-size: 12px;
    background: #f2f4ff;
    border: 1px solid rgba(27, 86, 255, .10);
    border-radius: 999px;
    padding: 6px 10px;
    line-height: 1;
}

/* CTA */
.card-cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2px;
    font-weight: 700;
    color: #1b56ff;
}
.cta-arrow{ transition: transform .15s ease; }
.project-card:hover .cta-arrow{ transform: translateX(2px); }

/* Empty state */
.projects-empty{
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
    background: #fff7f7;
    border: 1px solid rgba(255,0,0,.12);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
    .projects-section{ padding: 54px 0; }
    .section-title{ font-size: 30px; }
    .project-card{ grid-column: span 12; }
}

@media (max-width: 560px){
    .projects-filters{ padding: 14px; border-radius: 16px; }
    .pill{ padding: 9px 12px; font-size: 12px; }
    .card-body{ padding: 12px 12px 14px; }
    .card-title{ font-size: 17px; }
}


/* ===== Projects cards: image 16:9 + content below ===== */

.project-card{
    grid-column: span 6;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 0;
    box-shadow: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.project-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.card-link{
    display: block;
    color: inherit;
    text-decoration: none;
}

/* 16:9 media */
.card-media{
    position: relative;
    aspect-ratio: 16 / 9;
    background: #eef2ff;
}

.card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.project-card:hover .card-media img{
    transform: scale(1.03);
}

/* badges on image */
.card-badges{
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge{
    background: rgba(27, 86, 255, .90);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}

.badge-soft{
    background: rgba(27, 86, 255, .90);
}

/* body under image */
.card-body{
    padding: 24px 24px 26px;
    display: grid;
    gap: 10px;
}

.card-title{
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.61px;
}

.card-excerpt{
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: .75;
    letter-spacing: -0.31px;
}

/* tags */
.card-tags{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag{
    font-size: 12px;
    background: #fff;
    border: 1px solid rgba(27, 86, 255, .30);
    border-radius: 999px;
    padding: 10px 14px;
    line-height: 1;
}

/* CTA */
.card-cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2px;
    font-weight: 700;
    color: #1b56ff;
}

.cta-arrow{
    transition: transform .15s ease;
}

.project-card:hover .cta-arrow{
    transform: translateX(2px);
}

/* responsive */
@media (max-width: 992px){
    .project-card{ grid-column: span 12; }
}

.card-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ===== Nicer filters ===== */

.projects-filters{
    background: #f6f8ff;
    border: 1px solid rgba(27, 86, 255, .10);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 14px;
}

/* Desktop: 2 kolumny (Kategoria | Technologie) + meta na dole */
@media (min-width: 992px){
    .projects-filters{
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    .projects-filters .filter-meta{
        grid-column: 1 / -1;
    }
}

.filter-group{
    display: grid;
    gap: 10px;
}

.filter-label{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    color: rgba(0,0,0,.70);
}

/* pills container */
.filter-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* premium pill */
.pill{
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .12s ease;
    user-select: none;
}

.pill:hover{
    background: #fff;
    border-color: rgba(27, 86, 255, .20);
    transform: translateY(-1px);
}

.pill.is-active{
    background: rgba(27, 86, 255, .10);
    border-color: rgba(27, 86, 255, .40);
    color: #1b56ff;
    font-weight: 700;
}

/* meta row */
.filter-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 2px;
}

.results-count{
    font-size: 12px;
    color: rgba(0,0,0,.60);
}

/* reset as subtle link */
.reset-btn{
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    color: #1b56ff;
    cursor: pointer;
    text-decoration: none;
}

.reset-btn:hover{
    text-decoration: underline;
}

/* mobile tweaks */
@media (max-width: 560px){
    .projects-filters{ padding: 14px; }
    .pill{ padding: 8px 11px; font-size: 12px; }
}

/* CONTACT INFO (adres + telefon) */
.contact-info {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.95;
    transition: all .25s ease;
}

.contact-info-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 18px;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}

.contact-info-item span {
    line-height: 1.4;
    font-weight: 500;
}

/* Hover effect */
.contact-info-item:hover {
    transform: translateX(4px);
    opacity: 1;
}

.contact-info-item:hover i {
    background: rgba(255, 255, 255, 0.22);
}

/* UL jako "tag cloud" */
.bpa-tags{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* LI bez dodatkowych styli */
.bpa-tags > li{
    margin: 0;
    padding: 0;
}

/* A jako pigułka */
.bpa-tags > li > a{
    --bpa-accent: #1b56ff;        /* akcent BPA (magenta/róż) */
    --bpa-bg: #fff;            /* jasne tło pigułki */
    --bpa-bg-hover: #fff;      /* hover tła */
    --bpa-border: #1b56ff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 22px;
    border-radius: 999px;

    background: var(--bpa-bg);
    border: 1px solid var(--bpa-border);

    color: var(--bpa-accent);
    text-decoration: none !important;

    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.2px;

    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
    will-change: transform;
}

/* Hover / focus */
.bpa-tags > li > a:hover{
    background: #1b56ff;
    color:#fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}


.bpa-tech-stack{
    position: relative;
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 45, 117, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 45, 117, 0.06), transparent 35%),
        linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
    overflow: hidden;
    background:#fff;
}

.bpa-tech-stack::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 117, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 117, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

:root{
    --bpa-accent: #1b56ff;
    --bpa-text: #0f172a;
    --bpa-bg: #f8fbff;
    --bpa-border: rgba(27, 86, 255, 0.14);
    --bpa-border-hover: rgba(27, 86, 255, 0.28);
    --bpa-shadow: 0 10px 30px rgba(27, 86, 255, 0.08);
    --bpa-shadow-hover: 0 14px 34px rgba(27, 86, 255, 0.14);
}

/* kontener */
.bpa-tech-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* badge */
.bpa-tech-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 18px;

    border-radius: 999px;
    border: 1px solid var(--bpa-border);
    background: #fff;
    box-shadow: var(--bpa-shadow);

    text-decoration: none;
    color: var(--bpa-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

/* ikona */
.bpa-tech-badge i{
    font-size: 22px;
    line-height: 1;
    color: var(--bpa-accent);
    flex-shrink: 0;
}

/* tekst */
.bpa-tech-badge span{
    display: inline-block;
    white-space: nowrap;
}

/* hover */
.bpa-tech-badge:hover{
    transform: translateY(-2px);
    border-color: var(--bpa-border-hover);
    box-shadow: var(--bpa-shadow-hover);
    background: var(--bpa-bg);
    color: var(--bpa-accent);
}

/* focus */
.bpa-tech-badge:focus-visible{
    outline: 3px solid rgba(27, 86, 255, 0.18);
    outline-offset: 2px;
}

/* mniejsza wersja */
.bpa-tech-badge.is-sm{
    min-height: 40px;
    padding: 10px 14px;
    font-size: 14px;
}

.bpa-tech-badge.is-sm i{
    font-size: 18px;
}

/* większa wersja */
.bpa-tech-badge.is-lg{
    min-height: 56px;
    padding: 14px 22px;
    font-size: 16px;
}

.bpa-tech-badge.is-lg i{
    font-size: 24px;
}

@media (max-width: 767px){
    .bpa-tech-badges{
        gap: 10px;
    }

    .bpa-tech-badge{
        min-height: 42px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .bpa-tech-badge i{
        font-size: 18px;
    }
}


footer{
    background:#000;
    color:#fff;
    padding:60px 0 40px;
}

footer a{
    color:#fff;
    text-decoration:none;
    transition:.25s;
}

footer a:hover{
    color:#1b56ff;
}

.footer-info{
    display:flex;
    flex-direction:column;
    gap:0;
}

.footer-info .logo{
    display:inline-block;
    font-size:22px;
    font-weight:700;
    margin-bottom:16px;
}

.footer-claim{
    max-width:440px;
    margin:0 0 28px;
    font-size:17px;
    line-height:1.65;
    color:rgba(255,255,255,.9);
}

.footer-contact-box{
    display:flex;
    align-items:center;
    gap:16px;
    margin:0 0 24px;
}

.footer-contact-photo{
    width:96px;
    height:96px;
    object-fit:cover;
    border-radius:14px;
}

.footer-contact-data{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.footer-contact-title{
    font-size:14px;
    color:rgba(255,255,255,.75);
    margin-bottom:2px;
}

.footer-phone{
    font-size:22px;
    font-weight:700;
    line-height:1.35;
    letter-spacing: -0.02em;
}

.footer-mail{
    font-size:14px;
    color:rgba(255,255,255,.78);
}

.footer-cta{
    margin:0 0 34px;
}

.footer-cta-title{
    display:block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:600;
    color:rgba(255,255,255,.8);
}

.footer-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 30px;
    border-radius:8px;
    background:#000;
    border: 1px solid rgba(255,255,255,0.4);
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.footer-cta-btn:hover{
    color:#fff;
    background:#245fff;
}

.footer-cta-btn img{
    width:14px;
    height:14px;
}

.footer-social{
    margin-bottom:34px;
}

.footer-social-title{
    display:block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:600;
}

.footer-social-icons{
    display:flex;
    gap:10px;
}

.footer-social-icons a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:20px;
}

.footer-social-icons a:hover{
    background:rgba(27,86,255,.18);
    color:#fff;
    transform:translateY(-2px);
}

.menu-footer{
    display:flex;
    justify-content:flex-end;
    gap:100px;
}

.menu-footer-item{
    min-width:140px;
}

.menu-title{
    display:block;
    margin-bottom:22px;
    font-size:16px;
    font-weight:700;
    color:#fff;
}

.menu-list{
    margin:0;
    padding:0;
    list-style:none;
}

.menu-item{
    margin-bottom:14px;
}

.menu-item a{
    color:rgba(255,255,255,.72);
    font-size:15px;
}

.menu-item a:hover{
    color:#fff;
}

.footer-tech-badges-full{
    margin-top:38px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-tech-title{
    display:block;
    margin-bottom:16px;
    font-size:14px;
    font-weight:600;
    color:#fff;
}

.footer-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.footer-badges span {font-weight: 400 !important; font-size: 13px !important;}

.footer-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    line-height:1;
    color:#fff;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.footer-badge i{
    width:18px;
    font-size:16px;
    text-align:center;
}

.footer-badge:hover{
    color:#fff;
    background:rgba(27,86,255,.18);
    border-color:#1b56ff;
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(27,86,255,.15);
}

.copy{
    margin-top:34px;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.08);
}

.copyright{
    font-size:14px;
    color:rgba(255,255,255,.6);
}

.copyright a{
    color:rgba(255,255,255,.72);
}

.copyright a:hover{
    color:#fff;
}

@media (max-width: 991.98px){
    footer{
        padding:50px 0 30px;
    }

    .menu-footer{
        justify-content:flex-start;
        gap:40px;
        margin-top:10px;
    }

    .footer-tech-badges-full{
        margin-top:30px;
    }
}

@media (max-width: 767.98px){
    .menu-footer{
        flex-direction:column;
        gap:28px;
    }

    .footer-contact-box{
        align-items:flex-start;
    }

    .footer-contact-photo{
        width:84px;
        height:84px;
    }

    .footer-claim{
        font-size:16px;
        max-width:100%;
    }

    .footer-badges{
        gap:10px;
    }
}

@media (max-width: 575.98px){
    .footer-phone{
        font-size:16px;
    }

    .footer-badge{
        padding:8px 12px;
        font-size:12px;
    }

    .footer-badge i{
        font-size:15px;
    }

    .copyright{
        line-height:1.7;
    }
}

.top-nav-item-mega{
    position:relative;
}

.top-nav-item-mega::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:24px;
}

.mega-menu{
    position:absolute;
    top:calc(100% + 26px);
    left:-100%;

    transform:translateX(-50%) translateY(10px);

    width:100%;
    max-width:1200px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;

    z-index:999;
}

.top-nav-item-mega:hover .mega-menu,
.top-nav-item-mega:focus-within .mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.mega-menu-shell{
    width:1230px;
    padding:0 40px;
    box-sizing:border-box;
}

.mega-menu-inner{
    margin:0 auto;

    display:grid;
    grid-template-columns:280px 240px 240px 280px;
    gap:24px;

    padding:28px;
    box-sizing:border-box;

    border-radius:24px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 30px 80px rgba(15,23,42,.14);
}

.mega-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mega-title{
    display:block;
    margin-bottom:4px;
    font-size:12px;
    font-weight:700;
    letter-spacing:-.06em;
    text-transform:uppercase;
    color:#1b56ff;
}

.mega-link{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px 16px;
    border-radius:16px;
    background:#edf3ff;
    border:1px solid transparent;
    color:#0f172a;
    text-decoration:none;
    transition:.2s ease;
}

.mega-link strong{
    font-size:15px;
    font-weight:600;
    color:#0f172a;
    letter-spacing:-.02em;
}

.mega-link span{
    font-size:13px;
    line-height:1.5;
    color:rgba(15,23,42,.72);
    letter-spacing:-.02em;
}

.mega-link:hover{
    transform:translateY(-2px);
    border-color:rgba(27,86,255,.18);
    box-shadow:0 12px 30px rgba(27,86,255,.08);
    color:#0f172a;
}

.mega-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.mega-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(27,86,255,.12);
    color:#0f172a;
    font-size:14px !important;
    font-weight:600;
    text-decoration:none;
    transition:.2s ease;
}

.mega-badge:hover{
    background:#edf3ff;
    border-color:rgba(27,86,255,.22);
    color:#1b56ff;
    transform:translateY(-1px);
}

.mega-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.mega-badge i{
    font-size:16px;
}

.mega-col-cta{
    justify-content:stretch;
}

.mega-cta-box{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    padding:22px;
    border-radius:18px;
    background:linear-gradient(135deg,#1b56ff 0%,#2f6cff 100%);
    color:#fff;
}

.mega-cta-box .mega-title{
    color:rgba(255,255,255,.75);
}

.mega-cta-box p{
    margin:0 0 18px;
    font-size:14px;
    line-height:1.6;
    color:rgba(255,255,255,.92);
}

.mega-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:12px 16px;
    border-radius:12px;
    background:#fff;
    color:#1b56ff;
    font-size:14px !important;
    font-weight:600;
    text-decoration:none;
    transition:.2s ease;
}

.mega-cta-btn:hover{
    color:#1b56ff;
    transform:translateY(-1px);
}

@media (max-width: 1399.98px){
    .mega-menu-shell{
        padding:0 24px;
    }

    .mega-menu-inner{
        max-width:1140px;
    }
}

@media (max-width: 1199.98px){
    .mega-menu-inner{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 991.98px){
    .mega-menu{
        display:none;
    }
}

.floating-side-box{
    position: fixed;
    right: 10%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1030;
    width: 320px;
}

.floating-side-box__inner{
    background: #fff;
    border: 1px solid rgba(27, 86, 255, 0.12);
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-side-box__inner:hover{
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.floating-side-box__label{
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(27, 86, 255, 0.08);
    color: #1b56ff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
}

.floating-side-box__inner h3{
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 600;
}

.floating-side-box__inner p{
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.floating-side-box__button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1b56ff;
    font-weight: 600;
    font-size: 16px;
    transition: gap .2s ease, opacity .2s ease;
}

.floating-side-box__button:hover{
    gap: 14px;
    opacity: .9;
    color: #1b56ff;
}

@media (max-width: 1599.98px){
    .floating-side-box{
        right: 20px;
        width: 290px;
    }

    .floating-side-box__inner{
        padding: 22px 20px;
    }

    .floating-side-box__inner h3{
        font-size: 22px;
    }
}


@media (max-width: 1199.98px){
    .floating-side-box{
        display: none !important;
    }
}


.about-process{
    padding: 110px 0;
    background: #fff;
}

.about-process__top{
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.about-process__eyebrow{
    display: inline-block;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #235AF9;
}

.about-process__left h2{
    margin: 0;
    font-size: clamp(40px, 5vw, 36px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.about-process__right p{
    margin: 0;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.about-process__grid{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.18);
    border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.process-card{
    min-height: 520px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(15, 23, 42, 0.12);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    background: transparent;
}

.process-card__head{
    min-height: 210px;
    margin: 0;
    padding: 28px 22px;
    background: #303844;
    color: #fff;
    border-radius: 24px;
    margin: 18px 18px 0 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
}

.process-card__number{
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.process-card__head h3{
    margin: 0;
    font-size:16px;
    line-height: 1.3;
    font-weight: 600;
    color: inherit;
}

.process-card__body{
    padding: 30px 22px 26px;
}

.process-card__body p{
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

.process-card__head h3{
}

.process-card--accent .process-card__head{
    background: #235AF9;
    color: #fff;
}

.process-card--accent .process-card__number{
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1399.98px){
    .about-process__grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-card{
        min-height: 460px;
    }
}

@media (max-width: 991.98px){
    .about-process{
        padding: 80px 0;
    }

    .about-process__top{
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .about-process__right p{
        font-size: 18px;
        line-height: 1.7;
    }

    .about-process__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px){
    .about-process__grid{
        grid-template-columns: 1fr;
    }

    .process-card{
        min-height: auto;
    }

    .process-card__head{
        min-height: auto;
    }
}

.founder-section{
    padding: 110px 0;
    background: #ffff;
}

.founder-photo-wrap{
    position: relative;
    display: inline-block;
}

.founder-photo{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    background: #fff;
}

.founder-photo img{
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    transition: transform .35s ease;
}

.founder-photo:hover img{
    transform: scale(1.03);
}

.founder-badge{
    position: absolute;
    left: 18px;
    bottom: -14px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #1b56ff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(27, 86, 255, 0.28);
    white-space: nowrap;
}

.founder-content{
    max-width: 700px;
}

.founder-label{
    display: inline-block;
    margin-bottom: 14px;
    color: #1b56ff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .02em;
}

.founder-content h2{
    margin: 0 0 20px;
    color: #0f172a;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.founder-quote{
    margin-bottom: 24px;
    color: #5b6475;
    font-size: 22px !important;
    line-height: 1.25 !important;
    font-style: normal;
}

.founder-content p{
    margin-bottom: 18px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}

.founder-content p strong{
    color: #0f172a;
    font-weight: 700;
}

.founder-stats{
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 34px;
    margin-bottom: 14px;
}

.stat{
    position: relative;
    padding-right: 36px;
    margin-right: 36px;
}

.stat:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 34px;
    background: #dbe2ea;
    transform: translateY(-50%);
}

.stat strong{
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
}

.stat span{
    display: block;
    color: #7b8794;
    font-size: 14px;
    line-height: 1.5;
}

.founder-tech{
    margin-top: 12px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.founder-footer{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 38px;
}

.signature strong{
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.signature span{
    display: block;
    color: #7b8794;
    font-size: 15px;
    line-height: 1.5;
}

.founder-linkedin{
    display: inline-block;
    margin-top: 8px;
    color: #1b56ff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .25s ease;
}

.founder-linkedin:hover{
    opacity: .8;
}

.founder-cta{
    text-align: right;
}

.founder-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    min-height: 62px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
}

.cta-note{
    display: block;
    margin-top: 10px;
    color: #8a94a6;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 991.98px){
    .founder-section{
        padding: 80px 0;
    }

    .founder-photo-wrap{
        display: block;
        max-width: 320px;
        margin: 0 auto;
    }

    .founder-photo img{
        max-width: 100%;
        width: 100%;
    }

    .founder-content{
        max-width: 100%;
        text-align: left;
    }

    .founder-content h2{
        font-size: 38px;
    }

    .founder-footer{
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-cta{
        width: 100%;
        text-align: left;
    }

    .founder-button{
        min-width: 100%;
    }
}

@media (max-width: 767.98px){
    .founder-section{
        padding: 64px 0;
    }

    .founder-content h2{
        font-size: 32px;
        line-height: 1.15;
    }

    .founder-quote{
        font-size: 17px;
        line-height: 1.7;
    }

    .founder-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .founder-stats{
        gap: 18px;
    }

    .stat{
        margin-right: 0;
        padding-right: 0;
        width: 100%;
    }

    .stat:not(:last-child)::after{
        display: none;
    }

    .founder-badge{
        position: static;
        margin-top: 14px;
        white-space: normal;
    }
}

.founder-person{
    display:flex;
    align-items:center;
    gap:15px;
}

.founder-avatar img{
    width:120px;
    height:120px;
    border-radius:12px;
    object-fit:cover;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.signature strong{
    display:block;
    font-size:17px;
}

.signature span{
    display:block;
    font-size:14px;
    color:#777;
}

