
/* Запрет выделения текста на лендинге */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Разрешить выделение в полях ввода и результатах */
input, textarea, .result-text, .gen-result, .hash-results, pre, code, .copyable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

#preloader.preloader-done {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-img {
    width: 120px;
    height: auto;
    opacity: 0;
    transform: scale(0);
    filter: drop-shadow(0 0 0px transparent);
}

.preloader-img.ready {
    animation: wings-spread 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 70%);
    opacity: 0;
    animation: glow-pulse 1.8s ease 0.5s forwards;
}

.preloader-text {
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: text-fade 1s ease 1.2s forwards;
}

@keyframes wings-spread {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: drop-shadow(0 0 0px transparent);
    }
    30% {
        opacity: 1;
        transform: scale(0.6);
    }
    70% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
    }
}

@keyframes glow-pulse {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.6; transform: scale(1); }
}

@keyframes text-fade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.preloader-bar-wrap {
    margin-top: 30px;
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: text-fade 0.6s ease 1.5s forwards;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border-radius: 3px;
    transition: width 0.15s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.preloader-percent {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    opacity: 0;
    animation: text-fade 0.6s ease 1.5s forwards;
}

/* NEONYX — Dark Cyberpunk Theme */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

    --bg-primary: #0a0a0f;

    --bg-secondary: rgba(255, 255, 255, 0.02);

    --bg-card: rgba(255, 255, 255, 0.08);

    --neon-purple: #a855f7;

    --neon-pink: #ec4899;

    --neon-cyan: #06b6d4;

    --neon-blue: #3b82f6;

    --text-primary: #f1f1f3;

    --text-secondary: #8888a0;

    --text-muted: #555566;

    --border: #222233;

    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);

    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Inter', sans-serif;

    background: var(--bg-primary);

    color: var(--text-primary);

    overflow-x: hidden;

    line-height: 1.6;

}



/* === ANIMATED BACKGROUND === */

.bg-grid {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image:

        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),

        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);

    background-size: 60px 60px;

    z-index: 0;

    pointer-events: none;

}



.bg-glow {

    position: fixed;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.35;

    z-index: 0;

    pointer-events: none;

}



.bg-glow-1 {

    top: -200px;

    right: -100px;

    background: var(--neon-purple);

    animation: float1 15s ease-in-out infinite;

}



.bg-glow-2 {

    bottom: -200px;

    left: -100px;

    background: var(--neon-pink);

    animation: float2 18s ease-in-out infinite;

}



.bg-glow-3 {

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    background: var(--neon-cyan);

    opacity: 0.08;

    animation: float3 20s ease-in-out infinite;

}



@keyframes float1 {

    0%, 100% { transform: translate(0, 0); }

    50% { transform: translate(-80px, 80px); }

}



@keyframes float2 {

    0%, 100% { transform: translate(0, 0); }

    50% { transform: translate(80px, -60px); }

}



@keyframes float3 {

    0%, 100% { transform: translate(-50%, -50%) scale(1); }

    50% { transform: translate(-50%, -50%) scale(1.3); }

}



/* === NAVBAR === */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    padding: 20px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);

}



.logo {

    font-size: 1.1rem;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow: none;

}



.nav-links {

    display: flex;

    gap: 30px;

    list-style: none;

}



.nav-links a {

    color: var(--text-secondary);

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 500;

    transition: color 0.3s;

    letter-spacing: 1px;

    text-transform: uppercase;

}



.nav-links a:hover {

    color: var(--neon-purple);
}

.burger {
    display: none;

}



.nav-cta {

    padding: 10px 24px;

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

    border: none;

    border-radius: 8px;

    color: white;

    font-weight: 600;

    font-size: 0.9rem;

    cursor: pointer;

    transition: all 0.3s;

    text-decoration: none;

}



.nav-cta:hover {

    transform: translateY(-2px);

    box-shadow: var(--glow-purple);

}



/* === HERO === */

.hero {

    position: relative;

    z-index: 1;

    min-height: 70vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 120px 20px 80px;

}



.hero-content {

    max-width: 900px;

}



.hero-badge {

    display: inline-block;

    padding: 6px 18px;

    border: 1px solid var(--neon-purple);

    border-radius: 50px;

    color: var(--neon-purple);

    font-size: 0.8rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 30px;

    animation: pulse-border 3s ease-in-out infinite;

}



