:root {
            --primary: #00338D;
            --primary-dark: #002260;
            --primary-light: #eef3fb;
            --accent: #10b981;
            --accent-dark: #059669;
            --text-main: #0f172a;
            --text-muted: #475569;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-md: 0 10px 30px rgba(0, 51, 141, 0.08);
            --shadow-lg: 0 20px 45px rgba(0, 51, 141, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; 
            background-color: var(--bg-body); 
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* HEADER */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-inner { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            height: 76px;
        }
        .logo img { height: 48px; width: auto; }
        .nav-links { display: flex; gap: 28px; align-items: center; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--text-muted); 
            font-size: 0.95rem; 
            font-weight: 600; 
            transition: color 0.2s; 
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 700; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(0, 51, 141, 0.25);
        }
        .btn-primary:hover { 
            background: var(--primary-dark); 
            transform: translateY(-2px); 
        }

        /* PAGE HEADER */
        .page-header {
            padding: 80px 0 50px;
            background: radial-gradient(circle at top right, #e8f0fe 0%, transparent 50%), #ffffff;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }
        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .page-header h1 { 
            font-size: clamp(2.25rem, 4vw, 3.25rem); 
            font-weight: 800; 
            color: var(--primary); 
            margin-bottom: 16px; 
            letter-spacing: -1px;
        }
        .page-header p { 
            font-size: 1.2rem; 
            color: var(--text-muted); 
            max-width: 750px; 
            margin: 0 auto; 
            line-height: 1.6;
        }

        /* COMPARISON DUAL CARDS */
        .dual-section { padding: 60px 0 80px; }
        .dual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 60px;
        }
        .dual-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            box-shadow: var(--shadow-md);
            position: relative;
        }
        .dual-card.dash { border-top: 5px solid var(--primary); }
        .dual-card.scan { border-top: 5px solid var(--accent); }

        .dual-tag {
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }
        .dual-card.dash .dual-tag { color: var(--primary); }
        .dual-card.scan .dual-tag { color: var(--accent-dark); }

        .dual-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .dual-desc {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .dual-features { list-style: none; }
        .dual-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.95rem;
            color: var(--text-main);
        }
        .dual-features .icon {
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* COMPARISON TABLE */
        .table-section {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            margin-bottom: 80px;
            box-shadow: var(--shadow-sm);
        }
        .table-header {
            text-align: center;
            margin-bottom: 36px;
        }
        .table-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .table-header p { color: var(--text-muted); font-size: 1rem; }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
        }
        .comp-table th {
            text-align: left;
            padding: 16px 20px;
            background: var(--bg-body);
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--border);
        }
        .comp-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.95rem;
        }
        .comp-table tr:hover td { background: #f8fafc; }
        .comp-table .feature-name { font-weight: 600; color: var(--text-main); }
        .comp-table .status-yes { color: var(--accent-dark); font-weight: 800; }
        .comp-table .status-no { color: #cbd5e1; font-weight: 800; }

        /* FOOTER */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 40px;
            font-size: 0.95rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }
        .footer-brand h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .footer-brand p {
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 320px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        @media (max-width: 968px) {
            .dual-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-links { display: none; }
            .table-section { padding: 24px 16px; overflow-x: auto; }
        }

        /* Helper classes for CSP compliance */
        .nav-login-link { color: var(--primary) !important; font-weight: 700 !important; }
        .footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }