﻿
/* ПЛАВНЫЙ СКРОЛЛ */
html {
    scroll-behavior: smooth;
}
/* ================= ОБЩИЕ НАСТРОЙКИ ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: #fff;
    background: radial-gradient(1000px 700px at 80% 30%, rgba(120,80,255,0.45), transparent 60%), radial-gradient(600px 400px at 20% 80%, rgba(168,85,247,0.25), transparent 60%), #05050a;
    overflow-x: hidden;
}

/* ================= КОНТЕЙНЕР САЙТА ================= */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

/* ================= ВЕРХНЕЕ МЕНЮ ================= */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
    z-index: 20;
}
/* ================= ЛОГО ================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.5px;
    color: #f1f1f1;
    transition: 0.3s;
    text-decoration: none
}

.logo-img {
    width: 52px;
    height: auto;
    transition: 0.35s;
}

/* hover */

.logo:hover {
    color: #fff;
}

    .logo:hover .logo-img {
        transform: scale(1.06);
    }

/* ================= MENU ================= */

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

    .menu a {
        color: #a5a5a5;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        transition: 0.3s;
    }

        /* underline */

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 0%;
            height: 2px;
            border-radius: 20px;
            background: linear-gradient( 90deg, #6a5cff, #a855f7 );
            transition: 0.35s ease;
        }

        .menu a:hover {
            color: #fff;
        }

            .menu a:hover::after {
                width: 100%;
            }

/* ================= КНОПКИ ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

/* ГЛАВНАЯ КНОПКА */
.btn-main {
    background: linear-gradient(90deg,#6a5cff,#a855f7);
    box-shadow: 0 0 30px rgba(120,80,255,0.6);
    color: #fff;
    transition: 0.3s ease;
    letter-spacing: 0.3px;
}

    .btn-main:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 40px rgba(120,80,255,0.35);
    }
/* ВТОРАЯ КНОПКА */
.btn-outline {
    background: transparent; /* убрали тёмный фон */

    border: 1px solid rgba(255,255,255,0.35); /* светлый контур */

    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.05); /* лёгкая подсветка */

        border-color: rgba(255,255,255,0.6); /* контур ярче */

        transform: translateY(-2px);
    }

/* КНОПКА С PLAY */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ИКОНКА ▶ */
.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* чуть меньше */
    transform: translateY(-1px); /* выравнивание по центру */
}

/* ================= HERO БЛОК ================= */
.hero {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 850px; /* увеличили высоту */
    padding-bottom: 40px; /* добавили воздуха снизу */
}

/* ================= ЛЕВАЯ ЧАСТЬ ================= */
.hero-left {
    flex: 1;
    max-width: 760px;
    position: relative;
}

/* ЗАГОЛОВОК */
h1 {
    font-size: 72px;
    line-height: 1.1;
}

/* ВЫДЕЛЕНИЕ */
.highlight {
    color: #8b5cf6;
}

/* ОПИСАНИЕ */
.hero p {
    color: #aaa;
    margin-top: 15px;
}

/* БЛОК КНОПОК */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

/* СВЕЧЕНИЕ ПОД КНОПКОЙ */
.glow-left {
    position: absolute;
    width: 300px;
    height: 200px;
    background: radial-gradient(circle, rgba(120,80,255,0.6), transparent 70%);
    filter: blur(80px);
    top: 260px;
    left: 0;
    pointer-events: none;
}

/* ================= НОВЫЕ КАРТОЧКИ (КАК НА СКРИНЕ) ================= */
.features-new {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ОДНА КАРТОЧКА */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

    /* ИКОНКА В КАРТОЧКЕ */
    .feature-item .icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(120,80,255,0.2);
    }

    /* HOVER */
    .feature-item:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.08);
    }

/* ================= ПРАВАЯ ЧАСТЬ ================= */
.hero-right {
    flex: 1;
    position: relative;
}

/* ОБЩЕЕ СВЕЧЕНИЕ */
.glow {
    position: absolute;
    right: -120px;
    top: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120,80,255,0.5), transparent 70%);
    filter: blur(80px);
}

/* ТЕЛЕФОН */
.phone {
    position: absolute;
    right: -70px;
    top: -250px;
    width: 900px;
    z-index: 3;
}

/* ОБЛАКО */
.ball {
    position: absolute;
    right: -60px;
    top: -210px;
    width: 800px;
    z-index: 1;
}

/* КАРТЫ */
.card-left {
    position: absolute;
    left: 40px;
    top: 150px;
    width: 240px;
    transform: rotate(-15deg);
}

