@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Onest", sans-serif;
    background: #F7F7F7;
    color: #101010;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body::-webkit-scrollbar {
    background: none;
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #3b82f6;
    border-radius: 50px;
}

a {
    text-decoration: none;
    color: #000;
}

button,
input {
    font-family: "Onest", sans-serif;
}

.nav_position {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 100;
}

nav {
    width: 100%;
    max-height: 72px;
    background: #fff;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 12px;

    .logoname {
        font-size: 24px;
        font-weight: 800;

        span {
            color: #3b82f6;
        }
    }

    ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 24px;

        a {
            position: relative;
            display: flex;
            justify-content: center;

            &:hover {
                &::before {
                    width: 100%;
                }
            }

            &::before {
                content: "";
                position: absolute;
                bottom: -2px;
                width: 0px;
                height: 2px;
                background: #000;
                transition: 0.2s;
            }
        }
    }

    .right_side {
        display: flex;
        align-items: center;
        gap: 24px;

        .info {
            display: flex;
            flex-direction: column;
            gap: 8px;

            .box {
                display: flex;
                align-items: center;
                gap: 11px;

                p {
                    font-weight: 700;
                }
            }
        }
    }

    .primarly_button {
        font-weight: 700;
        border: none;
        background: #3B82F6;
        color: #fff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        width: 230px;
        height: 48px;
        cursor: pointer;
        transition: 0.2s;

        &:hover {
            background: #5092fc;
        }
    }
}

/* Hero Section */

.hero_section {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url("./images/hero.png");
    background-size: cover;
    padding: 32px;
    padding-top: 135px;
    display: flex;
    justify-content: center;

    .hero_main_box {
        width: 100%;
        max-width: 1600px;
    }
}

.hero_box {
    max-width: 690px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

    .badges {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;

        p {
            padding: 10px 24px;
            color: #6D6D6D;
            border: 1px solid #E6E6E6;
            border-radius: 50px;
        }
    }

    .texts {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .hero_header {
            font-size: 58px;
            font-family: Onest;
            font-weight: 700;
            font-style: Bold;
            line-height: 100%;
            letter-spacing: -2.32px;

            span {
                color: #3b82f6;
            }
        }

        .desc {
            font-family: Onest;
            font-weight: 400;
            font-style: Regular;
            font-size: 18px;
            line-height: 150%;
            letter-spacing: -1%;
            color: #6D6D6D;
        }
    }

    .btns {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 18px;

        .primarly_button {
            font-weight: 700;
            border: none;
            background: #3B82F6;
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            width: 284px;
            height: 54px;
            cursor: pointer;
            transition: 0.2s;

            &:hover {
                background: #5092fc;
            }
        }

        .secondary_button {
            font-weight: 700;
            border: none;
            background: none;
            color: #3B82F6;
            border: 2px #3B82F6 solid;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            width: 284px;
            height: 54px;
            cursor: pointer;
            transition: 0.2s;

            &:hover {
                background: #3B82F610;
            }
        }
    }

    .line {
        width: 100%;
        min-height: 1px;
        background: #E6E6E6;
    }

    .hero_box_footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;

        .infos {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-wrap: wrap;

            .box {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;

                .title {
                    font-weight: 600;
                    font-style: SemiBold;
                    font-size: 24px;
                }

                .desc {
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 16px;
                    color: #6D6D6D;
                }
            }
        }

        .bottom_badges {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;

            .badge {
                font-weight: 700;
                font-style: Bold;
                font-size: 16px;
                padding: 20px 28px;
                border-radius: 8px;
                background: #E6E6E6;
                color: #6D6D6D;
                transition: 0.2s;

                &:hover {
                    background: #3B82F6;
                    color: #fff;
                }
            }
        }
    }
}

/* section 2 */

