        :root {
            --primary-color: #4a6bff;
            --secondary-color: #00d4ff;
            --accent-color: #7b68ee;
            --gradient-primary: linear-gradient(135deg, #4a6bff 0%, #7b68ee 100%);
            --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #4a6bff 100%);
            --gradient-warning: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            --light-color: #ffffff;
            --light-bg: #f8fafc;
            --light-gray: #f1f5f9;
            --medium-gray: #e2e8f0;
            --dark-gray: #64748b;
            --text-dark: #1e293b;
            --text-medium: #475569;
            --text-light: #64748b;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --shadow-light: 0 10px 25px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --border-radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header with Limited Offer Badge */
        .limited-offer-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--gradient-warning);
            color: white;
            font-weight: 800;
            font-size: 0.85rem;
            padding: 0.5rem 1.5rem;
            border-bottom-left-radius: 15px;
            transform: translateX(40%);
            z-index: 1002;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
            animation: badgePulse 2s infinite;
            white-space: nowrap;
            overflow: hidden;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3); }
            50% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5), 0 0 10px rgba(255, 107, 107, 0.3); }
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--medium-gray);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-link {
            color: var(--text-medium) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0 !important;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--gradient-primary);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
        }

        .nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.4);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 5rem;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .hero-content {
            z-index: 2;
            position: relative;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 107, 255, 0.08) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--text-dark);
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: var(--text-medium);
            max-width: 700px;
            line-height: 1.6;
        }

        .highlight-container {
            display: inline-flex;
            align-items: center;
            background: white;
            border-radius: 15px;
            padding: 1rem 1.5rem;
            margin-bottom: 2.5rem;
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-light);
        }

        .tool-count {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-right: 1rem;
        }

        .tool-count-label {
            font-size: 1.1rem;
            color: var(--text-medium);
            max-width: 150px;
        }

        /* Buttons */
        .btn-vexax {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-vexax:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(74, 107, 255, 0.4);
            color: white;
        }

        .btn-outline-vexax {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 1rem 2.5rem;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .btn-outline-vexax:hover {
            background: rgba(74, 107, 255, 0.05);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.1);
        }

        /* Section Styling */
        section {
            padding: 6rem 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-medium);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            line-height: 1.6;
        }

        /* Category Cards */
        .category-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            height: 100%;
            transition: all 0.4s;
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary-color);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            height: 80px;
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border-radius: 20px;
            background-color: rgba(74, 107, 255, 0.1);
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .category-desc {
            color: var(--text-medium);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .tool-count-badge {
            display: inline-block;
            background: rgba(74, 107, 255, 0.1);
            color: var(--primary-color);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Tool Showcase */
        .tool-showcase {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 4rem;
            margin-top: 3rem;
            position: relative;
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-medium);
        }

        .tool-tag {
            display: inline-block;
            background: var(--light-gray);
            color: var(--text-medium);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            margin: 0.4rem;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 1px solid var(--medium-gray);
        }

        .tool-tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.2);
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border-radius: var(--border-radius-lg);
            padding: 5rem 0;
        }

        .pricing-card {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            text-align: center;
            border: 1px solid var(--medium-gray);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            height: 100%;
            box-shadow: var(--shadow-light);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-heavy);
        }

        .pricing-card.featured::before {
            content: 'LIMITED OFFER';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-warning);
            color: white;
            padding: 0.6rem 3.5rem;
            transform: rotate(45deg);
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        .price {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 1.5rem 0;
            line-height: 1;
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .pricing-feature {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-feature i {
            color: var(--success-color);
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

        /* Countdown Timer */
        .countdown-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem auto;
            max-width: 800px;
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-light);
            text-align: center;
        }

        .countdown-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .countdown-value {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Features */
        .features-section {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 5rem;
            margin-top: 3rem;
            box-shadow: var(--shadow-medium);
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .feature-icon {
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 1rem;
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(74, 107, 255, 0.1);
            border-radius: 12px;
        }

        .feature-content h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .feature-content p {
            color: var(--text-medium);
        }

        /* Purchase Section */
        .purchase-section {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            border: 1px solid var(--medium-gray);
            margin-top: 4rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 0.5rem;
            color: white;
            transition: all 0.3s;
            margin-top: 10px;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .purchase-section, .features-section {
                padding: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .price {
                font-size: 2.8rem;
            }
            
            .highlight-container {
                flex-direction: column;
                text-align: center;
            }
            
            .tool-count {
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
            
            .countdown-timer {
                gap: 1rem;
            }
            
            .countdown-value {
                font-size: 2rem;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
