
        :root {
            --tactical-gray: #BDC3C7;
            --alert-orange: #FF7700;
            --crisis-red: #E74C3C;
            --radar-green: #2ECC71;
        }
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
            color: var(--tactical-gray);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        /* 3D Particle Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--alert-orange);
            border-radius: 50%;
            animation: float 6s infinite linear;
            box-shadow: 0 0 6px var(--alert-orange);
        }
        @keyframes float {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
        }
        /* Main Content */
        h1 {
            color: var(--alert-orange);
            font-size: 2.2em;
            text-shadow: 0 0 10px rgba(255, 119, 0, 0.3);
            margin-bottom: 10px;
            position: relative;
            z-index: 10;
        }
        h2 {
            color: var(--radar-green);
            border-left: 4px solid var(--alert-orange);
            padding-left: 15px;
            font-size: 1.5em;
            margin-top: 30px;
            position: relative;
            z-index: 10;
        }
        h3 {
            color: #FFF;
            font-size: 1.2em;
            margin-top: 20px;
            position: relative;
            z-index: 10;
        }
        .hero-banner {
            background: rgba(255, 119, 0, 0.1);
            border: 2px solid var(--alert-orange);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            z-index: 10;
        }
        .roi-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(44, 62, 80, 0.8);
            border-radius: 8px;
            overflow: hidden;
        }
        .roi-table th {
            background: var(--alert-orange);
            color: white;
            padding: 12px;
            text-align: left;
        }
        .roi-table td {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.2);
        }
        .highlight-box {
            background: rgba(255, 119, 0, 0.1);
            border: 1px solid var(--alert-orange);
            border-radius: 5px;
            padding: 15px;
            margin: 15px 0;
            position: relative;
            z-index: 10;
        }
        .client-proof {
            background: rgba(46, 204, 113, 0.1);
            border-left: 4px solid var(--radar-green);
            padding: 15px;
            margin: 15px 0;
            font-style: italic;
        }
        .cta-button {
            background: linear-gradient(45deg, var(--alert-orange), #FF9500);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 0 4px 8px rgba(255, 119, 0, 0.3);
            transition: all 0.3s;
            display: inline-block;
            margin: 10px 5px;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 119, 0, 0.4);
        }
        /* Radar Animation */
        .radar-sweep {
            position: relative;
            display: inline-block;
            margin: 0 5px;
        }
        .radar-sweep::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 2px;
            background: var(--alert-orange);
            transform-origin: left center;
            animation: sweep 2s infinite;
        }
        @keyframes sweep {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    