.section_2 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;

    .boxes_1 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;

        .box {
            position: relative;
            display: flex;
            max-width: 750px;
            min-height: 310px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 24px;
            overflow: hidden;

            .left {
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                .texts {
                    display: flex;
                    flex-direction: column;
                    gap: 24px;

                    .title {
                        font-weight: 700;
                        font-style: Bold;
                        font-size: 40px;
                        line-height: 100%;
                        letter-spacing: -1.2px;
                    }

                    .desc {
                        font-weight: 400;
                        font-style: Regular;
                        font-size: 18px;
                        line-height: 150%;
                        letter-spacing: -0.16px;
                        color: #6D6D6D;
                    }
                }

                button {
                    font-weight: 700;
                    border: none;
                    background: #3B82F6;
                    color: #fff;
                    border-radius: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 10px;
                    width: 208px;
                    height: 58px;
                    cursor: pointer;
                    transition: 0.2s;

                    &:hover {
                        background: #5092fc;
                    }
                }
            }

            .right {
                width: 800px;

                .cycle {
                    position: absolute;
                    bottom: -60px;
                    right: -30px;
                    display: inline-flex;
                    background: #3B82F6;
                    width: 300px;
                    height: 300px;
                    border-radius: 100%;
                    z-index: 1;
                }

                img {
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    z-index: 3;
                }
            }
        }
    }

    .boxes_2 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;

        .box {
            position: relative;
            max-width: 490px;
            max-height: 278px;
            width: 490px;
            min-height: 278px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .title {
                font-weight: 700;
                font-style: Bold;
                font-size: 34px;
                line-height: 100%;
                letter-spacing: -2%;
            }

            button {
                font-weight: 700;
                border: none;
                background: #3B82F6;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 10px;
                width: 58px;
                height: 58px;
                cursor: pointer;
                transition: 0.2s;

                &:hover {
                    background: #5092fc;
                }
            }

            img {
                position: absolute;
                right: 0;
                bottom: 0;
                z-index: 2;
            }

            .cycle {
                position: absolute;
                right: -80px;
                top: 90px;
                width: 300px;
                height: 300px;
                background: #3B82F6;
                border-radius: 100%;
                z-index: 1;
            }
        }
    }
}

/* section 3 */

.section_header {
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.96px;
}

.section_3 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .boxes {
        width: 100%;
        /*         display: flex;
        align-items: center; */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;

        .box {
            /* width: 360px; */
            height: 190px;
            gap: 16px;
            border-radius: 12px;
            padding: 24px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;

            .icon {
                width: 48px;
                height: 48px;
                min-width: 48px;
                min-height: 48px;
                background: #EFF5FF;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 8px;
            }

            .texts {
                display: flex;
                flex-direction: column;
                gap: 8px;

                .title {
                    font-weight: 600;
                    font-style: SemiBold;
                    font-size: 24px;
                }

                .desc {
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 18px;
                    line-height: 150%;
                    letter-spacing: -1%;
                    color: #6D6D6D;
                }
            }
        }
    }
}

/* section 4 */

.section_4 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .boxes {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;

        .box {
            width: 100%;
            max-width: 480px;
            min-width: 300px;
            min-height: 175px;
            gap: 48px;
            border-radius: 8px;
            padding: 24px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .number {
                font-weight: 700;
                font-style: Bold;
                font-size: 40px;
                line-height: 100%;
                letter-spacing: -3%;
                color: #3B82F6;
            }

            .texts {
                display: flex;
                flex-direction: column;
                gap: 2px;

                .title {
                    font-weight: 600;
                    font-style: SemiBold;
                    font-size: 24px;
                }

                .desc {
                    font-weight: 400;
                    font-style: Regular;
                    font-size: 18px;
                    line-height: 150%;
                    letter-spacing: -1%;
                    color: #6D6D6D;
                }
            }
        }
    }
}

/* section 5 */

.section_header_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .buttons {
        display: flex;
        align-items: center;
        gap: 16px;

        button {
            width: 56px;
            height: 56px;
            gap: 8px;
            border-radius: 8px;
            padding: 10px;
            border: none;
            background: #3B82F6;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.2s;

            &:hover {
                background: #5092fc;
            }
        }
    }

    a {
        font-weight: 700;
        font-style: Bold;
        font-size: 18px;
        line-height: 150%;
        letter-spacing: -1%;
        text-decoration: underline;
        color: #3B82F6;

        display: flex;
        align-items: center;
        gap: 12px;
    }
}

