
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* PRIMARY - Navy Blues (from logo) */
            --primary: #0f2562;
            --primary-medium: #1e3a8a;
            --primary-light: #3b5998;
            --primary-dark: #0a1a45;

            /* ACCENT - Alert Gold (hero color) */
            --accent: #fbbf24;
            --accent-dark: #f59e0b;
            --accent-light: #fcd34d;

            /* NEUTRALS */
            --text-primary: #0f2562;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-gray: #f1f5f9;
            --border: #e2e8f0;

            /* LEGACY (for gradual migration) */
            --success: #10b981;
            --danger: #ef4444;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        /* Typography with Logo-Inspired Styling */
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
        }
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Header */
        header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.98);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            text-decoration: none;
            display: inline-block;
        }

        /* Alert Pro Logo - Navigation Bar Version */
        .alert-pro-logo {
            text-align: center;
            display: inline-block;
        }

        .alert-pro-logo .main-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .alert-pro-logo .alert-text {
            font-size: 24px;
            font-weight: 800;
            color: #0f2562;
            letter-spacing: -1px;
            line-height: 1;
        }

        .alert-pro-logo .pipe {
            font-size: 24px;
            font-weight: 200;
            color: #fbbf24;
            opacity: 0.7;
            line-height: 1;
        }

        .alert-pro-logo .pro-text {
            font-size: 24px;
            font-weight: 300;
            color: #1e3a8a;
            letter-spacing: -1px;
            line-height: 1;
        }

        .alert-pro-logo .solutions-text {
            font-size: 8px;
            font-weight: 600;
            color: #64748b;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(15, 37, 98, 0.1);
            padding: 0.5rem;
            min-width: 200px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, visibility 0.2s;
            visibility: hidden;
            margin-top: 0;
            padding-top: 0.75rem;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transition-delay: 0.1s;
        }

        .dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .dropdown-menu a:hover {
            background: var(--bg-light);
        }

        .dropdown-menu a:hover::after {
            display: none;
        }

        /* Mega Menu Styles */
        .mega-menu {
            min-width: 650px;
            padding: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .mega-menu-content {
            display: flex;
            overflow: hidden;
            border-radius: 8px;
            max-height: 600px;
        }

        .mega-menu-image {
            flex: 0 0 250px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .mega-menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .mega-menu-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            color: white;
            z-index: 2;
        }

        .mega-menu-image-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .mega-menu-image-overlay p {
            font-size: 0.85rem;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.95);
        }

        .mega-menu-links {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            max-height: 550px;
            overflow-y: auto;
        }

        /* Custom scrollbar for mega menu */
        .mega-menu-links::-webkit-scrollbar {
            width: 6px;
        }

        .mega-menu-links::-webkit-scrollbar-track {
            background: var(--bg-light);
            border-radius: 3px;
        }

        .mega-menu-links::-webkit-scrollbar-thumb {
            background: var(--text-light);
            border-radius: 3px;
        }

        .mega-menu-links::-webkit-scrollbar-thumb:hover {
            background: var(--text-secondary);
        }

        .mega-menu-links h4 {
            color: var(--primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }

        .mega-menu-links a {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 6px;
            transition: all 0.2s;
            text-decoration: none;
        }

        .mega-menu-links a:hover {
            background: var(--bg-light);
            transform: translateX(5px);
        }

        .mega-menu-links a > div {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .mega-menu-links a strong {
            color: var(--primary);
            font-size: 0.95rem;
            font-weight: 600;
        }

        .mega-menu-links a small {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.3;
        }

        .mega-menu-links a.view-all-mega {
            margin-top: 0.5rem;
            padding: 0.875rem 1rem;
            background: var(--primary);
            color: white;
            font-weight: 600;
            justify-content: center;
            border-radius: 6px;
        }

        .mega-menu-links a.view-all-mega:hover {
            background: var(--primary-medium);
            transform: translateX(0) translateY(-2px);
            box-shadow: 0 4px 12px rgba(15, 37, 98, 0.2);
        }

        /* View All button at top */
        .mega-menu-links a.view-all-top {
            margin-top: 0;
            margin-bottom: 1rem;
            order: -1;
        }

        /* Mega menu navigation v1.0 - Oct 2025 */

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-outline {
            padding: 0.625rem 1.25rem;
            border: 2px solid var(--primary);
            border-radius: 6px;
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--bg-white);
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            padding: 0.625rem 1.25rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
            border: 2px solid var(--accent);
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 5% 5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
        }

        .hero-text h1 {
            color: var(--bg-white);
            margin-bottom: 1.5rem;
            font-size: 4rem;
        }

        .hero-text h1 .heavy {
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero-text h1 .light {
            font-weight: 300;
            letter-spacing: -1px;
            color: var(--accent-light);
        }

        .hero-text p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-text p strong {
            color: var(--accent);
            font-weight: 700;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-hero {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-hero-primary {
            background: var(--accent);
            color: var(--primary);
            border: 2px solid var(--accent);
        }

        .btn-hero-primary:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
        }

        .btn-hero-secondary {
            background: transparent;
            color: var(--bg-white);
            border: 2px solid var(--bg-white);
        }

        .btn-hero-secondary:hover {
            background: var(--bg-white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(251, 191, 36, 0.3);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .hero-interface {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(251, 191, 36, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-interface:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 70px rgba(251, 191, 36, 0.3);
        }

        /* Features Grid */
        .features-section {
            padding: 5rem 5%;
            background: var(--bg-white);
        }

        .features-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.375rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .features-header h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .features-header p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }
        .feature-card:nth-child(7) { animation-delay: 0.7s; }
        .feature-card:nth-child(8) { animation-delay: 0.8s; }
        .feature-card:nth-child(9) { animation-delay: 0.9s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(15, 37, 98, 0.2);
            border-color: var(--primary-medium);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--accent);
        }

        .feature-card:hover .feature-icon svg {
            color: var(--primary);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .feature-icon svg {
            width: 36px;
            height: 36px;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .feature-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }

        .feature-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Education Focus Section */
        .education-focus {
            padding: 5rem 5%;
            background: var(--bg-white);
            position: relative;
        }

        .education-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .education-text {
            padding-right: 2rem;
        }

        .education-text h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .education-text > p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .education-benefits {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .education-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .education-benefits li svg {
            flex-shrink: 0;
            color: var(--accent);
            margin-top: 2px;
        }

        .education-benefits li strong {
            color: var(--primary);
        }

        .education-visual {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 37, 98, 0.2);
        }

        .classroom-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .education-visual:hover .classroom-image {
            transform: scale(1.05);
        }

        .education-overlay {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: rgba(15, 37, 98, 0.95);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 2px solid var(--accent);
        }

        .overlay-stat {
            text-align: center;
        }

        .overlay-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            letter-spacing: -1px;
        }

        .overlay-label {
            font-size: 0.875rem;
            color: var(--bg-white);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.5rem;
            font-weight: 600;
        }

        /* Industries Section */
        .industries-section {
            padding: 4rem 5%;
            background: var(--bg-light);
        }

        .industries-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .industries-header {
            margin-bottom: 3rem;
        }

        .industries-header h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .industry-badge {
            background: var(--bg-white);
            padding: 0;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            overflow: hidden;
            height: 320px;
        }

        .industry-badge-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .industry-badge-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
        }

        .industry-badge:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(15, 37, 98, 0.25);
        }

        .industry-badge:hover .industry-badge-image {
            transform: scale(1.05);
        }

        .industry-badge:hover .industry-badge-content {
            background: var(--primary);
            color: var(--bg-white);
        }

        .industry-badge:hover .industry-badge-content svg {
            filter: brightness(0) invert(1);
        }

        .industry-badge svg {
            width: 36px;
            height: 36px;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .industry-badge:hover svg {
            color: var(--accent-light);
            transform: scale(1.1);
        }


        /* Partnership Section */
        .partnership {
            padding: 4rem 5%;
            background: var(--bg-white);
        }

        .partnership-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .partnership-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--bg-white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .partnership-logo {
            margin: 2rem auto;
            max-width: 300px;
        }

        .partnership-logo img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .partnership-description {
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .partnership-cta {
            margin-top: 2rem;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 5%;
            background: var(--bg-light);
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: var(--primary);
            padding: 4rem;
            border-radius: 12px;
            color: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .cta-content h2 {
            color: var(--bg-white);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.125rem;
            opacity: 0.95;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-cta-white {
            background: var(--accent);
            color: var(--primary);
            border: 2px solid var(--accent);
        }

        .btn-cta-white:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
            transform: translateY(-2px);
        }

        .btn-cta-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-cta-outline:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Mission Reminder Section */
        .mission-reminder {
            padding: 5rem 5%;
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .mission-reminder-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .mission-text {
            padding-right: 2rem;
        }

        .mission-text h2 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .mission-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .mission-text p strong {
            color: var(--primary);
            font-weight: 700;
        }

        .mission-highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
            color: var(--bg-white);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
            border-left: 4px solid var(--accent);
        }

        .mission-highlight p {
            color: var(--bg-white);
            margin: 0;
            font-size: 1.125rem;
            font-style: italic;
        }

        .mission-image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 37, 98, 0.2);
        }

        .mission-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        /* Emergency Response Section */
        .emergency-response-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .emergency-response-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(251,191,36,0.1)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .emergency-response-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        .emergency-image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border: 3px solid var(--accent);
        }

        .emergency-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .emergency-badge-overlay {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: var(--accent);
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
        }

        .emergency-text {
            color: var(--bg-white);
        }

        .emergency-text .section-badge {
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid var(--accent);
            color: var(--accent);
        }

        .emergency-text h2 {
            color: var(--bg-white);
            margin-bottom: 1.5rem;
            font-size: 2.75rem;
        }

        .emergency-text h2 .highlight {
            color: var(--accent);
            font-weight: 800;
        }

        .emergency-text > p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .emergency-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .emergency-features li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--accent);
            backdrop-filter: blur(10px);
        }

        .emergency-features li svg {
            flex-shrink: 0;
            color: var(--accent);
            margin-top: 2px;
            width: 28px;
            height: 28px;
        }

        .emergency-features li div {
            flex: 1;
        }

        .emergency-features li strong {
            color: var(--accent);
            font-size: 1.125rem;
            display: block;
            margin-bottom: 0.375rem;
        }

        .emergency-features li span {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .emergency-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--accent);
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .emergency-cta:hover {
            background: var(--accent-light);
            border-color: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
        }

        /* Media Spotlight Section */
        .media-spotlight {
            padding: 5rem 5%;
            background: var(--bg-light);
        }

        .media-spotlight-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .media-spotlight h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .media-spotlight > .media-spotlight-content > p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .media-videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .media-video-card {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .media-video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(15, 37, 98, 0.12);
            border-color: var(--accent);
        }

        .media-video-thumbnail {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: var(--bg-gray);
            overflow: hidden;
        }

        .media-video-thumbnail iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .media-video-info {
            padding: 1.5rem;
        }

        .media-video-outlet {
            display: inline-block;
            background: var(--primary);
            color: var(--bg-white);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }

        .media-video-outlet.nbc { background: #0078c9; }
        .media-video-outlet.abc { background: #ffde00; color: var(--primary); }
        .media-video-outlet.cbs { background: #0054a6; }

        .media-video-card h4 {
            color: var(--primary);
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .media-video-card p {
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin: 0;
        }

        /* See in Action Hero Section */
        .see-in-action {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .see-in-action::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 140%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .action-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .action-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .action-badge {
            display: inline-block;
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .action-header h2 {
            color: var(--bg-white);
            margin-bottom: 1rem;
            font-size: 3rem;
        }

        .action-header p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .action-video-showcase {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border: 3px solid var(--accent);
            max-width: 900px;
            margin: 0 auto;
        }

        .action-video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: var(--bg-gray);
        }

        .action-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .action-video-details {
            padding: 2rem;
            background: var(--bg-white);
            text-align: center;
        }

        .action-outlet-badge {
            display: inline-block;
            background: #0078c9;
            color: var(--bg-white);
            padding: 0.5rem 1.25rem;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .action-video-details h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.75rem;
        }

        .action-video-details p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            margin: 0;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--bg-white);
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--bg-white);
        }

        .footer-brand p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-certifications {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cert-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.375rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--bg-white);
        }

        .footer-column h4 {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
            opacity: 0.9;
            color: var(--bg-white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--bg-white);
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.2s;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            opacity: 1;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--bg-white);
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.875rem;
            transition: opacity 0.2s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }

            .hero {
                padding: 8rem 3% 3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
                word-wrap: break-word;
            }

            .hero-text p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .nav-cta .btn-outline {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                width: 100%;
                max-width: 100%;
            }

            .hero-text {
                width: 100%;
                max-width: 100%;
                padding: 0;
            }

            .hero-badge {
                display: inline-flex;
                max-width: 90%;
                justify-content: center;
            }

            .hero-visual {
                width: 100%;
                padding: 0;
            }

            .hero-interface {
                max-width: 95%;
                margin: 0 auto;
                width: 100%;
            }

            .hero-stats {
                justify-content: center;
                gap: 1.5rem;
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .btn-hero {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .education-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .education-text {
                padding-right: 0;
                text-align: center;
            }

            .education-benefits {
                text-align: left;
            }

            .education-overlay {
                bottom: 1rem;
                right: 1rem;
                padding: 1rem 1.5rem;
            }

            .overlay-number {
                font-size: 1.5rem;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .mission-reminder-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-text {
                padding-right: 0;
                text-align: center;
            }

            .mission-text h2 {
                font-size: 2rem;
            }

            .emergency-response-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .emergency-text h2 {
                font-size: 2rem;
            }

            .emergency-badge-overlay {
                top: 1rem;
                left: 1rem;
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .media-videos-grid {
                grid-template-columns: 1fr;
            }

            .action-header h2 {
                font-size: 2rem;
            }

            .action-video-showcase {
                margin: 0 1rem;
            }

            .action-video-details {
                padding: 1.5rem;
            }

            .action-video-details h3 {
                font-size: 1.25rem;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            .hero {
                padding: 7rem 2% 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-text p {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }

            .hero-stats {
                gap: 1rem;
            }

            .stat-value {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }
        }


/* Regional editorial layouts, September 2026. */
.content-hero{padding:9rem 5% 3rem;background:#0f2562;color:white}
.content-hero-inner{max-width:1100px;margin:auto}.content-hero h1{font-size:clamp(2.1rem,4.5vw,3.8rem);line-height:1.12;color:white;max-width:1000px;margin:1rem 0;letter-spacing:-.035em}
.content-hero p{max-width:850px;font-size:1.15rem;color:#e2e8f0;line-height:1.75}.content-hero a{color:#fcd34d}.content-hero .eyebrow{color:#fbbf24;text-transform:uppercase;font-size:.8rem;letter-spacing:.12em;font-weight:700}
.reading-shell{max-width:1100px;margin:auto;padding:3rem 5% 4rem;display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:3rem;align-items:start}
.reading-body{min-width:0}.reading-body h2{font-size:1.55rem;line-height:1.3;margin:2.2rem 0 .8rem;letter-spacing:-.02em}.reading-body p,.reading-body li{font-size:1.06rem;line-height:1.85;color:#334155}.reading-body p{margin:0 0 1.1rem}.reading-body ul{padding-left:1.4rem;margin:1rem 0}.reading-body a{color:#0f2562;text-decoration:underline;text-underline-offset:3px}.reading-body a:hover{color:#1e3a8a}
.reading-aside{position:sticky;top:110px}.reading-aside img{width:100%;height:auto;border-radius:12px}.reading-aside figcaption{font-size:.75rem;color:#64748b;line-height:1.5;margin-top:.6rem}.reading-aside a{display:block;margin:1rem 0;font-weight:700;color:#0f2562}.reading-aside .btn-primary{color:white;text-align:center;font-size:.9rem}.editorial-note{background:#f8fafc;border-left:4px solid #fbbf24;padding:1.2rem;margin:1.5rem 0}.editorial-note p:last-child{margin-bottom:0}.reading-body .source-list li{font-size:.94rem;overflow-wrap:anywhere}.regional-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin:2rem 0}.regional-card{padding:1.5rem;background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px}.regional-card h2{margin-top:0}.regional-band{padding:4rem 5%;background:#f8fafc;border-bottom:3px solid #fbbf24}.regional-band>div{max-width:1200px;margin:auto}.regional-band h2{font-size:clamp(1.8rem,3vw,2.7rem)}.regional-band p{max-width:900px;margin:1rem 0;color:#475569}.regional-links{display:flex;flex-wrap:wrap;gap:.75rem;margin:1.5rem 0}.regional-links a{border:1px solid #cbd5e1;border-radius:6px;padding:.7rem 1rem;background:white;color:#0f2562;font-weight:700;text-decoration:none}
@media(max-width:800px){.reading-shell{grid-template-columns:1fr;gap:1.5rem}.reading-aside{position:static;max-width:420px}.regional-cards{grid-template-columns:1fr}.content-hero{padding-top:7rem}.reading-body h2{font-size:1.4rem}}
