@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    color: #999;
    background: #f7f7f7 url("../img/background.png") center/cover no-repeat fixed;
    font-size: 1em;
    font-family: "Segoe UI", sans-serif;
    line-height: 135%;
    display: flex;
    flex-direction: column;
}

a {
    color: #f48b8b;
    text-decoration: none;
    transition: .25s ease;
}

a:hover {
    color: #8b9ff5;
    text-decoration: none;
}

a:active {
    color: #8ce4a6;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    display: block;
    border: 0;
    height: 1px;
    border-top: 1px solid #ccc;
    padding: 0;
}

::selection {
    background: #f58b8b;
    color: #fff;
}

#page-wrap {
    flex: 1 0 auto;
    min-height: 0;
    margin: 0;
}

/* HEADER */

header {
    width: 100%;
    padding: 1%;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #585757;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#logo {
    font-size: 2em;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: .5px;
    color: #d9d9d9;
}

.r1 {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.c1 {
    font-size: 1.5em;
    font-family: "Comic Sans MS", sans-serif;
    margin-left: 20px;
}

.c1 a {
    color: #9fb3c8;
}

.c1 a:hover {
    color: #d9ecff;
}

.cl1 {
    clear: both;
}

/* LANGUAGE SWITCHER */

#lang-switcher {
    margin-left: 8px;
    display: flex;
    width: fit-content;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(0, 0, 0, .35);
}

.l1,
.lang-btn {
    width: 46px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.l1:hover,
.lang-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.l1[data-lang-btn="en"].active,
.lang-btn[data-lang-btn="en"].active {
    background: linear-gradient(
        to bottom,
        rgba(191, 10, 48, .55) 0 14%,
        rgba(255, 255, 255, .45) 14% 28%,
        rgba(191, 10, 48, .55) 28% 42%,
        rgba(255, 255, 255, .45) 42% 56%,
        rgba(191, 10, 48, .55) 56% 70%,
        rgba(255, 255, 255, .45) 70% 84%,
        rgba(191, 10, 48, .55) 84% 100%
    );
}

.l1[data-lang-btn="ua"].active,
.lang-btn[data-lang-btn="ua"].active {
    background: linear-gradient(
        to bottom,
        rgba(0, 91, 187, .58) 50%,
        rgba(255, 213, 0, .58) 50%
    );
}

/* MENU */

#menu {
    color: #fcffff;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 1.7em;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #fff,
        0 0 40px #ff00e5,
        0 0 70px #ff00e5,
        0 0 80px #ff00e5,
        0 0 100px #ff00e5;
}

#menu hr {
    width: 500px;
    max-width: 100%;
    margin-top: 5px;
    padding-bottom: 8px;
}

#menuHrefs a {
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
    color: #fcffff;
}

#menuHrefs a:hover {
    background: rgba(255, 255, 255, .208);
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 0 6px rgba(255, 255, 255, .12);
}

#wrapper {
    width: 100%;
    margin-top: 15px;
}

/* MAIN PAGE */

.m1 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 120px;
}

.m2 {
    max-width: 900px;
    padding: 40px 60px;
    font-size: 32px;
    line-height: 1.6;
    color: #e8fff7;
    text-align: center;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 0 35px rgba(0, 255, 200, .15);
    text-shadow: 0 0 12px rgba(0, 255, 200, .4);
}

/* ABOUT PAGE */

.a1 {
    position: relative;
    overflow: hidden;
    max-width: 80%;
    margin: 40px auto;
    padding: 40px 50px;
    border-radius: 20px;
    color: #e6e6e6;
    font-size: 22px;
    line-height: 1.75;
    background: rgba(116, 120, 139, 0);
}

.a1::before {
    content: "";
    position: absolute;
    top: -260px;
    left: -80px;
    right: -80px;
    bottom: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, .18) 10%,
        rgba(0, 0, 0, .55) 22%,
        rgba(0, 0, 0, .9) 38%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, .75) 82%,
        rgba(0, 0, 0, .25) 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, .18) 10%,
        rgba(0, 0, 0, .55) 22%,
        rgba(0, 0, 0, .9) 38%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, .75) 82%,
        rgba(0, 0, 0, .25) 94%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.a1 > * {
    position: relative;
    z-index: 1;
}

.a2 {
    font-family: Arial, sans-serif;
    color: #cecece;
    font-size: 18px;
    text-shadow: 0 0 5px #263a26;
}

/* CONTACT PAGE */

#cm1 {
    text-align: center;
    padding: 0;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: block;
    border: 1px solid transparent;
    border-radius: 6px;
    width: 420px;
    margin: 0 auto;
}

#cm1 img {
    max-width: 100%;
    height: 450px;
    display: block;
    border-radius: 18px;
    opacity: .78;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 18px rgba(255, 255, 255, .03),
        inset 0 0 10px rgba(255, 255, 255, .03);
    transition: .35s ease;
}

#cm1 img:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, .18);
    box-shadow:
        0 0 30px rgba(255, 255, 255, .08),
        inset 0 0 12px rgba(255, 255, 255, .06);
}

#cm1 a {
    display: block;
    margin-bottom: 10px;
}

/* SERVICES BACKGROUND */

.p1 #page-wrap {
    position: relative;
    isolation: isolate;
}

.p1 #page-wrap::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 6%;
    right: 6%;
    bottom: 80px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, .18) 10%,
        rgba(0, 0, 0, .55) 22%,
        rgba(0, 0, 0, .9) 38%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, .75) 82%,
        rgba(0, 0, 0, .25) 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, .18) 10%,
        rgba(0, 0, 0, .55) 22%,
        rgba(0, 0, 0, .9) 38%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, .75) 82%,
        rgba(0, 0, 0, .25) 94%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.p1 header,