.section_5 {
    max-width: 1600px;
    width: 100%;
    padding: 120px 32px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .boxes {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 32px;

        .box {
            max-width: 360px;
            max-height: 570px;
            gap: 24px;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            margin-bottom: 100px;

            img {
                width: 100%;
            }

            .details {
                padding: 24px;
                display: flex;
                flex-direction: column;
                gap: 48px;

                .info {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    .title {
                        font-weight: 600;
                        font-style: SemiBold;
                        font-size: 24px;
                        line-height: 100%;
                        letter-spacing: 0%;
                    }

                    .params {
                        display: flex;
                        flex-direction: column;
                        gap: 4px;
                        color: #6D6D6D;
                    }
                }

                .price_box {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;

                    .price_label {
                        color: #6D6D6D;
                    }

                    .price {
                        display: flex;
                        flex-direction: row;
                        font-weight: 600;
                        font-size: 24px;

                        s {
                            font-weight: 700;
                            font-style: Bold;
                            font-size: 16px;
                            text-decoration: line-through;
                            color: #6D6D6D;
                            margin-top: 6px;
                            margin-left: 2px;
                        }
                    }
                }

                button {
                    font-weight: 700;
                    border: none;
                    background: #3B82F6;
                    color: #fff;
                    border-radius: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 10px;
                    height: 48px;
                    cursor: pointer;
                    display: none;
                    transition: 0.2s;

                    &:hover {
                        background: #5092fc;
                    }
                }
            }

            &:hover {
                max-height: none;
                margin-bottom: 0px;

                button {
                    display: flex;
                }
            }
        }
    }
}

/* section 6 */

.section_6 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .boxes {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;

        .box {
            width: 490px;
            opacity: 1;
            gap: 24px;
            border-radius: 8px;
            padding: 24px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            img {
                width: 100%;
                border-radius: 8px;
            }

            .texts {
                display: flex;
                flex-direction: column;
                gap: 4px;

                .title {
                    font-weight: 600;
                    font-style: SemiBold;
                    font-size: 24px;
                }

                .desc {
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    letter-spacing: -1%;
                    color: #6D6D6D;
                }
            }
        }
    }
}

/* section 7 */

.section_7 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.carousel {
    position: relative;
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.carousel_track {
    scrollbar-width: none;
    display: flex;
    transition: transform 0.6s ease;
    overflow: auto hidden;
}

.swiper-wrapper {
    display: flex;
    gap: 4px;
    padding-bottom: 3px;
}

.swiper-slide {
    width: 100%;
    max-width: 490px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.swiper-slide .img-wrap {
    width: 100%;
    aspect-ratio: 16 / 12;
    /* change to 4/3 or 1/1 if you prefer */
    overflow: hidden;
    border-radius: 6px;
}


.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* section 8 */

.section_8 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0px 1px 3px 0px #00000026;

        img {
            width: 100%;
            object-fit: cover;
            max-height: 630px;
        }

        .details {
            width: 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 32px;

            .texts {
                display: flex;
                flex-direction: column;
                gap: 8px;

                .title {
                    font-weight: 700;
                    font-style: Bold;
                    font-size: 48px;
                    line-height: 100%;
                    letter-spacing: -2%;
                }

                .desc {
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    letter-spacing: -1%;
                    color: #6D6D6D;
                }
            }

            .inputs {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 16px;

                .input_box {
                    position: relative;
                    width: 100%;
                    display: flex;
                    align-items: center;

                    &:focus-within label {
                        display: none;
                    }

                    input {
                        width: 100%;
                        height: 56px;
                        background: #F7F7F7;
                        box-shadow: 0px 1px 3px 0px #00000026;
                        border: none;
                        outline: none;
                        border-radius: 8px;
                        padding: 12px;
                        color: #000;
                    }

                    label {
                        position: absolute;
                        font-weight: 700;
                        font-style: Bold;
                        font-size: 16px;
                        line-height: 100%;
                        letter-spacing: -2%;
                        color: #6D6D6D;
                        margin-left: 14px;
                        pointer-events: none;
                    }
                }
            }

            button {
                font-weight: 700;
                border: none;
                background: #3B82F6;
                color: #fff;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 10px;
                height: 56px;
                cursor: pointer;
                transition: 0.2s;

                &:hover {
                    background: #5092fc;
                }
            }
        }
    }
}