.card-right-1 {
    position: absolute;
    right: 10px;
    top: -10px;
    width: 270px;
    transform: rotate(15deg);
    z-index: 3
}

.card-right-2 {
    position: absolute;
    right: 10px;
    top: 170px;
    width: 270px;
    transform: rotate(8deg);
    z-index: 3
}

/* НОВАЯ КАРТА */
.card-right-3 {
    position: absolute;
    right: 120px;
    top: -300px;
    width: 270px;
    transform: rotate(-10deg);
    z-index: 2
}

/* МОНЕТЫ */
.coin1 {
    position: absolute;
    left: 120px;
    bottom: 20px;
    width: 70px;
}

.coin2 {
    position: absolute;
    right: 120px;
    bottom: 100px;
    width: 60px;
}

/* АНИМАЦИЯ */
@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }
}

.phone,
.card-left,
.card-right-1,
.card-right-2,
.card-right-3,
.ball,
.coin1,
.coin2 {
    animation: float 6s ease-in-out infinite;
}


/*кнопка регистрация*/
.auth {
    display: flex;
    align-items: center;
}
/* ================= ВИДЕО НОВАЯ ВЕРСИЯ ================= */

.how {
    padding: 140px 0 100px;
}

.how-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* ЛЕВАЯ */
.how-left {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .how-left h2 {
        font-size: 48px;
        margin: 10px 0;
    }

.how-sub {
    color: #aaa;
    margin-bottom: 30px;
}

/* ШАГИ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(120,80,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ВИДЕО СЛЕВА */
.how-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.how-video {
    width: 420px; /* чуть больше — выглядит дороже */
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 80px 200px rgba(120,80,255,0.45);
}

    .how-video::before {
        content: "";
        position: absolute;
        inset: -40px;
        background: radial-gradient(circle, rgba(120,80,255,0.25), transparent 70%);
        filter: blur(60px);
        z-index: 0;
    }

.video-real {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg,#6a5cff,#a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 40px rgba(120,80,255,0.7);
    cursor: pointer;
}

/* ================= WHY BLOCK (ПОЛНЫЙ ФИНАЛ) ================= */

.why {
    padding: 140px 0 100px;
    position: relative;
}

/* контейнер */
.why-container {
    position: relative;
}

/* фоновое свечение */
.why::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120,80,255,0.1), transparent 70%);
    filter: blur(120px);
}

/* ================= HEADER ================= */

.why-head {
    max-width: 600px;
    margin-bottom: 60px;
}

.why-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(120,80,255,0.15);
    color: #a78bfa;
    font-size: 12px;
    margin-bottom: 10px;
}

.why-head h2 {
    font-size: 56px;
    margin: 10px 0;
}

.why-head p {
    color: #aaa;
}

/* ================= GRID ================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ================= CARD ================= */

.why-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
}

/* картинка */
.why-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* затемнение */
.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent 70%);
}

/* контент внизу */
.why-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 24px;
}

/* иконка */
.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(120,80,255,0.25);
    margin-bottom: 10px;
    flex-shrink: 0;
}

    /* сама иконка */
    .why-icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

/* заголовок */
.why-card h3 {
    font-size: 18px;
    margin: 0 0 6px 0;
}

/* текст */
.why-card p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    min-height: 40px; /* фикс выравнивания */
}

/* hover */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(120,80,255,0.25);
}

/* ================= НИЖНИЙ БЛОК ================= */

.why-bottom {
    margin-top: 50px;
}

