:root {
    --green: #16a34a;
    --green-light: #22c55e;
    --green-pale: #f0fdf4;
    --green-border: #bbf7d0;
    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9fafb;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}

/* ── Hero ── */
.policy-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%, #f9fafb 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.policy-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.policy-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.policy-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.policy-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 24px;
}
.policy-meta { display: flex; gap: 10px; justify-content: center; }
.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text);
    padding: 6px 14px;
    font-weight: 500;
}

/* ── Body ── */
.policy-body { padding: 56px 0 80px; background: var(--bg); }

/* ── TOC ── */
.toc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
}
.toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
    display: block;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}
.toc-list a:hover {
    background: var(--green-pale);
    color: var(--green);
    padding-left: 14px;
}

/* ── Content Card ── */
.policy-content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

/* ── Intro box ── */
.policy-intro-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--green-pale);
    border: 1px solid var(--green-border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 40px;
    color: #166534;
}
.policy-intro-box svg { flex-shrink: 0; margin-top: 2px; }
.policy-intro-box p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.6; }

/* ── Sections ── */
.policy-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; padding-bottom: 0; }
.section-number {
    font-size: 11px;
    font-weight: 800;
    color: var(--green);
    background: var(--green-pale);
    border: 1px solid var(--green-border);
    border-radius: 8px;
    padding: 5px 9px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-top: 3px;
}
.section-body { flex: 1; }
.section-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.section-body p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}
.section-body ul {
    margin: 12px 0;
    padding-left: 20px;
}
.section-body li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 6px;
}

/* ── CTA box ── */
.policy-cta-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.policy-cta-box h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.policy-cta-box p { color: #9ca3af; font-size: 14px; margin: 0; }
.btn-cta-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    white-space: nowrap;
    transition: all 0.2s;
}
.btn-cta-green:hover {
    background: var(--green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.35);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .toc-card { display: none; }
    .policy-content-card { padding: 28px 24px; }
    .policy-cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 576px) {
    .policy-hero { padding: 48px 0 36px; }
    .policy-section { flex-direction: column; gap: 8px; }
    .policy-content-card { padding: 22px 16px; }
    .policy-cta-box { padding: 24px 20px; }
}