/* section 9 */

.swiper-slide-active {
    opacity: 1 !important;
}

.section_9 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .swiper-slide {
        width: auto;
    }

    .box {
        opacity: 0.8;
        transition: opacity 0.3s, transform 0.3s;
    }

    .swiper-slide-active .box {
        opacity: 1 !important;
        transform: scale(1.05);
        z-index: 3;
    }

    .boxes {
        scrollbar-width: none;
        display: flex;
        align-items: center;
        gap: 32px;

        .arrowS {
            position: absolute;
            width: 56px;
            height: 56px;
            gap: 8px;
            border-radius: 8px;
            padding: 10px;
            border: none;
            background: #3B82F6;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999999999;
            transition: 0.2s;

            &:hover {
                background: #5092fc;
            }

            &.left {
                left: 27.5%;
            }

            &.right {
                right: 27%;
            }
        }

        .active_box {
            position: relative;
            display: flex;
            align-items: center;
        }

        .box {
            min-width: 490px;
            max-width: 490px;
            height: 250px;
            padding: 48px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            opacity: 0.5;
            z-index: 1;

            &.active {
                opacity: 1;
                z-index: 3;
            }

            &.swiper-slide-active {
                opacity: 1 !important;
                z-index: 3;
            }

            .texts {
                display: flex;
                gap: 24px;

                .quote {
                    font-weight: 700;
                    font-style: Bold;
                    font-size: 58px;
                    line-height: 100%;
                    letter-spacing: -4%;
                    color: #3B82F6;
                }

                .info {
                    font-weight: 400;
                    font-size: 18px;
                    line-height: 150%;
                    letter-spacing: -1%;
                    color: #6D6D6D;
                }
            }

            .author {
                font-weight: 700;
                font-style: Bold;
                font-size: 16px;
                line-height: 100%;
                letter-spacing: -2%;
                text-align: end;
            }
        }
    }
}

/* section 10 */

.section_10 {
    width: 100%;
    max-width: 1600px;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    .boxes {
        scrollbar-width: none;
        display: flex;
        justify-content: center;
        gap: 32px;
        padding-bottom: 3px;

        .box {
            width: 490px;
            min-width: 300px;
            gap: 24px;
            border-radius: 8px;
            padding: 24px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0px 1px 3px 0px #00000026;
            display: flex;
            flex-direction: column;
            gap: 24px;

            .image_box {
                position: relative;

                img {
                    width: 100%;
                    border-radius: 8px;
                }

                .badge {
                    width: 65px;
                    height: 37px;
                    padding-top: 4px;
                    padding-right: 8px;
                    padding-bottom: 4px;
                    padding-left: 8px;
                    border-radius: 6px;
                    position: absolute;
                    top: 20px;
                    left: 20px;
                    background: #3B82F6;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-family: Manrope;
                    font-weight: 800;
                    font-style: ExtraBold;
                    font-size: 14px;
                    line-height: 30px;
                }
            }

            .texts {
                height: 100%;
                display: flex;
                flex-direction: column;
                gap: 8px;

                .title {
                    font-weight: 600;
                    font-size: 26px;
                }

                .watch_info {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    color: #6D6D6D;
                }
            }

            button {
                font-weight: 700;
                border: none;
                background: #3B82F6;
                color: #fff;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 10px;
                min-height: 48px;
                cursor: pointer;
                transition: 0.2s;

                &:hover {
                    background: #5092fc;
                }
            }
        }
    }
}

/* footer */

footer {
    width: 100%;
    min-height: 300px;
    background: #020202;
    padding: 32px;
    color: #6D6D6D;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;

    .footer_wrapper {
        width: 100%;
        max-width: 1600px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 32px;
    }

    .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .logo_info {
            display: flex;
            flex-direction: column;
            gap: 24px;

            .logoname {
                font-size: 24px;
                font-weight: 800;
                color: #fff;

                span {
                    color: #3b82f6;
                }
            }

            .desc {
                max-width: 400px;
                font-size: 18px;
                text-wrap-style: balance;
            }
        }
    }

    .right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        max-width: 900px;

        .links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;

            .box {
                display: flex;
                flex-direction: column;
                font-size: 18px;

                .label {
                    color: #fff;
                    margin-bottom: 24px;
                }

                a {
                    color: #6D6D6D;
                    cursor: pointer;
                    transition: 0.2s;

                    &:hover {
                        color: #fff;
                    }
                }
            }
        }

        .footer_long_info {
            font-size: 14px;
        }
    }
}

