/* ==========================================================================
   dissolveX Enterprise HRMS - Privacy Policy & Data Security Stylesheet
   Signature Theme: Light Mint Canvas (#eaf6f0) with Deep Forest (#0b2b20) & Emerald (#10b981)
   Matching Core Landing & Why dissolveX Design System
   ========================================================================== */

:root {
    --priv-primary: #0b2b20;
    --priv-primary-hover: #123d2f;
    --priv-emerald: #10b981;
    --priv-emerald-light: #34d399;
    --priv-emerald-dark: #059669;
    --priv-emerald-deep: #064e3b;
    --priv-mint-bg: #eaf6f0;
    --priv-mint-card: #f0fdf4;
    --priv-mint-glow: rgba(16, 185, 129, 0.20);
    --priv-surface: #ffffff;
    --priv-text-headings: #0b2b20;
    --priv-text-body: #334155;
    --priv-text-muted: #64748b;
    --priv-border-light: rgba(15, 57, 43, 0.08);
    --priv-border-em: rgba(16, 185, 129, 0.22);
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    background-color: var(--priv-mint-bg);
}

body.privacy-page {
    font-family: var(--font-sans);
    color: var(--priv-text-body);
    background-color: var(--priv-mint-bg);
    background-image: radial-gradient(circle at 50% 15%, rgba(16, 185, 129, 0.22) 0%, rgba(230, 247, 240, 0.75) 45%, #eaf6f0 85%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 4px;
}

.text-link {
    color: #047857;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.text-link:hover {
    color: var(--priv-primary);
}
}

/* 1. Reading Progress Bar */
.privacy-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
}

.privacy-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #059669, #34d399);
    will-change: transform;
}

/* 2. Hero Section */
.privacy-hero-section {
    position: relative;
    padding: 135px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.privacy-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.privacy-hero-glow.glow-top {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 380px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
    filter: blur(80px);
}

.privacy-hero-glow.glow-left {
    top: 20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    filter: blur(90px);
}

.privacy-hero-glow.glow-right {
    top: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    filter: blur(90px);
}

.privacy-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1040px;
}

/* Badge */
.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.privacy-badge .badge-icon {
    font-size: 0.95rem;
}

.privacy-hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--priv-text-headings);
    margin: 0 0 14px 0;
    line-height: 1.1;
}

.privacy-hero-subtitle {
    font-size: 1.05rem;
    color: var(--priv-text-muted);
    margin: 0 auto 32px auto;
    max-width: 760px;
    font-weight: 500;
}

.privacy-hero-subtitle strong {
    color: var(--priv-text-headings);
}

/* Search Bar in Hero */

/* Bento Trust Highlights Grid */
.privacy-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.privacy-bento-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 16px;
    padding: 18px 16px;
    text-align: left;
    box-shadow: 0 10px 24px -5px rgba(11, 43, 32, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.privacy-bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -4px rgba(11, 43, 32, 0.1);
    border-color: var(--priv-emerald);
}
}

.bento-icon-box {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-text h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 0 0 4px 0;
}

.bento-text p {
    font-size: 0.8rem;
    color: var(--priv-text-muted);
    margin: 0;
    line-height: 1.45;
}

/* 3. Main Layout: Two Column Split */
.privacy-main-section {
    padding: 30px 0 100px 0;
    position: relative;
    overflow: visible;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 44px;
    align-items: start;
    position: relative;
    overflow: visible;
}

/* 4. Left Sticky Sidebar (Content Outline - Pinned in Viewport) */
.privacy-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 96px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 30;
    overflow: visible;
    width: 100%;
}

.privacy-toc-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 16px 36px -8px rgba(11, 43, 32, 0.07), 0 0 0 1px rgba(16, 185, 129, 0.08);
    position: relative;
}

.privacy-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.toc-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--priv-text-headings);
    letter-spacing: -0.2px;
}

.toc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--priv-emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.toc-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--priv-emerald-deep);
    font-size: 0.73rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

/* Mini Progress Line */
.toc-mini-progress {
    width: 100%;
    height: 3px;
    background: rgba(15, 57, 43, 0.06);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 14px;
}

.toc-mini-progress-fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 99px;
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.privacy-toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--priv-text-muted);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 10px;
    transition: color 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), filter 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.toc-num {
    font-size: 0.73rem;
    font-weight: 700;
    color: #475569;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.toc-label {
    flex: 1;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.toc-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
    flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
.privacy-toc-link:hover {
    background: rgba(16, 185, 129, 0.07);
    color: var(--priv-text-headings);
    transform: translateX(2px);
}
}

