/* CSS Variables - Professional Theme */
        :root {
            /* Dark theme as default */
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --secondary: #10b981;
            --secondary-dark: #059669;
            --accent: #f97316;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #3b82f6;
            
            /* Backgrounds */
            --bg-primary: #0a0a0f;
            --bg-secondary: #111118;
            --bg-tertiary: #1a1a24;
            --bg-card: #15151e;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            
            /* Text */
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --text-light: #e2e8f0;
            
            /* Borders */
            --border-color: #2d2d3a;
            --border-light: #3a3a4a;
            --border-radius: 12px;
            --border-radius-lg: 20px;
            
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
            --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);
            --shadow-glow-secondary: 0 0 20px rgba(16, 185, 129, 0.15);
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
            --gradient-accent: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
            --gradient-dark: linear-gradient(145deg, #0a0a0f 0%, #111118 100%);
            --gradient-card: linear-gradient(145deg, #15151e 0%, #1a1a24 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            
            /* Animations */
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Layout */
            --container-width: 1280px;
            --section-spacing: 6rem;
        }
        
        [data-theme="light"] {
            --primary: #4f46e5;
            --primary-dark: #4338ca;
            --primary-light: #6366f1;
            --secondary: #10b981;
            --secondary-dark: #059669;
            --accent: #f97316;
            --danger: #dc2626;
            --warning: #d97706;
            --info: #3b82f6;
            
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --bg-card: #ffffff;
            --bg-overlay: rgba(255, 255, 255, 0.9);
            
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --text-light: #1e293b;
            
            --border-color: #e2e8f0;
            --border-light: #cbd5e1;
            
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.1);
            --shadow-glow-secondary: 0 0 20px rgba(16, 185, 129, 0.1);
            
            --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            --gradient-dark: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
            --gradient-glass: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
        }
        
        /* Snowflake Container */
        #snowflakes-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            overflow: hidden;
        }
        
        .snowflake {
            position: absolute;
            background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.8;
            filter: blur(0.5px);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            animation-timing-function: linear, ease-in-out;
            animation-iteration-count: infinite;
        }
        
        [data-theme="light"] .snowflake {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            box-shadow: 0 0 8px rgba(33, 150, 243, 0.3);
        }
        
        /* Why PlusParser Section */
        .why-plusparser {
            background: var(--gradient-dark);
            border-radius: var(--border-radius-lg);
            padding: 4rem 3rem;
            margin: 3rem auto;
            max-width: 1000px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .why-plusparser::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236366f1' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .why-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }
        
        .why-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }
        
        .why-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .why-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: all var(--transition-normal);
        }
        
        .why-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        
        .why-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .why-item p {
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .why-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            font-size: 1.3rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }
        
        .why-footer strong {
            color: var(--primary);
            font-weight: 700;
        }
        
        .why-footer span {
            color: var(--secondary);
            font-weight: 700;
            font-style: italic;
        }
        
        /* Reset & Base Styles */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            scroll-padding-top: 80px;
        }
        
        body {
            font-family: 'Manrope', 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            transition: background-color var(--transition-normal), color var(--transition-normal);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
        }
        
        h3 {
            font-size: 1.75rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        
        a:hover {
            color: var(--primary-light);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            background-color: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all var(--transition-normal);
        }
        
        [data-theme="light"] .header {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .header.scrolled {
            padding: 0.75rem 0;
            box-shadow: var(--shadow-lg);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.75rem;
            color: var(--text-primary);
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }
        
        .logo-text {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color var(--transition-fast);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width var(--transition-normal);
            border-radius: 2px;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Telegram Button in Nav */
        .btn-telegram-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #0088cc;
            color: white;
            border: none;
            padding: 0.5rem 1.25rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-normal);
            text-decoration: none;
        }
        
        .btn-telegram-nav:hover {
            background: #0077b5;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        /* Support Button */
        .btn-support {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            transition: all var(--transition-normal);
            font-size: 1.5rem;
        }
        
        .btn-support:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.3);
        }
        
        .support-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 22px;
            height: 22px;
            background: var(--danger);
            color: white;
            border-radius: 50%;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Theme Toggle */
        .theme-toggle {
            width: 48px;
            height: 28px;
            border-radius: 14px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            position: relative;
            cursor: pointer;
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            padding: 0 3px;
        }
        
        .theme-toggle::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            transition: transform var(--transition-normal);
            left: 3px;
        }
        
        [data-theme="light"] .theme-toggle::before {
            transform: translateX(20px);
        }
        
        .theme-toggle i {
            font-size: 0.8rem;
            position: absolute;
            transition: opacity var(--transition-normal);
            color: var(--text-primary);
        }
        
        .theme-toggle .fa-moon {
            right: 6px;
            opacity: 0.5;
        }
        
        .theme-toggle .fa-sun {
            left: 6px;
            opacity: 0;
        }
        
        [data-theme="light"] .theme-toggle .fa-moon {
            opacity: 0;
        }
        
        [data-theme="light"] .theme-toggle .fa-sun {
            opacity: 0.5;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }
        
        .btn-secondary {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        
        .btn-secondary:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-success {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow-secondary);
        }

        .btn-telegram {
            background: #0088cc;
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-telegram:hover {
            background: #0077b5;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-lg {
            padding: 1.125rem 2.5rem;
            font-size: 1.125rem;
            border-radius: 12px;
        }
        
        /* Hero Section */
        .hero {
            padding: 10rem 0 6rem;
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .hero-bg-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image: 
                linear-gradient(var(--border-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.08;
            transform: perspective(500px) rotateX(60deg);
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }
        
        .hero-tag i {
            color: var(--secondary);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: var(--text-secondary);
        }
        
        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border-color);
        }
        
        @media (max-width: 768px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr;
            }
        }
        
        .stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-card);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            transition: all var(--transition-normal);
        }
        
        .stat:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-family: 'JetBrains Mono', monospace;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Section Common */
        .section {
            padding: var(--section-spacing) 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--text-secondary);
            text-align: center;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem 2rem;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-normal);
            z-index: 0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }
        
        .feature-card:hover::before {
            opacity: 0.05;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
            color: var(--primary);
            font-size: 1.75rem;
            position: relative;
            z-index: 1;
            transition: all var(--transition-normal);
        }
        
        .feature-card:hover .feature-icon {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-title {
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
        }
        
        .feature-description {
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
        
        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 3rem;
            font-size: 0.85rem;
            font-weight: 700;
            transform: rotate(45deg);
            width: 170px;
            text-align: center;
            z-index: 2;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .pricing-name {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }
        
        .pricing-price {
            font-size: 3.75rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Inter', sans-serif;
        }
        
        .pricing-period {
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .pricing-description {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-top: 0.75rem;
        }
        
        .pricing-features {
            margin-bottom: 3rem;
            flex-grow: 1;
        }
        
        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        
        .pricing-feature i {
            color: var(--secondary);
            font-size: 1rem;
            min-width: 20px;
        }
        
        .pricing-feature span {
            color: var(--text-secondary);
        }
        
        .pricing-footer {
            margin-top: auto;
        }
        
        /* Payment Methods */
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        
        .payment-method {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-tertiary);
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }
        
        .payment-method i {
            color: var(--primary);
        }
        
        .crypto-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(247, 147, 26, 0.1);
            border: 1px solid rgba(247, 147, 26, 0.3);
            color: #f7931a;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-primary);
            transition: all var(--transition-fast);
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            color: var(--primary);
            transition: transform var(--transition-normal);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all var(--transition-normal);
            color: var(--text-secondary);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 2rem 1.5rem;
            max-height: 500px;
        }
        
        /* Blog Preview */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .blog-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }
        
        .blog-image {
            height: 200px;
            width: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .blog-meta i {
            color: var(--primary);
        }
        
        .blog-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .blog-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        
        /* CTA Section */
        .cta {
            background: var(--gradient-dark);
            border-radius: var(--border-radius-lg);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 4rem auto;
            max-width: 1000px;
            border: 1px solid var(--border-color);
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.05;
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-secondary);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 4rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand {
            font-size: 1.75rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all var(--transition-normal);
            border: 1px solid var(--border-color);
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mt-4 { margin-top: 4rem; }
        
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mb-4 { margin-bottom: 4rem; }
        
        .w-100 { width: 100%; }
        
        /* Responsive */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.25rem;
            }
            
            .why-title {
                font-size: 2.25rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                padding: 8rem 0 4rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .nav-links {
                display: none;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .why-plusparser {
                padding: 3rem 2rem;
                margin: 2rem auto;
            }
            
            .why-points {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .cta {
                padding: 3rem 1.5rem;
                margin: 2rem auto;
            }
            
            .popular-badge {
                right: -40px;
                width: 160px;
                font-size: 0.8rem;
            }
            
            .btn-support {
                bottom: 1rem;
                right: 1rem;
                width: 55px;
                height: 55px;
                font-size: 1.25rem;
            }

            .btn-telegram-nav {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }
            
            .why-title {
                font-size: 2rem;
            }
            
            .why-subtitle {
                font-size: 1.1rem;
            }
            
            .why-item {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .stat-value {
                font-size: 2rem;
            }
            
            .pricing-price {
                font-size: 3rem;
            }
            
            .popular-badge {
                right: -45px;
                width: 150px;
                font-size: 0.75rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .why-title {
                font-size: 1.75rem;
            }
            
            .why-plusparser {
                padding: 2rem 1.5rem;
            }
            
            .why-item h4 {
                font-size: 1.2rem;
            }
            
            .why-footer {
                font-size: 1.1rem;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Snowflake animations */
        @keyframes snowfall {
            0% {
                transform: translateY(-100px) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        @keyframes sway {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(50px);
            }
        }