/* media */

.mobile_btn {
    opacity: 0;
    visibility: hidden;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: none;
}

@media screen and (max-width: 1400px) {
    nav {
        ul {
            display: none;
        }

        .right_side {
            display: none;
        }
    }

    .mobile_btn {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .section_5 {
        .boxes {
            flex-wrap: wrap;
        }
    }

    .section_6 {
        .boxes {
            flex-wrap: wrap;
        }
    }

    .section_8 {
        .box {
            flex-wrap: wrap;
            flex-wrap: wrap-reverse;
        }
    }

    .section_9 {
        .boxes {
            justify-content: start;
            overflow: auto hidden;

            .box {
                opacity: 1 !important;
            }

            .arrowS {
                display: none;
            }
        }
    }

    .section_10 {
        .boxes {
            justify-content: start;
            overflow: auto hidden;
            gap: 16px;
        }
    }
}

@media screen and (max-width: 1280px) {
    .section_2 {
        .boxes_1 {
            flex-wrap: wrap;
        }
    }

    .section_3 {
        .boxes {
            flex-wrap: wrap;
        }
    }
}

@media screen and (max-width: 1140px) {
    .section_2 {
        .boxes_2 {
            flex-wrap: wrap;
        }
    }
}

@media screen and (max-width: 860px) {
    .section_2 {
        .boxes_1 {
            .box {
                min-height: 280px;
            }

            .texts {
                gap: 16px !important;
            }
        }

        .title {
            font-size: 34px !important;
        }

        .desc {
            font-size: 16px !important;
            line-height: normal !important;
        }

        button {
            max-height: 48px !important;
        }
    }

    .section_3,
    .section_4 {
        .boxes {
            gap: 24px;
        }
    }

    nav .right_side {
        display: none;
    }

    .section_10 {
        .boxes {
            .box {
                width: 300px;

                .title {
                    font-size: 24px !important;
                }
            }
        }
    }

    .section_8 {
        .box {
            .details {
                padding: 16px;

                .title {
                    font-size: 34px !important;
                }
            }
        }
    }
}

@media screen and (max-width: 720px) {
    .nav_position {
        padding: 16px;
    }

    .hero_section {
        padding: 16px;
        padding-top: 100px;
    }

    .section_2,
    .section_3,
    .section_4,
    .section_5,
    .section_6,
    .section_7,
    .section_8,
    .section_9,
    .section_10 {
        padding: 100px 16px;
    }


    .section_2 {
        .boxes_1 {
            .box {
                .left {
                    .texts {
                        .desc {
                            overflow: hidden;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 3;
                            line-clamp: 3;
                            display: -webkit-box;
                        }
                    }
                }

                .right {
                    img {
                        right: -60px;
                        bottom: -40px;
                        zoom: 0.8;
                    }

                    .cycle {
                        bottom: -120px;
                        right: -90px;
                    }
                }
            }
        }
    }

    .hero_box {
        padding: 16px;

        .badges {
            font-size: 14px;

            p {
                padding: 8px 16px;
            }
        }

        .btns {
            justify-content: center;
        }
    }

    .hero_box_footer {
        .infos {
            justify-content: space-between !important;

            .box {
                .title {
                    font-size: 16px !important;
                }

                .desc {
                    font-size: 14px !important;
                }
            }
        }

        .badge {
            padding: 14px 20px !important;
        }
    }

    .hero_header {
        font-size: 40px !important;
    }

    .section_header {
        font-size: 34px;
    }

    .section_header_box {
        align-items: flex-end;

        a {
            font-size: 14px;
            text-wrap: nowrap;
        }

        .buttons {
            display: none;
        }
    }

    footer {
        .links {
            flex-direction: column;
        }
    }

    .section_5 {
        .box {
            margin-bottom: 0px !important;
            max-height: none !important;

            button {
                display: flex !important;
            }
        }
    }
}

@media screen and (max-width: 580px) {
    .section_9 {
        .boxes {
            .box {
                min-width: 290px;
                padding: 16px;

                .info {
                    line-height: normal !important;
                }
            }
        }
    }
}

@media screen and (max-width: 480px) {
    .section_2 {
        .boxes_1 {
            .right {
                .cycle {
                    bottom: -150px !important;
                    right: -160px !important;
                }
            }

            button {
                width: 154px !important;
            }
        }

        .boxes_2 {
            .box {
                img {
                    right: -56px;
                    bottom: -15px;
                    zoom: 0.8;
                }

                .cycle {
                    top: 140px !important;
                    right: -150px !important;
                }
            }
        }

        .sec2_2 {
            right: -110px !important;
            zoom: 0.8;
        }
    }
}
/* Контакты: видимые лейблы и плейсхолдеры */
.section_8 .input_box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111827; /* почти чёрный */
}

