/* PickleboardPro Landing — Court Navy base + Volt Green accent (from app logo) */
:root {
    --pbp-accent: #BFEF20;        /* Volt Green — brand accent */
    --pbp-accent-light: #D2F754;
    --pbp-accent-dark: #9CC818;
    --pbp-navy: #0F1B2D;          /* Court Navy — base */
    --pbp-navy-dark: #0A1322;
    --pbp-navy-darker: #060B17;
    --pbp-surface: #14223A;       /* elevated surface on dark */
    --pbp-bg-footer: #050912;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #060B17 0%, #0A1322 30%, #0F1B2D 50%, #14223A 70%, #0A1322 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-width: 280px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; color: #d1d5db; }

/* Buttons — Volt Green primary, Navy outlined secondary */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pbp-accent-dark) 0%, var(--pbp-accent) 100%);
    color: var(--pbp-navy);
    box-shadow: 0 4px 20px rgba(191, 239, 32, 0.35), 0 0 40px rgba(191, 239, 32, 0.15);
    border: 1px solid rgba(191, 239, 32, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(191, 239, 32, 0.45), 0 0 60px rgba(191, 239, 32, 0.2);
    background: linear-gradient(135deg, var(--pbp-accent) 0%, var(--pbp-accent-light) 100%);
    color: var(--pbp-navy);
}

.btn-secondary {
    background: linear-gradient(135deg, #1B2C46 0%, var(--pbp-navy) 100%);
    color: var(--pbp-accent);
    border: 1px solid rgba(191, 239, 32, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--pbp-navy) 0%, #1B2C46 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(191, 239, 32, 0.2);
    color: var(--pbp-accent-light);
}

.btn-large { padding: 16px 32px; font-size: 18px; }

/* App Store badge — always visible, no animation */
.app-store-badge-link,
a.app-store-badge-link.btn,
a.app-store-badge-link.btn-primary,
a.app-store-badge-link.btn-secondary,
a.app-store-badge-link.btn-large {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 44px !important;
    padding: 0 !important;
    line-height: 0 !important;
    background: none !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}
.app-store-badge-link:hover,
.app-store-badge-link:focus,
.app-store-badge-link:focus-visible,
.app-store-badge-link:active {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    background: none !important;
    background-image: none !important;
}
.app-store-badge-link img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    width: auto;
    height: 44px;
    min-height: 44px;
    max-width: 100%;
    object-fit: contain;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(10, 19, 34, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(191, 239, 32, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-name {
    color: var(--pbp-accent);
    text-shadow: 0 0 20px rgba(191, 239, 32, 0.35);
}

.logo-link { display: inline-block; text-decoration: none; transition: transform 0.3s ease; }
.logo-link:hover { transform: scale(1.05); }

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(191, 239, 32, 0.25));
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(191, 239, 32, 0.4));
}

.nav-links-desktop { display: flex; align-items: center; gap: 2rem; }

.nav-links-overlay {
    display: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--pbp-accent);
    text-shadow: 0 0 10px rgba(191, 239, 32, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span { width: 24px; height: 2px; background: #ffffff; transition: all 0.3s ease; }

/* Hero & feature sections — Navy gradients */
.hero-feature {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pbp-navy-darker) 0%, var(--pbp-navy-dark) 50%, var(--pbp-navy) 100%);
    position: relative;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(191, 239, 32, 0.08) 0%, transparent 55%),
                radial-gradient(circle at 80% 50%, rgba(191, 239, 32, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.hero-feature.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    min-height: auto;
}

.hero-feature.primary .feature-content.hero-only {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.hero-logo-float {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(191, 239, 32, 0.2);
    animation: hero-float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(191, 239, 32, 0.28);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-feature.secondary {
    min-height: 70vh;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pbp-navy-dark) 0%, var(--pbp-navy) 100%);
    position: relative;
}

.hero-feature.secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(191, 239, 32, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.hero-feature.secondary:nth-child(even) {
    background: linear-gradient(135deg, var(--pbp-navy-darker) 0%, var(--pbp-navy-dark) 100%);
}

.hero-feature.secondary:nth-child(even)::before {
    background: radial-gradient(circle at 70% 50%, rgba(191, 239, 32, 0.04) 0%, transparent 55%);
}

.feature-visual { display: flex; justify-content: center; align-items: center; padding: 1rem; }

.feature-content { padding: 2rem; max-width: 600px; }

.feature-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, var(--pbp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(191, 239, 32, 0.25));
}

.hero-feature.secondary .feature-title { font-size: clamp(2rem, 4vw, 3rem); }

.feature-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: #8FA0BC;
    margin: -1rem auto 1.5rem;
    max-width: 520px;
    font-style: italic;
}