@media (hover: hover) and (pointer: fine) {
.privacy-toc-link:hover .toc-num {
    background: rgba(16, 185, 129, 0.15);
    color: var(--priv-emerald-deep);
}
}

/* Active State (Currently reading) */
.privacy-toc-link.active {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.14) 0%, rgba(240, 253, 244, 0.6) 100%);
    color: var(--priv-emerald-deep);
    font-weight: 700;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.privacy-toc-link.active .toc-num {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.45);
    transform: scale(1.08);
}

.privacy-toc-link.active .toc-indicator-dot {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
}

/* Passed State (Already read) */
.privacy-toc-link.passed {
    color: #475569;
}

.privacy-toc-link.passed .toc-num {
    background: #e6f7f0;
    color: var(--priv-emerald-dark);
    font-weight: 700;
    border-color: rgba(16, 185, 129, 0.2);
}

.privacy-toc-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--priv-border-light);
}

.privacy-action-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 8px;
    padding: 9px 14px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--priv-text-headings);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.privacy-action-btn:hover {
    background: #ffffff;
    border-color: var(--priv-emerald);
    color: var(--priv-emerald-dark);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}
}

/* Direct Support Inbox Card in Sidebar (Matching Screenshot 1) */
.privacy-support-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 14px 32px -6px rgba(11, 43, 32, 0.06), 0 0 0 1px rgba(16, 185, 129, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.privacy-support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -6px rgba(11, 43, 32, 0.1);
    border-color: var(--priv-emerald);
}
}

.support-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.support-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-header-text {
    display: flex;
    flex-direction: column;
}

.support-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b2b20;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.support-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 2px;
}

.support-desc {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 18px 0;
}

.support-email-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b2b20;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.support-email-link .support-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.support-email-link:hover {
    color: var(--priv-emerald-dark);
}
}

@media (hover: hover) and (pointer: fine) {
.support-email-link:hover .support-arrow {
    transform: translateX(3px);
}
}

/* 5. Right Column (Document Card) */
.privacy-document-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 24px 48px -12px rgba(11, 43, 32, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* Introduction Banner */
.privacy-intro-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.1) 0%, #f0fdf4 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 44px;
}

.intro-quote-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.privacy-lead-text {
    font-size: 1.05rem;
    color: var(--priv-text-headings);
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.privacy-lead-sub {
    font-size: 0.94rem;
    color: var(--priv-text-body);
    margin: 0;
}

/* Sections */
.privacy-doc-section {
    padding-top: 42px;
    margin-top: 42px;
    border-top: 1px solid var(--priv-border-light);
    scroll-margin-top: 110px;
}

.privacy-doc-section:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.privacy-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 22px;
}

.privacy-sec-pill {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--priv-emerald-dark);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 9999px;
}

.privacy-sec-title {
    font-family: var(--font-sans);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--priv-text-headings);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.privacy-sub-title {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 24px 0 12px 0;
}

.privacy-sec-content p {
    font-size: 0.96rem;
    color: var(--priv-text-body);
    margin: 0 0 16px 0;
    line-height: 1.7;
}

/* Feature Bullet Lists */
.privacy-feature-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--priv-text-body);
}

.list-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--priv-emerald);
    flex-shrink: 0;
    margin-top: 8px;
}

.privacy-feature-list li strong {
    color: var(--priv-text-headings);
}

/* Section 1: Role Grid */
.privacy-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 22px 0;
}

.privacy-role-card {
    background: #f8fafc;
    border: 1px solid var(--priv-border-light);
    border-radius: 16px;
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.privacy-role-card:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
}
}

.privacy-role-card.controller-card {
    border-left: 4px solid #2563eb;
}

.privacy-role-card.processor-card {
    border-left: 4px solid var(--priv-emerald);
}

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.role-badge.role-controller {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.role-badge.role-processor {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.privacy-role-card h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 0 0 8px 0;
}

.privacy-role-card p {
    font-size: 0.88rem;
    color: var(--priv-text-body);
    margin: 0;
    line-height: 1.55;
}

/* Callout Box */
.privacy-callout-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.92rem;
    color: #064e3b;
    line-height: 1.55;
    margin-top: 18px;
}

.privacy-callout-box.info-callout {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.callout-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

/* Section 3: Use Grid */
.privacy-use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.use-card {
    background: #f8fafc;
    border: 1px solid var(--priv-border-light);
    border-radius: 14px;
    padding: 18px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.use-card:hover {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 43, 32, 0.05);
}
}

