@font-face {
  font-family: "Roboto";
  src: url("source/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("source/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("source/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("source/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Reset stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    background-color: #363535;
    overflow-x: hidden;
    overflow-y: auto;
}

html, body {
  font-family: "Roboto", sans-serif;
}

a {
	text-decoration: none;
	color:#ffffff;
}

.loy_menu {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 94px;
            border-bottom: 1px solid transparent;
            border-image-source: linear-gradient(to right, rgb(254, 254, 254), rgba(255,255,255,0));
            border-image-slice: 1;
            border-image-width: 0 0 1 0;
            border-image-repeat: stretch;
            background: rgba(172, 172, 172, 0.1);
            backdrop-filter: blur(12px) saturate(100%) brightness(1.05);
            -webkit-backdrop-filter: blur(12px) saturate(100%) brightness(1.05);
        }

        .loy_menu_in {
            display: flex;
            align-items: center;
            flex-direction: row;
            width: 1696px;
            height: 94px;
            color: white;
            background-color: transparent;
        }

        .loy_menu_in_logo {
            display: flex;
            float: left;
            width: 113px;
            height: 69px;
            background-image: url('source/images/logo_mini_1.png');
            background-size: cover;
            margin-bottom: 0px;
            /* Placeholder do demo */
            border-radius: 8px;
        }

        .loy_menu_in_content {
            margin-left: 100px;
            display: flex;
            float: left;
            align-items: center;
            width: 550px;
            height: 69px;
            margin-bottom: 0px;
            flex-direction: row;
            gap: 60px;
            background-color: transparent;
        }

        .loy_menu_in_content_item {
            margin: 0;
            font-size: 20px;
            font-weight: bold;
        }

        .loy_menu_in_content a {
            color: #FFFFFF;
            text-decoration: none;
        }

        .loy_menu_in_content a:hover {
            color: #EF5BA2;
        }

        .loy_menu_in_register {
            margin-left: 750px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 177px;
            height: 50px;
            margin-bottom: 0px;
            background-color: transparent;
        }

        .loy_menu_in_register a {
            text-decoration: none;
        }

        .loy_menu_in_register .button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 177px;
            height: 50px;
            margin-bottom: 0px;
            font-weight: bold;
            color: #7A3F91;
            background-color: white;
            border-radius: 10px;
            font-size: 16px;
        }

        .loy_menu_in_register .button:hover {
            color: #EF5BA2;
        }

        /* ============================================
           HAMBURGER BUTTON - domyślnie ukryty
           ============================================ */

        .loy_menu_hamburger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 12px;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
        }

        .loy_menu_hamburger:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .loy_menu_hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Animacja hamburger -> X */
        .loy_menu_hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .loy_menu_hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .loy_menu_hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ============================================
           MOBILE OVERLAY MENU - domyślnie ukryte
           ============================================ */

        .loy_menu_mobile_overlay {
            display: none;
            position: fixed;
            top: 94px;
            left: 0;
            width: 100%;
            height: calc(100vh - 94px);
            background: linear-gradient(180deg, rgba(123, 45, 142, 0.95) 0%, rgba(238, 80, 156, 0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 60px;
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .loy_menu_mobile_overlay.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .loy_menu_mobile_overlay .mobile_nav_item {
            margin-bottom: 8px;
        }

        .loy_menu_mobile_overlay .mobile_nav_item a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            padding: 16px 40px;
            display: block;
            text-align: center;
            border-radius: 12px;
            transition: background-color 0.2s ease;
        }

        .loy_menu_mobile_overlay .mobile_nav_item a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }

        .loy_menu_mobile_overlay .mobile_register_btn {
            margin-top: 40px;
        
        }

        .loy_menu_mobile_overlay .mobile_register_btn a {
            text-decoration: none;
        }

        .loy_menu_mobile_overlay .mobile_register_btn .button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 240px;
            height: 56px;
            font-weight: bold;
            font-size: 18px;
            color: #7A3F91;
            background-color: white;
            border-radius: 12px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .loy_menu_mobile_overlay .mobile_register_btn .button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        /* ============================================
           MEDIA QUERIES - MOBILE
           ============================================ */

        @media (max-width: 1024px) {

            .loy_menu {
                height: 74px;
            }

            .loy_menu_in {
                width: 100%;
                height: 74px;
                padding: 0 20px;
                justify-content: space-between;
            }

            .loy_menu_in_logo {
                width: 90px;
                height: 55px;
            }

            /* Ukryj desktopowe linki */
            .loy_menu_in_content {
                display: none !important;
            }

            /* Kontener na przycisk rejestracji + hamburger */
            .loy_menu_in_register {
                margin-left: auto;
                width: auto;
                height: auto;
                gap: 12px;
            }

            .loy_menu_in_register .button {
                width: 160px;
                height: 44px;
                font-size: 14px;
                border-radius: 8px;
            }

            /* Pokaż hamburger */
            .loy_menu_hamburger {
                display: flex;
                width: 44px;
                height: 44px;
            }

            .loy_menu_mobile_overlay {
                top: 74px;
                height: calc(100vh - 74px);
            }
        }

        @media (max-width: 480px) {

            .loy_menu {
                height: 66px;
            }

            .loy_menu_in {
                height: 66px;
                padding: 0 16px;
            }

            .loy_menu_in_logo {
                width: 80px;
                height: 49px;
            }

            .loy_menu_in_register .button {
                width: 145px;
                height: 40px;
                font-size: 13px;
            }

            .loy_menu_hamburger {
                width: 40px;
                height: 40px;
                padding: 10px;
            }

            .loy_menu_mobile_overlay {
                top: 66px;
                height: calc(100vh - 66px);
                padding-top: 40px;
            }

            .loy_menu_mobile_overlay .mobile_nav_item a {
                font-size: 20px;
                padding: 14px 30px;
            }
        }

        /* ============================================
           DESKTOP - ORYGINALNE STYLE
           ============================================ */

        .video-box {
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            height: 851px;
            overflow: visible;
        }

        .video-box video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Placeholder tło do demo (zamiast video) */
        .video-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #7B2D8E 0%, #C94080 40%, #EE509C 70%, #9B3A9E 100%);
            z-index: 0;
        }

        .video-box .loy_head_container {
            margin: 0 auto;
            padding-top: 189px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1696px;
            height: 757px;
            flex-direction: row;
            color: white;
            background-color: transparent;
            gap: 15px;
        }

        .video-box .loy_head_container .left_one {
            position: relative;
            align-items: center;
            justify-content: left;
            display: flex;
            width: 830px;
            height: 757px;
            color: white;
            background-color: transparent;
        }

        .video-box .loy_head_container .left_one .inner_container {
            position: relative;
            top: 80px;
            width: 700px;
            height: 450px;
            display: block;
            background-color: transparent;
        }

        .video-box .loy_head_container .left_one .inner_container .chain_bg {
            position: absolute;
            left: -100px;
            top: 40px;
            width: 168px;
            height: 168px;
            background-image: url('source/images/chain_bg.png');
            background-size: cover;
            z-index: 1;
        }

        .video-box .loy_head_container .left_one .inner_container .chain_title_content {
            position: absolute;
            font-family: 'Roboto Flex', sans-serif;
            font-weight: 900;
            left: -30px;
            top: 120px;
            width: 500px;
            height: 200px;
            background-color: transparent;
            text-transform: uppercase;
            text-align: left;
            font-size: 48px;
            color: white;
            z-index: 2;
        }

        .video-box .loy_head_container .center_one {
            display: flex;
            position: relative;
            align-items: center;
            justify-content: center;
            left: -50px;
            width: 18px;
            height: 757px;
            color: white;
            background-color: transparent;
            margin-left: -100px;
        }

        .video-box .loy_head_container .center_one .element {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -40px;
            width: 18px;
            height: 205px;
            flex-direction: column;
            background: none;
            z-index: 999;
        }

        .line {
            width: 2px;
            height: 191px;
            background: #EE509C;
            z-index: 10;
            margin: 0 auto;
        }

        .circle {
            width: 12px;
            height: 12px;
            background: #EE509C;
            border-radius: 50%;
            z-index: 10;
            margin: 0 auto;
        }

        .video-box .loy_head_container .right_one {
            position: relative;
            align-items: center;
            justify-content: center;
            display: flex;
            left: 120px;
            width: 800px;
            height: 757px;
            color: white;
            background-color: transparent;
        }

        .video-box .loy_head_container .right_one .right_content {
            position: relative;
            top: 200px;
            right: 0;
            display: flex;
            flex-direction: row;
            width: 657px;
            height: 224px;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(172, 172, 172, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .video-box .loy_head_container .right_one .right_content::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            pointer-events: none;
            padding: 1px;
            background: linear-gradient(
                90deg,
                rgb(156, 156, 156) 0%,
                rgba(221, 221, 221, 0.8) 20%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .video-box .loy_head_container .right_one .right_content .textholder {
            font-family: "Roboto", sans-serif;
            font-weight: 200;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 20px;
            border-radius: 20px;
            display: flex;
            width: 444px;
            height: 224px;
            color: white;
            background-color: transparent;
            padding: 0px 20px 0px 50px;
        }

        .video-box .loy_head_container .right_one .right_content .buttonholder {
            position: relative;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 200px;
            height: 224px;
            color: white;
            background-color: transparent;
        }

        .video-box .loy_head_container .right_one .right_content .buttonholder .roundbutton {
            margin-top: 50px;
            margin-left: 20px;
            width: 70px;
            height: 70px;
            background-image: url('source/images/round_button_down.png');
            background-size: cover;
        }

        /* ============================================
           MOBILE ≤ 480px
           ============================================ */

        @media (max-width: 480px) {

            .video-box {
                height: auto;
                min-height: 651px;
                overflow: hidden;
            }

            .video-box .loy_head_container {
                margin-top:20px;
                width: 100%;
                height: auto;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 120px 24px 60px;
                gap: 0;
            }

            /* LEFT_ONE - tytuł */
            .video-box .loy_head_container .left_one {
                width: 100%;
                height: auto;
                justify-content: center;
                align-items: flex-start;
            }

            .video-box .loy_head_container .left_one .inner_container {
                position: relative;
                top: 0;
                width: 100%;
                height: auto;
            }

            .video-box .loy_head_container .left_one .inner_container .chain_bg {
                position: absolute;
                left: -30px;
                top: -50px;
                width: 100px;
                height: 100px;
            }

            .video-box .loy_head_container .left_one .inner_container .chain_title_content {
                position: relative;
                left: 0;
                top: 0;
                width: 100%;
                height: auto;
                font-size: 36px;
                text-align: left;
                line-height: 1.1;
                padding-bottom: 30px;
            }

            /* CENTER_ONE - ukryj */
            .video-box .loy_head_container .center_one {
                display: none;
            }

            /* RIGHT_ONE - boks z tekstem */
            .video-box .loy_head_container .right_one {
                margin-top:50px;
                position: relative;
                left: 0;
                width: 100%;
                height: auto;
                justify-content: center;
            }

            .video-box .loy_head_container .right_one .right_content {
                position: relative;
                top: 0;
                right: 0;
                width: 100%;
                height: auto;
                flex-direction: column;
                border-radius: 16px;
                min-height: 200px;
            }

            .video-box .loy_head_container .right_one .right_content::before {
                border-radius: 16px;
            }

            .video-box .loy_head_container .right_one .right_content .textholder {
                width: 100%;
                height: auto;
                font-size: 18px;
                line-height: 1.5;
                padding: 28px 24px 20px 28px;
                font-weight: 300;
            }

            .video-box .loy_head_container .right_one .right_content .buttonholder {
                width: 100%;
                height: auto;
                justify-content: flex-end;
                padding: 0 24px 20px 0;
            }

            .video-box .loy_head_container .right_one .right_content .buttonholder .roundbutton {
                margin: 0;
                width: 56px;
                height: 56px;
            }
        }





.why_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: relative;
    text-align: center;
    scroll-snap-align: start;

    width: 100%;
    height: 676px;
    background-color: #ffffff;
}

.why_container .w_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 1696px;
    height: 676px;
    background-color: transparent;
    gap:20px;
}

.why_container .w_cont .w_cont_left {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    width: 650px;
    height: 500px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_left .l_box {
    display: flex;
    align-items: left;
    justify-content: space-between;
    flex-direction: column;
    width: 515px;
    height: 170px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_left .l_box .txt_left_h {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-align: left;
    text-transform: uppercase;
    color: #3A3A3A;
    display: block;
    align-items: left;
    width: 515px;
    height: 94px;
    background-color: none;
}

.why_container .w_cont .w_cont_left .l_box .txt_left_h span {
    display: inline;
    white-space: nowrap;
    color: #EE509C;
}

.why_container .w_cont .w_cont_left .l_box .txt_left_p {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 22px;
    text-align: left;
    display: flex;
    align-items: left;
    width: 515px;
    height: 52px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 980px;
    height: 500px;
    background-color: transparent;
    gap:20px;
}

.why_container .w_cont .w_cont_right .r_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 500px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    width: 320px;
    height: 464px;
    transition: all 0.3s ease;
    background-color: #F7F7F7;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    width: 320px;
    height: 500px;
    background: linear-gradient(160deg, #7A3F91, #EF5BA2);
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .inter_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;  
    width: 240px;
    height: 370px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .icon_cont_1 {
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_prov_vt.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .icon_cont_1 {
    margin-top:0px;
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_prov_wh.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .icon_cont_2 {
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_cookie_vt.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .icon_cont_2 {
    margin-top:0px;
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_cookie_wh.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .icon_cont_3 {
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_padlock_vt.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .icon_cont_3 {
    margin-top:0px;
    display: flex;
    width: 64px;
    height: 64px;
    background-image: url('source/images/icon_padlock_wh.png'); 
    background-size: cover;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .title_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #3A3A3A;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    width: 200px;
    height: 56px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .title_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    width: 200px;
    height: 56px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .hr_cont {
    width: 67px;
    height: 1px;
    background-color: #3A3A3A;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .hr_cont {
    width: 67px;
    height: 1px;
    background-color: #ffffff;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content .desc_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #3A3A3A;
    text-align: left;
    display: flex;
    width: 240px;
    height: 130px;
    background-color: transparent;
}

.why_container .w_cont .w_cont_right .r_box .r_box_content:hover .desc_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    text-align: left;
    display: flex;
    width: 240px;
    height: 130px;
    background-color: transparent;
}


/* ============================================
   MOBILE ≤ 480px - WHY CONTAINER
   ============================================ */

@media (max-width: 480px) {

    .why_container {
        height: auto;
        padding: 40px 0 40px;
    }

    .why_container .w_cont {
        width: 100%;
        height: 800px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 30px;
    }

    /* LEWA STRONA - nagłówek + opis */
    .why_container .w_cont .w_cont_left {
        width: 100%;
        height: auto;
        align-items: flex-start;
    }

    .why_container .w_cont .w_cont_left .l_box {
        width: 100%;
        height: auto;
        gap: 16px;
    }

    .why_container .w_cont .w_cont_left .l_box .txt_left_h {
        width: 100%;
        height: auto;
        font-size: 32px;
        line-height: 1.1;
    }

    .why_container .w_cont .w_cont_left .l_box .txt_left_p {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.4;
    }

    /* PRAWA STRONA - karty horyzontalnie scrollowalne */
    .why_container .w_cont .w_cont_right {
        justify-content: flex-start;
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Ukryj scrollbar */
    .why_container .w_cont .w_cont_right::-webkit-scrollbar {
        display: none;
    }
    .why_container .w_cont .w_cont_right {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .why_container .w_cont .w_cont_right .r_box {
        min-width: 280px;
        width: 280px;
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .why_container .w_cont .w_cont_right .r_box .r_box_content {
        width: 280px;
        height: 420px;
    }

    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover {
        width: 280px;
        height: 420px;
    }

    .why_container .w_cont .w_cont_right .r_box .r_box_content .inter_container {
        width: 220px;
        height: auto;
        gap: 16px;
    }

    .why_container .w_cont .w_cont_right .r_box .r_box_content .title_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .title_cont {
        width: 100%;
        height: auto;
        font-size: 22px;
    }

    .why_container .w_cont .w_cont_right .r_box .r_box_content .desc_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .desc_cont {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
    }
}


.steps_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    width: 100%;
    height: 660px;
    background: linear-gradient(160deg, #7A3F91, #EF5BA2);
}

.steps_container .left_3 {
    position: absolute;
    left: 20px;
    width: 633px;
    height: 772px;
    background-image: url('source/images/3.png'); 
    background-size: cover;
    background-color: transparent;
}

.steps_container .right_3 {
    position: absolute;
    top:-350px;
    right: -90px;
    width: 633px;
    height: 772px;
    background-image: url('source/images/3.png'); 
    background-size: cover;
    background-color: transparent;
}

.steps_container .s_inner_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 1696px;
    height: 660px;
    background-color: transparent;
    gap:10px;
    z-index: 0;
}

.steps_container .s_inner_cont .steps_left {
    display: block;
    align-items: center;
    justify-content: center;
    width: 550px;
    height: 500px;
    background-color: transparent;
    font-size: 96px;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    color: #FFFFFF;
}

.steps_container .s_inner_cont .steps_left span {
    display: inline;
    white-space: nowrap;
    font-size: 128px;
    font-weight: 900;
    text-transform: uppercase;
    color: #EE509C;
}

.steps_container .s_inner_cont .steps_right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 1056px;
    height: 500px;
    background-color: transparent;
    gap:10px;
}

.steps_container .s_inner_cont .steps_right .in-right-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 1056px;
    height: 160px;
    background-color: transparent;
}

.steps_container .s_inner_cont .steps_right .in-right-container .part-container {
    display: flex;
    align-items: center;
    justify-content: right;
    flex-direction: row;
    width: 528px;
    height: 160px;
    background-color: transparent;
}

.steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
    width: 528px;
    height: 160px;
    background-color: transparent;
}


.steps_container .s_inner_cont .steps_right .in-right-container .part-container .arrow_1 {
    right:1px;
    bottom:-50px;
    position:relative;
    display: flex;
    width: 120px;
    height: 120px;
    background-image: url('source/images/arrow_left.png'); 
    background-size: cover;
    background-color: transparent;
}

.steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 .arrow_2 {
    right:0px;
    left:30px;
    bottom:-50px;
    position:relative;
    display: flex;
    width: 127px;
    height: 127px;
    background-image: url('source/images/arrow_right.png'); 
    background-size: cover;
    background-color: transparent;
}


.smallbox-inner-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    width: 428px;
    height: 120px;
    background-color: transparent;
}

.smallbox-inner-content-container .txt_steps {
    margin-top: 10px;
    margin-left: 43px;
    display: flex;
    align-items: center;
    position: relative;
    width: 385px;
    height: 90px;
    background-color: transparent;
    color:#ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 20px;
    text-align: left;
}

.smallbox-inner-content-container .title-txt_steps {
    margin-top: 15px;
    margin-left: 43px;
    display: flex;
    align-items: center;
    position: relative;
    width: 380px;
    height: 20px;
    background-color: transparent;
    color:#ffffff;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 24px;
    text-align: left;
    text-transform: uppercase;
}

.box-image-inner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    width: 100px;
    height: 100%;
}

.box-image-inner-icon .image-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background-color: #ffffff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}




/* ============================================
   MOBILE ≤ 480px - STEPS CONTAINER
   ============================================ */

@media (max-width: 480px) {

    .steps_container {
        height: auto;
        min-height: 980px;
        padding: 50px 0;
    }

    /* Tło "3" - widoczna */
    .steps_container .left_3 {
        left: -180px;
        top: -60px;
        width: 633px;
        height: 772px;
    }

    .steps_container .right_3 {
        display: none;
    }

    /* Główny kontener */
    .steps_container .s_inner_cont {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 60px;
        box-sizing: border-box;
    }

    /* LEWA - tytuł */
    .steps_container .s_inner_cont .steps_left {
        width: 100%;
        height: auto;
        font-size: 70px;
        line-height: 1.3;
        text-align: left;
    }

    .steps_container .s_inner_cont .steps_left span {
        font-size: 128px;
    }

    /* PRAWA - kroki */
    .steps_container .s_inner_cont .steps_right {
        width: 100%;
        height: auto;
        gap: 50px;
        margin-bottom:40px;
    }

    /* Każdy krok */
    .steps_container .s_inner_cont .steps_right .in-right-container {
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    /* Strzałki ukryte */
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container .arrow_1,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 .arrow_2 {
        display: none !important;
    }

    /* Oba part-containery - nadpisanie 528px i justify right/left */
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 {
        width: auto !important;
        height: auto !important;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start !important;
        gap: 16px;
        flex-shrink: 1;
        flex-grow: 0;
    }

    /* Ikona - nadpisanie desktopowego 100px */
    .box-image-inner-icon {
        width: 85px !important;
        height: 85px !important;
        flex-shrink: 0;
    }

    .box-image-inner-icon .image-circle {
        width: 85px !important;
        height: 85px !important;
    }

    .box-image-inner-icon .image-circle img {
        width: 53px !important;
        height: 53px !important;
        object-fit: contain;
    }

    /* Tekst - nadpisanie desktopowego 428px, margin-left 43px */
    .smallbox-inner-content-container {
        width: auto !important;
        height: auto !important;
        flex: 1;
        min-width: 0;
        max-width: calc(100vw - 64px - 16px - 48px);
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .smallbox-inner-content-container .title-txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        font-size: 18px;
    }

    .smallbox-inner-content-container .txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 6px !important;
        font-size: 16px;
        line-height: 1.5;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}







.calculator_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    width: 100%;
    height: 1238px;
    background-color: #ffffff;

    background-image:
    linear-gradient(to right, rgba(0,0,0,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.07) 1px, transparent 1px);

    background-size: 221px 163px;
    z-index: 0;
}

.calculator_container:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0) 25%) top,
    linear-gradient(to top,    rgba(255,255,255,0.95), rgba(255,255,255,0) 25%) bottom,
    linear-gradient(to right,  rgba(255,255,255,0.95), rgba(255,255,255,0) 25%) left,
    linear-gradient(to left,   rgba(255,255,255,0.95), rgba(255,255,255,0) 25%) right;

  background-repeat: no-repeat;
}

.calculator_container-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    width: 1696px;
    height: 921px;
    background-color: transparent;
    z-index: 1;

}

.calculator_container-box .top-calc-box {
    display: flex;
    align-items: center;
    justify-content:space-between;
    position: relative;
    flex-direction: row;
    width: 100%;
    height: 403px;
    background-color: transparent;
    top:-200px;
}

.calc_arrow {
    top: 385px;
    right: -450px;
    position:relative;
    display: flex;
    width:94px;
    height:94px;
    background-image: url('source/images/calc_arrow.png'); 
    background-size: cover;
    z-index: 1;
}

.left-calc-container {
    width:525px;
    height:200px; 
    text-align: left;
    justify-content: space-between;
}

.left-calc-container .title-calc-left {
    width:525px;
    height:140px; 
    text-transform: uppercase;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-align: left;
    color:#3A3A3A;
}

.left-calc-container .description-calc-left {
    width:525px;
    height:140px; 
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 22px;
    text-align: left;
    color:#3A3A3A;
}


.calculator_container-box .bottom-calc-box {
    top: -90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: row;
    width: 100%;
    height: 310px;
    background-color: transparent;
    margin-bottom: -80px;
}


.left-bottom-calc-container {
    width:525px;
    height:200px; 
    text-align: left;
    justify-content: space-between;
}

.left-bottom-calc-container .title-bcalc-left {
    width:525px;
    height:100px; 
    text-transform: uppercase;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-align: left;
    color:#3A3A3A;
}

.left-bottom-calc-container .description-bcalc-left {
    width:525px;
    height:100px; 
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 22px;
    text-align: left;
    color:#3A3A3A;
}

.right-bottom-calc-container {
    width: 994px;
    height: 310px;
    background-color: transparent;
    display: flex;
}

.right-bottom-calc-container .cont-box-1 {
    width: 534px;
    height: 267px;
    min-width: 534px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #7A3F91 0%, #EF5BA2 100%);
    display: block;
    z-index: 0;
}

.right-bottom-calc-container .cont-box-inner  {
    margin-top:70px;
    margin-left: 50px;
    width: 363px;
    height: 120px;
    flex-direction: column;
    display: flex;
}

.right-bottom-calc-container .cont-box-1 .title_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    width: 363px;
    height: 30px;
    background-color: transparent;
    margin-top: 15px;
}

.right-bottom-calc-container .cont-box-1 .hr_cont {
    margin-top: 15px;
    width: 67px;
    height: 1px;
    background-color: #FFFFFF;
}

.right-bottom-calc-container .cont-box-1 .desc_cont {
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 18px;
    color: #FFFFFF;
    text-align: left;
    display: flex;
    width: 363px;
    height: 50px;
    background-color: transparent;
}

.right-bottom-calc-container .cont-box-2 {
    margin-left:-74px;
    margin-top: 68px;
    width: 534px;
    min-width: 534px;
    height: 243px;
    flex-direction: column;
    border-radius: 20px;
    background-color: #F7F7F7;
    display:block;
    z-index: 1;
}

.right-bottom-calc-container .cont-box-2 .title_cont {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #3A3A3A;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    width: 363px;
    height: 30px;
    background-color: transparent;
    margin-top: 15px;
}

.right-bottom-calc-container .cont-box-2 .hr_cont {
    margin-top: 15px;
    width: 67px;
    height: 1px;
    background-color: #3A3A3A;
}

.right-bottom-calc-container .cont-box-2 .desc_cont {
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 18px;
    color: #3A3A3A;
    text-align: left;
    display: flex;
    width: 363px;
    height: 50px;
    background-color: transparent;
}

    .calculator-container {
        width: 994px;
        height: 403px;
        display: flex;
        gap: 20px;
    }

    .sliders-section {
        flex: 1;
        background: #F7F7F7;
        border-radius: 12px;
        padding: 40px 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slider-group {
        margin-bottom: 28px;
    }

    .slider-label {
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        font-size: 15px;
        color: #4D4B4B;
        margin-bottom: 14px;
        display: block;
    }

        .slider-container {
            position: relative;
            height: 20px;
            margin-bottom: 10px;
        }

        .slider-track {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 8px;
            transform: translateY(-50%);
            background: #e5e5e5;
            border-radius: 4px;
            overflow: hidden;
        }

        .slider-fill {
            height: 100%;
            background: linear-gradient(to right, #7A3F91, #EF5BA2);
            border-radius: 4px;
            transition: width 0.1s ease;
        }

        .slider-thumb {
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #EE509C;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(233, 30, 140, 0.4);
            transition: left 0.1s ease;
            z-index: 10;
        }

        .slider-thumb:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .slider-scale {
            position: relative;
            font-size: 12px;
            color: #999;
            user-select: none;
            height: 20px;
        }

        .slider-scale span {
            position: absolute;
            cursor: pointer;
            transition: color 0.2s ease, font-weight 0.2s ease;
            white-space: nowrap;
        }

        .slider-scale span.active {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Skala zamówień - 9 wartości (0-8) */
        #ordersScale span[data-index="0"] { left: 0; }
        #ordersScale span[data-index="1"] { left: 12.5%; transform: translateX(-50%); }
        #ordersScale span[data-index="2"] { left: 25%; transform: translateX(-50%); }
        #ordersScale span[data-index="3"] { left: 37.5%; transform: translateX(-50%); }
        #ordersScale span[data-index="4"] { left: 50%; transform: translateX(-50%); }
        #ordersScale span[data-index="5"] { left: 62.5%; transform: translateX(-50%); }
        #ordersScale span[data-index="6"] { left: 75%; transform: translateX(-50%); }
        #ordersScale span[data-index="7"] { left: 87.5%; transform: translateX(-50%); }
        #ordersScale span[data-index="8"] { right: 0; }

        /* Skala kwot - 6 wartości (0-5) */
        #amountScale span[data-index="0"] { left: 0; }
        #amountScale span[data-index="1"] { left: 20%; transform: translateX(-50%); }
        #amountScale span[data-index="2"] { left: 40%; transform: translateX(-50%); }
        #amountScale span[data-index="3"] { left: 60%; transform: translateX(-50%); }
        #amountScale span[data-index="4"] { left: 80%; transform: translateX(-50%); }
        #amountScale span[data-index="5"] { right: 0; }

        .rate-section {
            text-align: left;
            margin-top: 20px;
        }

        .rate-label {
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #4D4B4B;
            margin-bottom: 6px;
        }

        .rate-value {
            font-family: 'Roboto Flex', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: #4D4B4B;
        }

        .rate-note {
            text-align: center;
            font-family: 'Roboto', sans-serif;
            font-weight: 100;
            font-size: 11px;
            color: #4D4B4B;
            margin-top: 12px;
        }

        .results-section {
            width: 390px;
            background: linear-gradient(135deg, #7A3F91 0%, #EF5BA2 100%);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 35px;
            color: #fff;
        }

        .result-block {
            text-align: center;
            margin-bottom: 30px;
        }

        .result-block:last-child {
            margin-bottom: 0;
        }

        .result-label {
            font-family: 'Roboto', sans-serif;
            font-weight: 200;
            font-size: 18px;
            color: #FFFFFF;
            opacity: 0.95;
            margin-bottom: 8px;
        }

        .result-value {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 0.5px;
        }

        .result-value .currency {
            font-family: 'Roboto Flex', sans-serif;
            font-size: 24px;
            font-weight: 900;
            font-size: 18px;
        }



/* ============================================
   MOBILE ≤ 480px - CALCULATOR CONTAINER
   ============================================ */

@media (max-width: 480px) {

    .calculator_container {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    /* Strzałka ukryta */
    .calc_arrow {
        display: none;
    }

    /* Główny box */
    .calculator_container-box {
        width: 100%;
        height: auto;
        padding: 0 24px;
        box-sizing: border-box;
    }

    /* ===== GÓRNA CZĘŚĆ - tytuł + kalkulator ===== */
    .calculator_container-box .top-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        gap: 30px;
    }

    /* Tytuł kalkulatora */
    .left-calc-container {
        width: 100%;
        height: auto;
    }

    .left-calc-container .title-calc-left {
        width: 100%;
        height: auto;
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .left-calc-container .description-calc-left {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    /* Kalkulator */
    .calculator-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 16px;
    }

    .sliders-section {
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    }

    .slider-label {
        font-size: 14px;
    }

    .slider-scale span {
        font-size: 11px;
    }

    .rate-value {
        font-size: 22px;
    }

    .rate-note {
        font-size: 12px;
    }

    /* Wyniki */
    .results-section {
        width: 100%;
        height: 300px;
        padding: 30px 24px;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .result-label {
        font-size: 18px;
    }

    .result-value {
        font-size: 24px;
    }

    .result-value .currency {
        font-size: 16px;
    }

    /* ===== DOLNA CZĘŚĆ - wypłaty ===== */
    .calculator_container-box .bottom-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        margin-bottom: 0;
        gap: 30px;
        margin-top: 40px;
    }

    /* Tytuł dolnej sekcji */
    .left-bottom-calc-container {
        width: 100%;
        height: auto;
    }

    .left-bottom-calc-container .title-bcalc-left {
        width: 100%;
        height: auto;
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .left-bottom-calc-container .description-bcalc-left {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    /* Boksy wypłat */
    .right-bottom-calc-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .right-bottom-calc-container .cont-box-1 {
        width: 100%;
        min-width: unset;
        height: auto;
        border-radius: 16px;
        padding-bottom: 30px;
    }

    .right-bottom-calc-container .cont-box-inner {
        margin-top: 30px;
        margin-left: 24px;
        width: calc(100% - 48px);
        height: auto;
    }

    .right-bottom-calc-container .cont-box-1 .title_cont,
    .right-bottom-calc-container .cont-box-2 .title_cont {
        width: 100%;
        height: auto;
        font-size: 24px;
    }

    .right-bottom-calc-container .cont-box-1 .desc_cont,
    .right-bottom-calc-container .cont-box-2 .desc_cont {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.5;
    }

    .right-bottom-calc-container .cont-box-2 {
        width: 100%;
        min-width: unset;
        height: auto;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
        padding-bottom: 30px;
    }
}




.video-box-2 {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 639px;
    overflow: visible;
}

.video-box-2 video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-box-2 .video2_container-box {
    margin: 0 auto;
    position: relative;  
    z-index: 2;          
    display: flex;
    align-items: center;
    justify-content: center;  
    width: 1696px;
    height: 639px;
    flex-direction: row;
    color:white;
    background-color: transparent;
}

.video2-left-container {
    align-items: left;
    justify-content: center;  
    flex-direction: column;
    position: relative;  
    display: flex;
    width: 848px;
    height: 439px;
    background-color: transparent;
    gap: 20px;
}

.video2-right-container {
    display: flex;
    width: 848px;
    height: 439px;
    background-color: transparent;
}


.video2-left-container .title-vid2-left {
    width:525px;
    height:50px; 
    text-transform: uppercase;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-align: left;
    color:#FFFFFF;
}

.video2-left-container .description-vid2-left {
    width:525px;
    height:80px; 
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 22px;
    text-align: left;
    color:#FFFFFF;
}

        .form-container {
            width: 848px;
            height: 439px;
            background: #e7acdd;
            border-radius: 24px;
            padding: 40px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .form-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(
                90deg,
                white 0%,
                rgba(255, 255, 255, 0.8) 20%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            font-family: 'Roboto', sans-serif;
            display: block;
            color: #4D4B4B;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .form-hint {
            font-family: 'Roboto', sans-serif;
            color: #4D4B4B;
            display: block;
            color: #6a5a6a;
            font-size: 12px;
            margin-top: 6px;
            margin-bottom: 0;
        }

        .form-input {
            width: 100%;
            height: 52px;
            background: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 0 20px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            color: #333;
            outline: none;
            transition: box-shadow 0.2s ease;
        }

        .form-input::placeholder {
            color: #888;
        }

        .form-input:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 8px;
            margin-bottom: 24px;
        }

        .checkbox-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .checkbox-input {
            width: 20px;
            height: 20px;
            margin: 0;
            cursor: pointer;
            accent-color: #e91e8c;
        }

        .checkbox-label {
            font-family: 'Roboto', sans-serif;
            font-weight: 400px;
            font-size: 16px;
            color: #4a3a4a;
            line-height: 1.5;
        }

        .checkbox-label a {
            color: #4a3a4a;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .checkbox-label a:hover {
            color: #7A3F91;
        }

        .submit-btn {
            width: 297px;
            height: 50px;
            background: #EE509C;
            border: none;
            border-radius: 8px;
            color: #ffffff;
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .submit-btn:hover {
            background: #d4498d;
        }

        .submit-btn:active {
            background: #c43d82;
        }




/* ============================================
   MOBILE ≤ 480px - VIDEO-BOX-2 (FORMULARZ)
   ============================================ */

@media (max-width: 480px) {

    .video-box-2 {
        height: auto;
    }

    .video-box-2 .video2_container-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 40px 24px;
        box-sizing: border-box;
        gap: 30px;
    }

    /* Lewa - tytuł + opis */
    .video2-left-container {
        width: 100%;
        height: auto;
        gap: 12px;
    }

    .video2-left-container .title-vid2-left {
        width: 100%;
        height: auto;
        font-size: 32px;
        line-height: 1.1;
    }

    .video2-left-container .description-vid2-left {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    /* Prawa - formularz */
    .video2-right-container {
        width: 100%;
        height: auto;
    }

    .form-container {
        width: 100%;
        height: auto;
        padding: 28px 20px;
        box-sizing: border-box;
        border-radius: 16px;
    }

    .form-container::before {
        border-radius: 16px;
    }

    .form-input {
        height: 48px;
        font-size: 15px;
        padding: 0 16px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-hint {
        font-size: 11px;
    }

    .checkbox-label {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        height: 50px;
        font-size: 17px;
        border-radius: 26px;
    }
}




.footer-content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    width: 100%;
    height: 579px;
    background-color: #F4F4F4;
}

.footer-content-box .footer-full-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    text-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    width: 1696px;
    height: 579px;
    background-color: transparent;
}

/* ============================================
   NOWY FOOTER - CSS (DESKTOP + MOBILE)
   ============================================ */

.new-footer {
    width: 100%;
    background-color: #F4F4F4;
    font-family: 'Roboto', sans-serif;
}

/* Gradient bar na górze */
.new-footer-gradient-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #7A3F91 0%, #EE509C 50%, #7A3F91 100%);
}

/* Główna zawartość */
.new-footer-content {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    border-bottom: 1px solid #BABABA;
}

.new-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1696px;
    max-width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
    gap: 40px;
}

/* Sekcje */
.new-footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Separatory pionowe między sekcjami */
.new-footer-section:not(:last-child) {
    padding-right: 40px;
    border-right: 0px solid #BABABA;
}

/* Logo */
.new-footer-logo img {
    width: 164px;
    height: 100px;
}

/* Nagłówki sekcji */
.new-footer-section h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3A3A3A;
    margin: 0 0 16px 0;
}

/* Regulaminy */
.new-footer-regulations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer-regulations ul li {
    margin-bottom: 8px;
}

.new-footer-regulations ul li a {
    font-size: 15px;
    color: #3A3A3A;
    text-decoration: none;
    transition: color 0.2s;
}

.new-footer-regulations ul li a:hover {
    color: #7A3F91;
}

/* Kontakt */
.new-footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #7A3F91;
    text-decoration: none;
    transition: color 0.2s;
}

.new-footer-email:hover {
    color: #5a2d6e;
}

.new-footer-email svg {
    width: 22px;
    height: 22px;
    stroke: #7A3F91;
    fill: none;
}

/* Social Media */
.new-footer-social h4 {
    font-size: 16px;
}

.new-footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-new {
    width: 40px;
    height: 40px;
    background: #3A3A3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-icon-new:hover {
    background: #7A3F91;
}

.social-icon-new svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Dolna linia */
.new-footer-bottom-line {
    width: 100%;
    height: 1px;
    background-color: #BABABA;
}


/* ============================================
   MOBILE ≤ 480px
   ============================================ */

@media (max-width: 480px) {

    .new-footer-gradient-bar {
        height: 6px;
    }

    .new-footer-content {
        padding: 30px 0;
    }

    .new-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 28px;
    }

    /* Usuń separatory pionowe */
    .new-footer-section:not(:last-child) {
        padding-right: 0;
        border-right: none;
    }

    /* Logo */
    .new-footer-logo {
        margin-bottom: 10px;
    }

    .new-footer-logo img {
        width: 180px;
        height: auto;
    }

    /* Nagłówki */
    .new-footer-section h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    /* Regulaminy */
    .new-footer-regulations ul li {
        margin-bottom: 10px;
    }

    .new-footer-regulations ul li a {
        font-size: 15px;
    }

    /* Kontakt */
    .new-footer-email {
        font-size: 15px;
    }

    .new-footer-email svg {
        width: 20px;
        height: 20px;
    }

    /* Social Media */
    .new-footer-social h4 {
        font-size: 17px;
        line-height: 1.3;
    }

    .new-footer-social-icons {
        gap: 14px;
    }

    .social-icon-new {
        width: 44px;
        height: 44px;
    }

    .social-icon-new svg {
        width: 24px;
        height: 24px;
    }
}


 
/* ============================================================
   481px – 1023px
   ============================================================ */
 
@media (min-width: 481px) and (max-width: 1023px) {
 
    /* ===== MENU ===== */
 
    .loy_menu {
        height: 74px;
    }
 
    .loy_menu_in {
        width: 100%;
        height: 74px;
        padding: 0 4vw;
        justify-content: space-between;
    }
 
    .loy_menu_in_logo {
        width: 90px;
        height: 55px;
    }
 
    .loy_menu_in_content {
        display: none !important;
    }
 
    .loy_menu_in_register {
        margin-left: auto;
        width: auto;
        height: auto;
        gap: 12px;
    }
 
    .loy_menu_in_register .button {
        width: 160px;
        height: 44px;
        font-size: 14px;
        border-radius: 8px;
    }
 
    .loy_menu_hamburger {
        display: flex;
        width: 44px;
        height: 44px;
    }
 
    .loy_menu_mobile_overlay {
        top: 74px;
        height: calc(100vh - 74px);
    }
 
 
    /* ===== HERO (video-box) ===== */
 
    .video-box {
        height: auto;
        min-height: 60vw;
        overflow: hidden;
    }
 
    .video-box .loy_head_container {
        margin-top: 20px;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 12vw 5vw 8vw;
        gap: 0;
    }
 
    .video-box .loy_head_container .left_one {
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: flex-start;
    }
 
    .video-box .loy_head_container .left_one .inner_container {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_bg {
        position: absolute;
        left: -3vw;
        top: -5vw;
        width: 12vw;
        height: 12vw;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_title_content {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        font-size: clamp(36px, 5.5vw, 56px);
        text-align: left;
        line-height: 1.1;
        padding-bottom: 3vw;
    }
 
    .video-box .loy_head_container .center_one {
        display: none;
    }
 
    .video-box .loy_head_container .right_one {
        margin-top: 5vw;
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
        justify-content: center;
    }
 
    .video-box .loy_head_container .right_one .right_content {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        border-radius: 16px;
        min-height: 160px;
    }
 
    .video-box .loy_head_container .right_one .right_content::before {
        border-radius: 16px;
    }
 
    .video-box .loy_head_container .right_one .right_content .textholder {
        width: 100%;
        height: auto;
        font-size: clamp(16px, 2.2vw, 22px);
        line-height: 1.5;
        padding: 3vw 3vw 2vw 3.5vw;
        font-weight: 300;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder {
        width: 100%;
        height: auto;
        justify-content: flex-end;
        padding: 0 3vw 2.5vw 0;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder .roundbutton {
        margin: 0;
        width: clamp(56px, 7vw, 70px);
        height: clamp(56px, 7vw, 70px);
    }
 
 
    /* ===== WHY ===== */
 
    .why_container {
        height: auto;
        padding: 5vw 0;
    }
 
    .why_container .w_cont {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5vw;
        gap: 4vw;
    }
 
    .why_container .w_cont .w_cont_left {
        width: 100%;
        height: auto;
        align-items: flex-start;
    }
 
    .why_container .w_cont .w_cont_left .l_box {
        width: 100%;
        height: auto;
        gap: 2vw;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_h {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 4.5vw, 40px);
        line-height: 1.1;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_p {
        width: 100%;
        height: auto;
        font-size: clamp(16px, 2.3vw, 22px);
        line-height: 1.4;
    }
 
    /* Karty – poziomy scroll jak na 480px */
    .why_container .w_cont .w_cont_right {
        justify-content: flex-start;
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 2vw;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
 
    .why_container .w_cont .w_cont_right::-webkit-scrollbar {
        display: none;
    }
    .why_container .w_cont .w_cont_right {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
 
    .why_container .w_cont .w_cont_right .r_box {
        min-width: clamp(280px, 38vw, 340px);
        width: clamp(280px, 38vw, 340px);
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content {
        width: 100%;
        height: clamp(400px, 52vw, 480px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover {
        width: 100%;
        height: clamp(400px, 52vw, 480px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .inter_container {
        width: 80%;
        height: auto;
        gap: 2vw;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .title_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .title_cont {
        width: 100%;
        height: auto;
        font-size: clamp(20px, 2.8vw, 26px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .desc_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .desc_cont {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 2vw, 18px);
        line-height: 1.4;
    }
 
 
    /* ===== STEPS ===== */
 
    .steps_container {
        height: auto;
        min-height: auto;
        padding: 6vw 0;
    }
 
    .steps_container .left_3 {
        margin-left: -200px;
    }
 
    .steps_container .right_3 {
        margin-right:-300px;
    }
 
    .steps_container .s_inner_cont {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 0 5vw;
        gap: 6vw;
        box-sizing: border-box;
    }
 
    .steps_container .s_inner_cont .steps_left {
        align-self: flex-start;
        width: 100%;
        height: auto;
        font-size: clamp(60px, 9vw, 96px);
        line-height: 1.3;
        text-align: left;
    }
 
    .steps_container .s_inner_cont .steps_left span {
        font-size: clamp(100px, 14vw, 128px);
    }
 
    .steps_container .s_inner_cont .steps_right {
        align-items: center;
        width: 100%;
        max-width: 670px;
        height: auto;
        gap: clamp(36px, 5vw, 60px);
        margin-bottom: 4vw;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container {
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container .arrow_1,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 .arrow_2 {
        display: none !important;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 {
        width: auto !important;
        height: auto !important;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start !important;
        gap: 2vw;
        flex-shrink: 1;
        flex-grow: 0;
    }
 
    .box-image-inner-icon {
        width: clamp(75px, 10vw, 100px) !important;
        height: clamp(75px, 10vw, 100px) !important;
        flex-shrink: 0;
    }
 
    .box-image-inner-icon .image-circle {
        width: clamp(75px, 10vw, 100px) !important;
        height: clamp(75px, 10vw, 100px) !important;
    }
 
    .box-image-inner-icon .image-circle img {
        width: clamp(46px, 6vw, 60px) !important;
        height: clamp(46px, 6vw, 60px) !important;
        object-fit: contain;
    }
 
    .smallbox-inner-content-container {
        width: auto !important;
        height: auto !important;
        flex: 1;
        min-width: 0;
        max-width: 100%;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
 
    .smallbox-inner-content-container .title-txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        font-size: clamp(17px, 2.4vw, 24px);
    }
 
    .smallbox-inner-content-container .txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 1vw !important;
        font-size: clamp(15px, 2vw, 20px);
        line-height: 1.5;
        overflow-wrap: break-word;
        word-break: break-word;
    }
 
 
    /* ===== CALCULATOR ===== */
 
    .calculator_container {
        height: auto;
        min-height: auto;
        padding: 5vw 0;
    }
 
    .calc_arrow {
        display: none;
    }
 
    .calculator_container-box {
        width: 100%;
        height: auto;
        padding: 0 5vw;
        box-sizing: border-box;
    }
 
    .calculator_container-box .top-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        gap: 3vw;
    }
 
    .left-calc-container {
        width: 100%;
        height: auto;
    }
 
    .left-calc-container .title-calc-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 4.5vw, 40px);
        line-height: 1.1;
        margin-bottom: 1.5vw;
    }
 
    .left-calc-container .description-calc-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 2.2vw, 22px);
        line-height: 1.5;
    }
 
    .calculator-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 2vw;
    }
 
    .sliders-section {
        width: 100%;
        padding: 3vw 3.5vw;
        box-sizing: border-box;
    }
 
    .slider-label {
        font-size: clamp(13px, 1.8vw, 16px);
    }
 
    .slider-scale span {
        font-size: clamp(10px, 1.4vw, 13px);
    }
 
    .rate-value {
        font-size: clamp(20px, 3vw, 26px);
    }
 
    .rate-note {
        font-size: clamp(11px, 1.4vw, 13px);
    }
 
    .results-section {
        width: 100%;
        height: auto;
        min-height: 260px;
        padding: 3.5vw 3vw;
        box-sizing: border-box;
        border-radius: 12px;
    }
 
    .result-label {
        font-size: clamp(16px, 2.2vw, 20px);
    }
 
    .result-value {
        font-size: clamp(22px, 3.2vw, 28px);
    }
 
    .result-value .currency {
        font-size: clamp(15px, 2vw, 18px);
    }
 
    .calculator_container-box .bottom-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        margin-bottom: 0;
        gap: 3vw;
        margin-top: 5vw;
    }
 
    .left-bottom-calc-container {
        width: 100%;
        height: auto;
    }
 
    .left-bottom-calc-container .title-bcalc-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 4.5vw, 40px);
        line-height: 1.1;
        margin-bottom: 1.5vw;
    }
 
    .left-bottom-calc-container .description-bcalc-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 2.2vw, 22px);
        line-height: 1.5;
    }
 
    .right-bottom-calc-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 2vw;
        margin-bottom: 2vw;
    }
 
    .right-bottom-calc-container .cont-box-1 {
        width: 100%;
        min-width: unset;
        height: auto;
        border-radius: 16px;
        padding-bottom: 3vw;
    }
 
    .right-bottom-calc-container .cont-box-inner {
        margin-top: 3vw;
        margin-left: 3vw;
        width: calc(100% - 6vw);
        height: auto;
    }
 
    .right-bottom-calc-container .cont-box-1 .title_cont,
    .right-bottom-calc-container .cont-box-2 .title_cont {
        width: 100%;
        height: auto;
        font-size: clamp(20px, 3vw, 26px);
    }
 
    .right-bottom-calc-container .cont-box-1 .desc_cont,
    .right-bottom-calc-container .cont-box-2 .desc_cont {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 2.2vw, 20px);
        line-height: 1.5;
    }
 
    .right-bottom-calc-container .cont-box-2 {
        width: 100%;
        min-width: unset;
        height: auto;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
        padding-bottom: 3vw;
    }
 
 
    /* ===== FORMULARZ (video-box-2) ===== */
 
    .video-box-2 {
        height: auto;
    }
 
    .video-box-2 .video2_container-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 5vw;
        box-sizing: border-box;
        gap: 3.5vw;
    }
 
    .video2-left-container {
        width: 100%;
        height: auto;
        gap: 1.5vw;
    }
 
    .video2-left-container .title-vid2-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 4.5vw, 40px);
        line-height: 1.1;
    }
 
    .video2-left-container .description-vid2-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 2.2vw, 22px);
        line-height: 1.5;
    }
 
    .video2-right-container {
        width: 100%;
        height: auto;
    }
 
    .form-container {
        width: 100%;
        height: auto;
        padding: 3vw 3.5vw;
        box-sizing: border-box;
        border-radius: 16px;
    }
 
    .form-container::before {
        border-radius: 16px;
    }
 
    .form-input {
        height: clamp(44px, 6vw, 54px);
        font-size: clamp(14px, 1.9vw, 16px);
        padding: 0 2vw;
    }
 
    .form-label {
        font-size: clamp(14px, 1.9vw, 16px);
    }
 
    .form-hint {
        font-size: clamp(10px, 1.3vw, 12px);
    }
 
    .checkbox-label {
        font-size: clamp(13px, 1.8vw, 16px);
    }
 
    .submit-btn {
        width: 100%;
        height: clamp(46px, 6vw, 54px);
        font-size: clamp(15px, 2.1vw, 18px);
        border-radius: 26px;
    }
 
 
    /* ===== FOOTER ===== */
 
    .footer-content-box {
        height: auto;
    }
 
    .footer-content-box .footer-full-container {
        width: 100%;
        height: auto;
    }
 
    .new-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5vw;
        gap: 3.5vw;
    }
 
    .new-footer-section:not(:last-child) {
        padding-right: 0;
        border-right: none;
    }
 
    .new-footer-logo img {
        width: clamp(140px, 20vw, 180px);
        height: auto;
    }
 
    .new-footer-section h4 {
        font-size: clamp(16px, 2.2vw, 18px);
        margin-bottom: 1.5vw;
    }
 
    .new-footer-regulations ul li a {
        font-size: clamp(14px, 1.9vw, 16px);
    }
 
    .new-footer-email {
        font-size: clamp(14px, 1.9vw, 16px);
    }
 
    .social-icon-new {
        width: clamp(38px, 5vw, 44px);
        height: clamp(38px, 5vw, 44px);
    }
}
 


