/* WhizzMeet — Policy Pages */
:root {
    --brand:      #4f46e5;
    --brand-soft: #ede9fe;
    --ink:        #0f172a;
    --ink-2:      #334155;
    --ink-3:      #64748b;
    --border:     #e2e8f0;
    --surface-2:  #f8fafc;
    --green:      #059669;
    --amber:      #d97706;
    --red:        #dc2626;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.7; }

/* ── NAV ── */
.pol-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px; height: 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.pol-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16px; color: var(--ink); text-decoration: none; }
.pol-brand img { width: 28px; height: 28px; border-radius: 7px; }
.pol-nav-links { display: flex; gap: 6px; }
.pol-nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-3); text-decoration: none; padding: 5px 10px; border-radius: 6px; transition: all .12s; white-space: nowrap; }
.pol-nav-links a:hover, .pol-nav-links a.active { background: var(--brand-soft); color: var(--brand); }

/* ── HERO ── */
.pol-hero {
    background: linear-gradient(135deg, #0f1628 0%, #1e1b4b 60%, #0f2040 100%);
    color: #fff; padding: 64px 32px 52px; text-align: center;
}
.pol-hero .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: .04em; margin-bottom: 18px; }
.pol-hero h1 { margin: 0 0 12px; font-size: clamp(26px, 5vw, 40px); font-weight: 800; }
.pol-hero p { margin: 0; color: #a5b4fc; font-size: 15px; max-width: 560px; margin: 0 auto; }
.pol-hero .meta { margin-top: 20px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: #94a3b8; }
.pol-hero .meta span { display: flex; align-items: center; gap: 5px; }

/* ── LAYOUT ── */
.pol-wrap { max-width: 860px; margin: 0 auto; padding: 48px 32px 80px; }

/* ── TOC ── */
.pol-toc { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 22px 28px; margin-bottom: 40px; }
.pol-toc h3 { margin: 0 0 14px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }
.pol-toc ol { margin: 0; padding-left: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.pol-toc li { font-size: 14px; }
.pol-toc a { color: var(--brand); text-decoration: none; font-weight: 500; }
.pol-toc a:hover { text-decoration: underline; }

/* ── SECTIONS ── */
.pol-section { margin-bottom: 44px; scroll-margin-top: 80px; }
.pol-section h2 { font-size: 20px; font-weight: 700; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-soft); color: var(--ink); display: flex; align-items: center; gap: 8px; }
.pol-section h2 .sec-num { background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 999px; flex: none; }
.pol-section h3 { font-size: 16px; font-weight: 700; margin: 22px 0 8px; color: var(--ink-2); }
.pol-section p  { margin: 0 0 14px; color: var(--ink-2); font-size: 15px; }
.pol-section ul, .pol-section ol { margin: 0 0 14px; padding-left: 22px; color: var(--ink-2); font-size: 15px; }
.pol-section li { margin-bottom: 6px; }
.pol-section strong { color: var(--ink); }

/* ── CALLOUTS ── */
.callout { display: flex; gap: 14px; padding: 16px 18px; border-radius: 10px; margin: 18px 0; font-size: 14px; line-height: 1.6; }
.callout.info   { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e40af; }
.callout.warn   { background: #fffbeb; border-left: 4px solid var(--amber); color: #92400e; }
.callout.green  { background: #f0fdf4; border-left: 4px solid var(--green); color: #065f46; }
.callout.brand  { background: var(--brand-soft); border-left: 4px solid var(--brand); color: #3730a3; }
.callout-icon { font-size: 18px; flex: none; line-height: 1.4; }
.callout-body  { flex: 1; }
.callout-body strong { display: block; font-weight: 700; margin-bottom: 4px; }

/* ── TABLE ── */
.pol-table-wrap { overflow-x: auto; margin: 16px 0; border-radius: 10px; border: 1px solid var(--border); }
.pol-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pol-table th { background: var(--surface-2); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--ink-2); border-bottom: 1px solid var(--border); }
.pol-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--ink-2); vertical-align: top; }
.pol-table tr:last-child td { border-bottom: none; }
.pol-table tr:hover td { background: var(--surface-2); }

/* ── RIGHTS GRID ── */
.rights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin: 16px 0; }
.right-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.right-card .right-icon { font-size: 24px; margin-bottom: 8px; }
.right-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--ink); }
.right-card p  { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* ── CONTACT BOX ── */
.contact-box { background: linear-gradient(135deg, #0f1628, #1e1b4b); color: #fff; border-radius: 14px; padding: 28px 32px; margin-top: 40px; }
.contact-box h3 { margin: 0 0 18px; font-size: 18px; font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.contact-item .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #a5b4fc; margin-bottom: 4px; }
.contact-item .val { font-size: 14px; color: #e2e8f0; }
.contact-item a { color: #a5b4fc; }

/* ── COMPLIANCE BADGES ── */
.compliance-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.cbadge { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.cbadge.dpdpa { background: #fef3c7; color: #92400e; }
.cbadge.gdpr  { background: #dbeafe; color: #1e40af; }
.cbadge.ccpa  { background: #fce7f3; color: #9d174d; }
.cbadge.iso   { background: #d1fae5; color: #065f46; }
.cbadge.it    { background: #ede9fe; color: #4338ca; }

/* ── FOOTER ── */
.pol-footer { background: var(--surface-2); border-top: 1px solid var(--border); padding: 32px; text-align: center; }
.pol-footer p { margin: 0 0 8px; font-size: 13px; color: var(--ink-3); }
.pol-footer .pol-footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pol-footer a { font-size: 13px; color: var(--brand); text-decoration: none; }
.pol-footer a:hover { text-decoration: underline; }

/* ── HUB PAGE ── */
.pol-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.pol-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 24px; text-decoration: none; color: inherit; transition: all .15s; display: flex; flex-direction: column; gap: 10px; }
.pol-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(79,70,229,.1); transform: translateY(-2px); }
.pol-card-icon { font-size: 32px; }
.pol-card h3 { margin: 0; font-size: 16px; font-weight: 700; color: var(--ink); }
.pol-card p  { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.pol-card .pol-card-meta { margin-top: auto; font-size: 12px; color: var(--ink-4, #94a3b8); display: flex; align-items: center; gap: 6px; }
.pol-card .arrow { margin-left: auto; color: var(--brand); font-size: 18px; }

@media (max-width: 640px) {
    .pol-nav { padding: 0 16px; }
    .pol-nav-links { display: none; }
    .pol-hero { padding: 40px 20px 36px; }
    .pol-wrap { padding: 28px 16px 60px; }
    .pol-toc ol { grid-template-columns: 1fr; }
    .contact-box { padding: 20px; }
    .rights-grid { grid-template-columns: 1fr; }
    .pol-hero .meta { gap: 12px; }
}
