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

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: Montserrat, Arial, sans-serif;
    background-color: #ffebeb;
}

a {
    text-decoration: none;
}

.hidden {
    display: none;
}

.container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-legal {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}
.footer-legal a {
    color: #777;
    text-decoration: underline;
}


.orange-color-txt{
    color: #ff6f54;
}

.section-title {
    color: #242424;
    font-size: 35px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #ff6f54;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    max-width: 565px;
    margin-bottom: 35px;
}

.btn-connect {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
    border-radius: 20px;
    background-color: #ff6f54;
    padding: 20px;
    cursor: pointer;
    border-style: solid;
    border-color: #ff6f54;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
    .btn-connect:hover{
        color: #ff6f54;
        background: #ffffff;
    }

.btn-connect.white {
    color: #ff6f54;
    background: #ffffff;
}
    .btn-connect.white:hover{
        color: #ffffff;
        background: #ff6f54;
    }

#header {
    margin-bottom: 40px;
}
    #header .header-container {
        display: flex;
        justify-content: space-between;
    }
    #header .header-logo-container {
        max-width: 180px;
        margin-top: 20px;
    }
        #header .header-logo-container img{
            width: 100%;
        }

#promo {
    padding-bottom: 90px;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 235, 1) 100%);
}
#promo .btn-connect {
    display: block;
    width: 100%;
}
    #promo .promo-box {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
        #promo .promo-content{
            flex: 1;
        }
            #promo .promo-title {
                color: #1f1f1f;
                font-size: 37px;
                line-height: 1.3;
                font-weight: 700;
                margin-bottom: 15px;
            }
            #promo .promo-logo {
                display: inline-block;
                font-size: 37px;
                font-weight: 700;
                color: #ff6f54;
                border-width: 4px;
                border-radius: 58px;
                border-color: #ffc4b8;
                border-style: dashed;
                padding: 8px 25px;
                margin-bottom: 25px;
            }
            #promo .promo-subtitle {
                color: #ff6f54;
                font-size: 18px;
                line-height: 1.55;
                font-weight: 500;
                max-width: 360px;
                padding-bottom: 40px;
            }
            #promo .promo-subtitle p {
                margin-bottom: 30px;
            }
            #promo .promo-features-list li{
                list-style-type: none;
                display: flex;
                color: #1f1f1f;
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 26px;
            }
            #promo .promo-switch-box {
                    width: 25px;
                    min-width: 25px;
                    height: 16px;
                    border: 2px solid #cfcfcf;
                    border-radius: 12px;
                    background-color: #ffffff;
                    display: flex;
                    justify-content: end;
                    align-items: center;
                    padding: 1px;
                    margin-right: 20px;
                }
            #promo .promo-switch{
                        width: 10px;
                        height: 10px;
                        border-radius: 20px;
                        background-color: #3afa00;
                    }
        #promo .promo-image {
            flex: 1;
        }
            #promo .promo-image img{
                width: 100%;
            }

#benefits {
    padding-bottom: 90px;
    background-image: linear-gradient(0deg, rgba(255, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
    #benefits .benefits-container{
        padding: 25px;
        border-radius: 29px;
        background-image: linear-gradient(0deg, rgba(255, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 100%);
        box-shadow: 0px 8px 40px 0px rgba(71, 71, 71, 0.2);
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
        #benefits .benefit-item{
            flex: 0.25;
            min-width: 200px;
            padding: 25px 13px;
        }
            #benefits .benefits-icon {
                margin-bottom: 10px;
                display: inline-block;
                position: relative;

            }
                #benefits .benefits-icon::after {
                content: "";
                filter: blur(50px);
                background: #ff6f54;
                width: 100%;
                height: 100%;
                display: block;
                position: absolute;
                top: 0;
            }
            #benefits .benefits-title{
                color: #ff6f54;
                font-size: 19px;
                font-weight: 700;
                line-height: 24px;
                margin-bottom: 20px;
            }
            #benefits .benefit-txt {
                font-size: 14px;
                font-weight: 500;
                line-height: 21px;
            }
        #benefits .benefit-item.active {
            border-width: 2px;
            border-radius: 20px;
            background-color: #ffffff;
            background-position: center center;
            border-color: #fad6cd;
            border-style: solid;
            box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
        }

#why-vpn {
    padding-bottom: 90px;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 235, 1) 100%);
}
#why-vpn .features-box {
    display: flex;
}
    #why-vpn .features {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
        #why-vpn .feature {
            flex: 0 1 calc(50% - 20px);
            border-radius: 12px;
            background-color: #ffffff;
            padding: 25px;
            box-shadow: 0px 8px 40px 0px rgba(71, 71, 71, 0.3);
            max-width: 450px;
            min-width: 284px;
        }
            #why-vpn .feature-icon {
                margin-bottom: 10px;
                display: inline-block;
                position: relative;

            }
                #why-vpn .feature-icon::after {
                    content: "";
                    filter: blur(50px);
                    background: #ff6f54;
                    width: 100%;
                    height: 100%;
                    display: block;
                    position: absolute;
                    top: 0;
                }
            #why-vpn .feature-title {
                color: #ff6f54;
                font-size: 19px;
                font-weight: 700;
                margin-bottom: 20px;
            }
            #why-vpn .feature-txt {
                line-height: 23px;
                color: #1f1f1f;
                font-size: 15px;
                font-weight: 500;
            }
    #why-vpn .feature-man {
        flex: 0.15;
        position: relative;
        min-width: 210px;
    }
        #why-vpn .feature-man img {
            max-width: 270px;
            position: absolute;
            right: 0;
        }

