
        :root {
            --tactical-orange: #FF7700;
            --tactical-grey: #BDC3C7;
            --alert-red: #E74C3C;
            --panel-bg: rgba(30, 30, 40, 0.85);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0f1d 0%, #1a1e2c 100%);
            color: #fff;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCAwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMC41Ii8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiIC8+Cjwvc3ZnPg==');
            opacity: 0.15;
            z-index: -1;
        }
        
        .command-panel {
            background: var(--panel-bg);
            border: 1px solid rgba(255, 119, 0, 0.3);
            border-radius: 4px;
            padding: 25px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.1);
        }
        
        .command-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--tactical-orange), transparent);
        }
        
        h1 {
            color: var(--tactical-orange);
            font-size: 2.2rem;
            text-align: center;
            margin-top: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: var(--tactical-orange);
        }
        
        h2 {
            color: var(--tactical-orange);
            font-size: 1.8rem;
            border-bottom: 1px solid rgba(255, 119, 0, 0.3);
            padding-bottom: 10px;
            margin-top: 30px;
        }
        
        h3 {
            color: var(--tactical-orange);
            font-size: 1.4rem;
            margin-top: 25px;
        }
        
        .intro {
            font-size: 1.1rem;
            background: rgba(30, 40, 50, 0.6);
            padding: 15px;
            border-left: 3px solid var(--tactical-orange);
            margin: 20px 0;
        }
        
        .roi-highlight {
            color: var(--tactical-orange);
            font-weight: bold;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(20, 25, 35, 0.7);
        }
        
        .spec-table th {
            background: rgba(255, 119, 0, 0.15);
            color: var(--tactical-orange);
            padding: 12px;
            text-align: left;
            border: 1px solid rgba(255, 119, 0, 0.2);
        }
        
        .spec-table td {
            padding: 12px;
            border: 1px solid rgba(255, 119, 0, 0.1);
        }
        
        .spec-table tr:nth-child(even) {
            background: rgba(30, 35, 45, 0.4);
        }
        
        .client-proof {
            background: rgba(30, 40, 50, 0.6);
            padding: 15px;
            margin: 20px 0;
            border-left: 3px solid var(--tactical-orange);
            position: relative;
        }
        
        .client-proof::before {
            content: "✓";
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: var(--tactical-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .faq-item {
            margin-bottom: 20px;
        }
        
        .faq-question {
            color: var(--tactical-orange);
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .target-lock {
            display: inline-block;
            position: relative;
            padding: 0 10px;
        }
        
        .target-lock::before,
        .target-lock::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 15px;
            height: 2px;
            background: var(--tactical-orange);
        }
        
        .target-lock::before {
            left: -5px;
        }
        
        .target-lock::after {
            right: -5px;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--tactical-orange);
            color: #000;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 20px 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 119, 0, 0.5);
        }
        
        .cta-button:hover {
            background: #ff8c00;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.5);
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--tactical-orange), transparent);
            margin: 30px 0;
        }
        
        .particle-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
    