.p1 #wrapper,
.p1 center {
    position: relative;
    z-index: 1;
}

/* SERVICES BLOCKS */

.s1 {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
    margin-bottom: 160px;
}

/* Текстовый блок */

.s1 .b1 {
    width: 520px !important;
    min-width: 520px !important;
    max-width: 520px !important;
    margin: 0 !important;
}

/* Блок с картинкой — увеличен */

.s1 .i1 {
    width: 700px !important;
    min-width: 700px !important;
    max-width: 700px !important;
    margin: 0 !important;
}

.b1 {
    min-height: 420px;
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 35px 45px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, .45);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .55);
}

.t1 {
    width: 100%;
    display: inline-block;
}

.t1 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #e0fff7;
    text-shadow: 0 0 8px rgba(200, 255, 240, .35);
}

.t1 p {
    font-size: 20px;
    line-height: 1.8;
    color: #c9fff4;
    text-shadow: 0 0 6px rgba(200, 255, 240, .25);
}

.i1 {
    height: auto;
    min-height: 420px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
}

/* Картинка полностью помещается без обрезания справа */

.i2 {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
    margin: 0 !important;
    border-radius: 18px;
    opacity: .85;
    transition:
        transform .35s ease,
        opacity .35s ease,
        box-shadow .35s ease;
}

.i1:hover .i2 {
    transform: scale(1.02);
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 255, 190, .18);
}

/* HELP PAGE */

.h1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

.w1 {
    width: 720px;
    padding: 26px 34px;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.w2 {
    width: 72%;
    height: 66px;
    margin: 0 auto;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .25s;
}

.w2:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.w2 img {
    width: 38px;
    height: 38px;
}

.w3 {
    width: 72%;
    margin: 0 auto;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.w3.show {
    max-height: 90px;
}

.w3 span {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    color: #dfffee;
    font-size: 18px;
    text-align: center;
    word-break: break-all;
    cursor: pointer;
}

#copyMessage {
    position: fixed;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    padding: 13px 26px;
    border-radius: 12px;
    background: rgba(0, 196, 106, .92);
    color: #fff;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
    z-index: 9999;
}

#copyMessage.show {
    opacity: 1;
    bottom: 55px;
}

/* FOOTER */

footer {
    clear: both;
    width: 100%;
    height: 62px;
    min-height: 62px;
    max-height: 62px;
    flex: 0 0 62px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.f1 {
    font-size: 15px;
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.f2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    margin: 0;
}

.f2 p,
.f2 span {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .74);
}

.f2 strong {
    color: #00ff99;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 153, .35);
}

.footer-price {
    color: #00ff99;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.footer-price:hover {
    color: #4dffb8;
    text-shadow: 0 0 10px rgba(0, 255, 153, .55);
}

.footer-link {
    color: rgba(255, 255, 255, .74);
    text-decoration: none;
    transition: .25s;
}

.footer-link:hover {
    color: #fff;
}

.footer-link strong {
    color: #00ff99;
}

/* MEDIUM SCREENS */

@media (max-width: 1400px) {
    .s1 {
        gap: 30px;
        padding: 0 25px;
    }

    .s1 .b1 {
        width: 470px !important;
        min-width: 470px !important;
        max-width: 470px !important;
    }

    .s1 .i1 {
        width: 650px !important;
        min-width: 650px !important;
        max-width: 650px !important;
    }

    .b1 {
        padding: 30px 35px;
    }

    .t1 h2 {
        font-size: 29px;
    }

    .t1 p {
        font-size: 18px;
    }
}

/* TABLETS */

@media (max-width: 1200px) {
    .s1 {
        flex-direction: column;
        align-items: center;
        padding: 0 25px;
        gap: 35px;
    }

    .s1 .b1,
    .s1 .i1 {
        width: 90% !important;
        min-width: 0 !important;
        max-width: 750px !important;
    }

    .i1 {
        height: auto;
        min-height: 360px;
    }

    .i2 {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }
}

/* MOBILE */

@media (max-width: 700px) {
    header {
        padding: 12px 10px;
        flex-wrap: wrap;
    }

    #logo {
        font-size: 1.5em;
    }

    .r1 {
        gap: 5px;
    }

    .c1 {
        font-size: 1em;
        margin-left: 5px;
    }

    #menu {
        font-size: 1.35em;
    }

    #menuHrefs a {
        display: inline-block;
        margin: 2px;
    }

    .m1 {
        margin-top: 50px;
        margin-bottom: 70px;
        padding: 0 15px;
    }

    .m2 {
        padding: 25px 20px;
        font-size: 22px;
    }

    .a1 {
        max-width: 94%;
        padding: 25px 20px;
        font-size: 18px;
    }

    .a2 {
        font-size: 16px;
    }

    #cm1 {
        width: 90%;
        max-width: 420px;
    }

    #cm1 img {
        height: auto;
    }

    .s1 {
        padding: 0 15px;
        margin-bottom: 90px;
    }

    .s1 .b1,
    .s1 .i1 {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .b1 {
        padding: 25px 20px;
    }

    .t1 h2 {
        font-size: 26px;
    }

    .t1 p {
        font-size: 17px;
    }

    .i1 {
        height: auto;
        min-height: 280px;
    }

    .i2 {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }

    .h1 {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .w1 {
        width: 100%;
        padding: 20px 12px;
    }

    .w2,
    .w3 {
        width: 92%;
    }

    .w2 {
        height: 58px;
        font-size: 20px;
    }

    .w3 span {
        font-size: 15px;
    }

    footer {
        height: auto;
        min-height: 62px;
        max-height: none;
        flex: 0 0 auto;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 8px 15px;
        text-align: center;
    }

    .f2 {
        text-align: center;
    }
}