
        :root {
            --bg: #050505;
            --accent: #00ff88;
            --accent-dark: #004d26;
            --text: #ffffff;
            --glass: rgba(0, 0, 0, 0.7);
            --border: rgba(255, 255, 255, 0.1);
            --transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body { 
            background: var(--bg); 
            color: var(--text); 
            font-family: 'Inter', sans-serif; 
            overflow-x: hidden;
            line-height: 1.6;
        }

        #canvas-container {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 10px; }

        /* --- NAVIGATION --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 5%; backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo { font-family: 'Unbounded'; font-weight: 900; font-size: 1.2rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); }

        .btn-minimal {
            font-family: 'Unbounded'; font-size: 0.7rem; color: var(--accent);
            text-decoration: none; border: 1px solid var(--accent);
            padding: 10px 20px; border-radius: 100px; transition: var(--transition);
        }
        .btn-minimal:hover { background: var(--accent); color: #000; box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); }

        /* --- HERO --- */
        .hero { padding: clamp(120px, 20vh, 200px) 0 60px; max-width: 1000px; }
        .hero-tag { font-family: 'Unbounded'; font-size: 0.7rem; color: var(--accent); letter-spacing: 3px; margin-bottom: 20px; display: block; text-transform: uppercase; }
        .hero h1 { font-family: 'Unbounded'; font-size: clamp(2.2rem, 7vw, 4.5rem); line-height: 1.1; font-weight: 900; margin-bottom: 25px; }
        .hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.8); }
        .hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.7); max-width: 650px; margin-bottom: 35px; }

        /* --- BENTO GRID (CATALOG) --- */
        .sec-title { font-family: 'Unbounded'; font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 40px; }
        .sec-title span { color: var(--accent); }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 100px;
        }

        .bento-item {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: clamp(25px, 5%, 40px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
            backdrop-filter: blur(30px);
            min-height: 350px;
        }

        .bento-item:hover { border-color: var(--accent); transform: translateY(-8px); background: rgba(0,0,0,0.85); }
        .bento-item.featured { grid-column: span 2; border-color: rgba(0, 255, 136, 0.3); }

        .bento-item h3 { font-family: 'Unbounded'; font-size: 1.3rem; margin-bottom: 15px; margin-top: 10px; }
        .bento-item p { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
        .price-tag { font-family: 'Unbounded'; font-size: 1.1rem; color: var(--accent); margin-top: auto; padding-top: 20px; display: block; }
        
        .order-link {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            border-radius: 12px; background: rgba(255,255,255,0.05); color: #fff;
            font-family: 'Unbounded'; font-size: 0.7rem; text-decoration: none; text-align: center; transition: 0.3s;
        }
        .bento-item:hover .order-link { background: var(--accent); color: #000; }

        /* --- COMPARISON (WHY ME) --- */
        .benefit-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .benefit-card {
            padding: 40px;
            border-radius: 32px;
            background: var(--glass);
            border: 1px solid var(--border);
            backdrop-filter: blur(20px);
        }

        .benefit-card.pro { border-color: var(--accent-dark); position: relative; overflow: hidden; }
        .benefit-card.pro::after { content: 'ВЫГОДА'; position: absolute; top: 20px; right: -30px; background: var(--accent); color: #000; font-family: 'Unbounded'; font-size: 0.6rem; font-weight: 900; padding: 5px 40px; transform: rotate(45deg); }

        .benefit-card h4 { font-family: 'Unbounded'; font-size: 1.1rem; margin-bottom: 25px; color: var(--accent); }
        .benefit-list { list-style: none; }
        .benefit-list li { margin-bottom: 15px; font-size: 0.9rem; display: flex; gap: 12px; align-items: flex-start; }
        .benefit-list li b { color: #fff; }
        .benefit-list li::before { content: '→'; color: var(--accent); font-weight: bold; }

        /* --- LIQUID GLASS BANNER --- */
        .liquid-glass {
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
            backdrop-filter: blur(40px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: clamp(40px, 8%, 80px);
            border-radius: clamp(30px, 5vw, 50px);
            margin-bottom: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            position: relative;
        }

        .liquid-glass h2 { font-family: 'Unbounded'; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1; flex: 1 1 400px; }
        .liquid-stats { display: flex; gap: 30px; flex-wrap: wrap; }
        .stat-item { text-align: center; }
        .stat-item span { display: block; font-family: 'Unbounded'; font-size: 1.5rem; color: var(--accent); }
        .stat-item p { font-size: 0.7rem; text-transform: uppercase; opacity: 0.5; letter-spacing: 1px; }

        /* --- STATUS TAG --- */
        .status-tag { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(0, 255, 136, 0.05); border: 1px solid rgba(0, 255, 136, 0.2); border-radius: 100px; color: var(--accent); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
        .status-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent); animation: blink 2s infinite; }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

        /* --- FOOTER --- */
        footer { padding: 80px 0 40px; border-top: 1px solid var(--border); background: linear-gradient(to bottom, transparent, rgba(0,255,136,0.03)); }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 60px; }
        .footer-col h5 { font-family: 'Unbounded'; font-size: 0.7rem; color: var(--accent); margin-bottom: 25px; letter-spacing: 2px; }
        .footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 12px; transition: 0.3s; font-size: 0.95rem; }
        .footer-col a:hover { color: var(--accent); transform: translateX(5px); }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 900px) {
            .bento-item.featured { grid-column: span 1; }
            .liquid-glass { text-align: center; justify-content: center; }
        }

        @media (max-width: 480px) {
            header { padding: 15px 5%; }
            .hero { padding-top: 140px; }
            .benefit-card { padding: 30px 20px; }
        }



        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 40px;
            backdrop-filter: blur(20px);
            transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            border-color: #00ff88;
            background: rgba(0, 255, 136, 0.05);
            transform: translateY(-10px);
        }

        .blog-card h3 {
            font-family: 'Unbounded', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #00ff88;
        }

        .blog-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }

        .blog-info {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.85rem;
            font-family: 'Unbounded', sans-serif;
        }

        .info-item span:last-child {
            color: #00ff88;
        }

        .tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(0, 255, 136, 0.1);
            color: #00ff88;
            border-radius: 100px;
            font-size: 0.7rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 35px;
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            border-color: #00ff88;
            background: rgba(0, 255, 136, 0.04);
            transform: translateY(-5px);
        }

        .price-card i {
            display: block;
            font-family: 'Unbounded';
            font-style: normal;
            font-size: 0.7rem;
            color: #00ff88;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .price-card h3 {
            font-family: 'Unbounded';
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .price-card ul {
            list-style: none;
            padding: 0;
        }

        .price-card ul li {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .price-card ul li::before {
            content: '—';
            color: #00ff88;
        }

        .price-card b {
            color: #fff;
            font-weight: 600;
        }

        /* Декоративный градиент на фоне */
        .price-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.05), transparent 70%);
            pointer-events: none;
        }
  

  
        .honest-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .honest-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            padding: clamp(30px, 5%, 60px);
            backdrop-filter: blur(20px);
            position: relative;
        }

        .honest-content::before {
            content: 'TRUTH';
            position: absolute;
            top: -20px;
            left: 40px;
            background: #00ff88;
            color: #000;
            font-family: 'Unbounded';
            font-weight: 900;
            font-size: 0.7rem;
            padding: 5px 15px;
            border-radius: 5px;
        }

        .honest-content h2 {
            font-family: 'Unbounded';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .honest-content h2 span {
            color: #00ff88;
        }

        .honest-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .honest-text b {
            color: #fff;
            border-bottom: 1px solid #00ff88;
        }

        .seo-timing {
            background: rgba(0, 255, 136, 0.05);
            border: 1px dashed rgba(0, 255, 136, 0.3);
            border-radius: 24px;
            padding: 30px;
        }

        .seo-timing h4 {
            font-family: 'Unbounded';
            font-size: 1rem;
            margin-bottom: 15px;
            color: #00ff88;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .time-step {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 8px;
        }

        .time-step span:last-child {
            font-family: 'Unbounded';
            color: #fff;
        }

        @media (max-width: 1024px) {
            .honest-container { grid-template-columns: 1fr; }
            .honest-content::before { left: 50%; transform: translateX(-50%); }
        }