#how-to-start {
    margin-bottom: 95px;
    counter-reset: step-counter;
    background-image: linear-gradient(0deg, rgba(255, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
#how-to-start .steps {
    margin-top: 60px;
}
    #how-to-start  .step-box {
        display: flex;
        padding-left: 30px;
    }
    .step-box-col {
        flex: 1;
    }
        #how-to-start .step {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            line-height: 26px;
        }
        #how-to-start .step span {
            font-weight: 700;
        }
            #how-to-start .step::before {
                counter-increment: step-counter;
                content: counter(step-counter);
                font-size: 42px;
                font-weight: 700;
                line-height: 65px;
                width: 70px;
                height: 70px;
                background: #fff;
                color: #ff6f54;
                box-shadow: 0px 5px 15px 0px rgba(71, 71, 71, .2);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top: 5px;
            }
        #how-to-start .step-text {
            font-size: 16px;
            font-weight: 500;
            padding-left: 30px;
            max-width: 445px;
        }
        #how-to-start .step-box-img {
            width: 100%;
            margin-top: -90px;
        }
        #how-to-start .step.last {
            padding: 30px;
            border-radius: 12px;
            background-image: linear-gradient(0deg, rgba(255, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 100%);
            box-shadow: 0px 6px 15px 0px rgba(71, 71, 71, 0.2);
        }
            #how-to-start .step.last::before {
                border: 2px solid #fad6cd;
            }
            #how-to-start .footer-header-btn {
                margin-left: auto;
            }

#tariffs {
    margin-bottom: 95px;
}
    #tariffs .section-title {
        color: #ffffff;
    }
    #tariffs .tariffs-container {
        border-radius: 20px;
        background-color: #ff6f54;
        padding: 25px 30px 80px 30px;
    }
    #tariffs .tariffs {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
        #tariffs .tariff {
            flex: 1;
            min-width: 250px;
            padding: 25px;
            border-radius: 20px;
            background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 235, 1) 100%);
            box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
        }
            #tariffs .tariff-title {
                color: #000000;
                font-size: 24px;
                line-height: 1.4;
                font-weight: 700;
            }
            #tariffs .tariff-gift {
                margin-bottom: 20px;
            }
            #tariffs .tariff-details {
                margin-bottom: 30px;
            }
            #tariffs .tariff-extras {
                margin-bottom: 40px;
            }
                #tariffs .tariff-extras li {
                    list-style-type: none;
                    font-size: 13px;
                    font-weight: 500;
                    margin-bottom: 4px;
                }
                #tariffs .old-price {
                    font-size: 24px;
                    font-weight: 700;
                    color: #726f6f;
                }
                #tariffs .current-price {
                    font-size: 18px;
                    font-weight: 500;
                    margin-bottom: 35px;
                }
                    #tariffs .current-price strong {
                        font-size: 34px;
                        font-weight: 700;
                    }
            #tariffs .btn-connect {
                width: 100%;
            }

#faq {
    margin-bottom: 95px;
}
    #faq .accordion-item {
        color: #242424;
        background: #ffffff;
        border-radius: 20px;
        margin-bottom: 12px;
        padding: 20px 88px 20px 24px;
        position: relative;
    }
        #faq .accordion-item-question{
            font-size: 16px;
            margin-bottom: 20px;
        }
        #faq .accordion-item-answer-box {
            max-height: 0px;
            overflow: hidden;
            transition: max-height ease .3s;
        }
            #faq .accordion-item-answer {
                font-size: 16px;
                line-height: 1.55;
                padding-bottom: 20px;
            }
        #faq .accordion-item-cross {
            display: flex;
            width: 40px;
            height: 40px;
            position: absolute;
            right: 24px;
            top: 10px;
            background: #f0f0f0;
            border-radius: 50%;
            cursor: pointer;
            justify-content: center;
            align-items: center;
            transition: transform ease-in-out 0.3s;
        }
            #faq .accordion-item.open .accordion-item-cross {
                transform: rotate(-45deg);
            }

#footer {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 235, 235, 1) 100%);
}
#footer ul {
    list-style-type: none;
}
    .footer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }
        .footer-header-logo-container{
            width: 124px;
            height: 60px;
        }
        .footer-header-logo-img{
            width: 100%;
        }
        .footer-header-btn {
            color: #ffffff;
            font-size: 17px;

            line-height: 1.55;
            font-weight: 500;
            border-radius: 20px;
            background-color: #ff6f54;
            padding: 20px 62px;
        }
    .footer-links-container {
        display: flex;
        padding-bottom: 120px;
    }
        .footer-links-col{
            width: 200px;
        }
            .footer-link {
                margin-bottom: 20px;
                font-weight: 500;
            }

