* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Fira Code', monospace;
            background: #0a0c10;
            color: #e0e0e0;
            line-height: 1.5;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1d24;
        }
        ::-webkit-scrollbar-thumb {
            background: #2ecc71;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e74c3c;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 8%;
            background: rgba(10, 12, 16, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(46, 204, 113, 0.3);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2ecc71;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: #e74c3c;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: #b0b0b0;
            font-weight: 500;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            color: #2ecc71;
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid #2ecc71;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            color: #2ecc71;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        .btn-outline:hover {
            background: #2ecc71;
            color: #0a0c10;
            border-color: #2ecc71;
        }

        .btn-primary {
            background: #2ecc71;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            color: #0a0c10;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        .btn-primary:hover {
            background: #27ae60;
            transform: translateY(-2px);
        }
        
        
        
        
        
        
        
        
        
        
        
        .hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1f0d 50%, #0a0a0a 100%);
    padding: 80px 0 60px 0;
    margin: 0;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,204,113,0.25) 0%, rgba(46,204,113,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.glow-orb-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, rgba(0,255,136,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(46,204,113,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46,204,113,0.3);
    padding: 0.7rem 1.8rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.badge-status {
    background: rgba(46,204,113,0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.title-line {
    display: block;
    color: #ffffff;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #00ff88 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, transparent);
}

.hero-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.btn-exploit {
    background: linear-gradient(135deg, #2ecc71 0%, #00a854 100%);
    color: #0a0a0a;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-exploit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-exploit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-exploit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46,204,113,0.4);
}

.btn-demo {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(46,204,113,0.5);
    color: #2ecc71;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-demo:hover {
    background: rgba(46,204,113,0.15);
    transform: translateY(-3px);
    border-color: #2ecc71;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    border-radius: 80px;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(46,204,113,0.2);
    position: relative;
    z-index: 10;
    width: fit-content;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    background: rgba(46,204,113,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2ecc71;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(180deg, transparent, rgba(46,204,113,0.4), transparent);
}

.terminal-floating {
    position: absolute;
    bottom: 15%;
    right: 3%;
    z-index: 15;
    animation: floatTerminal 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatTerminal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.terminal-window {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 300px;
    border: 1px solid rgba(46,204,113,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    pointer-events: none;
}

.terminal-header {
    background: rgba(25,25,25,0.95);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(46,204,113,0.2);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: 8px;
    font-size: 0.65rem;
    color: #aaa;
    font-family: 'Fira Code', monospace;
}

.terminal-body {
    padding: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.65rem;
}

.terminal-text {
    color: #2ecc71;
    margin: 5px 0;
    opacity: 0.9;
    white-space: nowrap;
}

.prompt {
    color: #00ff88;
    margin-right: 6px;
}

.success {
    color: #ffd700;
}

.blink {
    animation: blinkText 1s step-end infinite;
}

@keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (min-width: 1600px) {
    .hero-container {
        max-width: 1400px;
    }
    
    .terminal-floating {
        right: 8%;
        bottom: 8%;
    }
    
    .terminal-window {
        width: 350px;
    }
}

@media (max-width: 1100px) {
    .terminal-floating {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        border-radius: 30px;
        padding: 1.2rem 2rem;
        width: 90%;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-card {
        width: 100%;
        justify-content: center;
    }
    
    .glow-orb, .glow-orb-2 {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-exploit, .btn-demo {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        .info {
            padding: 5rem 8%;
            background: #0f1117;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .info-card {
            background: #1a1d24;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(46, 204, 113, 0.2);
            transition: 0.3s;
        }
        .info-card:hover {
            transform: translateY(-5px);
            border-color: #2ecc71;
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
        }
        .info-card i {
            font-size: 2.5rem;
            color: #2ecc71;
            margin-bottom: 1rem;
        }
        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }
        .info-card p {
            color: #999;
            font-size: 0.9rem;
        }

        .pricing {
            padding: 5rem 8%;
            background: #0a0c10;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header h1 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .section-header p {
            color: #888;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .plan {
            background: #1a1d24;
            border-radius: 16px;
            padding: 2rem;
            transition: 0.3s;
            border: 1px solid rgba(46, 204, 113, 0.2);
            position: relative;
        }
        .plan:hover {
            transform: translateY(-8px);
            border-color: #2ecc71;
        }
        .plan.popular {
            border: 2px solid #2ecc71;
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #2ecc71;
            color: #0a0c10;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .plan h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .price {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2ecc71;
            margin: 1rem 0;
        }
        .price span {
            font-size: 0.9rem;
            color: #888;
            font-weight: 400;
        }
        .plan ul {
            list-style: none;
            margin: 1.5rem 0;
        }
        .plan li {
            margin: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        .plan li i.fa-check {
            color: #2ecc71;
            width: 18px;
        }
        .plan li i.fa-times {
            color: #e74c3c;
            width: 18px;
        }
        .plan li i.fa-bolt {
            color: #f39c12;
            width: 18px;
        }
        .btn-plan {
            width: 100%;
            padding: 0.8rem;
            background: transparent;
            border: 1.5px solid #2ecc71;
            border-radius: 8px;
            color: #2ecc71;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        .btn-plan:hover {
            background: #2ecc71;
            color: #0a0c10;
        }

        .contact-us {
            padding: 5rem 8%;
            background: #0f1117;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        .contact-left h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 1rem;
        }
        .contact-left p {
            color: #999;
            margin-bottom: 1.5rem;
        }
        .contact-info {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .contact-info i {
            color: #2ecc71;
            font-size: 1.2rem;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            background: #1a1d24;
            border: 1px solid rgba(46, 204, 113, 0.3);
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #2ecc71;
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .review {
            padding: 5rem 8%;
            background: #0a0c10;
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .modal-content {
            background: #1a1d24;
            margin: 5% auto;
            width: 90%;
            max-width: 550px;
            border-radius: 16px;
            border: 1px solid #2ecc71;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(46,204,113,0.3);
        }
        .modal-header h2 {
            color: #2ecc71;
            font-size: 1.3rem;
            margin: 0;
        }
        .close-modal {
            font-size: 2rem;
            cursor: pointer;
            color: #888;
            transition: 0.2s;
        }
        .close-modal:hover {
            color: #e74c3c;
        }
        .modal-body {
            padding: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: #0f1117;
            border: 1px solid rgba(46,204,113,0.3);
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2ecc71;
        }
        .rating-input {
            display: flex;
            gap: 0.5rem;
        }
        .star-rating i {
            font-size: 1.8rem;
            cursor: pointer;
            transition: 0.1s;
            color: #555;
        }
        .star-rating i.fas {
            color: #f39c12;
        }
        .star-rating i:hover {
            transform: scale(1.1);
        }

        /* Enhanced Review Card */
        .review-card {
            background: #1a1d24;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #2ecc71;
            transition: 0.3s;
            position: relative;
        }
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46,204,113,0.15);
        }
        .review-stars {
            margin-bottom: 1rem;
            color: #f39c12;
        }
        .review-stars i {
            margin-right: 2px;
        }
        .review-text {
            font-style: italic;
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .review-author {
            color: #2ecc71;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .review-plan-badge {
            display: inline-block;
            background: rgba(46,204,113,0.15);
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            color: #2ecc71;
            margin-left: 0.5rem;
        }
        .report-review {
            position: absolute;
            bottom: 0.8rem;
            right: 0.8rem;
            background: rgba(231,76,60,0.15);
            border: none;
            color: #e74c3c;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.7rem;
            transition: 0.2s;
        }
        .report-review:hover {
            background: #e74c3c;
            color: white;
        }
        .review-count {
            text-align: center;
            margin-top: 2rem;
            color: #888;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .modal-content {
                margin: 15% auto;
                width: 95%;
            }
            .star-rating i {
                font-size: 1.3rem;
            }
        }

        footer {
            padding: 2rem 8%;
            background: #07090d;
            text-align: center;
            border-top: 1px solid rgba(46, 204, 113, 0.2);
            color: #666;
        }

        .menu-icon {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #2ecc71;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: #0f1117;
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: 0.3s;
                border-right: 1px solid #2ecc71;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .menu-icon {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .contact-us {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #1a1d24;
            border-left: 4px solid #2ecc71;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            color: #fff;
            z-index: 2000;
            animation: slideIn 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        .toast.error {
            border-left-color: #e74c3c;
        }