/* ВАЖНО: такой же размер как контейнер */
.why-bottom-inner {
    width: 100%;
    padding: 25px 30px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* левая часть */
.why-note {
    display: flex;
    align-items: center;
    gap: 12px;
}

    /* галочка */
    .why-note .why-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    /* текст */
    .why-note b {
        display: block;
        font-size: 15px;
    }

    .why-note div {
        font-size: 13px;
        color: #aaa;
    }

/* кнопка */
.why-btn {
    padding: 16px 34px;
    font-size: 15px;
}

/* ================= COIN ================= */

.why-coin {
    position: absolute;
    right: -40px;
    top: -50px;
    width: 420px;
    pointer-events: none;
}

.coin-main {
    width: 100%;
    animation: floatCoin 6s ease-in-out infinite;
}

.coin-planet {
    position: absolute;
    width: 26px;
    opacity: 0.7;
}

.p1 {
    top: 20px;
    right: 60px;
}

.p2 {
    bottom: 80px;
    left: 40px;
    opacity: 0.4;
}

/* анимация */
@keyframes floatCoin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= FAQ BLOCK FINAL CLEAN ================= */

.faq {
    padding: 140px 0 100px;
    position: relative;
    overflow: visible; /* убирает обрезанные свечения */
    background: transparent;
}

    /* мягкие фоновые огни */
    .faq::before {
        content: "";
        position: absolute;
        left: -200px;
        top: -50px;
        width: 500px;
        height: 500px;
        background: radial-gradient( circle at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100% );
        filter: blur(140px);
    }

/* контейнер */
.faq-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* заголовок */
.faq-head {
    grid-column: span 2;
    text-align: left; /* 👈 главное */
    margin-bottom: 30px;
    max-width: 600px; /* 👈 как в WHY */
}

    .faq-head h2 {
        font-size: 56px; /* как в WHY */
        margin: 10px 0;
    }

    .faq-head p {
        color: #aaa;
    }

/* карточка */
.faq-item {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient( 145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) );
    backdrop-filter: blur(14px);
    transition: 0.25s ease;
    cursor: pointer;
    min-height: 68px;
    overflow: visible;
    z-index: 1;
}

    /* ACTIVE */

    .faq-item.active {
        z-index: 50;
        border-color: rgba(255,255,255,0.06);
        background: #141420;
        box-shadow: 0 25px 80px rgba(120,80,255,0.14);
    }

    /* hover */
    .faq-item:hover:not(.active) {
        border-color: rgba(120,80,255,0.25);
        background: rgba(255,255,255,0.05);
    }

/* вопрос */
.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question h3 {
        font-size: 15px;
        margin: 0;
        transition: 0.25s ease;
        color: #fff;
    }

/* плюс */
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: linear-gradient( 135deg, rgba(120,80,255,0.5), rgba(120,80,255,0.22) );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(120,80,255,0.25);
    transition: 0.25s ease;
}

/* ответ */
.faq-answer {
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    width: 100%;
    padding: 30px 30px 28px;
    border-radius: 0 0 22px 22px;
    background: #141420;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 20;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 8px 20px rgba(0,0,0,0.22);
}

.faq-accent {
    color: #9b7dff;
    font-weight: 600;
}

    /* текст */

    .faq-answer p {
        position: relative;
        z-index: 2;
        margin: 0;
        color: #c7c7d1;
        line-height: 2.1;
        font-size: 15px;
        letter-spacing: 0.1px;
    }

    .faq-answer b {
        color: #fff;
        font-weight: 600;
        text-shadow: 0 0 18px rgba(120,80,255,0.35);
    }

.faq-answer strong {
    color: #fff;
    font-weight: 700;
}

.faq-answer .faq-accent {
    color: #a78bfa;
    font-weight: 600;
}

.faq-answer .faq-light {
    color: #ececf3;
}

/* active */

.faq-item.active .faq-answer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }


/* ===== ОБЩЕЕ СВЕЧЕНИЕ FAQ БЛОКА ===== */

.faq::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -300px;
    transform: translateX(-50%);
    width: 3200px;
    height: 900px;
    background: radial-gradient( ellipse at center, rgba(120,80,255,0.18) 0%, rgba(120,80,255,0.08) 35%, rgba(120,80,255,0.03) 55%, transparent 75% );
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}
/* ================= BLOG SECTION ================= */

.blog-section {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}

    /* glow */

    .blog-section::before {
        content: "";
        position: absolute;
        left: -300px;
        top: -100px;
        width: 900px;
        height: 900px;
        background: radial-gradient( circle, rgba(120,80,255,0.10), transparent 70% );
        filter: blur(140px);
        pointer-events: none;
    }

/* ================= TOP ================= */

.blog-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.blog-head {
    max-width: 700px;
}

.blog-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(120,80,255,0.12);
    color: #b18cff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.blog-head h2 {
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 14px;
}

.blog-head p {
    color: #9d9d9d;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.blog-all {
    color: #b18cff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

    .blog-all:hover {
        color: #fff;
    }

/* ================= CAROUSEL ================= */

.blog-carousel-wrapper {
    position: relative;
}

.blog-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 10px;
}

    .blog-carousel::-webkit-scrollbar {
        display: none;
    }

/* ================= CARD ================= */

