/* ============================================================
   FlashBill — legal.css
   Extracted from legal/cookies, privacy, refund, terms — Phase 4
   ============================================================ */

/* ── cookies.html ── */

        :root {
            --gold: var(--gold);
            --bg: #0A0A0E;
            --border: rgba(200,169,110,0.12);
            --text: #F0EDE8;
            --text-muted: #7A7890;
            --text-soft: #B8B4C8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; line-height: 1.7; }
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 0 5%; height: 68px;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(10,10,14,0.95); backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-mark {
            width: 34px; height: 34px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif; font-weight: 900; font-size: 16px; color: var(--bg);
        }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); }
        .logo-text span { color: var(--gold); }
        .nav-back { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
        .nav-back:hover { color: var(--gold); }
        .container { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
        .page-label { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
        h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
        .last-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
        h2 { font-size: 20px; font-weight: 600; color: var(--text); margin: 40px 0 12px; }
        h2::before { content: '§'; color: var(--gold); margin-right: 8px; font-size: 16px; }
        p { color: var(--text-soft); margin-bottom: 16px; font-size: 15px; }
        ul { color: var(--text-soft); margin: 12px 0 16px 20px; font-size: 15px; }
        ul li { margin-bottom: 8px; }
        .highlight { background: rgba(200,169,110,0.08); border: 1px solid rgba(200,169,110,0.2); border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
        .highlight p { margin: 0; }
        .cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
        .cookie-table th { background: rgba(200,169,110,0.1); color: var(--gold); padding: 12px 16px; text-align: left; font-weight: 600; border-bottom: 1px solid var(--border); }
        .cookie-table td { padding: 12px 16px; color: var(--text-soft); border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: top; }
        .badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
        .badge-required { background: rgba(200,169,110,0.15); color: var(--gold); }
        .badge-optional { background: rgba(100,100,200,0.15); color: #9090E0; }
        a { color: var(--gold); text-decoration: none; }
        a:hover { text-decoration: underline; }
        footer { text-align: center; padding: 40px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
        footer a { color: var(--gold); }
    
/* ── privacy.html ── */

        :root {
            --gold: var(--gold);
            --bg: #0A0A0E;
            --bg2: #111118;
            --surface: #1C1C28;
            --border: rgba(200,169,110,0.12);
            --text: #F0EDE8;
            --text-muted: #7A7890;
            --text-soft: #B8B4C8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            line-height: 1.7;
        }
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 5%;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10,10,14,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo {
            display: flex; align-items: center; gap: 10px; text-decoration: none;
        }
        .logo-mark {
            width: 34px; height: 34px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: var(--radius);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 900; font-size: 16px; color: var(--bg);
        }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); }
        .logo-text span { color: var(--gold); }
        .nav-back { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
        .nav-back:hover { color: var(--gold); }
        .container { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
        .page-label { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
        h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
        .last-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
        h2 { font-size: 20px; font-weight: 600; color: var(--text); margin: 40px 0 12px; }
        h2::before { content: '§'; color: var(--gold); margin-right: 8px; font-size: 16px; }
        p { color: var(--text-soft); margin-bottom: 16px; font-size: 15px; }
        ul { color: var(--text-soft); margin: 12px 0 16px 20px; font-size: 15px; }
        ul li { margin-bottom: 8px; }
        .highlight { background: rgba(200,169,110,0.08); border: 1px solid rgba(200,169,110,0.2); border-radius: 10px; padding: 20px 24px; margin: 24px 0; }
        .highlight p { margin: 0; color: var(--text-soft); }
        .data-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
        .data-table th { background: rgba(200,169,110,0.1); color: var(--gold); padding: 12px 16px; text-align: left; font-weight: 600; border-bottom: 1px solid var(--border); }
        .data-table td { padding: 12px 16px; color: var(--text-soft); border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: top; }
        a { color: var(--gold); text-decoration: none; }
        a:hover { text-decoration: underline; }
        footer { text-align: center; padding: 40px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
        footer a { color: var(--gold); }
    

        #cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            width: calc(100% - 48px);
            max-width: 720px;
            background: var(--surface);
            border: 1px solid rgba(200,169,110,0.25);
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        #cookie-banner .cb-text {
            flex: 1;
            min-width: 240px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.5;
        }
        #cookie-banner .cb-text strong {
            color: var(--text);
        }
        #cookie-banner .cb-text a {
            color: var(--gold);
            text-decoration: none;
        }
        #cookie-banner .cb-text a:hover {
            text-decoration: underline;
        }
        #cookie-banner .cb-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }
        #cookie-banner .cb-accept {
            padding: 10px 22px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg);
            border: none;
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
        }
        #cookie-banner .cb-accept:hover {
            box-shadow: 0 4px 16px rgba(200,169,110,0.4);
        }
        #cookie-banner .cb-necessary {
            padding: 10px 22px;
            background: transparent;
            color: var(--text-muted);
            border: 1px solid rgba(200,169,110,0.2);
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.2s;
        }
        #cookie-banner .cb-necessary:hover {
            color: var(--gold);
            border-color: rgba(200,169,110,0.4);
        }
        @media (max-width: 600px) {
            #cookie-banner {
                bottom: 0;
                left: 0;
                right: 0;
                transform: none;
                width: 100%;
                border-radius: 16px 16px 0 0;
                flex-direction: column;
                align-items: stretch;
            }
            #cookie-banner .cb-actions {
                flex-direction: column;
            }
        }
    
