/*
 * Privacy Policy page styles
 * @author Fudo
 * @date   2026-05-05
 */

/* ── HERO ── */
.privacy-hero {
    background: var(--navy-900);
    padding: 56px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.privacy-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.privacy-hero h1 {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.privacy-hero p {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin: 0;
}

/* ── BODY ── */
.privacy-body {
    padding: 64px 0 80px;
    background: #f8fafc;
}

.privacy-body__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

/* ── CONTENT ── */
.privacy-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 48px;
}

.privacy-content p {
    color: #374151;
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-content h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-800);
    margin: 36px 0 12px;
    padding-top: 36px;
    border-top: 1px solid #e5e7eb;
    line-height: 1.3;
}

.privacy-content h2:first-of-type {
    margin-top: 24px;
    padding-top: 24px;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-content ul li {
    padding-left: 20px;
    position: relative;
    color: #374151;
    font-size: var(--text-base);
    line-height: 1.7;
}

.privacy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--navy-700);
}

/* ── CONTACT LIST ── */
.privacy-contact {
    background: #f4f7fb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 24px;
    gap: 14px !important;
}

.privacy-contact li {
    padding-left: 28px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-contact li::before {
    display: none !important;
}

.privacy-contact svg {
    color: var(--navy-700);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.privacy-contact a {
    color: var(--navy-700);
    font-weight: 600;
    text-decoration: none;
}

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

/* ── SIDEBAR ── */
.privacy-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-sidebar__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.privacy-sidebar__card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.privacy-sidebar__card nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-sidebar__card nav a {
    font-size: 0.875rem;
    color: #5a6b82;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}

.privacy-sidebar__card nav a:hover {
    background: #eaf1f8;
    color: var(--navy-700);
}

.privacy-sidebar__contact {
    background: var(--navy-800);
    border-radius: 12px;
    padding: 24px;
}

.privacy-sidebar__contact h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.privacy-sidebar__contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.privacy-sidebar__contact .btn {
    width: 100%;
    justify-content: center;
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
    .privacy-body__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .privacy-sidebar {
        position: static;
        order: -1;
    }
    .privacy-sidebar__card nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .privacy-content {
        padding: 32px 24px;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
    .privacy-hero {
        padding: 40px 0 32px;
    }
    .privacy-body {
        padding: 40px 0 56px;
    }
    .privacy-content {
        padding: 24px 20px;
    }
    .privacy-sidebar__card nav {
        grid-template-columns: 1fr;
    }
}

/* ── SMOOTH SCROLL ── */
html:has(.privacy-body) {
    scroll-behavior: smooth;
}

.privacy-content h2[id] {
    scroll-margin-top: 100px;
}
