        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #222a45;
            color: #cfd8e5;

            overflow-x: hidden;
        }

        .main_text {
            font-family: "Noto Sans", sans-serif;
            font-size: clamp(68px, 10.2vw, 204px);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -3px;
            text-align: left;

            background: linear-gradient(90deg, #00c6ff 0%, #0088ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            text-shadow: 0 0 10px rgba(0, 170, 255, 0.2);

            margin-bottom: 60px;
            max-width: 2200px;
            text-transform: uppercase;

            position: relative;
            z-index: 1;
        }

@media (max-width: 480px) {
    .main_text {
        font-size: clamp(24px, 12vw, 80px);
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: left;
    }
}

        .main_text::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('../images/main.jpg');

            background-position: center;
            filter: blur(1px) brightness(1.4);
            opacity: 0.5;
            z-index: -1;

            -webkit-mask-image: 
                linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%),
                linear-gradient(to left, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%),
                linear-gradient(to right, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
            -webkit-mask-composite: destination-in;

            background-repeat: no-repeat;
            mask-composite: intersect;
            background-size: cover;

            transform: translate(30%, 3%);
        }
@media (max-width: 480px) {
    .main_text::before {
        transform: translate(30%, -10%);
        background-size: cover;
        background-position: center top;
        filter: blur(0.8px) brightness(1.1);
        opacity: 0.4;
    }
}




        .sub_main_text {
            font-family: "Inter", sans-serif;
            font-size: clamp(26px, 2.5vw, 60px);
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 70px;

            text-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
            max-width: 900px;
            line-height: 1.35;

            background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(0,212,255,0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn {
            display: inline-block;
            margin-top: 25px;
            padding: 1rem 3rem;
            background-color: #00d4ff;
            color: #0a0f1f;
            text-decoration: none;
            border-radius: 100px;
            font-weight: bold;
            font-size: 5rem;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #00a0cc;
        }
        section {
            padding: 60px 20px;
            text-align: center;
        }
        section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #00d4ff;
        }
        section p {
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.6;
            color: #cfd8e5;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .feature {
            background-color: #1a223f;
            padding: 30px;
            border-radius: 10px;
            width: 270px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
            transition: 0.3s;
        }
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        }
        .feature h3 {
            margin-top: 0;
            color: #00d4ff;
        }
        footer {
            background-color: #0f192f;
            color: #a0bcd5;
            text-align: center;
            padding: 20px;
            border-top: 1px solid #1a223f;
            font-size: clamp(12px, 2vw, 16px);

        }
@media (max-width: 480px) {
    footer {
        width: 100vw !important;
        margin: 0 !important;
        padding: 12px 10px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        border-top: 1px solid #1a223f !important;
        position: relative;
        left: 0;
        right: 0;
        box-sizing: border-box;
        text-align: center;
    }
}




        @media (max-width: 768px) {
            .features {
                flex-direction: column;
                align-items: center;
            }
        }



.connect-btn {
    display: inline-block;
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 5vw, 70px);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    cursor: pointer;

    padding: clamp(1rem, 2vw, 2rem) clamp(2rem, 5vw, 6rem);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.3s ease;

    background: linear-gradient(90deg, #00d4ff, #00aaff, #007bff);
    color: #fff;                 
    text-shadow: 0 0 12px rgba(0, 180, 255, 0.7);
    position: relative;
    white-space: nowrap;
}

@media (max-width: 480px) {

    #connect {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: -410px;
        width: 95%;
    }
    
    .connect-btn {
        font-size: clamp(20px, 6vw, 50px);
        padding: 1rem 2rem;
    }
}



        .connect-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 180, 255, 0.45);
        }

        .connect-btn:active {
            transform: translateY(0);
            box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
        }

        footer {
            background-color: #0f192f;
            color: #a0bcd5;
            text-align: center;
            padding: 20px;
            border-top: 1px solid #1a223f;
            
            font-size: 1.2em;
            width: 100%;
        }

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 2530px;
    margin: 0 auto;
    padding: 0 150px;
    box-sizing: border-box;
}