.blog-card {
    position: relative;
    min-width: 420px;
    max-width: 420px;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient( 180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03) );
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    transition: 0.35s ease;
}

    .blog-card:hover {
        transform: translateY(-8px);
        border-color: rgba(120,80,255,0.18);
        box-shadow: 0 30px 90px rgba(120,80,255,0.18);
    }

/* image */

.blog-image {
    height: 250px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

/* content */

.blog-content {
    padding: 26px;
}

.blog-category {
    color: #b18cff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 28px;
}

.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9d9d9d;
    font-size: 14px;
}

.blog-arrow {
    color: #b18cff;
    font-size: 22px;
    transition: 0.3s;
}

.blog-card:hover .blog-arrow {
    transform: translateX(4px);
}

/* ================= NAV ================= */

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,20,0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

    .blog-nav:hover {
        background: rgba(120,80,255,0.25);
        border-color: rgba(120,80,255,0.3);
    }

    .blog-nav.prev {
        left: -24px;
    }

    .blog-nav.next {
        right: -24px;
    }

/* ================= CONTACT PREMIUM FINAL ================= */

.contact-pro {
    position: relative;
    padding: 140px 0 60px;
    overflow: visible;
}

    /* общее свечение */
    .contact-pro::before {
        content: "";
        position: absolute;
        left: -300px;
        top: 0;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(120,80,255,0.14), transparent 70%);
        filter: blur(140px);
        pointer-events: none;
        z-index: 0;
    }

    .contact-pro::after {
        content: "";
        position: absolute;
        right: -300px;
        bottom: -200px;
        width: 1200px;
        height: 800px;
        background: radial-gradient(circle, rgba(120,80,255,0.12), transparent 70%);
        filter: blur(180px);
        pointer-events: none;
        z-index: 0;
    }
/* ================= HEADER ================= */

.contact-head {
    max-width: 760px;
    margin-bottom: 70px;
}

    .contact-head h2 {
        font-size: 56px;
        line-height: 1.05;
        letter-spacing: -1.5px;
        margin: 0 0 14px;
        font-weight: 800;
    }

    .contact-head p {
        font-size: 18px;
        line-height: 1.7;
        color: #9e9e9e;
        margin: 0;
    }

/* ================= GRID ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 620px;
    gap: 90px;
    align-items: flex-start;
}

/* ================= LEFT ================= */

.contact-left {
    padding-top: 0;
}

    .contact-left h3 {
        font-size: 30px;
        line-height: 1.15;
        margin: 0 0 12px;
        font-weight: 700;
    }

    .contact-left p {
        font-size: 16px;
        line-height: 1.6;
        color: #a2a2a2;
        margin-bottom: 28px;
    }

/* features */

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    color: #d8d8d8;
}

    .contact-item .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #8b5cf6;
        box-shadow: 0 0 12px rgba(139,92,246,0.9);
    }

/* ================= RIGHT ================= */

.contact-right {
    position: relative;
    margin-top: -200px;
}

/* ================= FORM ================= */

.contact-form {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient( 180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03) );
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(120,80,255,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: 0.35s ease;
}

    /* glow внутри */
    .contact-form::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(120,80,255,0.12), transparent 50% );
        pointer-events: none;
    }

    .contact-form:hover {
        transform: translateY(-4px);
        box-shadow: 0 35px 100px rgba(120,80,255,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
    }

    /* ================= INPUTS ================= */

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 16px 18px;
        margin-bottom: 14px;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 14px;
        background: rgba(255,255,255,0.07);
        color: #fff;
        font-size: 15px;
        outline: none;
        transition: 0.25s ease;
    }

    .contact-form textarea {
        min-height: 120px;
        resize: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #8d8d8d;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: rgba(139,92,246,0.5);
            background: rgba(255,255,255,0.09);
            box-shadow: 0 0 0 3px rgba(120,80,255,0.12), 0 10px 30px rgba(120,80,255,0.18);
        }

/* ================= ЧЕК БОКС ================= */
.contact-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.5;
}

    .contact-check input {
        width: 18px;
        height: 18px;
        margin: 0;
        accent-color: #8b5cf6;
        flex-shrink: 0;
    }

    .contact-check span {
        position: relative;
        top: 1px;
    }

/* ================= BUTTON ================= */

.contact-btn {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
}

/* ================= DECOR ================= */

/* большой коин */
.contact-coin3d {
    position: absolute;
    width: 180px;
    right: -80px;
    top: -100px;
    opacity: 0.9;
    z-index: 5;
    pointer-events: none;
    animation: floatSoft 7s ease-in-out infinite;
}

