.policy-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0c;
}
.policy-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.policy-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.45;
}
.policy-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 12, 0.3) 0%,
        rgba(10, 10, 12, 0.65) 60%,
        rgba(10, 10, 12, 1) 100%
    );
}
.policy-hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--nav-h) + 16px) 0 64px;
}
.policy-hero-body .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.policy-breadcrumb a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.policy-breadcrumb a:hover { color: var(--red); }
.policy-breadcrumb i { font-size: 9px; }
.policy-hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.policy-hero-title em {
    color: var(--red);
    font-style: normal;
}
.policy-hero-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.policy-content {
    background: #ffffff;
    padding: 80px 0 100px;
}
.policy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

.policy-toc {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}
.policy-toc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.policy-toc ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.policy-toc ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.45);
    padding: 7px 12px;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.policy-toc ul li a:hover {
    color: var(--black);
    border-left-color: var(--red);
    background: rgba(194, 0, 10, 0.04);
}
.policy-toc ul li a i {
    font-size: 11px;
    color: var(--red);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.policy-section {
    scroll-margin-top: calc(var(--nav-h) + 24px);
}
.policy-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.policy-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(194, 0, 10, 0.08);
    border: 1px solid rgba(194, 0, 10, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}
.policy-section h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.02em;
}
.policy-section p {
    font-size: 15px;
    color: rgba(0,0,0,0.6);
    line-height: 1.8;
    margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.policy-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: rgba(0,0,0,0.6);
    line-height: 1.7;
}
.policy-section ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 9px;
    flex-shrink: 0;
}
.policy-section strong {
    color: var(--black);
    font-weight: 600;
}
.policy-section a {
    color: var(--red);
    font-weight: 500;
}
.policy-section a:hover { text-decoration: underline; }

.policy-infobox {
    background: rgba(194, 0, 10, 0.04);
    border: 1px solid rgba(194, 0, 10, 0.15);
    border-left: 3px solid var(--red);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
}
.policy-infobox p {
    margin: 0;
    font-size: 14px;
    color: rgba(0,0,0,0.55);
}
.policy-infobox strong { color: var(--black); }

.policy-contact-card {
    background: var(--black);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}
.policy-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(194, 0, 10, 0.15);
    border: 1px solid rgba(194, 0, 10, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
}
.policy-contact-body p {
    margin: 0 0 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}
.policy-contact-body a {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.01em;
}
.policy-contact-body a:hover {
    text-decoration: none !important;
    color: var(--red) !important;
}

@media (max-width: 900px) {
    .policy-hero { height: 340px; }
    .policy-hero-body { padding-bottom: 48px; }
    .policy-layout { grid-template-columns: 1fr; gap: 0; }
    .policy-toc { display: none; }
    .policy-content { padding: 48px 0 72px; }
    .policy-sections { gap: 36px; }
    .policy-contact-card { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
    .policy-hero {
        height: auto;
        min-height: 240px;
        align-items: flex-end;
    }
    .policy-hero-body { padding: 0 0 32px; }
    .policy-hero-body .container { gap: 8px; }
    .policy-breadcrumb { font-size: 11px; letter-spacing: 0.04em; }
    .policy-hero-meta { font-size: 12px; }

    .policy-content { padding: 32px 0 56px; }
    .policy-sections { gap: 28px; }

    .policy-section-header { gap: 12px; margin-bottom: 16px; padding-bottom: 12px; }
    .policy-section-icon { width: 36px; height: 36px; font-size: 13px; border-radius: 8px; }
    .policy-section h2 { font-size: 16px; }
    .policy-section p { font-size: 14px; line-height: 1.75; margin-bottom: 12px; }
    .policy-section ul li { font-size: 14px; line-height: 1.65; gap: 8px; }
    .policy-section ul li::before { margin-top: 7px; }
    .policy-section ul { gap: 6px; margin-bottom: 12px; }

    .policy-infobox { padding: 14px 16px; border-radius: 8px; }
    .policy-infobox p { font-size: 13px; }

    .policy-contact-card { padding: 20px; border-radius: 12px; gap: 12px; }
    .policy-contact-icon { width: 44px; height: 44px; font-size: 17px; }
    .policy-contact-body a { font-size: 15px; }
}