#about {
  margin-top: 47px;
}


        #connect {
            display: inline-flex;
            justify-content: center;
            align-items: top;
            margin-top: -110px;
        }

        .flags-section {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .price-card {
            flex: 1 1 45%;
            min-width: 420px;          
            max-width: 675px;           
            padding: 75px 195px;
            background: linear-gradient(135deg, #0f192f, #1a223f);
            border-radius: 60px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.5);
            color: #00d4ff;
            font-size: clamp(30px, 4vw, 54px);
            font-weight: 500;
            line-height: 1.3;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }


        .price-card:first-child {
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
        }

        .price-card:last-child {
            box-shadow: 0 12px 30px rgba(255, 180, 0, 0.5);
        }

        .price-card strong {
            font-weight: 700;
        }


.price-card:first-child strong {
    color: #00ffff;
}

.price-card:nth-child(2) strong {
    color: #ff6f61;
}

.price-card:last-child strong {
    color: #ffdd00;
}


        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }

        @media (max-width: 1024px) {
            .price-card {
                flex: 1 1 45%;
            }
        }

        @media (max-width: 768px) {
            .price-card {
                flex: 1 1 90%;
                margin: 0 auto;
            }
        }

@media (max-width: 480px) {
    .flags-section {
        flex-direction: column;

        gap: 20px;
        margin-top: 30px;
        padding: 0 10px;
    }

    .price-card {
        flex: 1 1 100%;
        min-width: 300px;
        max-width: 95%;
        padding: 50px 60px;
        font-size: clamp(20px, 5vw, 36px);
        border-radius: 40px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    }

    .price-card:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .price-card strong {
        font-size: clamp(22px, 5vw, 32px);
    }
}




#manual {
    padding: 50px 50px;
    max-width: 100%;
    margin: 50px 0;
    line-height: 2.2;
    background: linear-gradient(135deg, rgba(15,25,47,0.9), rgba(26,34,63,0.9));
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
}

#manual h2 {
    font-size: clamp(46px, 9.2vw, 92px);
    background: linear-gradient(90deg, #00d4ff, #007bff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    margin: 0 0 50px 0;
    line-height: 1.1;
    text-align: center;
    animation: fadeInText 1s ease forwards;
}

#manual p {
    font-size: clamp(30px, 4vw, 54px);

    color: #cfd8e5;
    line-height: 1.4;
    margin: 45px 0;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    display: block;

    max-width: 2900px;

}

#manual p::before {
    content: "👉";
    display: inline-block;
    margin-right: -1px;
    font-size: 1.2em;
    animation: bounce 1.5s infinite;
}

#manual p strong {
    display: inline;


    background: linear-gradient(120deg, #00ffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0,255,255,0.4);
    transition: all 0.3s ease;
    vertical-align: middle;

    font-size: clamp(30px, 4vw, 54px);
}

#manual p a {
    color: #00d4ff;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(0,212,255,0.4);
    transition: color 0.2s, text-shadow 0.2s;
    display: inline;
}

        #manual p a:hover {
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0,255,255,0.7);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-7px); }
        }

        @keyframes fadeInText {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

.step-number {
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    color: #00ffff;
    display: inline-block;
    width: 1.5em;
    text-align: right;
    margin-right: 20px;
    vertical-align: middle;
}


@media (max-width: 480px) {
    #manual {
        padding: 20px 10px;
        margin: 20px 0;              
        line-height: 1.8;           
        border-radius: 15px;         
        box-shadow: 0 5px 20px rgba(0,0,0,0.5); 
    }

    #manual h2 {
        font-size: clamp(20px, 7vw, 50px);
        margin-bottom: 20px;              
        line-height: 1.05;
    }

    #manual p {
        font-size: clamp(14px, 3.5vw, 24px);
        margin-bottom: 5px;
        line-height: 1.1;
        padding: 5px 20px;             
        max-width: 100%;                    
        box-sizing: border-box;
        word-wrap: break-word;
    }

    #manual p::before {
        font-size: 0.9em;                   
        margin-right: 4px;
    }

    #manual p strong {
        font-size: clamp(18px, 4vw, 28px);  
    }

    #manual p a {
        font-size: clamp(14px, 3.5vw, 24px);  
    }

    .step-number {
        font-size: clamp(18px, 4vw, 28px);  
        margin-right: 8px;
    }
}

/* ===== BENEFITS SECTION ===== */

#benefits {
    padding: 100px 40px; /* уже есть сверху и снизу */
    padding-bottom: 150px; /* увеличиваем нижний отступ */
    background: linear-gradient(135deg, #1a223f, #0f192f);
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    margin-top: 120px;
    text-align: center;
    overflow: hidden;
}

#benefits h2 {
    font-size: clamp(46px, 8vw, 92px);
    margin-bottom: 80px;

    background: linear-gradient(90deg, #00d4ff, #00aaff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    letter-spacing: 2px;
    animation: fadeInText 1s ease forwards;
}

.benefits-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 60px;
}

