/* ═══════════════════════════════════════════
   CARELY AI — COMMON STYLES & VARIABLES
═══════════════════════════════════════════ */
:root {
    --ink: #020817;
    --ink-2: #050f1e;
    --navy: #071428;
    --navy-2: #0a1f3a;
    --blue: #1249A4;
    --blue-glow: #1e6aff;
    --cyan: #00c2ff;
    --cyan-dim: rgba(0, 194, 255, 0.15);
    --teal: #00d4aa;
    --teal-dim: rgba(0, 212, 170, 0.12);
    --yellow: #f5c518;
    --yellow-dim: rgba(245, 197, 24, 0.15);
    --purple: #7c3aed;
    --purple-dim: rgba(124, 58, 237, 0.1);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-2: rgba(255, 255, 255, 0.07);
    --glass-3: rgba(255, 255, 255, 0.11);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-2: rgba(0, 194, 255, 0.25);
    --text-white: #ffffff;
    --text-bright: #f0f6ff;
    --text-mid: rgba(240, 246, 255, 0.7);
    --text-dim: rgba(240, 246, 255, 0.45);
    --text-dimmer: rgba(240, 246, 255, 0.28);
    --glow-blue: 0 0 40px rgba(30, 106, 255, 0.35), 0 0 80px rgba(30, 106, 255, 0.15);
    --glow-cyan: 0 0 30px rgba(0, 194, 255, 0.4), 0 0 60px rgba(0, 194, 255, 0.15);
    --glow-teal: 0 0 30px rgba(0, 212, 170, 0.35), 0 0 60px rgba(0, 212, 170, 0.12);
    --glow-yellow: 0 0 24px rgba(245, 197, 24, 0.45);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--glass-border);
    --shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(30, 106, 255, 0.12);
    --w: 1180px;
    --r: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;
    --font: 'Manrope', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--text-bright);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(0, 194, 255, 0.3);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 194, 255, 0.3);
    border-radius: 3px;
}

.wrap {
    width: 100%;
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.grad-cyan {
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-blue {
    background: linear-gradient(135deg, #60a5fa, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-yellow {
    background: linear-gradient(135deg, #f5c518, #ff9f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-teal {
    background: linear-gradient(135deg, #00d4aa, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--glass-2);
    border: 1px solid var(--glass-border-2);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
}

.pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-cyan {
    background: linear-gradient(135deg, #00c2ff, #0090cc);
    color: #020817;
    box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 194, 255, 0.6), 0 0 100px rgba(0, 194, 255, 0.25);
}

.btn-glass {
    background: var(--glass-2);
    color: var(--text-bright);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: var(--glass-3);
    border-color: var(--glass-border-2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(0, 194, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease);
}

.glass-card:hover {
    border-color: var(--glass-border-2);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 194, 255, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal.on {
    opacity: 1;
    transform: none;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal-l.on,
.reveal-r.on {
    opacity: 1;
    transform: none;
}

.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.5) 30%, rgba(0, 212, 170, 0.5) 70%, transparent);
    position: relative;
    z-index: 1;
}

#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* ═══════════════════════════════════════════
   PRIVACY POLICY PAGE STYLES
═══════════════════════════════════════════ */

/* ── Background Orbs ── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    animation: orb-drift 12s ease-in-out infinite alternate;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(30, 106, 255, 0.08);
    top: -200px;
    right: -100px;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 194, 255, 0.06);
    bottom: 20%;
    left: -150px;
    animation-delay: -4s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 170, 0.05);
    top: 50%;
    right: 10%;
    animation-delay: -8s;
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -20px) scale(1.05);
    }
}

/* ── Nav ── */
.pp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
}

.pp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.pp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e6aff, #00c2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
    position: relative;
    overflow: hidden;
}

.pp-logo-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.pp-logo-mark svg {
    width: 20px;
    height: 20px;
    fill: white;
    position: relative;
    z-index: 1;
}

.pp-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pp-logo-text span {
    color: var(--cyan);
}

.pp-nav-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pp-version {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--glass-2);
    border: 1px solid var(--glass-border);
    padding: 4px 12px;
    border-radius: var(--r-full);
}

.pp-update {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ── Hero ── */
.pp-hero {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.pp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at top, rgba(30, 106, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-2);
    border: 1px solid var(--glass-border-2);
    border-radius: var(--r-full);
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    backdrop-filter: blur(12px);
}

.pp-hero-badge .shield-icon {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

.pp-hero h1 {
    margin-bottom: 20px;
}

.pp-hero-sub {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.pp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    backdrop-filter: blur(12px);
}

.pp-stat-num {
    font-size: 1.4rem;
    font-weight: 900;
}

.pp-stat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ── Table of Contents ── */
.pp-toc {
    position: relative;
    z-index: 1;
    padding: 0 0 60px;
}

.pp-toc-inner {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    padding: 32px 36px;
    box-shadow: var(--shadow-card);
}

.pp-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-toc-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.pp-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}

.pp-toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-mid);
    font-size: 0.87rem;
    font-weight: 600;
    transition: all 0.2s var(--ease);
    cursor: pointer;
    text-decoration: none;
}

.pp-toc-item:hover {
    background: var(--glass-2);
    border-color: var(--glass-border);
    color: var(--text-bright);
    transform: translateX(4px);
}

.pp-toc-num {
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 194, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 0;
}

/* ── Section Layout ── */
.pp-body {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.pp-section {
    margin-bottom: 32px;
}

.pp-section-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    padding: 36px 40px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.pp-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pp-section-card:hover {
    border-color: var(--glass-border-2);
}

.pp-section-card:hover::before {
    opacity: 1;
}

.pp-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.pp-section-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
}

.pp-section-icon.cyan {
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 194, 255, 0.25);
}