.use-card-full {
    grid-column: span 2;
}

.use-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--priv-emerald-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.use-card h4 {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 0 0 4px 0;
}

.use-card p {
    font-size: 0.88rem;
    color: var(--priv-text-body);
    margin: 0;
    line-height: 1.5;
}

/* Section 4: Google Box */
.privacy-google-box {
    background: #f8fafc;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
}

.google-policy-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--priv-emerald-deep);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--priv-border-light);
    margin-bottom: 16px;
}

/* Section 5: Styled Table */
.privacy-table-container {
    overflow-x: auto;
    margin: 22px 0 16px 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 24px -5px rgba(11, 43, 32, 0.04);
}

.privacy-styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
    background: #ffffff;
}

.privacy-styled-table th {
    background: #f0fdf4;
    color: var(--priv-text-headings);
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.privacy-styled-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--priv-border-light);
    color: var(--priv-text-body);
}

.privacy-styled-table tr:last-child td {
    border-bottom: none;
}

@media (hover: hover) and (pointer: fine) {
.privacy-styled-table tr:hover td {
    background: #f8fafc;
}
}

.subp-name {
    font-weight: 700;
    color: var(--priv-text-headings);
}

.subp-sub {
    font-size: 0.78rem;
    color: var(--priv-text-muted);
}

.status-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.status-chip.chip-green {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

/* Section 6: Security Cards */
.privacy-security-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 22px 0;
}

.sec-feature-card {
    background: #f8fafc;
    border: 1px solid var(--priv-border-light);
    border-radius: 16px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.sec-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 24px -5px rgba(11, 43, 32, 0.08);
}
}

.sec-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sec-icon {
    font-size: 1.4rem;
}

.sec-card-top h4 {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 0;
}

.sec-feature-card p {
    font-size: 0.88rem;
    color: var(--priv-text-body);
    margin: 0;
    line-height: 1.5;
}

/* Section 7: HRMS Grid */

/* Section 8: Rights Row */
.privacy-rights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.right-box {
    background: #f8fafc;
    border: 1px solid var(--priv-border-light);
    border-radius: 16px;
    padding: 20px;
}

.right-num {
    display: inline-block;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.right-box h4 {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--priv-text-headings);
    margin: 0 0 6px 0;
}

.right-box p {
    font-size: 0.88rem;
    color: var(--priv-text-body);
    margin: 0;
    line-height: 1.5;
}

/* Section 10: Official Contact Card */
.privacy-official-contact-card {
    background: radial-gradient(circle at 100% 0%, #f0fdf4 0%, #ffffff 70%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-top: 20px;
    box-shadow: 0 12px 28px -5px rgba(11, 43, 32, 0.05);
}

.contact-header-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--priv-border-light);
    margin-bottom: 20px;
}

.contact-logo {
    height: 26px;
    width: auto;
}

.contact-org-type {
    background: rgba(16, 185, 129, 0.1);
    color: var(--priv-emerald-dark);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-details-grid .headquarters-item {
    grid-column: 1 / -1;
}

.c-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--priv-text-muted);
}

.c-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--priv-text-headings);
}

/* 6. Responsive Styles */
@media (max-width: 1080px) {
    .privacy-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .privacy-sidebar {
        position: static;
        order: 2;
    }

    .privacy-document-card {
        padding: 32px 24px;
    }

    .privacy-role-grid,
    .privacy-use-grid,
    .privacy-security-cards,
    .privacy-rights-row,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .use-card-full {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .privacy-hero-section {
        padding: 110px 0 40px 0;
    }

    .privacy-hero-title {
        font-size: 2.3rem;
    }

    .privacy-bento-grid {
        grid-template-columns: 1fr;
    }

    .privacy-document-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .privacy-intro-banner {
        flex-direction: column;
        padding: 20px;
    }

    .privacy-sec-title {
        font-size: 1.25rem;
    }
}

/* Floating Back to Top Button */

/* 7. Print Styles */
@media print {
    .privacy-progress-container,
    .feat-nav-wrapper,
    .privacy-sidebar,
    .feat-footer,
    .privacy-bento-grid,
    .privacy-hero-glow {
        display: none !important;
    }

    body.privacy-page {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .privacy-hero-section {
        background: none !important;
        padding: 10px 0 !important;
    }

    .privacy-hero-title {
        color: #000000 !important;
    }

    .privacy-layout {
        display: block !important;
        padding: 0 !important;
    }

    .privacy-document-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .privacy-doc-section {
        page-break-inside: avoid;
    }
}