@keyframes pulse-border {

    0%, 100% { border-color: var(--neon-purple); box-shadow: none; }

    50% { border-color: var(--neon-pink); box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }

}



.hero h1 {

    font-size: 2.5rem;

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 24px;

    letter-spacing: -1px;

}



.hero h1 .gradient-text {

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-size: 200% 200%;

    animation: gradient-shift 5s ease infinite;

}



@keyframes gradient-shift {

    0%, 100% { background-position: 0% 50%; }

    50% { background-position: 100% 50%; }

}



.hero p {

    font-size: 1.05rem;

    color: var(--text-secondary);

    max-width: 600px;

    margin: 0 auto 40px;

    line-height: 1.8;

}



.hero-buttons {

    display: flex;

    gap: 16px;

    justify-content: center;

    flex-wrap: wrap;

}



.btn-primary {

    padding: 16px 40px;

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

    border: none;

    border-radius: 12px;

    color: white;

    font-size: 1.05rem;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s;

    text-decoration: none;

}



.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);

}



.btn-secondary {

    padding: 16px 40px;

    background: transparent;

    border: 1px solid var(--border);

    border-radius: 12px;

    color: var(--text-primary);

    font-size: 1.05rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s;

    text-decoration: none;

}



.btn-secondary:hover {

    border-color: var(--neon-purple);

    background: rgba(168, 85, 247, 0.05);

}



/* === SECTIONS === */

section {

    position: relative;

    z-index: 1;

    padding: 50px 40px;

}



.section-title {

    text-align: center;

    margin-bottom: 30px;

}



.section-title h2 {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 16px;

}



.section-title p {

    color: var(--text-secondary);

    font-size: 1.1rem;

    max-width: 500px;

    margin: 0 auto;

}



/* === FEATURES === */

.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 24px;

    max-width: 1200px;

    margin: 0 auto;

}



.feature-card {

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-top: 1px solid rgba(255, 255, 255, 0.25);

    border-left: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 16px;

    padding: 12px 18px;

    transition: all 0.4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);

}



.feature-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);

    opacity: 0;

    transition: opacity 0.4s;

}



.feature-card:hover {

    border-color: rgba(168, 85, 247, 0.3);

    transform: translateY(-4px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

}



.feature-card:hover::before {

    opacity: 1;

}



.feature-icon {

    width: 36px;

    height: 36px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.6rem;

    margin-bottom: 20px;

    background: rgba(168, 85, 247, 0.1);

    border: 1px solid rgba(168, 85, 247, 0.2);

}



.feature-icon.icon-gradient {

    background: rgba(168, 85, 247, 0.08);

    border: 1px solid rgba(168, 85, 247, 0.2);

    transition: all 0.3s;

}



.feature-card:hover .icon-gradient {

    background: rgba(168, 85, 247, 0.15);

    border-color: rgba(168, 85, 247, 0.4);

    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);

}



.feature-card h3 {

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 12px;

}



.feature-card p {

    color: var(--text-secondary);

    font-size: 0.88rem;

    line-height: 1.5;

}



/* === TOOLS SECTION === */

.tools-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    max-width: 1200px;

    margin: 0 auto;

}



.tool-card {

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-top: 1px solid rgba(255, 255, 255, 0.25);

    border-left: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 14px;

    padding: 28px;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    transition: all 0.3s;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);

}



.tool-card:hover {

    border-color: rgba(168, 85, 247, 0.3);

    transform: translateY(-2px);

}



.tool-icon {

    font-size: 2rem;

    flex-shrink: 0;

}



.tool-card h4 {

    font-size: 1.05rem;

    font-weight: 600;

    margin-bottom: 6px;

}



.tool-card p {

    color: var(--text-secondary);

    font-size: 0.85rem;

}



.tool-badge {

    display: inline-block;

    padding: 3px 10px;

    border-radius: 6px;

    font-size: 0.7rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-top: 8px;

}



.badge-live {

    background: rgba(34, 197, 94, 0.15);

    color: #22c55e;

    border: 1px solid rgba(34, 197, 94, 0.3);

}



.badge-soon {

    background: rgba(168, 85, 247, 0.15);

    color: var(--neon-purple);

    border: 1px solid rgba(168, 85, 247, 0.3);

}