.pp-section-icon.teal {
    background: var(--teal-dim);
    border: 1px solid rgba(0, 212, 170, 0.25);
}

.pp-section-icon.blue {
    background: rgba(30, 106, 255, 0.1);
    border: 1px solid rgba(30, 106, 255, 0.25);
}

.pp-section-icon.yellow {
    background: var(--yellow-dim);
    border: 1px solid rgba(245, 197, 24, 0.25);
}

.pp-section-icon.purple {
    background: var(--purple-dim);
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.pp-section-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid var(--glass-border);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-bright);
}

.pp-section-subtitle {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.pp-section-body {}

.pp-section-body p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

/* ── Lists ── */
.pp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.pp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s;
}

.pp-list li:hover {
    background: var(--glass-2);
    border-color: var(--glass-border);
}

.pp-list-dot {
    min-width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.pp-list-dot.cyan {
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(0, 194, 255, 0.6);
}

.pp-list-dot.teal {
    background: var(--teal);
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

/* ── Two col layout for some sections ── */
.pp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.pp-col-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px 20px;
}

.pp-col-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pp-col-card-title .icon {
    font-size: 0.9rem;
}

/* ── Rights grid ── */
.pp-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.pp-right-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: all 0.25s var(--ease);
}

.pp-right-item:hover {
    background: var(--glass-2);
    border-color: var(--glass-border-2);
    transform: translateY(-3px);
}

.pp-right-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.pp-right-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.pp-right-desc {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ── Security badges ── */
.pp-security-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pp-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid;
    backdrop-filter: blur(8px);
}

.pp-badge.cyan {
    background: var(--cyan-dim);
    border-color: rgba(0, 194, 255, 0.3);
    color: var(--cyan);
}

.pp-badge.teal {
    background: var(--teal-dim);
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--teal);
}

.pp-badge.blue {
    background: rgba(30, 106, 255, 0.1);
    border-color: rgba(30, 106, 255, 0.3);
    color: #60a5fa;
}

/* ── Commitment / Promise Section ── */
.pp-promise {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.pp-promise-card {
    background: linear-gradient(135deg, rgba(30, 106, 255, 0.08), rgba(0, 194, 255, 0.05), rgba(0, 212, 170, 0.06));
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: var(--r-xl);
    padding: 56px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.pp-promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 194, 255, 0.15) 0%, transparent 70%);
}

.pp-promise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
}

.pp-promise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pp-promise-card h2 {
    margin-bottom: 16px;
}

.pp-promise-card p {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

/* ── Contact Section ── */
.pp-contact {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.pp-contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.pp-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pp-contact-info {
    padding: 48px;
    border-right: 1px solid var(--glass-border);
}

.pp-contact-cta {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.pp-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-contact-method:last-child {
    border-bottom: none;
}

.pp-contact-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.pp-contact-method-icon.cyan {
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.pp-contact-method-icon.teal {
    background: var(--teal-dim);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.pp-contact-method-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.pp-contact-method-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-bright);
}

.pp-contact-cta-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pp-contact-cta p {
    margin-bottom: 28px;
    font-size: 0.93rem;
}

/* ── Footer bar ── */
.pp-footer-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pp-footer-bar p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

.pp-footer-links {
    display: flex;
    gap: 20px;
}

.pp-footer-links a {
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: color 0.2s;
}

.pp-footer-links a:hover {
    color: var(--cyan);
}

/* ── Glow separator ── */
.pp-separator {
    margin: 40px 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .pp-contact-inner {
        grid-template-columns: 1fr;
    }

    .pp-contact-info {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .pp-promise-card {
        padding: 40px 30px;
    }

    .pp-section-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .pp-two-col {
        grid-template-columns: 1fr;
    }

    .pp-rights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pp-toc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pp-hero {
        padding: 60px 0 50px;
    }

    .pp-nav-meta .pp-update {
        display: none;
    }

    .pp-contact-info,
    .pp-contact-cta {
        padding: 30px 28px;
    }
}

@media (max-width: 540px) {
    .pp-hero-stats {
        gap: 16px;
    }

    .pp-stat {
        padding: 12px 16px;
    }

    .pp-rights-grid {
        grid-template-columns: 1fr;
    }

    .pp-toc-grid {
        grid-template-columns: 1fr;
    }

    .pp-security-badges {
        flex-direction: column;
    }

    .pp-footer-bar {
        flex-direction: column;
        text-align: center;
    }
}
