@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Mulish", sans-serif;
}

:root {
    --theme-text-color: #000000;
    --theme-text-desc-color: #3e3e3e;
    --theme-mbg-color: #f3faff;
    --theme-scroll-r-color: #080c0e;
    --theme-header-color: #f0f3f5cb;
    --theme-btn-prem-color: #f6fdff;
    --theme-btn-color: #0f1d26;
    --theme-btn-text-color: #f6fdff;
    --theme-body-color: #fff;
    --theme-box-color: #F8FAFC;
    --theme-border-color: #d7dfe1;
    --theme-scroll-color: #d5dbdfd1;
    --theme-gradient1: #fbfbfb;
    --theme-gradient2: #e8e8e8;
    --theme-footer-bg: #f8f9fa;
    --theme-red: #ef4444;
    --main-color: #078ad6;
    
}

.dark-theme {
    --theme-text-color: #f8feff;
    --theme-text-desc-color: #bdbdbd;
    --theme-mbg-color: #080c0e;
    --theme-scroll-r-color: #f3faff;
    --theme-header-color: #080c0ecb;
    --theme-btn-prem-color: #0f1d26;
    --theme-btn-color: #f6fdff;
    --theme-btn-text-color: #181818;
    --theme-body-color: #080c0e;
    --theme-box-color: #101315;
    --theme-border-color: #1d2328;
    --theme-scroll-color: #232427;
    --theme-gradient1: #090e10;
    --theme-gradient2: #0d1316;
    --theme-footer-bg: #101315;
    --theme-red: #dc2626;
}

body {
    transition: 0.3s ease-in-out;
    background: var(--theme-body-color);
}

/* --------------- Header ---------------*/

header {
    width: 100%;
    top: 0;
    right: 0;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    padding: 22px 10%;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 5;
}

header.sticky {
    background: var(--theme-header-color);
    box-shadow: 0 0 20px #00000018;
    backdrop-filter: blur(12px);
}


header .theme {
    vertical-align: middle;
    font-size: 20px;
    margin-right: 10px;
    color: var(--theme-text-color);
    cursor: pointer;
}

header .logotype {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-text-color);
    transition: 0.3s ease-in-out;
}

@media (hover: hover) {
    header .logotype:hover {
        color: var(--main-color);
    }
}

@media (hover: none) {
    header .logotype:active {
        color: var(--main-color);
    }
}

header .links {
    display: flex;
    margin-left: 125px;
}

header .links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-text-color);
    margin-right: 60px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

header .links li:last-child a {
    margin-right: 0;
}

header .mobile-mode {
    display: none;
}

header .menu-list {
    display: none;
}

@media (hover: hover) {
    header .links a:hover {
        color: var(--main-color);
    }
}

@media (hover: none) {
    header .links a:active {
        color: var(--main-color);
    }
}

header .reg {
    font-weight: 600;
    color: var(--theme-btn-text-color);
    background: var(--theme-btn-color);
    user-select: none;
    padding: 9px 18px;
    border-radius: 50px;
    transition: 0.30s ease-in-out;
}

@media (hover: hover) {
    header .reg:hover {
        color: #fff;
        background: var(--main-color);
    }
}

@media (hover: none) {
    header .reg:active {
        color: #fff;
        background: var(--main-color);
    }
}

header .login {
    font-weight: 600;
    color: var(--white-text-color);
    margin-right: 15px;
}

/* --------------- Main Page ---------------*/

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(8px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

#main {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 200px 10%;
    background: var(--theme-mbg-color);
    
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    justify-content: center;
    animation: fadeIn 0.7s ease-in-out;
    transition: 0.3s ease-in-out;
}

#main .container .main-text {
    font-size: 60px;
    font-weight: 700;
    line-height: 90%;
    color: var(--theme-text-color);
    transition: 0.5s;
}

.animate-text {
    opacity: 0;
    transform: translateY(40px);
    transform: scale(1.21);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}

#main .container .desc-text {
    font-size: 19px;
    color: var(--theme-text-desc-color);
    margin-top: 24px;
    transition: 0.5s ease-in-out;
}

#main .container .button {
    margin-top: 35px;
}

#main .container .button .euro150k {
    font-weight: 600;
    color: var(--theme-btn-text-color);
    background: var(--theme-btn-color);
    padding: 11px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.5s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (hover: hover) {
    #main .container .button .euro150k:hover {
        color: #fff;
        background: var(--main-color);
    }
}

@media (hover: none) {
    #main .container .button .euro150k:active {
        color: #fff;
        background: var(--main-color);
    }
}

/* --------------- Statistic Page ---------------*/

#pluses {
    width: 100%;
    padding: 50px 21%;
    transition: 0.3s ease-in-out;
    justify-content: center;
}