/* === PRICING === */

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

    max-width: 1100px;

    margin: 0 auto;

}



.price-card {

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-top: 1px solid rgba(255, 255, 255, 0.25);

    border-left: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 16px;

    padding: 20px;

    text-align: center;

    transition: all 0.3s;

    position: relative;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);

}



.price-card.featured {

    border-color: var(--neon-purple);

    box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);

}



/* ::before removed — badge is now a div with data-en for translation */



.price-card h3 {

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 8px;

}



.price-amount {

    font-size: 3rem;

    font-weight: 900;

    margin: 16px 0;

}



.price-amount span {

    font-size: 1rem;

    font-weight: 400;

    color: var(--text-secondary);

}



.price-features {

    list-style: none;

    text-align: left;

    margin: 24px 0;

}



.price-features li {

    padding: 8px 0;

    color: var(--text-secondary);

    font-size: 0.9rem;

    display: flex;

    align-items: center;

    gap: 6px;

}



.price-features li::before {

    content: '✓';

    color: var(--neon-purple);

    font-weight: 700;

}



.price-btn {

    width: 100%;

    padding: 10px;

    border-radius: 10px;

    border: 1px solid var(--border);

    background: transparent;

    color: var(--text-primary);

    font-size: 0.95rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s;

}



.price-card.featured .price-btn {

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

    border: none;

}



.price-btn:hover {

    border-color: var(--neon-purple);

    transform: translateY(-2px);

}



/* === FOOTER === */

.footer {

    position: relative;

    z-index: 1;

    padding: 30px 40px 20px;

    border-top: 1px solid var(--border);

    text-align: center;

}



.footer-logo {

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 4px;

    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 16px;

}



.footer p {

    color: var(--text-muted);

    font-size: 0.85rem;

}



/* === RESPONSIVE === */

@media (max-width: 768px) {

    /* Убираем горизонтальный скролл */

    html, body {

        overflow-x: hidden;

        width: 100%;

    }



    /* Фоновые свечения — уменьшаем чтоб не вылезали */

    .bg-glow {

        width: 300px;

        height: 300px;

        filter: blur(80px);

        opacity: 0.2;

    }



    /* Navbar */

    .navbar {
        padding: 12px 16px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
        flex: 1;
    }



    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1000;
        padding: 8px;
    }

    .burger span {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: all 0.3s;
        border-radius: 2px;
    }

    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-close {
        position: absolute;
        top: 16px;
        right: 20px;
        font-size: 2rem;
        color: rgba(255,255,255,0.5);
        cursor: pointer;
        display: block;
    }



    .nav-cta {

        padding: 8px 16px;

        font-size: 0.8rem;

        border-radius: 6px;

    }



    /* Hero */

    .hero {

        min-height: auto;

        padding: 100px 16px 60px;

    }



    .hero-badge {

        font-size: 0.65rem;

        padding: 6px 14px;

        letter-spacing: 1px;

        margin-bottom: 20px;

    }



    .hero h1 {

        font-size: 2rem;

        margin-bottom: 16px;

    }



    .hero p {

        font-size: 0.9rem;

        line-height: 1.6;

        margin-bottom: 24px;

    }



    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

    }



    .btn-primary, .btn-secondary {

        padding: 14px 24px;

        font-size: 0.95rem;

        text-align: center;

        border-radius: 10px;

    }



    /* Секции */

    section {

        padding: 50px 16px;

    }



    .section-title {

        margin-bottom: 32px;

    }



    .section-title h2 {

        font-size: 1.6rem;

    }



    .section-title p {

        font-size: 0.9rem;

    }



    /* Карточки фичей */

    .features-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .feature-card {

        padding: 10px 16px;

        border-radius: 12px;

    }



    .feature-icon {

        width: 44px;

        height: 44px;

        font-size: 1.3rem;

        border-radius: 10px;

        margin-bottom: 14px;

    }



    .feature-card h3 {

        font-size: 1.1rem;

        margin-bottom: 8px;

    }



    .feature-card p {

        font-size: 0.85rem;

    }



    /* Инструменты */

    .tools-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }



    .tool-card {

        padding: 20px;

        border-radius: 12px;

        gap: 12px;

    }



    .tool-icon {

        font-size: 1.6rem;

    }



    .tool-card h4 {

        font-size: 0.95rem;

    }



    .tool-card p {

        font-size: 0.8rem;

    }



    /* Тарифы */

    .pricing-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .price-card {

        padding: 28px 24px;

        border-radius: 14px;

    }



    .price-card h3 {

        font-size: 1.1rem;

    }



    .price-amount {

        font-size: 2.2rem;

        margin: 12px 0;

    }



    .price-amount span {

        font-size: 0.85rem;

    }



    .price-features li {

        font-size: 0.85rem;

        padding: 6px 0;

    }



    .price-btn {

        padding: 12px;

        font-size: 0.9rem;

    }



    /* Footer */

    .footer {

        padding: 40px 16px 20px;

    }



    .footer-logo {

        font-size: 1.1rem;

    }



    .footer p {

        font-size: 0.75rem;

    }

}


