/* =========================================================
   Privacy Policy — Glass Designer LLC
   Brand-matched: deep red, white, clean professional
   ========================================================= */

:root {
    --pp-red: #9B0000;
    --pp-red-dark: #6e0000;
    --pp-red-light: rgba(155, 0, 0, 0.08);
    --pp-red-border: rgba(155, 0, 0, 0.18);
    --pp-bg: #f7f7f8;
    --pp-card: #ffffff;
    --pp-text: #1a1a1a;
    --pp-text-muted: #555;
    --pp-text-light: #777;
    --pp-border: #e8e8ec;
    --pp-radius: 20px;
    --pp-font: "Montserrat", system-ui, -apple-system, sans-serif;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--pp-bg);
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ========================
   Hero / Page Background
======================== */
.pp-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 16px 72px;
    background: var(--pp-bg);
}

.pp-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, var(--pp-red-dark) 100%);
    z-index: 0;
}

.pp-hero__bg::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--pp-bg));
}

/* ========================
   Container
======================== */
.pp-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

/* ========================
   Top Bar (nav + logo)
======================== */
.pp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pp-back {
    font-family: var(--pp-font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
}

.pp-back:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.pp-logo {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* ========================
   Card
======================== */
.pp-card {
    background: var(--pp-card);
    border-radius: var(--pp-radius);
    padding: 48px 44px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--pp-border);
}

/* ========================
   Title Area
======================== */
.pp-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--pp-border);
    margin-bottom: 36px;
}

.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--pp-font);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pp-red);
    background: var(--pp-red-light);
    border: 1px solid var(--pp-red-border);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.pp-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--pp-red);
    flex-shrink: 0;
}

.pp-title {
    font-family: var(--pp-font);
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -0.6px;
    color: var(--pp-text);
    margin: 0 0 12px;
    line-height: 1.1;
}

.pp-subtitle {
    font-family: var(--pp-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--pp-text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* ========================
   Content Sections
======================== */
.pp-section {
    margin-bottom: 32px;
}

.pp-section:last-child {
    margin-bottom: 0;
}

.pp-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pp-section-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--pp-red-light);
    border: 1px solid var(--pp-red-border);
}

.pp-section-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--pp-red);
}

.pp-section-head h2 {
    font-family: var(--pp-font);
    font-weight: 800;
    font-size: 19px;
    color: var(--pp-text);
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.pp-body p {
    font-family: var(--pp-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--pp-text-muted);
    margin: 0 0 14px;
}

.pp-body ul {
    margin: 12px 0 18px 0;
    padding: 0;
    list-style: none;
}

.pp-body li {
    font-family: var(--pp-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--pp-text-muted);
    margin: 0 0 6px;
    padding-left: 20px;
    position: relative;
}

.pp-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pp-red);
    opacity: 0.5;
}

/* ========================
   Divider
======================== */
.pp-divider {
    border: none;
    height: 1px;
    background: var(--pp-border);
    margin: 28px 0;
}

/* ========================
   Callout Box
======================== */
.pp-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--pp-red-light);
    border-left: 3px solid var(--pp-red);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 18px 0;
}

.pp-callout-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 1px;
}

.pp-callout-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--pp-red);
}

.pp-callout p {
    font-family: var(--pp-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: var(--pp-text);
    margin: 0;
}

.pp-callout strong {
    color: var(--pp-red);
    font-weight: 800;
}

/* ========================
   Footer Meta
======================== */
.pp-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--pp-border);
    font-family: var(--pp-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--pp-text-light);
    letter-spacing: 0.2px;
}

.pp-meta svg {
    width: 18px;
    height: 18px;
    fill: var(--pp-red);
    flex-shrink: 0;
}

/* ========================
   Responsive
======================== */
@media (max-width: 768px) {
    .pp-hero {
        padding: 32px 14px 56px;
    }

    .pp-hero__bg {
        height: 260px;
    }

    .pp-card {
        padding: 32px 22px;
        border-radius: 16px;
    }

    .pp-title {
        font-size: 28px;
    }

    .pp-section-head h2 {
        font-size: 17px;
    }

    .pp-logo {
        height: 36px;
    }
}

@media (max-width: 420px) {
    .pp-hero {
        padding: 24px 10px 40px;
    }

    .pp-card {
        padding: 26px 16px;
    }

    .pp-title {
        font-size: 24px;
    }

    .pp-subtitle {
        font-size: 13px;
    }

    .pp-topbar {
        flex-direction: row-reverse;
    }

    .pp-back {
        font-size: 12px;
        padding: 8px 16px;
    }

    .pp-logo {
        height: 32px;
    }
}