.privacy-hero {
            padding: 148px 0 64px;
            background: linear-gradient(140deg, #e8f4ff 0%, #f4f6fb 45%, #fff4ec 100%);
            position: relative;
            overflow: hidden;
        }
        .privacy-hero::before {
            content: '';
            position: absolute;
            width: 520px; height: 520px; border-radius: 50%;
            background: radial-gradient(circle, rgba(59,130,246,.13) 0%, transparent 70%);
            top: -160px; right: -100px; pointer-events: none;
        }
        .privacy-hero::after {
            content: '';
            position: absolute;
            width: 380px; height: 380px; border-radius: 50%;
            background: radial-gradient(circle, rgba(249,115,22,.09) 0%, transparent 70%);
            bottom: -100px; left: -60px; pointer-events: none;
        }
        .privacy-hero-inner {
            display: flex; flex-direction: column;
            align-items: center; text-align: center;
            position: relative; z-index: 2;
        }
        .policy-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 16px 6px 10px; border-radius: 100px;
            background: #fff; border: 1.5px solid rgba(249,115,22,.28);
            box-shadow: 0 2px 12px rgba(249,115,22,.1);
            font-size: .75rem; font-weight: 700; letter-spacing: .06em;
            text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 22px;
        }
        .policy-badge-icon {
            width: 26px; height: 26px; border-radius: 50%;
            background: var(--indigo-dim);
            display: flex; align-items: center; justify-content: center; font-size: .78rem;
        }
        .privacy-hero-h {
            font-family: var(--font-h);
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 300; line-height: 1.08;
            letter-spacing: -.025em; color: var(--text); margin-bottom: 14px;
        }
        .privacy-hero-h strong { font-weight: 700; display: block; }
        .privacy-hero-h em {
            font-style: italic;
            background: linear-gradient(135deg, var(--teal-deep) 0%, var(--indigo) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .privacy-hero-sub {
            font-size: .92rem; color: var(--text-3);
            line-height: 1.8; max-width: 480px; margin-bottom: 0;
        }
        .privacy-hero-meta {
            display: flex; align-items: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; justify-content: center;
        }
        .meta-chip {
            display: flex; align-items: center; gap: 7px;
            padding: 7px 14px; border-radius: 100px;
            background: #fff; border: 1px solid var(--border);
            box-shadow: var(--shadow); font-size: .76rem; font-weight: 500; color: var(--text-3);
        }
        .refund-divider {
            width: 100%; height: 1px; margin: 22px 0 0;
            background: linear-gradient(90deg, transparent, rgba(59,130,246,.25) 30%, rgba(249,115,22,.2) 70%, transparent);
        }

        /* ── Body ── */
        .privacy-body {
            padding: 72px 0 96px;
            background: var(--bg); position: relative; z-index: 2;
        }
        .privacy-layout {
            display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start;
        }

        /* ── TOC sidebar ── */
        .toc-sidebar {
            position: sticky; top: 100px;
            display: flex; flex-direction: column; gap: 16px;
        }
        .toc-card {
            background: #fff; border-radius: var(--radius-lg);
            border: 1.5px solid var(--border); box-shadow: var(--shadow); overflow: hidden;
        }
        .toc-card-bar {
            height: 3px;
            background: linear-gradient(90deg, var(--teal-deep), var(--teal) 50%, var(--indigo));
        }
        .toc-card-body { padding: 20px 18px; }
        .toc-card-body h4 {
            font-size: .7rem; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
        }
        .toc-list { display: flex; flex-direction: column; gap: 2px; }
        .toc-link {
            display: block; padding: 8px 10px; border-radius: 8px;
            font-size: .78rem; color: var(--text-3); font-weight: 500;
            transition: all .2s; text-decoration: none; line-height: 1.4;
        }
        .toc-link:hover { background: var(--indigo-pale); color: var(--indigo-deep); padding-left: 14px; }
        .toc-link.active { background: var(--teal-dim); color: var(--teal-deep); font-weight: 600; }

        .toc-contact-card {
            background: linear-gradient(135deg, rgba(59,130,246,.07), rgba(249,115,22,.05));
            border: 1.5px solid rgba(59,130,246,.18);
            border-radius: var(--radius-lg); padding: 18px;
        }
        .toc-contact-card h4 { font-size: .78rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
        .toc-contact-card p  { font-size: .76rem; color: var(--text-3); line-height: 1.65; margin-bottom: 12px; }
        .tcc-link {
            display: flex; align-items: center; gap: 8px;
            padding: 9px 12px; border-radius: 8px;
            background: #fff; border: 1px solid var(--border);
            font-size: .76rem; color: var(--text-2); font-weight: 500; margin-bottom: 7px;
            transition: all .25s; text-decoration: none;
        }
        .tcc-link:hover { border-color: var(--teal); color: var(--teal-deep); background: var(--teal-pale); }
        .tcc-icon {
            width: 26px; height: 26px; border-radius: 7px;
            display: flex; align-items: center; justify-content: center;
            font-size: .78rem; flex-shrink: 0;
        }
        .ti-blue   { background: var(--teal-dim); color: var(--teal-deep); }
        .ti-green  { background: rgba(37,211,102,.1); color: #128c7e; }

        /* ── Main policy content ── */
        .policy-main {
            background: #fff; border-radius: var(--radius-xl);
            border: 1.5px solid var(--border); box-shadow: var(--shadow-md); overflow: hidden;
        }
        .policy-main-top {
            height: 4px;
            background: linear-gradient(90deg, var(--teal-deep), var(--teal) 50%, var(--indigo));
        }
        .policy-main-body { padding: 44px 48px; }

        /* ── Section blocks ── */
        .pp-section { margin-bottom: 44px; scroll-margin-top: 110px; }
        .pp-section:last-child { margin-bottom: 0; }

        .pp-section-label {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: .67rem; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 10px;
        }
        .pp-section-label .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--indigo); }

        .pp-section h2 {
            font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
            color: var(--text); margin-bottom: 14px; line-height: 1.3;
        }
        .pp-section h3 {
            font-family: var(--font-h); font-size: 1.05rem; font-weight: 600;
            color: var(--text-2); margin: 20px 0 8px; line-height: 1.35;
        }
        .pp-section p {
            font-size: .88rem; color: var(--text-3); line-height: 1.9; margin-bottom: 12px;
        }
        .pp-section p:last-child { margin-bottom: 0; }
        .rv {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
        /* ── Definition list ── */
        .def-list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
        .def-item {
            display: flex; gap: 0; padding: 12px 16px;
            border-radius: 10px; background: var(--bg); border: 1px solid var(--border);
            font-size: .85rem; line-height: 1.75; color: var(--text-2);
            transition: border-color .25s, background .25s;
        }
        .def-item:hover { border-color: rgba(59,130,246,.25); background: rgba(59,130,246,.03); }
        .def-item strong { color: var(--teal-deep); min-width: 160px; flex-shrink: 0; font-weight: 700; }

        /* ── Bullet list ── */
        .pp-list { display: flex; flex-direction: column; gap: 7px; margin: 12px 0; }
        .pp-list-item {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 10px 14px; border-radius: 9px;
            background: var(--bg); border: 1px solid var(--border);
            font-size: .85rem; color: var(--text-2); line-height: 1.7;
            transition: all .22s;
        }
        .pp-list-item:hover { border-color: rgba(249,115,22,.25); background: rgba(249,115,22,.03); }
        .pp-bullet {
            width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
            display: flex; align-items: center; justify-content: center;
            font-size: .6rem;
        }
        .pb-blue   { background: var(--teal-dim); color: var(--teal-deep); }
        .pb-orange { background: var(--indigo-dim); color: var(--indigo-deep); }

        /* ── Cookie type cards ── */
        .cookie-cards { display: flex; flex-direction: column; gap: 12px; margin: 14px 0; }
        .cookie-card {
            border-radius: var(--radius); overflow: hidden;
            border: 1.5px solid var(--border); background: #fff;
        }
        .cookie-card-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 12px 16px;
            background: linear-gradient(135deg, rgba(59,130,246,.06), rgba(59,130,246,.02));
            border-bottom: 1px solid var(--border);
        }
        .cookie-card-header h4 { font-size: .87rem; font-weight: 700; color: var(--teal-deep); }
        .cookie-type-badge {
            font-size: .66rem; font-weight: 700; padding: 3px 9px;
            border-radius: 100px; background: var(--teal-dim); color: var(--teal-deep);
        }
        .cookie-card-body { padding: 12px 16px; }
        .cookie-meta { font-size: .74rem; color: var(--text-4); margin-bottom: 6px; }
        .cookie-meta span { font-weight: 600; color: var(--text-3); }
        .cookie-card-body p { font-size: .84rem; color: var(--text-3); line-height: 1.75; margin: 0; }

        /* ── Callout box ── */
        .pp-callout {
            display: flex; gap: 14px; padding: 16px 18px;
            border-radius: var(--radius); margin: 14px 0;
        }
        .pc-blue   { background: linear-gradient(135deg, rgba(59,130,246,.07), rgba(59,130,246,.03)); border: 1.5px solid rgba(59,130,246,.2); }
        .pc-orange { background: linear-gradient(135deg, rgba(249,115,22,.07), rgba(249,115,22,.03)); border: 1.5px solid rgba(249,115,22,.2); }
        .pc-icon {
            width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center; font-size: .95rem;
        }
        .pci-blue   { background: rgba(59,130,246,.12); }
        .pci-orange { background: rgba(249,115,22,.12); }
        .pc-text { font-size: .85rem; color: var(--text-2); line-height: 1.75; }
        .pc-text strong { display: block; font-weight: 700; margin-bottom: 3px; font-size: .8rem; }
        .pc-blue   .pc-text strong { color: var(--teal-deep); }
        .pc-orange .pc-text strong { color: var(--indigo-deep); }

        /* ── Section separator ── */
        .pp-sep {
            height: 1px; background: var(--border); margin: 36px 0;
        }

        /* ── Footer note ── */
        .privacy-footer-note {
            margin-top: 48px; padding: 18px 24px;
            border-radius: var(--radius);
            background: linear-gradient(135deg, rgba(59,130,246,.06), rgba(249,115,22,.04));
            border: 1px solid rgba(59,130,246,.15);
            font-size: .8rem; color: var(--text-3); text-align: center; line-height: 1.75;
        }

        /* ── Responsive ── */
        @media (max-width: 960px) {
            .privacy-layout { grid-template-columns: 1fr; }
            .toc-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
            .toc-card { flex: 1; min-width: 220px; }
        }
        @media (max-width: 640px) {
            .policy-main-body { padding: 28px 22px; }
            .def-item { flex-direction: column; gap: 4px; }
            .def-item strong { min-width: unset; }
        }