#pluses .container .start-text {
    text-align: center;
    justify-content: center;
}

#pluses .container .start-text h2 {
    line-height: 100%;
    font-size: 46px;
    color: var(--theme-text-color);
}

#pluses .container .start-text p {
    margin-top: 16px;
    font-size: 17px;
    color: var(--theme-text-desc-color);
}

#pluses .container .statistic .stat-img img {
    transition: all 0.3s ease-in-out;
    width: 500px;
}

#pluses .statistic {
    display: flex;
    margin-bottom: 35px;
    padding: 10px;
    align-items: center;
    border-radius: 15px;
    border: 1px solid var(--theme-border-color);
    box-shadow: 0 2px 5px #00000010;
    transition: all 0.3s ease-in-out;
}

#pluses .statistic:last-child .statistic {
    margin-bottom: 0;
}

#pluses .stat-img:first-child,
#pluses .stat-img:nth-child(3) {
    margin-right: 30px;
}

#pluses .con-stat {
    padding: 14px 10px 0 10px;
    margin-top: 50px;
    transition: 0.3s ease-in-out;
}

.statistic .stat-head {
    font-size: 33px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;
    color: var(--theme-text-color);
}

#pluses .statistic .stat-desc {
    font-size: 16px;
    color: var(--theme-text-desc-color);
}

#pluses .statistic .stat-text {
    width: 540px;
}

#pluses .statistic .stat-text.second {
    margin-left: 15px;
    margin-right: 30px;
}

#pluses .statistic .stat-text .other {
    font-weight: 600;
    color: var(--theme-btn-text-color);
    background: var(--theme-btn-color);
    padding: 9px 18px;
    border-radius: 50px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (hover: hover) {
    #pluses .statistic .stat-text .other:hover {
        color: #fff;
        background: var(--main-color);
    }
}

@media (hover: none) {
    #pluses .statistic .stat-text .other:active {
        color: #fff;
        background: var(--main-color);
    }
}

#pluses .statistic .stat-text .other-btn {
    margin-top: 25px;
    margin-bottom: 10px;
}