.section_8 .input_box input,
.section_8 .input_box textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  line-height: 1.4;
}

/* Плейсхолдер — всегда видимый и не полупрозрачный */
.section_8 .input_box input::placeholder,
.section_8 .input_box textarea::placeholder {
  color: #9ca3af;     /* серый 400 */
  opacity: 1;         /* Safari/Firefox */
}

/* Фокус */
.section_8 .input_box input:focus,
.section_8 .input_box textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* Автозаполнение Chrome: вернуть читабельные цвета */
.section_8 .input_box input:-webkit-autofill,
.section_8 .input_box textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #111827 !important;
}

/* На тёмных фонах (если форма окажется в тёмной секции) */
.section_8.dark .input_box label { color: #f9fafb; }
.section_8.dark .input_box input,
.section_8.dark .input_box textarea {
  background:#111827; color:#f9fafb; border-color:#374151;
}
.section_8.dark .input_box input::placeholder,
.section_8.dark .input_box textarea::placeholder { color:#9ca3af; }
/* --- Label внутри инпута, скрывается при фокусе/заполнении --- */
.section_8 .details .inputs .input_box {
  position: relative;
}

/* сам label внутри поля */
.section_8 .details .inputs .input_box label.inside {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-weight: 600;
  color: #6b7280;                 /* серый */
  pointer-events: none;           /* клики уходят в input */
  transition: opacity .18s ease, transform .18s ease;
  background: transparent;
  z-index: 1;
}

/* поля: достаточный отступ слева, чтобы текст не налезал на label */
.section_8 .details .inputs .input_box input,
.section_8 .details .inputs .input_box textarea {
  padding-left: 16px;
}

/* по умолчанию placeholder прячем, чтобы не конфликтовал с label */
.section_8 .details .inputs .input_box input::placeholder,
.section_8 .details .inputs .input_box textarea::placeholder {
  opacity: 0;
  transition: opacity .18s ease;
}

/* когда пользователь кликает (или поле уже заполнено):
   - показываем placeholder
   - прячем label (и остаётся чистый placeholder внутри) */
.section_8 .details .inputs .input_box:focus-within input::placeholder,
.section_8 .details .inputs .input_box:focus-within textarea::placeholder,
.section_8 .details .inputs .input_box input:not(:placeholder-shown)::placeholder,
.section_8 .details .inputs .input_box textarea:not(:placeholder-shown)::placeholder {
  opacity: 1;
}

.section_8 .details .inputs .input_box:focus-within label.inside,
.section_8 .details .inputs .input_box input:not(:placeholder-shown) + label.inside,
.section_8 .details .inputs .input_box textarea:not(:placeholder-shown) + label.inside {
  opacity: 0;
  transform: translateY(-50%); /* остаётся на месте, просто исчезает */
}

/* если textarea повыше — чуть сдвинем label, чтобы выглядело ровнее */
.section_8 .details .inputs .input_box textarea + label.inside {
  top: 20px;                      /* можно подправить под дизайн */
  transform: translateY(0);
}