.benefit-card {
    background: linear-gradient(145deg, #35446f, #1d2547);
    border-radius: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    padding: 70px 60px;
    width: 380px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.benefit-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 35px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-card:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
}

.benefit-card p {
    font-size: clamp(24px, 3vw, 36px);
    color: #cfd8e5;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    #benefits {
        padding: 60px 20px;
        margin-top: 60px;
        border-radius: 25px;
    }

    .benefits-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .benefit-card {
        width: 90%;
        padding: 50px 30px;
    }

    .benefit-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .benefit-card p {
        font-size: clamp(18px, 4vw, 26px);
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    #benefits {
        padding: 40px 15px;
        border-radius: 20px;
    }

    #benefits h2 {
        font-size: clamp(26px, 7vw, 50px);
        margin-bottom: 40px;
    }

    .benefit-card {
        width: 100%;
        padding: 40px 20px;
        border-radius: 25px;
    }

    .benefit-card img {
        width: 60px;
        height: 60px;
    }

    .benefit-card p {
        font-size: clamp(16px, 4vw, 22px);
    }
}



/* ===== CONNECT REPEAT BUTTON ===== */
#connect-repeat {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

#connect-repeat .connect-btn {
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 64px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    padding: clamp(1rem, 2vw, 1.8rem) clamp(2rem, 5vw, 5rem);


    background: linear-gradient(90deg, #e6c700, #cca300, #b38f00);
    color: #1a223f;
    text-shadow: 0 0 15px rgba(255, 221, 0, 0.6);

    box-shadow: 0 10px 35px rgba(255, 221, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    white-space: nowrap;

    width: 100%;
}

#connect-repeat .connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255, 221, 0, 0.7);
    background: linear-gradient(90deg, #ffeb3b, #ffd600, #ffc107);
}

#connect-repeat .connect-btn:active {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(255, 221, 0, 0.5);
}


/* ===== MOBILE ===== */
@media (max-width: 480px) {

    #connect-repeat {
        padding: 40px 10px;
    }

    #connect-repeat .connect-btn {
        font-size: clamp(20px, 6vw, 48px);
        padding: 1rem 2rem;
        white-space: normal;
    }
}


#faq {
    padding: 32px 61px 150px 61px;
    background: linear-gradient(135deg, #1a223f, #0f192f);
    border-radius: 72px; /* 40*1.8=72 */
    margin-top: 10px; /* 202*1.8=364 */
    margin-block-end: 40px;
    text-align: left;
    color: #cfd8e5;
}

#faq h2 {
    font-size: clamp(46px, 8vw, 92px);
    margin-bottom: 80px;

    text-align: center;

    background: linear-gradient(90deg, #00d4ff, #00aaff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    letter-spacing: 2px;
    animation: fadeInText 1s ease forwards;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 90px; /* 16*1.8=29 */
    width: 100%;
    max-width: 2160px; /* 1200*1.8=2160 */
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid #555;
    padding: 14px 0; /* 8*1.8=14 */
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: clamp(50px, 4.5vw, 65px); /* 28*1.8=50, 36*1.8=65 */
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #00d4ff;
    padding-right: 54px; /* 30*1.8=54 */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 3.24rem; /* 1.8*1.8=3.24rem */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    font-size: clamp(36px, 3.6vw, 43px); /* 20*1.8=36, 24*1.8=43 */
    line-height: 1.5;
    color: #cfd8e5;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 900px; /* 500*1.8=900 */
    padding: 9px 0 50px 0; /* 5*1.8=9, 15*1.8=27 */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    #faq {
        padding: 202px 36px; /* 112*1.8=202, 20*1.8=36 */
    }
    .faq-question {
        font-size: clamp(40px, 7.2vw, 50px); /* 22*1.8=40, 28*1.8=50 */
    }
    .faq-answer {
        font-size: clamp(32px, 6.3vw, 40px); /* 18*1.8=32, 22*1.8=40 */
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

    .page-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px; /* компактные боковые отступы */

        display: flex;
        flex-direction: column; /* элементы идут вертикально */
        justify-content: flex-start; /* выравниваем сверху */
        align-items: center; /* центрируем по горизонтали */
        box-sizing: border-box;
    }

    #faq {
        padding: 144px 27px; /* 80*1.8=144, 15*1.8=27 */
    }
    .faq-question {
        font-size: clamp(32px, 8.1vw, 40px); /* 18*1.8=32, 22*1.8=40 */
    }
    .faq-answer {
        font-size: clamp(29px, 7.2vw, 36px); /* 16*1.8=29, 20*1.8=36 */
    }
}
