.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    bottom: -100px;
    background: rgba(0, 196, 167, .08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: normal;
    color: var(--teal);
}

.page-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: .875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: var(--teal);
}

.breadcrumb i {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

/* POLICY SECTION */
.policy-section {
    padding: 100px 0;
    background: var(--off-white);
}

.policy-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* SIDEBAR - DOKUNULMADI */
.policy-sidebar {
    position: sticky;
    top: 160px;
}

.policy-nav {
    background: var(--white);
    border-radius: 24px;
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all var(--t) var(--ease);
}

.policy-nav-link i {
    font-size: 1.05rem;
    color: var(--teal);
    flex-shrink: 0;
}

.policy-nav-link:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.policy-nav-link:hover {
    background: var(--teal-soft);
    color: var(--teal-dark);
    border-left-color: var(--teal);
}

.policy-nav-link.active {
    background: var(--teal-soft);
    color: var(--teal-dark);
    border-left-color: var(--teal);
    font-weight: 600;
}

/* CONTENT */
.policy-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.policy-article {
    padding: 48px;
}

.policy-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.policy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted);
}

.policy-meta i {
    color: var(--teal);
}

/* POLICY BODY - EDITOR UYUMLU */
.policy-body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    line-height: 1.8;
    overflow-wrap: break-word;
}

.policy-body>*:first-child {
    margin-top: 0;
}

.policy-body>*:last-child {
    margin-bottom: 0;
}

.policy-body h2,
.policy-body h3,
.policy-body h4,
.policy-body h5,
.policy-body h6 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.35;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-body h2:first-child,
.policy-body h3:first-child,
.policy-body h4:first-child,
.policy-body h5:first-child,
.policy-body h6:first-child {
    margin-top: 0;
}

.policy-body h2 {
    font-size: 1.35rem;
}

.policy-body h3 {
    font-size: 1.125rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--teal-soft);
}

.policy-body h4 {
    font-size: 1rem;
}

.policy-body p {
    font-size: 0.9375rem;
    color: #4a5568;
    margin: 0 0 16px;
}

.policy-body strong {
    font-weight: 700;
    color: var(--ink);
}

.policy-body em {
    font-style: italic;
    color: var(--muted);
}

.policy-body a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.policy-body a:hover {
    text-decoration: underline;
}

.policy-body ul,
.policy-body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.policy-body ul li,
.policy-body ol li {
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: #4a5568;
}

.policy-body ul li:last-child,
.policy-body ol li:last-child {
    margin-bottom: 0;
}

.policy-body ul {
    list-style: disc;
}

.policy-body ol {
    list-style: decimal;
}

.policy-body blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--bg);
    border-left: 4px solid var(--teal);
    border-radius: var(--r);
    color: #4a5568;
}

.policy-body hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

/* TABLE - CLASS GEREKTİRMEZ */
.policy-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.875rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.policy-body table thead,
.policy-body table tbody {
    width: 100%;
}

.policy-body table tr {
    background: var(--white);
}

.policy-body table th,
.policy-body table td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--border);
    vertical-align: top;
    min-width: 160px;
}

.policy-body table th {
    background: var(--teal-soft);
    font-weight: 600;
    color: var(--teal-dark);
}

.policy-body table td {
    color: #4a5568;
}

.policy-body table tbody tr:hover {
    background: var(--bg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .policy-grid {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    .policy-article {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero-title {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
    }

    .page-hero-desc {
        font-size: 1rem;
    }

    .policy-section {
        padding: 48px 0;
    }

    .policy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .policy-sidebar {
        position: static;
    }

    .policy-nav {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .policy-nav::-webkit-scrollbar {
        display: none;
    }

    .policy-nav-link {
        flex-shrink: 0;
        padding: 14px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.875rem;
    }

    .policy-nav-link:not(:last-child) {
        border-right: 1px solid var(--border);
        border-bottom-color: transparent;
    }

    .policy-nav-link:hover,
    .policy-nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--teal);
    }

    .policy-article {
        padding: 24px;
    }

    .policy-title {
        font-size: 1.25rem;
    }

    .policy-body h2 {
        font-size: 1.2rem;
    }

    .policy-body h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-nav-link {
        padding: 12px 16px;
    }

    .policy-article {
        padding: 20px 16px;
    }

    .policy-body p,
    .policy-body ul li,
    .policy-body ol li {
        font-size: 0.875rem;
    }

    .policy-body table th,
    .policy-body table td {
        padding: 10px 12px;
        font-size: 0.8125rem;
    }
}