/* ── refund.html ── */

        :root {
            --gold: var(--gold);
            --bg: #0A0A0E;
            --border: rgba(200,169,110,0.12);
            --text: #F0EDE8;
            --text-muted: #7A7890;
            --text-soft: #B8B4C8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; line-height: 1.7; }
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 0 5%; height: 68px;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(10,10,14,0.95); backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-mark {
            width: 34px; height: 34px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif; font-weight: 900; font-size: 16px; color: var(--bg);
        }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); }
        .logo-text span { color: var(--gold); }
        .nav-back { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
        .nav-back:hover { color: var(--gold); }
        .container { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
        .page-label { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
        h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
        .last-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
        h2 { font-size: 20px; font-weight: 600; color: var(--text); margin: 40px 0 12px; }
        h2::before { content: '§'; color: var(--gold); margin-right: 8px; font-size: 16px; }
        p { color: var(--text-soft); margin-bottom: 16px; font-size: 15px; }
        ul { color: var(--text-soft); margin: 12px 0 16px 20px; font-size: 15px; }
        ul li { margin-bottom: 8px; }
        .highlight {
            background: rgba(200,169,110,0.08);
            border: 1px solid rgba(200,169,110,0.2);
            border-radius: 10px; padding: 20px 24px; margin: 24px 0;
        }
        .highlight p { margin: 0; }
        .green-box {
            background: rgba(34,197,94,0.08);
            border: 1px solid rgba(34,197,94,0.2);
            border-radius: 10px; padding: 20px 24px; margin: 24px 0;
        }
        .green-box p { margin: 0; color: #86efac; }
        a { color: var(--gold); text-decoration: none; }
        a:hover { text-decoration: underline; }
        footer { text-align: center; padding: 40px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
        footer a { color: var(--gold); }
    
/* ── terms.html ── */

        :root {
            --gold: var(--gold);
            --bg: #0A0A0E;
            --bg2: #111118;
            --surface: #1C1C28;
            --border: rgba(200,169,110,0.12);
            --text: #F0EDE8;
            --text-muted: #7A7890;
            --text-soft: #B8B4C8;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            line-height: 1.7;
        }
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 5%;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10,10,14,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-mark {
            width: 34px; height: 34px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: var(--radius);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 900; font-size: 16px; color: var(--bg);
        }
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 20px; font-weight: 700; color: var(--text);
        }
        .logo-text span { color: var(--gold); }
        .nav-back {
            font-size: 14px; color: var(--text-muted);
            text-decoration: none; transition: color 0.2s;
        }
        .nav-back:hover { color: var(--gold); }
        .container {
            max-width: 760px;
            margin: 0 auto;
            padding: 120px 24px 80px;
        }
        .page-label {
            font-size: 12px; color: var(--gold);
            text-transform: uppercase; letter-spacing: 2px;
            font-weight: 600; margin-bottom: 12px;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px; font-weight: 700;
            line-height: 1.15; margin-bottom: 12px;
        }
        .last-updated {
            font-size: 14px; color: var(--text-muted);
            margin-bottom: 48px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }
        h2 {
            font-size: 20px; font-weight: 600;
            color: var(--text); margin: 40px 0 12px;
        }
        h2::before {
            content: '§';
            color: var(--gold);
            margin-right: 8px;
            font-size: 16px;
        }
        p { color: var(--text-soft); margin-bottom: 16px; font-size: 15px; }
        ul { color: var(--text-soft); margin: 12px 0 16px 20px; font-size: 15px; }
        ul li { margin-bottom: 8px; }
        .highlight {
            background: rgba(200,169,110,0.08);
            border: 1px solid rgba(200,169,110,0.2);
            border-radius: 10px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .highlight p { margin: 0; color: var(--text-soft); }
        a { color: var(--gold); text-decoration: none; }
        a:hover { text-decoration: underline; }
        footer {
            text-align: center;
            padding: 40px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-muted);
        }
        footer a { color: var(--gold); }
    

.legal-wrap { max-width: 700px; margin: 0 auto; padding: 2rem 1rem; }
.legal-title { margin-bottom: 0.5rem; }
.legal-sub { color: var(--color-text-muted); margin-bottom: 2rem; }
.legal-card { margin-bottom: 1.5rem; }
.legal-card__title { margin-bottom: 1rem; }
.legal-card__body { color: var(--color-text-muted); line-height: 1.7; }
.legal-card__body--mt { color: var(--color-text-muted); line-height: 1.7; margin-top: 1rem; }
.legal-card__list { line-height: 2; padding-left: 1.5rem; }
.legal-card__list--muted { color: var(--color-text-muted); line-height: 2; padding-left: 1.5rem; }
.legal-cta { text-align: center; margin-top: 2rem; }
.legal-cta-btn { margin-top: 0.5rem; }
