/* policy.css — Gizlilik ve politika sayfaları */

.policy-page {
    position: relative; z-index: 1;
    max-width: 860px; margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}
.policy-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0,245,255,0.15);
    padding-bottom: 0; flex-wrap: wrap;
}
.tab-btn {
    padding: 0.7rem 1.6rem; background: transparent;
    border: none; border-bottom: 3px solid transparent;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s; margin-bottom: -1px;
}
.tab-btn:hover { color: var(--brand-purple); }
.tab-btn.active { color: var(--brand-purple); border-bottom-color: var(--brand-purple); }
.policy-panel { display: none; }
.policy-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.policy-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}
.policy-meta {
    font-size: 0.83rem; color: var(--text-dim);
    margin-bottom: 2.5rem;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.policy-meta span { display: flex; align-items: center; gap: 0.4rem; }
.policy-meta i { color: var(--brand-cyan); }
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 700;
    color: var(--brand-cyan); margin-bottom: 0.875rem;
    display: flex; align-items: center; gap: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,245,255,0.1);
}
.policy-section h2 i { font-size: 0.9rem; }
.policy-section p,
.policy-section li {
    font-size: 0.93rem; color: rgba(255,255,255,0.7);
    line-height: 1.85; margin-bottom: 0.55rem;
}
.policy-section ul { list-style: none; padding: 0; }
.policy-section ul li { padding-left: 1.2rem; position: relative; }
.policy-section ul li::before {
    content: '›'; position: absolute; left: 0;
    color: var(--brand-cyan); font-weight: 700;
}
.policy-section strong { color: rgba(255,255,255,0.9); }
.policy-box {
    background: rgba(0,245,255,0.05);
    border: 1px solid rgba(0,245,255,0.18);
    border-radius: 14px; padding: 1.2rem 1.4rem; margin: 1.25rem 0;
}
.policy-box p { margin: 0; }
.policy-box a { color: var(--brand-cyan); }

/* Uygulama politika sayfaları (policy-fiyatcepte, policy-yakitfiyaticepte) */
.app-policy-wrap {
    position: relative; z-index: 1;
    max-width: 800px; margin: 0 auto;
    padding: 3.5rem 1.5rem 5rem;
}
.app-policy-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2.5rem;
}
.app-policy-logo {
    width: 64px; height: 64px; border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.app-policy-header h1 {
    font-family: var(--font-heading); font-weight: 700;
    font-size: clamp(1.4rem, 3.5vw, 2rem); color: #fff;
}
.app-policy-header h1 span {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.policy-update-info {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; color: var(--text-dim);
    background: rgba(0,245,255,0.06);
    border: 1px solid rgba(0,245,255,0.15);
    border-radius: 20px; padding: 0.35rem 0.9rem;
    margin-bottom: 2rem;
}
.policy-update-info i { color: var(--brand-cyan); }