.from-left-anim {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.from-right-anim {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.statistic.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-text {
    transform-origin: left center;
}

.stat-text.second {
    transform-origin: right center;
}

.statistic.visible .text-left-anim {
    animation: slideInRight 0.5s forwards; 
}

.statistic.visible .text-right-anim {
    animation: slideInLeft 0.5s forwards; 
}


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --------------- Screenshots (Visual) ---------------*/

#visual {
    width: 100%;
    padding: 50px 21%;
    background: linear-gradient(var(--theme-gradient1), var(--theme-gradient2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

#visual a {
    transition: color 0.5s ease;
}

.visual-text {
    width: 100%;
}

.visual-text h2 {
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 15px;
    margin-top: 20px;
}


.visual-text p {
    font-size: 18px;
}

.visual-text .other {
    font-weight: 600;
    color: var(--theme-btn-text-color);
    background: var(--theme-btn-color);
    padding: 9px 18px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

@media (hover:hover) {
    .visual-text .other:hover {
        background: var(--main-color);
        color: #fff;
    }
}

@media (hover:none) {
    .visual-text .other:active {
        background: var(--main-color);
        color: #fff;
    }
}

.visual-text .other-btn {
    margin-top: 25px;
}

.visual-text .useless{
    background: var(--theme-btn-color);
    color: var(--theme-btn-text-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.screens {
    width: 100%;
    display: grid;
    justify-content: end;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.screens .single-img {
    width: 90%;
    padding: 4px;
    border: 1px solid var(--theme-border-color);
    border-radius: 12px;
    position: relative;
    margin-left: 60px;
    overflow-x: hidden; /* Скрыть лишнее содержимое */
    transition: 0.3s ease-in-out;
}

.screens .small {
    border: 2px solid transparent;
}

.screens .small.active {
    border: 2px solid var(--main-color);
    transition: 0.3s ease-in-out;
}

.screens .single-img #mainImg {
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.screens .single-img img {
    border-radius: 8px;
}

.screens .small-imgs {
    display: flex;
    overflow-x: auto; /* Позволить прокрутку по горизонтали */
}

.screens .small-img {
    flex-shrink: 0; /* Запретить уменьшение размера */
    width: 100px; /* Ширина изображения */
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    margin-right: 10px; /* Добавил отступ между изображениями */
    transition: 0.3s ease-in-out;
}

.screens .small-img:last-child {
    margin-right: 0px;
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    text-align: center;
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80%;
    margin-top: 50px;
    border-radius: 8px;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}
.mainImg-container {
    position: relative;
    display: inline-block;
}

.mainImg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 256px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (hover: hover) {
    .mainImg-container:hover .mainImg-overlay {
        opacity: 1;
    }
}

@media (hover: none) {
    .mainImg-container:active .mainImg-overlay {
        opacity: 1;
    }
}

.bx-fullscreen {
    font-size: 40px;
    color: #ffffff;
    display: none;
}

@media (hover: hover) {
    .mainImg-container:hover .bx-fullscreen {
        display: block;
    }
}

@media (hover: none) {
    .mainImg-container:active .bx-fullscreen {
        display: block;
    }
}

.scroll-left,
.scroll-right {
    position: absolute;
    top: 88%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: var(--theme-scroll-r-color);
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.scroll-left {
    left: 2%;
}

.scroll-right {
    right: 2%;
}

.small-imgs::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.small-imgs::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px;
}

.small-imgs::-webkit-scrollbar-thumb {
    background: var(--theme-scroll-color);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.small-imgs::-webkit-scrollbar-button {
    display: none;
}

.visual-text {
    color: var(--theme-text-color);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.visual-text p {
    color: var(--theme-text-desc-color);
}

.visual-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.single-img {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.single-img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------- Tariffs ---------------*/

#tarifs {
    width: 100%;
    padding: 50px 21%;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.tarif-text {
    text-align: center;
    margin-bottom: 30px;
}

.tarif-text h2 {
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 15px;
    color: var(--theme-text-color);
    transition: 0.3s ease-in-out;
}

.tarif-text p {
    font-size: 18px;
    color: var(--theme-text-desc-color);
    transition: 0.3s ease-in-out;
}

.tarif-con {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.tarif {
    margin-right: 25px;
    padding: 15px;
    box-shadow: 0 0 10px #00000015;
    border: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

.tarif:last-child {
    margin-right: 0;
}

.tarif-con .corf {
    background: var(--theme-box-color);
    border: 1px solid var(--theme-border-color);
    border-radius: 15px;
}

.tarif-img img {
    width: 350px;
    border-radius: 15px;
}

.corf .tarif-img img {
    border: 1px solid var(--theme-border-color);
    transition: 0.3s ease-in-out;
}

.tarif-pluses {
    margin-top: 15px;
    margin-bottom: 15px;
}

.tarif-pluses .plus {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-btn-color);
    transition: 0.3s ease-in-out;
}

.tarif-pluses .minus {
    font-size: 18px;
    font-weight: 600;
    color: #98A5B6;
}

.tarif-pluses .tarif-icon {
    vertical-align: middle;
    font-size: 26px;
}

.tarif-pluses .tarif-icon.check {
    color: var(--main-color);
}

.tarif-con .buy-btn {
    width: 100%;
    padding: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-btn-text-color);
    background: var(--theme-btn-color);
    border-radius: 50px;
    outline: none; border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.tarif-con .buy-btn:disabled {
    cursor: not-allowed;
}

.tarif-con .buy-btn:disabled:hover {
    background: var(--theme-red);
}

@media (hover: hover) {
    .tarif-con .buy-btn:hover {
        background: var(--main-color);
        color: #fff;
    }
}

@media (hover: none) {
    .tarif-con .buy-btn:active {
        background: var(--main-color);
        color: #fff;
    }
}

.prem-tarif {
    border-radius: 15px;
    background: var(--theme-box-color);
    border: 1px solid var(--theme-border-color);
    transform: scale(1.05);
}

.footer {
    background-color: var(--theme-footer-bg);
    padding: 40px 0;
    align-items: center;
    justify-content: center;
    color: var(--theme-text-color);
    text-align: left;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.footer a {
    color: var(--theme-text-color);
    transition: color 0.5s ease;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 20px;
    margin-bottom: 50px;
}

.col-md.data p {
    font-size: 14px;
    color: var(--theme-text-desc-color);
}

.col-md .loho {
    margin-bottom: 20px;
    font-size: 21px;
}

@media (hover: hover) {
    .col-md a:hover {
        color: var(--main-color); 
    }
}

@media (hover: none) {
    .col-md a:active {
        color: var(--main-color); 
    }
}

.col-md .ez {
    color: var(--theme-text-color);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.col-md a {
    display: block; /* Превратить ссылки в блочные элементы */
    width: max-content; /*ограничиваем кнопочки*/
    margin-bottom: 8px; /* Расстояние между ссылками */
    text-decoration: none; /* Убрать подчеркивание */
    color: var(--theme-text-desc-color); /* Цвет текста ссылок */
    font-size: 17px;
    font-weight: 500;
    transition: color 0.5s ease;
}


@media (max-width: 767px) {
    .col-md {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }
}


@media screen and (max-width: 1176px) {
    header {
        padding: 22px 5%;
        width: 100%;
        height: 70px;
    }

    header .logotype {
        position: fixed;
        top: 22px;
        left: 5%;
    }

    header .mobile-mode {
        display: flex;
        position: fixed;
        top: 18px;
        right: 5%;
    }

    header .theme {
        margin-top: 7px;
    }

    header .links {
        display: none;
    }

    header .right-side {
        display: none;
    }

    header .menu-icon {
        font-size: 32px;
        color: var(--theme-text-color);
    }

    header .menu-list {
        display: none;
        position: absolute;
        background-color: var(--theme-body-color);
        border: 1px solid var(--theme-border-color);
        border-radius: 6px;
        z-index: 1;
        transition: all .5s ease;
        right: 20px;
        top: 70px;
        transform: translateY(-20px);
        transition: 0.35s ease;
    }

    header li {
        color: var(--theme-text-color);
        padding: 10px 14px;
        text-decoration: none;
        display: block;
        font-size: 15px;
        border-bottom: 1px solid var(--theme-border-color);
        transition: background-color 0.2s ease-in-out;
    }

    header .menu-list li:hover {
        background-color: var(--popup-color);
    }
    
    header .menu-list li:last-child {
        border-bottom: 1px solid transparent;
    }

    header .menu-list a {
        font-size: 16px;
        font-weight: 600;
        color: var(--theme-text-color);
        margin-right: 0px;
        display: inline-block;
        transition: 0.3s ease-in-out;
    }

    header .menu-list.hide {
        opacity: 0;
        transform: translateY(-20px);
    }

    #main {
        padding-top: 200px;
        background-position-y: -100px;
    }

    #main .container .main-text {
        font-size: 30px;
    }

    #main .container .desc-text {
        font-size: 17px;
    }

    /* Плюсы */

    #pluses {
        padding-left: 10px;
        padding-right: 10px;
    }

    #pluses .container .start-text h2 {
        font-size: 30px;
    }

    #pluses .statistic .stat-text {
        margin: 15px;
    }

    .stat-img {
        display: none;
    }

    /* Визуальчики */

    #visual {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 20px;
        padding-bottom: 30px;
        padding-top: 40px;
    }

    .screens .single-img {
        overflow-y: hidden;
        margin-top: 30px;
        margin-left: 0px;
        width: 100%;
        margin-top: 15px;
    }

    .visual-text {
        padding-bottom: 25px;
        border-bottom: 1px solid var(--theme-border-color);
    }

    .visual-text h2 {
        font-size: 25px;
    }
    
    .visual-text p {
        font-size: 15px;
    }

    .scroll-left {
        opacity: 0;
    }

    .scroll-right {
        opacity: 0;
    }

    .lightbox-content {
        position: absolute;
        margin: auto;
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 80%;
        margin-top: 0px;
        top: 35%;
        border-radius: 8px;
    }

    /* Покупка */

    #tarifs {
        padding-right: 10px;
        padding-left: 10px;
    }

    .tarif-text {
        margin-bottom: 10px;
    }

    .tarif-text h2 {
        font-size: 30px;
    }

    .tarif-text p {
        font-size: 17px;
    }

    .tarif-con {
        flex-direction: column;
    }

    .tarif {
        margin-right: 0px;
        margin-bottom: -30px;
        transform: scale(0.9);
    }
}
/* Arctic artwork retains the original blue glow and layered client composition. */
body { overflow-x: clip; }
#pluses { overflow-x: clip; }
#main { min-height: 850px; height: 100vh; overflow: hidden; padding-top: 160px; background-image: radial-gradient(ellipse at 20% 100%, #723bff80, transparent 55%), radial-gradient(ellipse at 85% 100%, #00cadb80, transparent 60%); }
#main .container { position: relative; z-index: 2; }
.arctic-hero { position: absolute; bottom: -25px; left: 8%; width: 84%; height: 48%; pointer-events: none; }
.arctic-hero img { position: absolute; width: 55%; border-radius: 22px; box-shadow: 0 16px 60px #071b3955; }
.hero-center { left: 22.5%; top: 0; z-index: 1; }
.hero-left { left: 0; top: 22%; transform: rotate(-5deg); }
.hero-right { right: 0; top: 22%; transform: rotate(5deg); }
.stat-img img { border-radius: 20px; }
@media (max-width: 768px) { #main { padding-top: 145px; min-height: 700px; height: 90vh; } #main .container .main-text { font-size: 40px; line-height: 1.08; } .arctic-hero { left: -12%; width: 124%; height: 35%; } .arctic-hero img { width: 66%; } .hero-center { left: 17%; } }