/* маленький коин */
.contact-coin {
    position: absolute;
    width: 90px;
    left: -40px;
    bottom: -30px;
    opacity: 0.75;
    z-index: 5;
    pointer-events: none;
    animation: floatSoft 6s ease-in-out infinite;
}

/* ================= ANIMATION ================= */

@keyframes floatSoft {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= FOOTER PREMIUM FINAL ================= */

.footer {
    position: relative;
    padding: 120px 0 20px;
    overflow: visible;
}

/* ================= CONTAINER ================= */

.footer-container {
    position: relative;
    z-index: 2;
}

/* ================= TOP ================= */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
}

/* ================= LOGO ================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

    .footer-logo img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

/* ================= MENU ================= */

.footer-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    top: 55px;
}

    .footer-menu a {
        position: relative;
        color: #bcbcbc;
        text-decoration: none;
        font-size: 14px;
        transition: 0.25s;
    }

        .footer-menu a:hover {
            color: #fff;
        }

        /* underline */

        .footer-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 1px;
            background: #9f67ff;
            transition: 0.3s;
        }

        .footer-menu a:hover::after {
            width: 100%;
        }

/* ================= CONTACTS ================= */

.footer-info {
    margin-bottom: 38px;
}

.footer-address {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.footer-mail,
.footer-phone {
    font-size: 16px;
    line-height: 1.7;
    color: #a8a8a8;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

/* ================= LINKS ================= */

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

    .footer-links a {
        color: #707070;
        text-decoration: none;
        font-size: 14px;
        transition: 0.25s;
    }

        .footer-links a:hover {
            color: #b98cff;
        }

/* ================= COPYRIGHT ================= */

.footer-copy {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ================= GLOW ================= */

.footer::before {
    content: "";
    position: absolute;
    right: -300px;
    bottom: -50px;
    width: 1200px;
    height: 400px;
    background: radial-gradient( ellipse at center, rgba(120,80,255,0.18) 0%, rgba(120,80,255,0.08) 40%, transparent 75% );
    filter: blur(140px);
    pointer-events: none;
}

/* ================= GLOBAL FOOTER GLOW ================= */

body::after {
    content: "";
    position: fixed;
    right: -200px;
    bottom: -150px;
    width: 1600px;
    height: 700px;
    background: radial-gradient( ellipse at center, rgba(120,80,255,0.28) 0%, rgba(120,80,255,0.16) 30%, rgba(120,80,255,0.08) 55%, transparent 78% );
    filter: blur(160px);
    pointer-events: none;
    z-index: -5;
}
/* ================= КАРТОЧКИ СТАТЕЙ ================= */

.article-page {
    position: relative;
    padding: 60px 0 120px;
    overflow: hidden;
}

    /* glow */

    .article-page::before {
        content: "";
        position: absolute;
        top: -300px;
        right: -300px;
        width: 900px;
        height: 900px;
        background: radial-gradient( circle, rgba(120,80,255,0.08), transparent 70% );
        filter: blur(140px);
        pointer-events: none;
    }

/* ================= BACK ================= */

.article-back {
    display: inline-flex;
    margin-bottom: 40px;
    color: #a78bfa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .article-back:hover {
        color: #fff;
    }

/* ================= HERO ================= */

.article-hero {
    max-width: 920px;
    margin-bottom: 40px;
}

.article-category {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(120,80,255,0.12);
    color: #c4b5fd;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.article-hero h1 {
    max-width: 900px;
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
}

.article-sub {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.8;
    color: #9d9d9d;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    gap: 14px;
    color: #777;
    font-size: 14px;
}

/* ================= IMAGE ================= */

.article-cover {
    width: 100%;
    max-width: 980px;
    margin-bottom: 70px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

    .article-cover img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
    }

/* ================= CONTENT ================= */

.article-content {
    max-width: 860px;
}

    /* headings */

    .article-content h2 {
        font-size: 36px;
        line-height: 1.15;
        margin: 70px 0 24px;
        letter-spacing: -1px;
    }

    /* paragraphs */

    .article-content p {
        font-size: 18px;
        line-height: 1.95;
        color: #d0d0d0;
        margin-bottom: 28px;
    }

    /* list */

    .article-content ul {
        margin: 0 0 34px 18px;
    }

    .article-content li {
        font-size: 18px;
        line-height: 1.8;
        color: #d0d0d0;
        margin-bottom: 12px;
    }

    /* quote */

.article-highlight {
    margin: 54px 0;
    padding-left: 24px;
    border-left: 2px solid rgba(120,80,255,0.5);
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: -0.5px;
    color: #fff;
    font-weight: 500;
    max-width: 720px;
}

/* ================= CTA ================= */

.article-cta {
    position: relative;
    max-width: 980px;
    margin-top: 90px;
    padding: 38px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient( 180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03) );
    border: 1px solid rgba(255,255,255,0.06);
}

    /* glow */

    .article-cta::before {
        content: "";
        position: absolute;
        right: -200px;
        top: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient( circle, rgba(120,80,255,0.18), transparent 70% );
        filter: blur(120px);
    }

    .article-cta h3 {
        position: relative;
        z-index: 2;
        font-size: 30px;
        line-height: 1.1;
        margin: 0 0 16px;
    }

    .article-cta p {
        position: relative;
        z-index: 2;
        max-width: 560px;
        color: #9d9d9d;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .article-cta .btn {
        position: relative;
        z-index: 2;
    }

/* ================= RELATED ARTICLES ================= */

.related-section {
    margin-top: 120px;
}

.related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

    .related-head h2 {
        font-size: 46px;
        line-height: 1.05;
        margin: 0;
    }

.related-all {
    color: #b18cff;
    text-decoration: none;
    transition: 0.3s;
}

    .related-all:hover {
        color: #fff;
    }

/* grid */

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* card */

.related-card {
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient( 180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03) );
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.35s;
}

    .related-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 70px rgba(120,80,255,0.18);
        border-color: rgba(120,80,255,0.18);
    }