.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Placeholder blocks (icon tiles) */
.feature-placeholder {
    flex-direction: column;
    gap: 0.5rem;
    min-height: 200px;
    background: linear-gradient(135deg, var(--pbp-surface) 0%, var(--pbp-navy) 100%);
    border-radius: 20px;
    border: 1px solid rgba(191, 239, 32, 0.22);
    margin: 0 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.95;
    color: var(--pbp-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon svg {
    width: 4.5rem;
    height: 4.5rem;
    stroke: currentColor;
    filter: drop-shadow(0 2px 8px rgba(191, 239, 32, 0.3));
    transition: transform 0.3s ease;
}

.feature-placeholder:hover .placeholder-icon svg {
    transform: scale(1.08);
}

.feature-placeholder p {
    color: #8FA0BC;
    margin: 0;
    font-size: 1rem;
}

/* Screenshots section */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #8FA0BC;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pbp-navy-darker) 0%, var(--pbp-navy-dark) 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(191, 239, 32, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.screenshot {
    background: linear-gradient(135deg, var(--pbp-surface) 0%, var(--pbp-navy) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 239, 32, 0.15);
}

.screenshot:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(191, 239, 32, 0.18);
}

.screenshot img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption { padding: 0.75rem 0 0; text-align: center; }

.screenshot-caption h4 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.screenshot-caption p {
    color: #8FA0BC;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.screenshots-cta { text-align: center; }

/* FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pbp-navy-dark) 0%, var(--pbp-navy) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 239, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: linear-gradient(135deg, var(--pbp-surface) 0%, var(--pbp-navy) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(191, 239, 32, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(191, 239, 32, 0.32);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.faq-item summary {
    padding: 1.25rem 2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover { background: rgba(191, 239, 32, 0.06); }

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--pbp-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
    padding: 1rem 2rem 1.5rem;
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.faq-item a { color: var(--pbp-accent); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* Footer */
.footer {
    background: var(--pbp-bg-footer);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-left .tagline { color: #8FA0BC; font-size: 1.1rem; margin: 0; }

.footer-center { text-align: center; }

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #8FA0BC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--pbp-accent); }

.footer-right { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; }

.footer-link {
    color: #8FA0BC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover { color: var(--pbp-accent); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
    border-top: 1px solid #1B2C46;
}

.footer-bottom p { color: #8FA0BC; margin: 0; }

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .nav { padding: 0.75rem 1rem; }
    .nav-links-desktop { display: none; }

    .nav-links-overlay {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        margin: 0;
        padding: max(80px, env(safe-area-inset-top, 0px) + 60px) 1.5rem 2rem;
        background: rgba(6, 11, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 1px solid rgba(191, 239, 32, 0.18);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .nav-links-overlay.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-links-overlay .nav-link {
        display: block;
        padding: 1rem 0;
        min-height: 48px;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .nav-brand { z-index: 1001; }

    .hero-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 100px 0 48px;
        min-height: auto;
    }

    .hero-feature.primary {
        padding: 100px 0 48px;
        padding-top: max(112px, env(safe-area-inset-top, 0px) + 100px);
    }

    .hero-feature.primary .feature-content.hero-only {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-logo-float { margin-top: 2rem; margin-bottom: 1rem; }
    .hero-logo-img { width: 100px; height: 100px; }

    .feature-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-feature.secondary { padding: 48px 0 32px; min-height: auto; }
    .hero-feature.secondary .feature-title { font-size: clamp(1.5rem, 5vw, 2rem); }

    .feature-content { padding: 1rem; order: 2; max-width: 100%; }
    .feature-visual { order: 1; padding: 0.5rem; }

    .feature-description { font-size: 1rem; margin-bottom: 1.5rem; }
    .feature-placeholder { min-height: 140px; margin: 0 0.5rem; }

    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 0.5rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; padding: 0 0.5rem; }

    .screenshots { padding: 48px 0; }
    .screenshots-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
    .screenshot { padding: 1.25rem; }

    .faq { padding: 48px 0; }
    .faq-item summary {
        padding: 1rem 3rem 1rem 1.25rem;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }
    .faq-item summary::after { right: 1.25rem; }
    .faq-item p { padding: 1rem 1.25rem 1.25rem; }

    .footer { padding: 2rem 0 1rem; }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .footer-nav { gap: 1rem; justify-content: center; }
    .footer-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    .footer-right { justify-content: center; }
    .footer-bottom { padding-top: 1.5rem; }

    .container { padding: 0 1rem; width: 100%; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .nav { padding: 0.5rem 0.75rem; }
    .brand-name { font-size: 1.1rem; }
    .logo-img { width: 36px; height: 36px; }

    .hero-feature.primary {
        padding: max(96px, env(safe-area-inset-top, 0px) + 80px) 0 40px;
    }
    .hero-feature.primary .feature-content.hero-only { padding: 0 0.75rem; }
    .hero-logo-img { width: 88px; height: 88px; }

    .feature-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }

    .feature-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }
    .btn, .btn-large {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    .btn-large { padding: 14px 24px; font-size: 16px; }

    .hero-feature.secondary { display: none; }

    .section-title { font-size: 1.5rem; }
    .container { padding: 0 0.75rem; }
    .screenshot-caption h4 { font-size: 1rem; }
    .screenshot-caption p { font-size: 0.85rem; }
}

/* Privacy / Terms — mobile */
@media (max-width: 768px) {
    .privacy-main { padding: max(100px, env(safe-area-inset-top, 0px) + 72px) 0 48px; }
    .privacy-content { padding: 0 1rem; }
    .privacy-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    .privacy-updated { margin-bottom: 2rem; font-size: 0.9rem; }
    .privacy-intro, .privacy-contact { padding: 1.25rem; }
    .privacy-section h2 { font-size: 1.25rem; }
    .privacy-section p, .privacy-section li { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .privacy-main { padding: max(80px, env(safe-area-inset-top, 0px) + 56px) 0 32px; }
    .privacy-content { padding: 0 0.75rem; }
    .privacy-title { font-size: 1.5rem; }
    .privacy-intro, .privacy-contact { padding: 1rem; }
    .privacy-section h2 { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn:focus,
.nav-link:focus,
.footer-nav a:focus,
.footer-link:focus {
    outline: 2px solid var(--pbp-accent);
    outline-offset: 2px;
}

/* Privacy / Terms page */
.privacy-main {
    padding: 160px 0 80px;
    min-height: 100vh;
    background: var(--pbp-navy-dark);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: #aab4c8;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-intro {
    background: var(--pbp-surface);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--pbp-accent);
}

.privacy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1B2C46;
}

.privacy-section:last-of-type { border-bottom: none; }

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #d1d5db;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #d1d5db;
}

.privacy-contact {
    background: var(--pbp-surface);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid var(--pbp-accent);
}

.privacy-contact h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.privacy-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #d1d5db;
}

.privacy-contact a {
    color: var(--pbp-accent);
    text-decoration: none;
    font-weight: 500;
}

.privacy-contact a:hover { text-decoration: underline; }
