/* ==========================================================================
   POLİTİKALAR SAYFASI — Premium Redesign
   ========================================================================== */

/* ── Hero Section ────────────────────────────────────────────────────────── */
.policy-hero-section { padding: 5rem 0 3rem; }

/* ── Hero Text ───────────────────────────────────────────────────────────── */
.policy-hero { text-align: center; margin-bottom: 3rem; }
.policy-hero .hero-title { margin-bottom: 1rem; }
.policy-hero .hero-desc {
    margin-inline: auto;
    max-width: 520px;
}

/* ── Container ───────────────────────────────────────────────────────────── */
.policy-container {
    max-width: 900px;
    margin: 0 auto 5rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
[data-mode="dark"] .policy-container {
    background: rgba(20,22,28,0.65);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .policy-container { padding: 2rem; }
}

/* ── Tabs ────────────────────────────────────────────────────────────────── */
.policy-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.policy-tab {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    transition: all 0.25s ease;
    font-family: var(--font-sans);
}

.policy-tab:hover {
    color: var(--text-main);
    border-color: var(--text-muted);
    background: rgba(0,0,0,0.02);
}
[data-mode="dark"] .policy-tab:hover {
    background: rgba(255,255,255,0.03);
}

.policy-tab.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
[data-mode="dark"] .policy-tab.active {
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .policy-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .policy-tabs::-webkit-scrollbar {
        display: none;
    }
    .policy-tab {
        white-space: nowrap;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ── Content ─────────────────────────────────────────────────────────────── */
.policy-content {
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.policy-content p:last-child { margin-bottom: 0; }

.policy-content ul {
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.policy-content li { margin-bottom: 0.75rem; line-height: 1.6; }
.policy-content li::marker { color: var(--brand-primary); }
.policy-content strong { color: var(--text-main); font-weight: 700; }