/* image */

.related-image {
    height: 220px;
    overflow: hidden;
}

    .related-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

.related-card:hover .related-image img {
    transform: scale(1.08);
}

/* content */

.related-content {
    padding: 24px;
}

.related-category {
    color: #b18cff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.related-content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

/* ================= СТРАНИЦА БЛОГА ГДЕ ВСЕ СТАТЬИ ================= */

.blog-page {
    position: relative;
    padding: 70px 0 120px;
    overflow: hidden;
}

    /* glow */

    .blog-page::before {
        content: "";
        position: absolute;
        top: -300px;
        right: -300px;
        width: 900px;
        height: 900px;
        background: radial-gradient( circle, rgba(120,80,255,0.08), transparent 70% );
        filter: blur(140px);
        pointer-events: none;
    }

/* head */

.blog-page-head {
    max-width: 900px;
    margin-bottom: 70px;
}

    .blog-page-head h1 {
        font-size: 72px;
        line-height: 1;
        margin: 0 0 22px;
    }

    .blog-page-head p {
        max-width: 700px;
        font-size: 20px;
        line-height: 1.8;
        color: #9d9d9d;
    }

/* grid */

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ================= MOBILE MENU ================= */

.burger {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

    .burger span {
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 10px;
        transition: 0.3s;
    }

/* ================= STICKY HEADER ================= */

.header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(18px);
    background: rgba(10,10,20,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.btn-submit {
    width: 100%;
    height: 62px;
    font-size: 16px;
    border-radius: 18px;
    margin-top: 10px;
}
/* ================= ВСПЛЫВАЮЩЕЕ ОКНОВ ================= */

.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(5,5,10,0.72);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 9999;
}

    .success-popup.active {
        opacity: 1;
        visibility: visible;
    }

/* box */

.success-popup-box {
    width: 420px;
    padding: 42px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient( 180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04) );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 100px rgba(120,80,255,0.25);
    transform: translateY(20px);
    transition: 0.35s ease;
}

.success-popup.active .success-popup-box {
    transform: translateY(0);
}

/* icon */

.success-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient( 90deg, #6a5cff, #a855f7 );
    box-shadow: 0 0 40px rgba(120,80,255,0.6);
}

/* title */

.success-popup h3 {
    font-size: 30px;
    margin: 0 0 12px;
}

/* text */

.success-popup p {
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0;
}

/* ================= ОШИБКА В ФОРМЕ ================= */

.input-error {
    border-color: #ff4d6d !important;
    box-shadow: 0 0 0 3px rgba(255,77,109,0.12), 0 10px 30px rgba(255,77,109,0.12) !important;
}

/* текст ошибки */

.error-text {
    display: none;
    margin-top: -4px;
    margin-bottom: 14px;
    color: #ff8fa3;
    font-size: 13px;
}

    /* показать */

    .error-text.active {
        display: block;
    }

/* shake */

@keyframes shake {

    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.25s ease;
}