/* Стили для мобильных устройств */
@media only screen and (max-width: 960px) {
    /* Стили для экранов от 641px до 960px */
    .container {
        width: 98%;
        max-width: 640px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 29px;
    }

    #header .header-container {
        flex-direction: column-reverse;
        align-items: center;
    }
        #header .header-logo-container {
            max-width: 140px;
        }
        #promo .promo-box {
            flex-direction: column-reverse;
            align-items: center;
            text-align: center;
        }
            #promo .promo-title{
                font-size: 32px;
            }
            #promo .promo-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            #promo .promo-image {
                max-width: 264px;
            }

    #benefits .benefit-item {
        flex: 0.5;
    }

    #why-vpn .feature-man {
        display: none;
    }

    #how-to-start .step-box {
        flex-direction: column-reverse;
    }
        #how-to-start .step-box-img {
            width: 60%;
            margin: -90px auto 0;
            display: block;
        }
        #how-to-start .step.last {
            flex-wrap: wrap;
        }
            #how-to-start .footer-header-btn {
                margin-top: 20px;
                margin-left: 100px;
                flex: 1;
                text-align: center;
            }

    #tariffs .tariffs {
        flex-direction: column;
    }
}

@media only screen and (max-width: 640px) {
    /* Стили для экранов от 481px до 640px */
    .section-title {
        font-size: 25px;
    }
    .section-subtitle {
        font-size: 16px;
    }

    #header .header-logo-container {
        margin-top: 5px;
        max-width: 110px;
    }
    #promo .promo-title {
        font-size: 27px;
    }
        #promo .promo-subtitle {
            max-width: 100%;
            width: 100%;
        }
        #promo .promo-image {
            max-width: 210px;
        }
            #promo .promo-features-list li {
                font-size: 14px;
                text-align: left;
            }

    #benefits .benefits-container {
        flex-wrap: nowrap;
        flex-direction: column;
    }

        #benefits .benefit-item {
            padding: 13px 87px 13px 25px;
        }
            #benefits .benefits-icon {
                position: absolute;
                right: 65px;
            }
                #benefits .benefits-icon img{
                    width: 52px;
                    height: 52px;
                }
            #benefits .benefits-title {
                font-size: 17px;
            }

    #why-vpn .features {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    #how-to-start .step-box {
        padding-left: 0;
    }
    #how-to-start .step-text {
        font-size: 15px;
    }
    #how-to-start .step::before {
        min-width: 64px;
        width: 64px;
        height: 64px;
    }
    #how-to-start .step.last {
        padding: 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
    #how-to-start .step.last .step-text {
        flex: 2;
        min-width: 367px;
    }
    #how-to-start .footer-header-btn {
        margin-left: 94px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        width: 96%;
        padding: 0;
    }

    .section-title {
        text-align: center;
    }
    .section-subtitle{
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    .btn-connect {
        padding: 12px;
    }

    #header .header-lang-menu {
        display: flex;
    }
    #header .header-lang-menu img{
        width: 40px;
        height: 40px;
    }

    #promo {
        padding-bottom: 35px;
    }
    #promo .promo-title {
        font-size: 20px;
    }
    #promo .promo-logo {
        font-size: 22px;
    }
    #promo .promo-subtitle p {
        font-size: 13px;
    }
    #promo .btn-connect {
        font-size: 13px;
        padding: 12px;
    }
    #promo .promo-features-list{
        margin: 0 20px;
    }
    #promo .promo-features-list li{
        font-size: 13px;
    }

    #how-to-start .step.last .step-text {
        min-width: auto;
    }

    #benefits .benefits-container {
        padding: 10px;
    }
    #benefits .benefit-item {
        padding: 25px 13px;
    }
    #benefits .benefits-icon {
        position: relative;
        right: 0;
    }

    #how-to-start .steps {
        margin: 120px 10px 0 10px;
    }
    #how-to-start .step-box-img {
        margin-top: -120px;
    }
    #how-to-start .step-text {
        font-size: 13px;
        padding-left: 15px;
        line-height: 22px;
    }
    #how-to-start .step::before {
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 30px;
    }
    #how-to-start .step.last{
        margin-right: -10px;
        margin-left: -10px;
    }
    #how-to-start .footer-header-btn {
        margin-left: 0px;
    }

    #tariffs .container{
        width: 100%;
    }
    #tariffs .tariffs-container {
        padding: 25px 10px 55px 10px;
    }

    #faq .accordion-item {
        padding: 18px 70px 18px 18px;
    }
    #faq .accordion-item-answer {
        line-height: 1.25;
    }
    #faq .accordion-item-cross {
        right: 10px;
    }

    #footer .footer-header {
        flex-direction: column;
    }
    #footer .footer-header-logo-container {
        margin-bottom: 20px;
    }
    #footer .footer-header-btn {
        padding: 14px;
        width: 90%;
        text-align: center;
    }
    #footer .footer-links-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 60px;
    }
    #footer .footer-link {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 320px) {
    /* Стили для экранов шириной 320px или меньше */
}
