/* ═══════════════════════════════════════════
   SafePlate - Privacy Policy Page Styles
   ═══════════════════════════════════════════ */

        :root {
            --bg: #0F172A;
            --surface: #1E293B;
            --text: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --primary: #3B82F6;
            --border: rgba(148, 163, 184, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
        }

        /* ─── Noise texture overlay ──────── */
        .noise-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.04;
            width: 100%;
            height: 100%;
        }

        /* ─── Navigation ─────────────────── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            font-weight: 700;
            font-size: 15px;
        }
        .nav-logo {
            width: 28px;
            height: 28px;
            border-radius: 7px;
        }
        .nav-back {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .nav-back:hover { color: var(--primary); }

        /* ─── Container ──────────────────── */
        .container {
            max-width: 720px;
            margin: 0 auto;
            padding: 48px 24px 80px;
        }

        /* ─── Header ─────────────────────── */
        .page-header {
            text-align: center;
            margin-bottom: 48px;
            animation: fadeUp 0.6s ease both;
        }
        .page-header-icon {
            font-size: 48px;
            display: block;
            margin-bottom: 20px;
        }
        .page-header h1 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-header .effective {
            color: var(--text-muted);
            font-size: 13px;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ─── Highlight box ──────────────── */
        .highlight-box {
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 14px;
            padding: 24px 28px;
            margin-bottom: 40px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            animation: fadeUp 0.6s ease 0.1s both;
        }
        .highlight-box-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .highlight-box p {
            color: var(--text);
            font-weight: 500;
            margin-bottom: 0;
            font-size: 15px;
            line-height: 1.65;
        }

        /* ─── Sections ───────────────────── */
        .section {
            margin-bottom: 36px;
            opacity: 0;
            transform: translateY(12px);
            animation: fadeUp 0.5s ease both;
        }
        .section:nth-child(3) { animation-delay: 0.15s; }
        .section:nth-child(4) { animation-delay: 0.2s; }
        .section:nth-child(5) { animation-delay: 0.25s; }
        .section:nth-child(6) { animation-delay: 0.3s; }
        .section:nth-child(7) { animation-delay: 0.35s; }

        h2 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h2 .section-num {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            background: rgba(148, 163, 184, 0.1);
            border-radius: 6px;
            padding: 3px 8px;
            letter-spacing: 0.5px;
        }

        p, li {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 12px;
        }

        ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }

        li {
            margin-bottom: 8px;
            padding-left: 4px;
        }
        li::marker {
            color: var(--text-muted);
        }

        a {
            color: var(--primary);
            text-decoration: none;
        }
        a:hover { text-decoration: underline; }

        strong { color: var(--text); }

        /* ─── Zero Data Badge Row ────────── */
        .zero-data-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 40px;
            animation: fadeUp 0.6s ease 0.12s both;
        }
        .zero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(34, 197, 94, 0.9);
            border: 1px solid rgba(34, 197, 94, 0.2);
            background: rgba(34, 197, 94, 0.06);
            white-space: nowrap;
        }
        .zero-badge-icon { font-size: 13px; }

        /* ─── Footer ─────────────────────── */
        .footer {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .footer-logo {
            width: 24px;
            height: 24px;
            border-radius: 5px;
        }
        .footer-brand-text {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
        }
        .footer p {
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-home {
            display: inline-block;
            margin-top: 12px;
            color: var(--text-secondary);
            font-size: 13px;
        }
        .footer-home:hover { color: var(--primary); }

        /* ─── Large screens ──────────────── */
        @media (min-width: 1200px) {
            .container {
                max-width: 860px;
            }
        }

        /* ─── Mobile ─────────────────────── */
        @media (max-width: 480px) {
            .page-header h1 { font-size: 24px; }
            .highlight-box { flex-direction: column; padding: 20px; }
            .zero-data-badges { gap: 8px; }
            .zero-badge { font-size: 11px; padding: 5px 10px; }
        }
    
