:root {
        --bg-color: #050505;
        --primary-start: #00f2ff;
        --primary-end: #00ff9d;
        --text-main: #ffffff;
        --text-muted: #8c8c8c;
        --border: rgba(255, 255, 255, 0.06);
        --font-main: 'Inter', sans-serif;
    }

    
    .anim-item {
        opacity: 0;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease, filter 1.2s ease;
        will-change: transform, opacity;
        filter: blur(10px);
    }
    .anim-tl { transform: translate(-100px, -100px); } 
    .anim-tr { transform: translate(100px, -100px); }  
    .anim-bl { transform: translate(-100px, 100px); }  
    .anim-br { transform: translate(100px, 100px); }   
    
    body.page-loaded .anim-item {
        opacity: 1;
        transform: translate(0, 0);
        filter: blur(0);
    }
    
    
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }

    
    
    
    html {
        height: auto;
        min-height: 100%;
        overflow-y: scroll; 
        scroll-behavior: auto; 
    }

    body {
        margin: 0; padding: 0;
        background-color: var(--bg-color);
        color: var(--text-main);
        font-family: var(--font-main);
        
        width: 100%;
        min-height: 100vh; 
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }

    
    html.lenis, html.lenis body {
        height: auto;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important; 
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden; 
    }

    
    #hero-canvas {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        z-index: 0; opacity: 0.6; pointer-events: none;
    }
    .grid-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
        background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
        pointer-events: none;
    }
    
    
    canvas, 
    .background-overlay, 
    #particles-js, 
    .preloader.done,
    .hero-glow,
    .ice-trail {
        pointer-events: none !important;
    }
    
    
    .btn, button, a, input, select, textarea {
        position: relative;
        z-index: 10;
        pointer-events: auto !important;
    }

    
    
    section, footer, .stats-section {
        position: relative; 
        z-index: 10;
        background: rgba(5, 5, 5, 0.6); 
        backdrop-filter: blur(20px);    
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    
    .hero {
        position: relative; 
        z-index: 10;
        min-height: 100vh; 
        display: flex; 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        text-align: center;
        
        
        padding-top: 0 !important;      
        padding-bottom: 15vh;           
    }

    
    .reveal {
        opacity: 1; 
        transform: translateY(0);
        transition: all 0.8s ease;
    }
    .reveal.active {
        opacity: 1; 
        transform: translateY(0);
    }

    
    .btn-story {
        position: relative;
        display: inline-flex; justify-content: center; align-items: center;
        padding: 18px 45px; border-radius: 100px;
        font-size: 16px; font-weight: 800;
        text-decoration: none; cursor: pointer; overflow: hidden;
        
        
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff; transition: 0.3s;
        
        
        margin-left: 20px;
        pointer-events: auto; 
    }
    .btn-story span { position: relative; z-index: 2; pointer-events: none; transition: color 0.3s; }
    
    
    .btn-story .circle-fill {
        position: absolute; width: 0; height: 0;
        background: #fff; border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
        z-index: 1; pointer-events: none;
    }
    .btn-story:hover { border-color: #fff; }
    .btn-story:hover span { color: #000; }
    
    
    @media (max-width: 700px) {
        .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
        .btn-story { margin-left: 0; }
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        position: relative;
        z-index: 2;
    }

    
    .btn-pulse-glow {
        position: relative;
        display: inline-flex; justify-content: center; align-items: center;
        padding: 18px 50px; border-radius: 100px;
        font-size: 16px; font-weight: 900;
        text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
        color: #000; border: none; cursor: pointer;
        z-index: 5;
        
        
        background: linear-gradient(90deg, #00f2ff, #00ff9d, #00f2ff);
        background-size: 200% auto;
        
        
        animation: shineText 3s linear infinite, pulseBtn 2s ease-in-out infinite alternate;
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
    }

    @keyframes pulseBtn {
        0% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 242, 255, 0.5); }
        100% { transform: scale(1.05); box-shadow: 0 0 60px rgba(0, 255, 157, 0.8); }
    }

    
    .hero {
        position: relative; 
        z-index: 10;
        min-height: 100vh; 
        display: flex; 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        text-align: center;
        
        
        padding-top: 0 !important;      
        padding-bottom: 15vh;           
    }

    
    .hero h1 {
        font-size: 5.5rem; 
        line-height: 1; margin-bottom: 30px; font-weight: 900; letter-spacing: -2px;
        position: relative; z-index: 2;
        text-transform: uppercase;
    }

    
    .gradient-text {
        
        background: linear-gradient(90deg, #00f2ff, #00ff9d, #00f2ff);
        background-size: 200% auto;
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shineText 3s linear infinite;
    }

    @keyframes shineText { to { background-position: 200% center; } }

    
    .hero-glow {
        position: absolute; top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 700px; height: 400px;
        
        background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
        z-index: 1; pointer-events: none;
        filter: blur(80px); 
    }

    
    nav {
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%;
        padding: 40px 50px; 
        
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        
        z-index: 100;
        pointer-events: auto;
        box-sizing: border-box;
    }

    
    
    .logo-container { pointer-events: auto; text-decoration: none; }
    .logo { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -1px; text-transform: uppercase; }

    
    .nav-center {
        pointer-events: auto;
        display: flex; gap: 30px;
        
        background: rgba(20, 20, 20, 0.6);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        padding: 12px 40px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        
        position: absolute;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .nav-center a { color: #ccc; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
    .nav-center a:hover { color: #fff; }
    
    
    .nav-coming-soon {
        position: relative; 
    }
    
    .nav-tooltip {
        position: absolute;
        bottom: 100%; 
        left: 50%;
        transform: translateX(-50%) translateY(-8px); 
        
        
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        
        
        z-index: 1000;
        
        
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        
        
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        
        
        margin-bottom: 8px;
    }
    
    
    .nav-tooltip::after {
        content: '';
        position: absolute;
        top: 100%; 
        left: 50%;
        transform: translateX(-50%);
        
        
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid rgba(0, 0, 0, 0.85);
    }
    
    
    .nav-coming-soon:hover .nav-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0); 
    }
    
    
    .nav-coming-soon:hover {
        cursor: not-allowed; 
    }

    
    .nav-right {
        pointer-events: auto;
        display: flex; gap: 15px; align-items: center;
    }

    
    
    
    
    
    .nav-mobile-right {
        display: none; 
        align-items: center;
        gap: 12px;
        
        
        pointer-events: auto !important; 
        position: relative;
        z-index: 14020; 
    }

    
    .mobile-btn {
        width: 42px; height: 42px;
        border-radius: 12px;
        
        
        
        background: rgba(0, 0, 0, 0.3); 
        
        
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        
        border: 1px solid rgba(255, 255, 255, 0.08);
        
        color: #fff;
        display: flex; align-items: center; justify-content: center;
        font-size: 18px;
        cursor: pointer;
        text-decoration: none;
        transition: 0.2s;
        
        
        pointer-events: auto; 
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 14021;
    }

    .mobile-btn:active { 
        transform: scale(0.92); 
        background: rgba(255, 255, 255, 0.1); 
    }

    
    .profile-btn-mob {
        
        background: rgba(0, 242, 255, 0.1);
        border-color: rgba(0, 242, 255, 0.2);
        color: var(--primary-start);
    }
    
    
    @media (max-width: 900px) {
        nav {
            padding: 20px 20px !important;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 14010;
            pointer-events: auto !important;
        }
        
        
        .desktop-nav { display: none !important; } 
        
        
        .nav-mobile-right { display: flex !important; }
        .nav-mobile-right,
        .nav-mobile-right * {
            pointer-events: auto !important;
        }
        
        
        .logo-container { 
            pointer-events: auto; 
            margin-right: auto;   
        }

        .hero-buttons,
        .hero-buttons a {
            pointer-events: auto !important;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        
        .hero,
        .hero .anim-item,
        .hero-buttons {
            position: relative;
            z-index: 12000;
        }

        .hero-buttons a,
        .btn-pulse-glow,
        .btn-story {
            position: relative;
            z-index: 12001;
            pointer-events: auto !important;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }

    
    .glass-btn-header {
        pointer-events: auto;
        padding: 10px 20px; 
        border-radius: 50px; 
        font-weight: 700; font-size: 13px;
        color: #fff; text-decoration: none;
        
        
        background: rgba(255, 255, 255, 0.05); 
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        
        display: flex; align-items: center; justify-content: center; gap: 8px;
        transition: 0.3s; cursor: pointer; 
    }
    .glass-btn-header:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--primary-start);
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    }

    
    .profile-btn-filled {
        pointer-events: auto;
        padding: 10px 25px; 
        border-radius: 50px;
        font-weight: 800;   
        font-size: 13px;
        text-decoration: none;
        
        
        background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
        color: #000; 
        border: none; 
        
        display: flex; align-items: center; justify-content: center; gap: 8px;
        transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        
        
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    }

    .profile-btn-filled:hover {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 242, 255, 0.7); 
        color: #000;
    }

    
    .container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
    
    
    .stats-section { display: flex; justify-content: center; gap: 60px; padding: 100px 0; margin-top: 50px; }
    .stat-number { font-size: 3.5rem; font-weight: 900; color: #fff; display: block; }
    .stat-label { color: var(--primary-end); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
    
    
    .stat-box { text-align: center; }
    
    
    .stat-number-wrapper {
        line-height: 1;
        margin-bottom: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stat-prefix {
        font-size: 14px;
        color: var(--primary-end);
        font-weight: 700;
        display: block;
        margin-bottom: -5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    
    
    .stat-number-with-prefix {
        position: relative;
        
    }
    
    
    .stat-prefix-sup {
        position: absolute;
        left: -1.5em; 
        top: 0.15em; 
        font-size: 0.324em; 
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.5); 
        line-height: 1;
        white-space: nowrap;
        pointer-events: none; 
    }
    
    
    body.lang-en .stat-prefix-sup {
        top: -0.58em; 
    }
    
    
    body.lang-ru .stat-prefix-sup {
        top: 0.108em; 
        left: -1.89em; 
    }
    
    
    body.lang-ua .stat-prefix-sup {
        top: 0.108em; 
        left: -1.89em; 
    }
    
    
    .stat-digit-inline {
        display: inline;
        
    }

    .tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; max-width: 1200px; margin: 0 auto; padding: 100px 20px; }
    .price-card {
        background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); padding: 30px; border-radius: 20px;
    }
    
    
    @media (max-width: 900px) {
        .hero h1 { font-size: 3rem; }
        .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    }


        
        .btn-glow {
            background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
            color: #000;
            box-shadow: 0 0 40px rgba(0, 255, 157, 0.3);
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 0 70px rgba(0, 255, 157, 0.6);
        }


        
        .stats-section {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 100px 0;
        }

        .stat-box { text-align: center; }
        .stat-number { font-size: 3.5rem; font-weight: 900; color: #fff; display: block; margin-bottom: 10px; }
        .stat-label { color: var(--primary-end); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

        
        
        
        .tech-section {
            background: transparent !important; 
            padding: 220px 0; 
            min-height: 900px;
            display: flex;
            align-items: center;
            position: relative; 
            z-index: 10; 
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            --why-offset-x: 0px;
            --why-cards-offset-x: 0px;
            --why-scale: 1;
            --why-cards-scale: 1;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: minmax(520px, 680px) minmax(420px, 560px);
            gap: clamp(48px, 6vw, 130px);
            align-items: stretch;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 0 24px;
            position: relative;
            z-index: 2;
            justify-content: center;
        }

        .tech-text {
            position: relative;
            margin-left: 0;
            padding: 34px 34px 24px;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(145deg, rgba(8, 16, 24, 0.36) 0%, rgba(8, 16, 24, 0.14) 100%);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
            height: calc(100% - 88px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 700px;
            justify-self: center;
        }

        
        .tech-text.reveal {
            transform: translate(var(--why-offset-x), 30px) scale(var(--why-scale));
            transform-origin: left center;
        }

        .tech-text.reveal.active {
            transform: translate(var(--why-offset-x), 0) scale(var(--why-scale));
        }

        .tech-grid > .reveal:last-child {
            width: min(540px, 100%);
            justify-self: center;
            transform: translate(var(--why-cards-offset-x), 30px) scale(var(--why-cards-scale));
            transform-origin: right center;
        }

        .tech-grid > .reveal:last-child.active {
            transform: translate(var(--why-cards-offset-x), 0) scale(var(--why-cards-scale));
        }

        .tech-text::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(circle at 12% 18%, rgba(0, 242, 255, 0.12) 0%, transparent 48%);
            pointer-events: none;
            opacity: 0.35;
        }

        .tech-text > * {
            position: relative;
            z-index: 1;
        }

        .tech-text h2 { font-size: 3rem; margin-bottom: 25px; }
        .tech-text p { 
            color: #eee; 
            line-height: 1.8; 
            font-size: 1.1rem; 
            margin-bottom: 20px; 
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        .tech-text > div {
            margin-top: 20px;
            display: grid;
            gap: 10px;
        }

        .tech-text div p {
            color: #fff;
            margin-bottom: 0;
            font-weight: 500;
            text-shadow: 0 1px 5px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.012);
            border: 1px solid rgba(255, 255, 255, 0.035);
        }
        .tech-card, .feature-card {
            background: linear-gradient(145deg, rgba(8, 16, 24, 0.24) 0%, rgba(8, 16, 24, 0.12) 100%) !important;
            backdrop-filter: blur(4px) !important;
            -webkit-backdrop-filter: blur(4px) !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.09) !important; 
            
            padding: 30px; 
            border-radius: 24px; 
            margin-bottom: 20px; 
            
            
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            
            position: relative;
            overflow: hidden;
            
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
        }

        
        .tech-card:hover, .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 242, 255, 0.18) !important;
            border-top-color: rgba(0, 242, 255, 0.26) !important;
            background: linear-gradient(145deg, rgba(8, 16, 24, 0.28) 0%, rgba(8, 16, 24, 0.14) 100%) !important;
            box-shadow: 0 12px 30px rgba(0, 242, 255, 0.08) !important;
        }

        
        .feature-icon i, .tech-card i { 
            font-size: 32px; 
            color: var(--primary-start); 
            margin-bottom: 15px; 
            display: block;
            
            filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
        }
        .feature-card h3, .tech-card h3 { 
            color: #fff; 
            font-size: 1.4rem; 
            font-weight: 700; 
            margin-bottom: 10px; 
        }
        .feature-card p, .tech-card p { 
            color: #b7bdc4; 
            margin: 0; 
            line-height: 1.6;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
        }

        
        .pricing-section { padding: 100px 20px; margin-bottom: 50px; }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header h2 { font-size: 3.5rem; }

        .pricing-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); 
            gap: 60px; 
            margin-bottom: 120px; perspective: 1000px;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1); 
            border-radius: 25px;
            padding: 40px 30px; 
            display: flex; flex-direction: column; justify-content: space-between;
            min-height: 500px; 
            
            
            transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
            
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .price-card:hover { 
            border-color: var(--primary-start); 
            box-shadow: 0 0 60px rgba(0, 242, 255, 0.2); 
            background: rgba(255, 255, 255, 0.06);
            z-index: 10;
        }

        
        
        .card-featured {
            
            
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.25) 0%, rgba(0, 255, 157, 0.1) 100%);
            
            border: 2px solid var(--primary-start);
            min-height: 550px;
            
            
            box-shadow: 0 0 50px rgba(0, 242, 255, 0.15);
        }
        
        .card-featured:hover {
            
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.35) 0%, rgba(0, 255, 157, 0.15) 100%);
            
            box-shadow: 
                0 20px 70px rgba(0, 242, 255, 0.4), 
                0 0 30px var(--primary-start);
            border-color: #fff;
        }

        .plan-name { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
        .plan-price { font-size: 2.5rem; font-weight: 800; color: #fff; margin: 20px 0; }
        .old-price { font-size: 1.2rem; text-decoration: line-through; color: #555; margin-right: 10px; font-weight: 400; }
        
        .features-list { list-style: none; padding: 0; margin-bottom: 30px; }
        .features-list li { margin-bottom: 12px; color: #ccc; font-size: 1rem; display: flex; align-items: center; gap: 12px; }
        .features-list i { color: var(--primary-end); }

        button.btn-card, .btn-card {
            width: 100%;
            padding: 18px;
            border-radius: 15px;
            font-weight: 800;
            border: 1px solid var(--border);
            background: transparent;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
            font-family: inherit;
            font-size: inherit;
        }
        .btn-card:hover { background: #fff; color: #000; }
        
        button.btn-card-glow, .btn-card-glow {
            width: 100%;
            padding: 18px;
            border-radius: 15px;
            font-weight: 800;
            border: none;
            background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
            color: #000;
            cursor: pointer;
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.3);
            font-family: inherit;
            font-size: inherit;
        }

        
        .trial-banner {
            max-width: 1200px;
            margin: 80px auto 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(0,242,255,0.05));
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
        }
        .trial-banner:hover { border-color: var(--primary-start); }
        
        .trial-info h3 { margin: 0; font-size: 1.8rem; margin-bottom: 10px; }
        .trial-info p { margin: 0; color: var(--text-muted); }
        .trial-btn {
            border: 1px solid var(--primary-start);
            color: var(--primary-start);
            background: transparent;
            padding: 15px 40px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
        }
        .trial-btn:hover { background: var(--primary-start); color: #000; }

        
        .reveal { opacity: 0; transform: translateY(50px); transition: 0.8s; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        
        @media (max-width: 900px) {
            .pricing-grid { grid-template-columns: 1fr; gap: 50px; }
            .card-featured { transform: scale(1); }
            .tech-grid { grid-template-columns: 1fr; }
            .tech-section { --why-offset-x: 0px; --why-cards-offset-x: 0px; --why-scale: 1; --why-cards-scale: 1; }
            .tech-text { margin-left: 0; padding: 24px 20px; border-radius: 18px; height: auto; }
            .tech-text.reveal { transform: translateY(30px); }
            .tech-text.reveal.active { transform: translateY(0); }
            .tech-grid > .reveal:last-child { width: 100%; transform: translateY(30px); }
            .tech-grid > .reveal:last-child.active { transform: translateY(0); }
            .hero h1 { font-size: 3rem; }
            .trial-banner { flex-direction: column; text-align: center; gap: 20px; }
        }

        
        .preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #000; z-index: 9999;
            display: flex; justify-content: center; align-items: center;
            transition: opacity 0.6s ease, visibility 0.6s, transform 0.6s ease;
        }
        
        .preloader.done { 
            opacity: 0; 
            visibility: hidden; 
            pointer-events: none; 
            transform: translateY(-50px);
        }

        .preloader-box {
            display: flex; justify-content: center; align-items: center;
            width: 70px; height: 70px;
            
            border: 2.5px solid var(--primary-start); 
            border-radius: 16px; 
            
            
            background: transparent; 
            box-shadow: none; 
        }

        .preloader-box span {
            color: var(--primary-start); 
            font-weight: 400;
            font-size: 2.5rem;
            line-height: 1;
            font-family: 'Inter', sans-serif;
        }
        
        .preloader-box span::after {
            content: 'P';
            animation: letterCycle 1.5s steps(1) forwards;
        }

        @keyframes letterCycle {
            0% { content: 'P'; }
            35% { content: 'U'; }
            52% { content: 'L'; }
            69% { content: 'Z'; }
            85% { content: 'E'; }
            100% { content: 'E'; }
        }

        
        .features-section {
            padding: 80px 0;
            
            background: rgba(17, 17, 17, 0.95); 
             
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            
            will-change: transform, opacity; 
        }
        .features-section h2 { 
            text-align: center; 
            margin-bottom: 10px;
            font-size: 2.5rem;
        }
        .features-section p {
            text-align: center; 
            color: var(--text-muted); 
            font-size: 16px;
            margin-bottom: 40px;
        }
        .features-table {
            width: 100%; border-collapse: collapse; margin-top: 30px;
            background: rgba(17, 17, 17, 0.8); 
            border-radius: 15px;
            overflow: hidden; 
        }
        .features-table th, .features-table td {
            padding: 15px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); text-align: center;
            font-size: 14px;
        }
        .features-table th {
            color: var(--primary-start); font-weight: 700; text-transform: uppercase;
            border-bottom: 2px solid var(--primary-start);
            white-space: nowrap;
        }
        .feature-name { text-align: left !important; color: #fff; font-weight: 500; }
        .feature-icon-yes { color: var(--primary-end); font-size: 1.2em; }
        .feature-icon-no { color: #ff4444; opacity: 0.5; font-size: 1.2em; }

        
        .btn-features-link {
            display: block; text-align: center; font-size: 12px;
            color: var(--text-muted); text-decoration: none; margin-top: 10px;
            transition: 0.2s; padding: 5px 0;
        }
        .btn-features-link:hover { color: var(--primary-start); text-decoration: underline; }
        
        .btn-features-link-featured {
            display: block; text-align: center; font-size: 12px;
            color: #fff; text-decoration: none; margin-top: 10px; opacity: 0.8;
            transition: 0.2s; padding: 5px 0;
        }
        .btn-features-link-featured:hover { opacity: 1; text-decoration: underline; }

        
        .footer {
            padding: 40px 0 20px 0;
            border-top: 1px solid var(--border);
            background: #0d0d0d;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-links a, .footer-social a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 0 15px;
            font-size: 14px;
        }
        .footer-links a:hover, .footer-social a:hover {
            color: var(--primary-end);
        }
        .footer-social {
            margin-top: 25px;
            margin-bottom: 30px;
        }
        .footer-partners {
            margin: 0 auto 16px auto;
            display: flex;
            justify-content: center;
        }
        .footer-partner-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 10px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.03);
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }
        .footer-partner-link:hover {
            border-color: rgba(0, 242, 255, 0.35);
            background: rgba(0, 242, 255, 0.08);
            transform: translateY(-1px);
        }
        .footer-partner-logo {
            display: block;
            height: 28px;
            width: auto;
            max-width: min(260px, 70vw);
            object-fit: contain;
        }
        .footer-social i {
            font-size: 24px;
        }
        .footer-social a {
            margin: 0 12px;
            position: relative; 
        }
        
        
        .social-coming-soon {
            position: relative; 
        }
        
        .social-tooltip {
            position: absolute;
            bottom: 100%; 
            left: 50%;
            transform: translateX(-50%) translateY(-8px); 
            
            
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            
            
            z-index: 1000;
            
            
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            
            
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            
            
            margin-bottom: 8px;
        }
        
        
        .social-tooltip::after {
            content: '';
            position: absolute;
            top: 100%; 
            left: 50%;
            transform: translateX(-50%);
            
            
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid rgba(0, 0, 0, 0.85);
        }
        
        
        .social-coming-soon:hover .social-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0); 
        }
        
        
        .social-coming-soon:hover {
            cursor: not-allowed; 
        }
        .footer-copy {
            margin-top: 20px;
            font-size: 12px;
            color: #555;
        }
        .footer-legal {
            margin-top: 8px;
            font-size: 12px;
            color: #666;
        }
        .footer-legal a {
            color: #8d8d8d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-legal a:hover {
            color: var(--primary-end);
            text-decoration: underline;
        }

        
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            
            
            background: rgba(0, 0, 0, 0.85);
            
            
            
            
            z-index: 9999;
            display: flex; justify-content: center; align-items: center;
            
            
            opacity: 0; 
            visibility: hidden; 
            pointer-events: none;
            
            transition: 0.3s ease;
        }

        
        .modal-overlay.active { 
            opacity: 1; 
            visibility: visible; 
            pointer-events: all; 
        }

        .modal-box {
            
            background: rgba(20, 20, 20, 0.65);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            
            
            width: 90%; max-width: 550px;
            border-radius: 20px;
            display: flex; flex-direction: column;
            
            
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: height, transform;
            overflow: hidden; 
        }

        .modal-overlay.active .modal-box { transform: scale(1); }

        
        .modal-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 25px; 
            
            
            background: rgba(255, 255, 255, 0.03); 
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .modal-header h3 { margin: 0; font-size: 18px; color: #fff; font-weight: 700; }
        .modal-close {
            background: none; border: none; color: #666; font-size: 28px; cursor: pointer; transition: 0.2s;
        }
        .modal-close:hover { color: #fff; transform: rotate(90deg); }

        .payment-tabs {
            display: flex; background: rgba(0,0,0,0.3); padding: 5px; margin: 20px 25px 5px;
            border-radius: 12px; gap: 5px;
        }
        .tab-btn {
            flex: 1; background: transparent; border: none; color: #888; padding: 12px;
            cursor: pointer; border-radius: 8px; font-weight: 600; font-size: 13px; transition: 0.3s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .tab-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
        .tab-btn.active { background: var(--primary-start); color: #000; box-shadow: 0 0 15px rgba(0, 242, 255, 0.3); }

        .modal-body { padding: 20px 25px 30px; }
        .payment-content { display: none; animation: fadeIn 0.3s; }
        .payment-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        .pay-desc { color: #888; font-size: 13px; margin-bottom: 20px; text-align: center; }

        .pay-method-btn {
            display: flex; align-items: center; text-decoration: none;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
            padding: 15px; border-radius: 12px; margin-bottom: 12px; transition: 0.2s;
        }
        .pay-method-btn:hover {
            background: rgba(255,255,255,0.07); border-color: var(--primary-start);
            transform: translateX(5px);
        }
        .pm-icon { width: 40px; font-size: 24px; display: flex; justify-content: center; margin-right: 15px; color: #fff; }
        .pm-icon img { width: 100%; border-radius: 4px; }
        .pm-info { flex: 1; display: flex; flex-direction: column; }
        .pm-name { color: #fff; font-weight: 700; font-size: 14px; }
        .pm-sub { color: #666; font-size: 11px; margin-top: 3px; }
        .pay-method-btn i.fa-chevron-right { color: #333; transition: 0.3s; }
        .pay-method-btn:hover i.fa-chevron-right { color: var(--primary-start); transform: translateX(3px); }

        .divider {
            display: flex; align-items: center; text-align: center; 
            margin: 20px 0; color: #444; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
        }
        .divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #222; }
        .divider span { padding: 0 10px; }

        
        .crypto-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px;
            margin-top: 15px;
        }

        .crypto-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 12px;
            color: #ccc;
            cursor: pointer;
            transition: 0.2s;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            width: 100%; 
        }

        .crypto-item:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--primary-start);
            color: #fff;
            transform: translateY(-2px);
        }

        .crypto-item i {
            width: 20px;
            text-align: center;
            font-size: 16px;
        }

        
        .crypto-item img {
            width: 24px;
            height: 24px;
            object-fit: contain; 
            filter: drop-shadow(0 0 5px rgba(255,255,255,0.1)); 
        }

        
        .crypto-item i {
            display: none; 
        }

        
        @media (max-width: 400px) {
            .crypto-grid { grid-template-columns: 1fr; }
        }

        
        .support-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            
            
            background: rgba(20, 20, 20, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 242, 255, 0.3); 
            
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            z-index: 1000001; 
            
            
            color: var(--primary-start);
            font-size: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 242, 255, 0.2);
            transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        
        .support-btn:hover {
            transform: scale(1.1) translateY(-5px);
            background: rgba(0, 242, 255, 0.2); 
            color: #fff;
            border-color: #fff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 50px rgba(0, 242, 255, 0.6);
        }

        
        .support-tooltip {
            position: absolute;
            right: 75px; 
            background: rgba(0,0,0,0.8);
            color: #fff;
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: 0.3s;
            pointer-events: none;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .support-btn:hover .support-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        
        @media (max-width: 900px) {
            .support-btn {
                width: 50px; height: 50px;
                bottom: 20px; right: 20px;
                font-size: 20px;
                touch-action: manipulation;
                -webkit-tap-highlight-color: transparent;
            }
            .support-tooltip { display: none; } 
        }

        
        .support-menu {
            position: fixed;
            bottom: 100px; 
            right: 30px;
            
            
            background: rgba(20, 20, 20, 0.6);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            
            border-radius: 16px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            
            
            opacity: 0; 
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1000001;
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
        }

        
        .support-menu.active {
            opacity: 1; 
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        
        .sup-opt {
            display: flex; align-items: center; gap: 12px;
            color: #fff; text-decoration: none;
            padding: 12px 20px;
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            transition: 0.2s;
            font-size: 14px; font-weight: 700;
            min-width: 140px;
        }

        .sup-opt:hover {
            background: var(--primary-start);
            color: #000;
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
        }

        .sup-opt i { font-size: 18px; }

        
        @media (max-width: 900px) {
            .support-menu { right: 20px; bottom: 80px; }
        }

        
        body.cookie-banner-visible .support-btn {
            bottom: 120px;
        }
        body.cookie-banner-visible .support-menu {
            bottom: 190px;
        }

        
        
        .mobile-header-controls {
            display: none; 
            align-items: center;
            gap: 12px; 
        }

        
        .mob-auth-btn.login-btn {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            transition: 0.3s;
        }
        .mob-auth-btn.login-btn:hover {
            background: var(--primary-start); color: #000; border-color: var(--primary-start);
        }

        
        .mob-auth-btn.profile-btn {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
            color: #000;
            display: flex; justify-content: center; align-items: center;
            font-size: 16px;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
        }

        .burger-btn {
            display: none; font-size: 26px; color: #fff; cursor: pointer;
        }

        
    .mobile-nav-overlay {
            position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
            background: rgba(0, 0, 0, 0.4); 
            backdrop-filter: blur(4px);      
            z-index: 13000;
            transition: opacity 0.35s ease, visibility 0.35s ease;
            display: none;
            justify-content: flex-end;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .mobile-nav-overlay.active {
            display: flex;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        
        
        .mobile-nav-content {
            width: 85%; max-width: 320px; height: 100%;
            
            
            background: rgba(20, 20, 20, 0.3); 
            
            
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            
            display: flex; flex-direction: column;
            padding: 30px;
            padding-bottom: calc(20px + env(safe-area-inset-bottom));
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .mobile-nav-overlay.active .mobile-nav-content { transform: translateX(0); }

        .menu-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 15px;
        }
        .menu-title { font-size: 18px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
        .close-menu-btn { background: none; border: none; color: #666; font-size: 30px; cursor: pointer; }

        .mobile-links-list { display: flex; flex-direction: column; gap: 20px; }
        .mobile-links-list a {
            font-size: 18px; font-weight: 600; color: #ccc; text-decoration: none;
            transition: 0.2s; padding-left: 10px; border-left: 2px solid transparent;
        }
        .mobile-links-list a:hover { color: #fff; border-left-color: var(--primary-start); padding-left: 15px; }

        
        .mobile-lang-switcher {
            margin-top: 20px;
            margin-bottom: max(6px, env(safe-area-inset-bottom));
            flex-shrink: 0;
        }
        .lang-label { display: block; color: #666; font-size: 12px; margin-bottom: 10px; text-transform: uppercase; }

        
        .lang-toggle-box {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr; 
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 4px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .lang-opt {
            background: transparent; border: none; color: #888;
            padding: 10px; font-weight: 700; font-size: 13px;
            cursor: pointer; z-index: 2; transition: 0.3s;
            text-align: center;
        }
        .lang-opt.active { color: #000; }

        
        .lang-bg {
            position: absolute; top: 4px; left: 4px;
            width: calc(50% - 6px); 
            height: calc(100% - 8px);
            background: var(--primary-start);
            border-radius: 8px;
            transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1;
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
        }

        
        @media (max-width: 900px) {
            nav { padding: 20px !important; }
            .desktop-nav { display: none !important; }
            .mobile-header-controls { display: flex !important; }
            .burger-btn { display: block !important; }
        }

        @media (max-width: 900px) and (max-height: 760px) {
            .mobile-nav-content {
                padding-top: 22px;
                padding-bottom: calc(16px + env(safe-area-inset-bottom));
            }
            .menu-header {
                margin-bottom: 20px;
                padding-bottom: 10px;
            }
            .mobile-links-list {
                gap: 12px;
            }
            .mobile-links-list a {
                font-size: 16px;
            }
            .mobile-lang-switcher {
                margin-top: 14px;
            }
        }

        
        .process-section {
            padding: 100px 20px;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1100px;
            margin: 60px auto 0;
            position: relative;
            
            isolation: isolate; 
        }

        
        .process-line {
            position: absolute;
            top: 40px; 
            left: 50px;
            right: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            
            z-index: -1; 
        }

        .process-line-fill {
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
            
            box-shadow: 0 0 25px var(--primary-start); 
            border-radius: 4px;
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        
        .process-line-fill::after {
            content: ''; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
            width: 20px; height: 20px; background: #fff; border-radius: 50%;
            box-shadow: 0 0 20px #fff, 0 0 40px var(--primary-start);
            opacity: 0; transition: opacity 0.3s;
        }
        .active .process-line-fill::after { opacity: 1; }
        .active.finished .process-line-fill::after { opacity: 0; transition-delay: 0.3s; }

        
        .step-item {
            position: relative;
            z-index: 2; 
            text-align: center;
            width: 220px;
            opacity: 0; transform: scale(0.8) translateY(20px);
            transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .step-item.step-active { opacity: 1; transform: scale(1) translateY(0); }
        
        
        .step-icon-box {
            width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 20px;
            
            
            background: rgba(20, 20, 20, 0.15) !important; 
            
            
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            
            
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            
            display: flex; justify-content: center; align-items: center;
            font-size: 28px; color: #666; transition: 0.4s;
            
            
            position: relative;
            z-index: 2; 
        }

        
        .step-item.step-active .step-icon-box {
            border-color: var(--primary-start);
            color: #fff;
            
            background: rgba(0, 242, 255, 0.05) !important; 
            box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
        }

        
        .step-num {
            position: absolute; top: -10px; right: -10px; width: 24px; height: 24px;
            background: #111; border: 1px solid #444; border-radius: 50%;
            font-size: 12px; font-weight: 700;
            display: flex; justify-content: center; align-items: center;
            color: #888; transition: 0.4s; z-index: 12;
        }
        .step-item.step-active .step-num { border-color: var(--primary-end); color: var(--primary-end); background: rgba(0, 255, 157, 0.1); }

        .step-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; color: #fff; }
        .step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

        @media (max-width: 1000px) {
            .process-steps { flex-direction: column; align-items: center; gap: 40px; }
            .process-line { width: 4px; height: 100%; left: 50%; top: 0; right: auto; transform: translateX(-50%); }
            .process-line-fill { width: 100%; height: 0%; top: 0; left: 0; transition: height 1.5s ease; }
            .process-line-fill::after { top: 100%; left: 50%; right: auto; transform: translate(-50%, -50%); }
            .step-item { width: 100%; max-width: 300px; }
        }

        
        .features-grid-section {
            padding: 60px 20px 120px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px;
        }

        .feat-tile {
            
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            
            padding: 25px 20px;
            border-radius: 16px;
            transition: 0.3s;
            display: flex; flex-direction: column; gap: 15px;
        }

        
        .feat-tile:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--primary-start);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
        }

        .feat-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            display: flex; justify-content: center; align-items: center;
            font-size: 18px; color: var(--primary-start);
            transition: 0.3s;
        }

        .feat-tile:hover .feat-icon {
            background: var(--primary-start);
            color: #000;
        }

        .feat-tile h4 { margin: 0; font-size: 15px; font-weight: 700; color: #fff; }
        .feat-tile p { margin: 0; font-size: 12px; color: #888; line-height: 1.5; }

        
        .feat-tile.large {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,242,255,0.05));
        }

        
        @media (max-width: 1000px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { flex-direction: column; align-items: center; gap: 40px; }
            .process-line { width: 4px; height: 100%; left: 50%; top: 0; right: auto; transform: translateX(-50%); }
            .process-line-fill { width: 100%; height: 0%; top: 0; left: 0; transition: height 1.5s ease; }
            .process-line-fill::after { top: 100%; left: 50%; right: auto; transform: translate(-50%, -50%); }
            .step-item { width: 100%; max-width: 300px; }
        }
        @media (max-width: 600px) {
            .features-grid { grid-template-columns: 1fr; }
            .feat-tile.large { grid-column: span 1; }
        }

        
        .feat-highlight {
            
            background: linear-gradient(120deg, 
                rgba(255, 255, 255, 0.03) 0%, 
                rgba(0, 242, 255, 0.08) 50%,  
                rgba(0, 255, 157, 0.05) 100%  
            ) !important;
            
            background-size: 200% 200%;
            animation: featGlow 6s ease infinite; 
            
            
            border: 1px solid rgba(0, 242, 255, 0.15) !important;
        }

        
        .feat-highlight:hover {
            background: linear-gradient(120deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                rgba(0, 242, 255, 0.15) 50%, 
                rgba(0, 255, 157, 0.1) 100%
            ) !important;
            background-size: 200% 200%;
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
        }

        @keyframes featGlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        
        .giant-brand-wrapper {
            display: flex; 
            justify-content: center; 
            align-items: center; 
            width: 100%;
            overflow: hidden; 
            padding: 100px 0;
            
            background: rgba(5, 5, 5, 0.75); 
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative; z-index: 10;
            user-select: none; cursor: default;
            pointer-events: none;
            
            
            gap: 2vw; 
        }

        .g-letter {
            font-size: 18vw; 
            font-weight: 900;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            
            will-change: font-family, transform, color, text-shadow;
            transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
            
            
            width: 14vw;       
            min-width: 14vw;   
            
            height: 18vw;      
            line-height: 1;    
            overflow: hidden;  
            
            display: flex;     
            justify-content: center;
            align-items: center;
        }

        .g-letter.pixel-scan-active {
            color: #fff;
            transform: translateY(-2px) scale(1.03);
            text-shadow: 0 0 18px rgba(255, 255, 255, 0.22), 0 12px 32px rgba(0, 0, 0, 0.45);
        }

        
        .back-to-top-btn {
            position: fixed; 
            bottom: 30px;    
            right: 30px;     
            width: 50px;
            height: 50px;
            background: var(--primary-start); 
            color: #000;
            border: none;
            border-radius: 50%; 
            font-size: 24px;
            cursor: pointer;
            opacity: 0;        
            visibility: hidden; 
            transition: all 0.3s ease; 
            z-index: 9999; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        
        .back-to-top-btn.visible {
            opacity: 1;
            visibility: visible;
            bottom: 30px; 
        }

        
        .back-to-top-btn:hover {
            background: #fff;
            transform: translateY(-5px);
        }

    
    .auth-modal-box {
        background: rgba(20, 20, 20, 0.4);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        
        width: 420px; max-width: 90%;
        border-radius: 24px;
        
        box-sizing: border-box; 
        padding: 40px;
        
        position: relative;
        box-shadow: 0 30px 80px rgba(0,0,0,0.5);
        
        
        transform: scale(0.95); opacity: 0;
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
        
        display: flex; flex-direction: column; gap: 20px;
        
    }
    
    .modal-overlay.active .auth-modal-box { transform: scale(1); opacity: 1; }

    .auth-header { text-align: center; margin-bottom: 10px; }
    .auth-header h2 { font-size: 2rem; margin: 0; font-weight: 800; color: #fff; }
    .auth-header p { color: #888; font-size: 14px; margin-top: 5px; }

    
    .auth-toggle {
        display: flex; background: rgba(255,255,255,0.05);
        padding: 4px; border-radius: 12px; margin-bottom: 10px;
    }
    .auth-tab {
        flex: 1; padding: 10px; text-align: center; cursor: pointer;
        border-radius: 10px; font-weight: 700; font-size: 13px; color: #888;
        transition: 0.3s;
    }
    .auth-tab.active { background: var(--primary-start); color: #000; box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3); }

    
    .input-group { position: relative; }
    
    .auth-input {
        width: 100%; padding: 14px 15px 14px 45px;
        
        
        
        background: rgba(0, 0, 0, 0.5); 
        
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px; color: #fff; font-family: inherit; font-size: 14px;
        outline: none; transition: 0.3s; box-sizing: border-box;
    }
    .auth-input:focus { border-color: var(--primary-start); background: rgba(0,0,0,0.5); }
    .input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666; font-size: 16px; }

    .auth-btn {
        width: 100%; padding: 15px; border-radius: 12px; font-weight: 800; font-size: 15px;
        border: none; background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
        color: #000; cursor: pointer; transition: 0.3s; margin-top: 10px;
    }
    .auth-btn:hover { box-shadow: 0 0 30px rgba(0, 255, 157, 0.4); transform: scale(1.02); }

    .auth-error {
        background: rgba(255, 68, 68, 0.1); color: #ff4444; border: 1px solid rgba(255, 68, 68, 0.2);
        padding: 10px; border-radius: 8px; font-size: 12px; text-align: center; display: none;
    }
    
    
    .btn-google {
        width: 100%;
        display: flex; align-items: center; justify-content: center; gap: 12px;
        background: #fff; color: #333;
        font-weight: 700; font-size: 14px;
        padding: 12px; border-radius: 12px;
        text-decoration: none; border: none; cursor: pointer;
        transition: 0.2s; margin-top: 0;
    }
    .btn-google:hover { background: #f1f1f1; transform: scale(1.02); }
    
    .btn-google i { font-size: 18px; color: #DB4437; }

    
    .forgot-link {
        display: block; text-align: right;
        color: #888; font-size: 12px; margin-top: 8px;
        text-decoration: none; cursor: pointer; transition: 0.2s;
    }
    .forgot-link:hover { color: var(--primary-start); }

    
    .auth-divider {
        display: flex; align-items: center; text-align: center;
        margin: 20px 0; color: #555; font-size: 11px; text-transform: uppercase;
    }
    .auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .auth-divider span { padding: 0 10px; }
    
    
    .auth-forms-container {
        position: relative;
        
        
        
        height: 420px; 
        
        overflow: hidden; 
    }

    .auth-form {
        
        position: absolute;
        top: 0; left: 0; width: 100%;
        
        
        opacity: 0;
        
        transform: translateY(20px);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .auth-form.active {
        
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    
    .legal-text-area {
        height: 400px; 
        overflow-y: auto; 
        
        
        overscroll-behavior: contain; 
        
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px;
        
        color: #ccc;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    
    .legal-text-area::-webkit-scrollbar { width: 6px; }
    .legal-text-area::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
    .legal-text-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
    .legal-text-area::-webkit-scrollbar-thumb:hover { background: var(--primary-start); }

    .legal-text-area h2 { color: #fff; margin-top: 0; margin-bottom: 15px; font-size: 1.5em; }
    .legal-text-area h3 { color: #fff; margin-top: 20px; margin-bottom: 10px; font-size: 1.2em; }
    .legal-text-area h4 { color: #fff; margin-top: 15px; margin-bottom: 8px; font-size: 1.1em; }
    .legal-text-area ul { padding-left: 20px; margin-bottom: 15px; }
    .legal-text-area li { margin-bottom: 5px; }
    .legal-text-area p { margin-bottom: 10px; }
    .legal-text-area a { color: var(--primary-start); text-decoration: none; }
    .legal-text-area a:hover { text-decoration: underline; }
    .legal-company-block {
        margin-top: 28px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: #d7d7d7;
    }
    .legal-company-separator {
        width: 64px;
        height: 2px;
        margin-bottom: 14px;
        background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
        border-radius: 999px;
    }
    .legal-company-block p {
        margin: 0 0 6px 0;
        font-size: 13px;
        line-height: 1.5;
    }

    
    
    body.winter-mode {
        
        
        --primary-start: #00e0ff; 
        
        --primary-end: #dbfaff;   
        
        
        --bg-color: #020305;      
    }

    
    body.winter-mode .hero-glow {
        
        background: linear-gradient(120deg, #00c3ff, #e0fbfc, #00e0ff); 
        background-size: 200% 200%;
        animation: aurora 10s ease infinite;
        
        
        opacity: 0.2; 
        filter: blur(100px); 
    }
    
    @keyframes aurora {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    
    body.winter-mode .price-card, 
    body.winter-mode .tech-card, 
    body.winter-mode .feature-card,
    body.winter-mode .feat-tile {
        
        background: rgba(10, 15, 20, 0.7) !important;
        
        
        border-top: 1px solid rgba(255, 255, 255, 0.3) !important; 
        
        border-bottom: 1px solid rgba(0, 224, 255, 0.1) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
        
        
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.5),
            inset 0 0 40px rgba(0, 224, 255, 0.02) !important;
    }

    
    body.winter-mode .price-card:hover, 
    body.winter-mode .tech-card:hover,
    body.winter-mode .feat-tile:hover {
        border-color: var(--primary-start) !important;
        box-shadow: 
            0 20px 60px rgba(0, 224, 255, 0.15),
            inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
    }
    
    
    body.winter-mode .gradient-text {
        background: linear-gradient(90deg, #00e0ff, #dbfaff, #00e0ff);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shineText 3s linear infinite;
    }

    
    
    
    body.winter-mode .feat-tile.feat-highlight {
        
        background: linear-gradient(120deg, 
            rgba(0, 195, 255, 0.15) 0%,   
            rgba(94, 0, 255, 0.15) 50%,   
            rgba(224, 251, 252, 0.1) 100% 
        ) !important;
        
        background-size: 200% 200%;
        animation: featGlow 6s ease infinite; 
        
        
        border: 1px solid rgba(0, 242, 255, 0.4) !important;
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.1) !important;
    }

    
    body.winter-mode .feat-tile.feat-highlight:hover {
        background: linear-gradient(120deg, 
            rgba(0, 195, 255, 0.25) 0%, 
            rgba(94, 0, 255, 0.25) 50%, 
            rgba(224, 251, 252, 0.15) 100%
        ) !important;
        background-size: 200% 200%;
        
        box-shadow: 0 0 50px rgba(0, 242, 255, 0.25), inset 0 0 20px rgba(255,255,255,0.1) !important;
        border-color: #fff !important;
    }

    
    
    .logo-p {
        position: relative;
        display: inline-block;
    }

    
    body.winter-mode .logo-p::after {
        content: '';
        position: absolute;
        
        
        top: -5px;   
        left: -4px;  
        
        width: 24px; 
        height: 24px;
        
        
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23D32F2F' d='M256 48C150 48 112 224 96 288h320c-16-64-54-240-160-240z'/%3E%3Ccircle cx='256' cy='48' r='40' fill='%23FFF'/%3E%3Crect x='80' y='288' width='352' height='64' rx='20' fill='%23FFF'/%3E%3C/svg%3E");
        
        background-size: contain;
        background-repeat: no-repeat;
        
        
        transform: rotate(-41deg); 
        
        z-index: 20;
        pointer-events: none;
        
        
        filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.5));
        animation: hatBob 3s ease-in-out infinite;
    }

    
    @keyframes hatBob {
        0%, 100% { transform: rotate(-41deg) translateY(0); }
        50% { transform: rotate(-36deg) translateY(-2px); }
    }

    

    
    .ice-trail {
        position: fixed;
        
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        
        
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(200, 240, 255, 0.1) 60%, transparent 100%);
        
        
        filter: blur(4px);
        
        
        mix-blend-mode: overlay; 
        
        animation: fadeSteam 1.2s ease-out forwards;
    }

    @keyframes fadeSteam {
        0% {
            transform: scale(0.5) translateY(0);
            opacity: 0.6;
        }
        100% {
            
            transform: scale(2.5) translateY(-15px);
            opacity: 0;
        }
    }

    
    .pixel-runner {
        position: absolute;
        bottom: 20px; 
        left: -100px; 
        width: 64px; 
        height: 64px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 20;
        image-rendering: pixelated; 
        pointer-events: none;
    }

    
    .pixel-runner.running {
        animation: runAcross 10s linear forwards;
    }

    @keyframes runAcross {
        0% { left: -100px; transform: scaleX(1); } 
        100% { left: 110%; transform: scaleX(1); } 
    }


        .ice-trail {
            position: fixed;
            border-radius: 50%;
            pointer-events: none; 
            
            
            z-index: 99999999 !important; 
            
            
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(180, 240, 255, 0.2) 50%, transparent 100%);
            
            
            filter: blur(3px);
            
            
            mix-blend-mode: screen; 
            
            animation: fadeSteam 1.4s ease-out forwards;
        }

        @keyframes fadeSteam {
            0% { 
                transform: scale(0.4) translateY(0); 
                opacity: 0.8; 
            }
            100% { 
                transform: scale(2.5) translateY(-25px); 
                opacity: 0; 
            }
        }


.chat-widget {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 350px; height: 450px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
    overflow: hidden;
    z-index: 9900;
    
    
    opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chat-widget.active { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }


.chat-header {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.1), rgba(0, 255, 157, 0.05));
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
    color: #fff; font-weight: 700; font-size: 14px;
}
.chat-status-dot { width: 8px; height: 8px; background: #00ff9d; border-radius: 50%; box-shadow: 0 0 10px #00ff9d; }
.close-chat { cursor: pointer; color: #888; transition: 0.2s; }
.close-chat:hover { color: #fff; }


.chat-body { flex-grow: 1; position: relative; overflow: hidden; }
.chat-screen {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    padding: 20px; box-sizing: border-box;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none; transition: 0.3s;
    background: transparent;
}
.chat-screen.active { opacity: 1; pointer-events: all; z-index: 2; }


.chat-messages { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding-bottom: 10px; }
.msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.4; animation: popIn 0.3s ease; }
.msg-system { align-self: flex-start; background: rgba(255,255,255,0.1); color: #ddd; border-bottom-left-radius: 2px; }
.msg-user { align-self: flex-end; background: var(--primary-start); color: #000; border-bottom-right-radius: 2px; font-weight: 600; }

@keyframes popIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.chat-input-area {
    display: flex; gap: 10px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; margin-top: auto;
}
.chat-input-area input {
    flex-grow: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; padding: 10px 15px; color: #fff; outline: none; font-size: 13px;
}
.chat-input-area button {
    background: transparent; border: none; color: var(--primary-start); cursor: pointer; font-size: 16px;
}


.chat-field {
    width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 10px; color: #fff; margin-bottom: 10px;
    font-family: inherit; font-size: 13px; outline: none; box-sizing: border-box;
}
.chat-field:focus { border-color: var(--primary-start); }
.chat-submit-btn {
    width: 100%; padding: 12px; background: var(--primary-start); color: #000;
    border: none; border-radius: 8px; font-weight: 800; cursor: pointer; transition: 0.2s;
}
.chat-submit-btn:hover { opacity: 0.9; }

@media (max-width: 500px) {
    .chat-widget {
        right: 12px;
        bottom: 84px;
        width: calc(100% - 24px);
        max-width: 390px;
        height: min(72vh, 520px);
        border-radius: 16px;
        z-index: 10000;
    }
    .chat-header { padding-top: 15px; }
}


.trial-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.trial-banner:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.trial-info h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.trial-info p {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 5px;
}

.trial-btn {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.trial-btn i {
    font-size: 16px;
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .trial-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .trial-btn {
        width: 100%;
        justify-content: center;
    }
}




html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}



@media (max-width: 768px) {
    .sidebar, .glass-panel, .nav-glass, .mobile-nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #0f0f0f !important; 
        border-right: 1px solid #222;
    }
    
    
    .sidebar {
        z-index: 9999;
    }
}


@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px !important; 
        display: block !important; 
    }
    
    .content-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
        margin-bottom: 80px; 
    }
    
    
    .sub-card, .stat-card {
        width: 100% !important;
        margin-bottom: 15px;
    }
}


@media (max-width: 768px) {
    
    
    .top-bar {
        position: relative !important; 
        display: flex !important;
        justify-content: center !important; 
        align-items: center !important;
        height: 60px !important;
        padding: 0 15px !important;
    }

    
    .top-bar h2 {
        position: static !important; 
        margin: 0 !important;
        text-align: center !important;
        font-size: 1.2rem !important;
        width: 100%; 
        pointer-events: none; 
    }

    
    .sidebar-toggle {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999 !important;
        
        
        display: block !important;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 1.4rem !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    
    .user-controls {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999 !important;
        
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    
    .user-profile span {
        display: none !important;
    }
    
    
    .sidebar-logo img {
        width: 40px !important;
        height: 40px !important;
    }
}



#tech {
    position: relative;
    overflow: hidden;
}

.tech-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/tech_bg.png");
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    
    
    opacity: 0;
    transform: scale(1.1); 
    
    
    transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
    
    z-index: 0;
    pointer-events: none;
    
    
    filter: brightness(1.08) contrast(1.08) saturate(1.1);
    -webkit-filter: brightness(1.08) contrast(1.08) saturate(1.1);
}


.tech-bg-image.active {
    opacity: 0.95;
    transform: scale(1);
}


.tech-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        95deg,
        rgba(8, 12, 20, 0.86) 0%,
        rgba(8, 12, 20, 0.50) 38%,
        rgba(8, 12, 20, 0.14) 62%,
        rgba(8, 12, 20, 0.32) 100%
    );
    z-index: 1;
    pointer-events: none;
}


.tech-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 50%, rgba(0, 242, 255, 0.12) 0%, rgba(0, 242, 255, 0) 46%);
    z-index: 1;
    pointer-events: none;
}


.tech-grid {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .tech-bg-image {
        background-size: cover;
        background-position: center;
        filter: brightness(0.9) contrast(1.05) saturate(1.05);
        -webkit-filter: brightness(0.9) contrast(1.05) saturate(1.05);
    }

    .tech-section::before {
        background: linear-gradient(180deg, rgba(8, 12, 20, 0.78) 0%, rgba(8, 12, 20, 0.44) 45%, rgba(8, 12, 20, 0.74) 100%);
    }
}




.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.team-card-hor {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
    width: 100%;
    max-width: 500px;
}

.team-card-hor:hover {
    border-color: var(--primary-start);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.team-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-start);
}

.team-info h4 { margin: 0; color: #fff; font-size: 18px; font-weight: 700; }
.team-role { color: var(--primary-end); font-size: 12px; text-transform: uppercase; font-weight: 700; margin-top: 5px; display: block; }
.team-desc { color: #aaa; font-size: 13px; margin: 5px 0 0 0; line-height: 1.4; display: none;  }


.modules-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.modules-image-box {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modules-bg-img {
    width: 100%; height: 100%;
    background-image: url("../img/modules_bg.png");
    background-size: cover;
    background-position: center;
    
    
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    
    filter: brightness(0.8);
}

.modules-bg-img.active {
    opacity: 1;
    transform: translateY(0);
}


.modules-list-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mod-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.mod-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-start);
    transform: translateX(10px);
}

.mod-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 20px; color: var(--primary-start);
}

.mod-text h4 { margin: 0; color: #fff; font-size: 16px; font-weight: 700; }
.mod-text p { margin: 5px 0 0 0; color: #888; font-size: 13px; line-height: 1.4; }

@media (max-width: 900px) {
    .modules-split { grid-template-columns: 1fr; }
    .modules-image-box { height: 300px; order: -1;  }
    .team-row { flex-direction: column; align-items: center; }
}



.team-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 60px !important;
    flex-wrap: nowrap !important;
}

.team-card-hor {
    width: auto !important;
    max-width: none !important;
    padding: 20px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.team-avatar {
    width: 60px !important; height: 60px !important;
    min-width: 60px !important;
    margin-right: 15px !important;
    border: 2px solid var(--primary-start);
}

.team-info { text-align: left; }
.team-info h4 { font-size: 16px !important; margin-bottom: 2px !important; }
.team-role { font-size: 11px !important; color: var(--primary-end); font-weight: 800; letter-spacing: 1px; }
.team-quote { 
    display: block !important; 
    font-size: 11px !important; 
    color: #888; 
    font-style: italic; 
    margin-top: 4px !important;
    line-height: 1.2;
}


.modules-image-box {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 400px;
    display: flex; align-items: center; justify-content: center;
}

.modules-bg-img {
    background-size: contain !important; 
    background-position: center top !important;
    filter: none !important; 
    
}

@media (max-width: 1000px) {
    .team-row { grid-template-columns: 1fr !important; }
}



.team-card-hor {
    min-height: 100px;
    align-items: flex-start !important; 
}

.team-avatar {
    margin-top: 5px; 
}

.team-info {
    flex: 1; 
}

.team-quote {
    font-size: 13px !important; 
    color: #bbb !important; 
    max-width: 100%; 
    margin-top: 8px !important;
}


.modules-image-box {
    min-height: 650px !important; 
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.modules-bg-img {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background-image: url("../img/modules_bg.png") !important;
    background-size: 100% auto !important; 
    background-repeat: no-repeat !important;
    background-position: center top !important;
}


.layers-container {
    perspective: 2000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px !important;
    width: 100%;
    transform-style: preserve-3d;
}

.layer {
    position: absolute;
    width: 100%;
    max-width: 500px; 
    aspect-ratio: 16/9;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    transform-style: preserve-3d;
}

.layer-floater {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.layer-inner {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotateX(45deg) rotateZ(-15deg) scale(0.9); 
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.layers-container.visible .layer { opacity: 1; }

.layer-base .layer-inner { background-image: url("../img/layers/l0.png"); }
.layer-mid  .layer-inner { background-image: url("../img/layers/l2.png"); }
.layer-top  .layer-inner { background-image: url("../img/layers/l1.png"); }


.layers-container.visible .layer-base .layer-floater { animation: v17Float 5s ease-in-out infinite; }
.layers-container.visible .layer-mid  .layer-floater { animation: v17Float 5s ease-in-out infinite 0.7s; }
.layers-container.visible .layer-top  .layer-floater { animation: v17Float 5s ease-in-out infinite 1.4s; }

@keyframes v17Float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(15px); }
}


.layer-base .layer-inner { transform: rotateX(45deg) rotateZ(-15deg) translateZ(-40px) translateY(20px) scale(0.9); }
.layer-mid  .layer-inner { transform: rotateX(45deg) rotateZ(-15deg) translateZ(10px) translateY(-10px) scale(0.9); }
.layer-top  .layer-inner { 
    transform: rotateX(45deg) rotateZ(-15deg) translateZ(60px) translateY(-40px) scale(0.9); 
    filter: drop-shadow(0 15px 30px rgba(0, 242, 255, 0.15));
}


.layers-container:hover .layer-base .layer-inner { transform: rotateX(45deg) rotateZ(-15deg) translateZ(-10px) translateY(10px) scale(0.95); }
.layers-container:hover .layer-mid  .layer-inner { transform: rotateX(45deg) rotateZ(-15deg) translateZ(10px) translateY(0px) scale(0.95); }
.layers-container:hover .layer-top  .layer-inner { 
    transform: rotateX(45deg) rotateZ(-15deg) translateZ(30px) translateY(-10px) scale(0.95); 
    filter: drop-shadow(0 10px 20px rgba(0, 242, 255, 0.5));
}