/* === NEONYX ADDITIONS === */

.pricing-grid.pricing-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pricing-grid.pricing-grid-4 .price-card {
    min-width: 0 !important;
    padding: 20px 14px !important;
}

.price-features li.on { color: var(--text-primary); }
.price-features li.on::before { content: "\2713 "; color: #a855f7; font-weight: bold; margin-right: 4px; }
.price-features li.off { color: rgba(255,255,255,0.2); text-decoration: line-through; }
.price-features li.off::before { content: "\2717 "; color: rgba(255,255,255,0.15); margin-right: 4px; }

.price-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white; padding: 3px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 600; white-space: nowrap;
}
.price-card { position: relative; }

.pricing-grid-4 .price-card:nth-child(3) { border-color: rgba(168,85,247,0.4); box-shadow: 0 8px 32px rgba(168,85,247,0.15); }
.pricing-grid-4 .price-card:nth-child(3) h3 { background: linear-gradient(135deg, #a855f7, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-grid-4 .price-card:nth-child(3) .price-btn { background: linear-gradient(135deg, #a855f7, #06b6d4) !important; border: none !important; }

.pricing-grid-4 .price-card:nth-child(4) { border: 2px solid rgba(236,72,153,0.5); box-shadow: 0 8px 40px rgba(168,85,247,0.25); background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(236,72,153,0.08)); }
.pricing-grid-4 .price-card:nth-child(4) h3 { background: linear-gradient(135deg, #ec4899, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-grid-4 .price-card:nth-child(4) .price-amount { background: linear-gradient(135deg, #ec4899, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-grid-4 .price-card:nth-child(4) .price-btn { background: linear-gradient(135deg, #ec4899, #f59e0b) !important; border: none !important; }

.pricing-grid-4 .price-card:nth-child(1) .price-btn { background: transparent !important; border: 1px solid rgba(255,255,255,0.4) !important; color: #fff !important; }
.pricing-grid-4 .price-card .price-btn { border: 1px solid rgba(168,85,247,0.5) !important; color: #fff !important; }
.pricing-grid-4 .price-card.featured .price-btn { border: none !important; }

.nav-links a.active { color: var(--neon-purple); }
.tool-card-soon { opacity: 0.6; cursor: default; }

.cta-section { position: relative; z-index: 1; padding: 40px; text-align: center; }
.cta-content h2 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-content p { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.8rem; }

.features-grid .feature-card { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 14px; text-align: left; }
.features-grid .feature-card .feature-icon { flex-shrink: 0; }
.features-grid { max-width: 700px; margin: 0 auto; gap: 10px !important; grid-template-columns: 1fr !important; }

@media (max-width: 768px) {
    .pricing-grid.pricing-grid-4 { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .logo img { height: 18px; width: auto; vertical-align: middle; }
}
@media (max-width: 480px) {
    .pricing-grid.pricing-grid-4 { grid-template-columns: 1fr !important; }
}

/* === НОВЫЕ ЭФФЕКТЫ (не трогать выше) === */

/* Скрытый скроллбар */
::-webkit-scrollbar { width: 0; display: none; }
html { scrollbar-width: none; }

/* Стеклянный навбар iOS 26 */
.navbar { background: rgba(255,255,255,0.03) !important; backdrop-filter: blur(40px) saturate(1.5) !important; -webkit-backdrop-filter: blur(40px) saturate(1.5) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 20px rgba(0,0,0,0.3); }

/* Карточки — тонкие прозрачные как стекло */
.feature-card { background: rgba(255,255,255,0.02) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-top: 1px solid rgba(255,255,255,0.1) !important; box-shadow: none !important; }

/* Кнопка тарифы — фиолетовая обводка */
.btn-secondary { border-color: rgba(168,85,247,0.35) !important; }

/* Переход между страницами */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}
.page-transition.leaving {
    pointer-events: all;
    animation: pageFadeOut 0.35s ease forwards;
}
@keyframes pageFadeOut {
    0% { opacity: 0; backdrop-filter: blur(0); background: rgba(0,0,0,0); }
    100% { opacity: 1; backdrop-filter: blur(8px); background: rgba(0,0,0,0.85); }
}

/* Появление страницы */
body { animation: pageIn 0.4s ease; }
@keyframes pageIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Свечения — еле видные */
.bg-glow { opacity: 0.08 !important; }

/* Фон — главная чёрный космос, остальные чуть светлее */
body { background: #0d0d14 !important; }
body.page-home { background: #000000 !important; }

/* Все кнопки и ссылки навбара — плавные, подсветка, движение */
.nav-links a, .btn-primary, .btn-secondary, .feature-card, .tool-card, a[href] {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Навбар ссылки — подсветка и сдвиг */
.nav-links a:hover {
    color: #a855f7 !important;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
    transform: translateX(3px) scale(1.1);
}

/* Кнопка Инструменты — пульс при наведении */
.btn-primary:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4) !important;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Кнопка Тарифы — свечение */
.btn-secondary:hover {
    transform: translateY(-2px) scale(1.03) !important;
    border-color: rgba(168, 85, 247, 0.6) !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15) !important;
    color: #a855f7 !important;
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Карточки фич — качание и свечение */
.feature-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(168, 85, 247, 0.2) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(168, 85, 247, 0.08) !important;
}

/* Навбар кнопки входа */
.navbar a, .navbar button {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.navbar a:hover, .navbar button:hover {
    transform: translateY(-1px);
}

/* Footer ссылки — подсветка */
.footer a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.footer a:hover {
    color: rgba(168, 85, 247, 0.7) !important;
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Footer — прозрачный с линией, космический фон просвечивает */
.footer { background: transparent !important; z-index: 2 !important; border-top: 1px solid rgba(168,85,247,0.15) !important; padding: 30px 40px 40px !important; }

/* === МОБИЛЬНАЯ ВЕРСИЯ — ФИКСЫ (03-30) === */
@media (max-width: 768px) {
    /* Карточки — вертикально как на десктопе, но компактнее */
    .features-grid .feature-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 16px !important;
        gap: 10px !important;
    }

    .features-grid .feature-card .feature-icon {
        margin: 0 auto 8px !important;
    }

    .features-grid .feature-card h3 {
        font-size: 1.05rem !important;
    }

    .features-grid .feature-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: rgba(255,255,255,0.6) !important;
    }

    /* Плашка "откройте на компе" — внизу, не налезает */
    #mobileHint {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        font-size: 0.72rem !important;
        padding: 8px 12px !important;
        z-index: 99 !important;
    }

    /* Hero — чуть компактнее */
    .hero h1 .gradient-text {
        font-size: 1.2em !important;
    }

    /* CTA секция */
    .cta-section {
        padding: 30px 16px !important;
    }

    .cta-content h2 {
        font-size: 1.1rem !important;
    }

    /* Footer */
    .footer {
        padding: 24px 16px 30px !important;
    }

    .footer-logo {
        font-size: 1rem !important;
    }

    /* Кнопки hero — полная ширина */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Убираем hover-эффекты на мобилке (нет мыши) */
    .feature-card:hover {
        transform: none !important;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none !important;
    }

    /* Прелоадер — меньше на мобилке */
    .preloader-img {
        width: 80px !important;
    }

    .preloader-text {
        font-size: 1.4rem !important;
        letter-spacing: 5px !important;
    }

    /* Свечения — ещё тусклее на мобилке */
    .bg-glow {
        opacity: 0.04 !important;
    }
}

@media (max-width: 380px) {
    /* Совсем маленькие экраны */
    .hero h1 {
        font-size: 1.7rem !important;
    }

    .hero-badge {
        font-size: 0.6rem !important;
    }

    .navbar {
        padding: 10px 12px !important;
    }

    .logo {
        font-size: 1rem !important;
    }
}