/* ============================================================
   1024px – 1440px
   ============================================================ */

 @media (min-width: 1024px) and (max-width: 1440px) {
 
    /* ===== MENU ===== */
 
    .loy_menu_in {
        width: 100%;
        padding: 0 3vw;
        justify-content: space-between;
    }
 
    .loy_menu_in_content {
        margin-left: 3vw;
        width: auto;
        gap: 2.5vw;
    }
 
    .loy_menu_in_content_item {
        font-size: clamp(14px, 1.5vw, 18px);
    }
 
    .loy_menu_in_register {
        margin-left: auto;
    }
 
    .loy_menu_in_register .button {
        width: clamp(140px, 13vw, 177px);
        font-size: clamp(13px, 1.3vw, 16px);
    }
 
 
    /* ===== HERO ===== */
 
    .video-box .loy_head_container {
        width: 100%;
        padding-top: 14vw;
        padding-left: 150px;
        padding-right: 150px;
        gap: 1vw;
    }
 
    .video-box .loy_head_container .left_one {
        width: 50%;
        height: auto;
    }
 
    .video-box .loy_head_container .left_one .inner_container {
        top: 5vw;
        width: 90%;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_bg {
        left: -5vw;
        top: 2vw;
        width: 10vw;
        height: 10vw;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_title_content {
        left: -1.5vw;
        top: 7vw;
        width: 90%;
        font-size: clamp(34px, 3.8vw, 48px);
    }
 
    .video-box .loy_head_container .center_one {
        left: -2vw;
        margin-left: -5vw;
    }
 
    .video-box .loy_head_container .right_one {
        left: 5vw;
        width: 48%;
        height: auto;
    }
 
    .video-box .loy_head_container .right_one .right_content {
        top: 10vw;
        width: 100%;
        height: auto;
        min-height: 160px;
    }
 
    .video-box .loy_head_container .right_one .right_content .textholder {
        width: 75%;
        height: auto;
        font-size: clamp(15px, 1.6vw, 20px);
        padding: 2.5vw 1.5vw 2.5vw 3vw;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder {
        width: 25%;
        height: auto;
        min-height: 120px;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder .roundbutton {
        margin-top: 3vw;
        margin-left: 1vw;
        width: clamp(52px, 5vw, 70px);
        height: clamp(52px, 5vw, 70px);
    }
 
 
    /* ===== WHY – karty w poziomym przesuwanym oknie ===== */
 
    .why_container {
        height: auto;
        padding: 4vw 0;
    }
 
    .why_container .w_cont {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 4vw;
        gap: 3vw;
    }
 
    .why_container .w_cont .w_cont_left {
        width: 100%;
        height: auto;
        align-items: flex-start;
    }
 
    .why_container .w_cont .w_cont_left .l_box {
        width: 100%;
        height: auto;
        gap: 1.5vw;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_h {
        width: 100%;
        height: auto;
        font-size: clamp(30px, 3.2vw, 40px);
        line-height: 1.1;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_p {
        width: 100%;
        height: auto;
        font-size: clamp(17px, 1.8vw, 22px);
        line-height: 1.4;
    }
 
    /* Karty – poziomy scroll */
    .why_container .w_cont .w_cont_right {
        justify-content: center;
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 2vw;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
 
    .why_container .w_cont .w_cont_right::-webkit-scrollbar {
        display: none;
    }
 
    .why_container .w_cont .w_cont_right {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
 
    .why_container .w_cont .w_cont_right .r_box {
        min-width: clamp(280px, 28vw, 340px);
        width: clamp(280px, 28vw, 340px);
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content {
        width: 100%;
        height: clamp(400px, 42vw, 480px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover {
        width: 100%;
        height: clamp(400px, 42vw, 480px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .inter_container {
        width: 80%;
        height: auto;
        gap: 1.5vw;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .title_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .title_cont {
        width: 100%;
        height: auto;
        font-size: clamp(20px, 2.2vw, 26px);
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .desc_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .desc_cont {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 1.5vw, 18px);
        line-height: 1.4;
    }
 
 
    /* ===== STEPS – lewa jak desktop, prawa w kolumnie ===== */
 
    .steps_container {
        height: auto;
        min-height: auto;
        padding: 4vw 0;
    }
 
    .steps_container .s_inner_cont {
        width: 100%;
        height: auto;
        min-height: 560px;
        flex-direction: row;
        align-items: flex-start;
        padding: 5vw 4vw;
        gap: 0;
        box-sizing: border-box;
    }
 
    /* LEWA – tytuł, jak desktop */
    .steps_container .s_inner_cont .steps_left {
        width: clamp(220px, 22vw, 300px);
        height: auto;
        font-size: clamp(60px, 7vw, 96px);
        flex-shrink: 0;
    }
 
    .steps_container .s_inner_cont .steps_left span {
        font-size: clamp(80px, 10vw, 128px);
    }
 
    /* PRAWA – kroki w kolumnie, wycentrowane w pionie, odsunięte od lewej */
    .steps_container .s_inner_cont .steps_right {
        flex: 0 0 auto;
        width: calc(100% - clamp(220px, 22vw, 300px) - 14vw);
        max-width: 520px;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: clamp(20px, 2.5vw, 40px);
        margin-left: 18vw;
        padding-top: 100px;
        align-self: center;
    }
 
    /* Każdy krok – row (ikona + tekst) */
    .steps_container .s_inner_cont .steps_right .in-right-container {
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }
 
    /* Ukryj strzałki */
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container .arrow_1,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 .arrow_2 {
        display: none !important;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container,
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 {
        width: auto !important;
        height: auto !important;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start !important;
        gap: clamp(12px, 1.5vw, 20px);
        flex-shrink: 1;
        flex-grow: 0;
    }
 
    .box-image-inner-icon {
        width: clamp(70px, 7vw, 100px) !important;
        height: clamp(70px, 7vw, 100px) !important;
        flex-shrink: 0;
    }
 
    .box-image-inner-icon .image-circle {
        width: clamp(70px, 7vw, 100px) !important;
        height: clamp(70px, 7vw, 100px) !important;
    }
 
    .box-image-inner-icon .image-circle img {
        width: clamp(42px, 4.5vw, 60px) !important;
        height: clamp(42px, 4.5vw, 60px) !important;
        object-fit: contain;
    }
 
    .smallbox-inner-content-container {
        width: auto !important;
        height: auto !important;
        flex: 1;
        min-width: 0;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
 
    .smallbox-inner-content-container .title-txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        font-size: clamp(16px, 1.8vw, 24px);
    }
 
    .smallbox-inner-content-container .txt_steps {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 0.8vw !important;
        font-size: clamp(14px, 1.5vw, 20px);
        line-height: 1.5;
        overflow-wrap: break-word;
        word-break: break-word;
    }
 
 
    /* ===== KALKULATOR – jeden pod drugim ===== */
 
    .calculator_container {
        height: auto;
        padding: 4vw 0;
    }
 
    .calc_arrow {
        display: none;
    }
 
    .calculator_container-box {
        width: 100%;
        height: auto;
        padding: 0 4vw;
        box-sizing: border-box;
    }
 
    /* Górna część – tytuł + kalkulator jeden pod drugim */
    .calculator_container-box .top-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        gap: 2.5vw;
    }
 
    .left-calc-container {
        width: 100%;
        height: auto;
    }
 
    .left-calc-container .title-calc-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 3.2vw, 40px);
        line-height: 1.1;
        margin-bottom: 1vw;
    }
 
    .left-calc-container .description-calc-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 1.8vw, 22px);
        line-height: 1.5;
    }
 
    .calculator-container {
        width: 100%;
        max-width:900px;
        height: auto;
        flex-direction: column;
        gap: 1.5vw;
    }
 
    .sliders-section {
        width: 100%;
        padding: 2.5vw 3vw;
        box-sizing: border-box;
    }
 
    .results-section {
        width: 100%;
        height: auto;
        min-height: 240px;
        padding: 2.5vw 3vw;
        box-sizing: border-box;
    }
 
    /* Dolna część – tytuł + boksy wypłat jeden pod drugim */
    .calculator_container-box .bottom-calc-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: 0;
        margin-bottom: 0;
        gap: 2.5vw;
        margin-top: 4vw;
    }
 
    .left-bottom-calc-container {
        width: 100%;
        height: auto;
    }
 
    .left-bottom-calc-container .title-bcalc-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 3.2vw, 40px);
        line-height: 1.1;
        margin-bottom: 1vw;
    }
 
    .left-bottom-calc-container .description-bcalc-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 1.8vw, 22px);
        line-height: 1.5;
    }
 
    .right-bottom-calc-container {
        align-items: center;
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 1.5vw;
        margin-bottom: 2vw;
    }
 
    .right-bottom-calc-container .cont-box-1 {
        width: 100%;
        min-width: unset;
        height: auto;
        border-radius: 16px;
        padding-bottom: 2.5vw;
        max-width: 900px;
    }
 
    .right-bottom-calc-container .cont-box-inner {
        margin-top: 2.5vw;
        margin-left: 3vw;
        width: calc(100% - 6vw);
        height: auto;
    }
 
    .right-bottom-calc-container .cont-box-1 .title_cont,
    .right-bottom-calc-container .cont-box-2 .title_cont {
        width: 100%;
        height: auto;
        font-size: clamp(20px, 2.2vw, 26px);
    }
 
    .right-bottom-calc-container .cont-box-1 .desc_cont,
    .right-bottom-calc-container .cont-box-2 .desc_cont {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 1.6vw, 20px);
        line-height: 1.5;
    }
 
    .right-bottom-calc-container .cont-box-2 {
        width: 100%;
        min-width: unset;
        height: auto;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
        padding-bottom: 2.5vw;
        max-width: 900px;
    }
 
    /* ===== FORMULARZ – jeden pod drugim ===== */
 
    .video-box-2 {
        height: auto;
    }
 
    .video-box-2 .video2_container-box {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 4vw;
        box-sizing: border-box;
        gap: 3vw;
    }
 
    .video2-left-container {
        width: 100%;
        height: auto;
        gap: 1.5vw;
    }
 
    .video2-left-container .title-vid2-left {
        width: 100%;
        height: auto;
        font-size: clamp(28px, 3.2vw, 40px);
        line-height: 1.1;
    }
 
    .video2-left-container .description-vid2-left {
        width: 100%;
        height: auto;
        font-size: clamp(15px, 1.8vw, 22px);
        line-height: 1.5;
    }
 
    .video2-right-container {
        width: 100%;
        height: auto;
    }
 
    .form-container {
        margin: 0 auto;
        max-width: 1000px;
        width: 100%;
        height: auto;
        padding: 3vw 3.5vw;
        box-sizing: border-box;
        border-radius: 20px;
    }
 
    .submit-btn {
        width: clamp(200px, 25vw, 297px);
    }

    /* ===== FOOTER – bez zmian, tylko fluid padding ===== */
 
    .footer-content-box .footer-full-container {
        width: 100%;
    }
 
    .new-footer-inner {
        width: 100%;
        padding: 0 4vw;
    }
}

/* ============================================================
   1441px – 1690px  |  90% skali desktopowej
   ============================================================ */
 
@media (min-width: 1441px) and (max-width: 1710px) {
 
    /* ===== MENU ===== */
    .loy_menu { height: 85px; }
 
    .loy_menu_in {
        width: 100%;
        height: 85px;
        padding: 0 5vw;
        justify-content: space-between;
    }
 
    .loy_menu_in_logo {
        width: 102px;
        height: 62px;
    }
 
    .loy_menu_in_content {
        margin-left: 90px;
        gap: 54px;
    }
 
    .loy_menu_in_content_item { font-size: 18px; }
 
    .loy_menu_in_register {
        margin-left: auto;
    }
 
    .loy_menu_in_register .button {
        width: 159px;
        height: 45px;
        font-size: 14px;
    }
 
    /* ===== HERO ===== */
    .video-box { height: 766px; }
 
    .video-box .loy_head_container {
        width: 100%;
        height: 681px;
        padding-top: 170px;
        padding-left: 0;
        padding-right: 0;
        gap: 14px;
    }
 
    .video-box .loy_head_container .left_one {
        width: 747px;
        height: 681px;
    }
 
    .video-box .loy_head_container .left_one .inner_container {
        top: 72px;
        width: 630px;
        height: 405px;
        margin-left: 100px;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_bg {
        left: -90px;
        top: 36px;
        width: 151px;
        height: 151px;
    }
 
    .video-box .loy_head_container .left_one .inner_container .chain_title_content {
        left: -27px;
        top: 108px;
        width: 450px;
        height: 180px;
        font-size: 43px;
    }
 
    .video-box .loy_head_container .center_one {
        left: -45px;
        width: 16px;
        height: 681px;
        margin-left: -90px;
    }
 
    .video-box .loy_head_container .right_one {
        left: 108px;
        width: 720px;
        height: 681px;
    }
 
    .video-box .loy_head_container .right_one .right_content {
        top: 180px;
        width: 591px;
        height: 202px;
        margin-left:-110px;
    }
 
    .video-box .loy_head_container .right_one .right_content .textholder {
        width: 400px;
        height: 202px;
        font-size: 18px;
        padding: 0 18px 0 45px;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder {
        width: 180px;
        height: 202px;
    }
 
    .video-box .loy_head_container .right_one .right_content .buttonholder .roundbutton {
        margin-top: 45px;
        margin-left: 18px;
        width: 63px;
        height: 63px;
    }
 
 
    /* ===== WHY ===== */
    .why_container { height: 608px; }
 
    .why_container .w_cont {
        width: 100%;
        height: 608px;
        padding: 0 5vw;
        gap: 18px;
    }
 
    .why_container .w_cont .w_cont_left {
        width: 585px;
        height: 450px;
    }
 
    .why_container .w_cont .w_cont_left .l_box {
        width: 464px;
        height: 153px;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_h {
        width: 464px;
        height: 85px;
        font-size: 36px;
    }
 
    .why_container .w_cont .w_cont_left .l_box .txt_left_p {
        width: 464px;
        height: 47px;
        font-size: 20px;
        padding-top: 20px;
    }
 
    .why_container .w_cont .w_cont_right {
        width: 882px;
        height: 450px;
        gap: 18px;
    }
 
    .why_container .w_cont .w_cont_right .r_box {
        width: 288px;
        height: 450px;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content {
        width: 288px;
        height: 418px;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover {
        width: 288px;
        height: 450px;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .inter_container {
        width: 216px;
        height: 333px;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .title_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .title_cont {
        width: 180px;
        height: 50px;
        font-size: 22px;
    }
 
    .why_container .w_cont .w_cont_right .r_box .r_box_content .desc_cont,
    .why_container .w_cont .w_cont_right .r_box .r_box_content:hover .desc_cont {
        width: 216px;
        height: 117px;
        font-size: 16px;
    }
 
    /* ===== STEPS ===== */
    .steps_container { height: 594px; }
 
    .steps_container .s_inner_cont {
        width: 100%;
        height: 594px;
        padding: 0 5vw;
        gap: 9px;
    }
 
    .steps_container .s_inner_cont .steps_left {
        width: 495px;
        height: 450px;
        font-size: 86px;
    }
 
    .steps_container .s_inner_cont .steps_left span {
        font-size: 115px;
    }
 
    .steps_container .s_inner_cont .steps_right {
        width: 950px;
        height: 450px;
        gap: 9px;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container {
        width: 950px;
        height: 144px;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container {
        width: 475px;
        height: 144px;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 {
        width: 475px;
        height: 144px;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container .arrow_1 {
        width: 108px;
        height: 108px;
    }
 
    .steps_container .s_inner_cont .steps_right .in-right-container .part-container-1 .arrow_2 {
        width: 114px;
        height: 114px;
    }
 
    .box-image-inner-icon {
        width: 90px !important;
        height: 90px !important;
    }
 
    .box-image-inner-icon .image-circle {
        width: 90px !important;
        height: 90px !important;
    }
 
    .box-image-inner-icon .image-circle img {
        width: 56px !important;
        height: 56px !important;
    }
 
    .smallbox-inner-content-container {
        width: 385px;
        height: 108px;
    }
 
    .smallbox-inner-content-container .title-txt_steps {
        width: 342px;
        height: 18px;
        margin-left: 38px;
        margin-top: 14px;
        font-size: 22px;
    }
 
    .smallbox-inner-content-container .txt_steps {
        margin-top: 9px;
        margin-left: 38px;
        width: 347px;
        height: 81px;
        font-size: 18px;
    }
 
 
    /* ===== KALKULATOR ===== */
    .calculator_container { height: 1114px; }
 
    .calculator_container-box {
        width: 100%;
        height: 829px;
        padding: 0 5vw;
    }
 
    .calculator_container-box .top-calc-box {
        height: 363px;
        top: -180px;
    }
 
    .left-calc-container {
        width: 473px;
        height: 180px;
    }
 
    .left-calc-container .title-calc-left {
        width: 473px;
        height: 126px;
        font-size: 36px;
    }
 
    .left-calc-container .description-calc-left {
        width: 473px;
        height: 126px;
        font-size: 20px;
    }
 
    .calculator-container {
        width: 895px;
        height: 363px;
        gap: 18px;
    }
    
    .calc_arrow {
        margin-left:-200px;
    }
    .sliders-section {
        padding: 36px 41px;
    }
 
    .results-section {
        width: 351px;
        padding: 36px 32px;
    }
 
    .result-label { font-size: 16px; }
    .result-value { font-size: 22px; }
 
    .calculator_container-box .bottom-calc-box {
        top: -81px;
        height: 279px;
        margin-bottom: -72px;
    }
 
    .left-bottom-calc-container {
        width: 473px;
        height: 180px;
    }
 
    .left-bottom-calc-container .title-bcalc-left {
        width: 473px;
        height: 90px;
        font-size: 36px;
    }
 
    .left-bottom-calc-container .description-bcalc-left {
        width: 473px;
        height: 90px;
        font-size: 20px;
    }
 
    .right-bottom-calc-container {
        width: 895px;
        height: 279px;
    }
 
    .right-bottom-calc-container .cont-box-1 {
        width: 481px;
        min-width: 481px;
        height: 240px;
    }
 
    .right-bottom-calc-container .cont-box-inner {
        margin-top: 63px;
        margin-left: 45px;
        width: 327px;
        height: 108px;
    }
 
    .right-bottom-calc-container .cont-box-1 .title_cont,
    .right-bottom-calc-container .cont-box-2 .title_cont {
        width: 327px;
        height: 27px;
        font-size: 22px;
    }
 
    .right-bottom-calc-container .cont-box-1 .desc_cont,
    .right-bottom-calc-container .cont-box-2 .desc_cont {
        width: 327px;
        height: 45px;
        font-size: 16px;
    }
 
    .right-bottom-calc-container .cont-box-2 {
        margin-left: -127px;
        margin-top: 61px;
        width: 481px;
        min-width: 481px;
        height: 219px;
    }
 
    .slider-scale span {
        font-size: 10px;
    }
 
    /* ===== FORMULARZ ===== */
    .video-box-2 { height: 575px; }
 
    .video-box-2 .video2_container-box {
        width: 100%;
        height: 575px;
        padding: 0 5vw;
    }
 
    .video2-left-container {
        width: 763px;
        height: 395px;
        gap: 18px;
    }
 
    .video2-left-container .title-vid2-left {
        width: 473px;
        height: 45px;
        font-size: 36px;
    }
 
    .video2-left-container .description-vid2-left {
        width: 473px;
        height: 72px;
        font-size: 20px;
    }
 
    .video2-right-container {
        width: 763px;
        height: 395px;
    }
 
    .form-container {
        width: 763px;
        height: 395px;
        padding: 36px 45px;
        border-radius: 22px;
    }
 
    .submit-btn {
        width: 267px;
        height: 65px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 16px;
    }
 
 
    /* ===== FOOTER ===== */
    .footer-content-box { height: 521px; }
 
    .footer-content-box .footer-full-container {
        width: 100%;
        height: 521px;
        padding: 0 5vw;
    }
 
    .new-footer-inner {
        width: 100%;
        padding: 0 5vw;
    }
}