/* ======================================================================
   PAGE — Statik sayfalar (Hakkımızda, KVKK, Gizlilik, vb)
   Prefix: .pg-
   Tasarım: Sade, okuma-odaklı, blog-detail typography'sine yakın
====================================================================== */

.pg-page {
    background: var(--bg-page, #f9fafb);
    min-height: calc(100vh - var(--header-height, 60px));
}

/* Geri linki */
.pg-back-row {
    max-width: 900px;
    margin: 0 auto 1em;
    padding: 22px 20px 0;
}

.pg-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 14px;
    background: #fff;
    color: #b45309;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #fde68a;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.10);
    transition: all 0.2s ease;
}
.pg-back:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: #d97706;
    transform: translateX(-3px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.pg-back:active { transform: translateX(-3px) scale(0.98); }

/* ─────────────── HERO ─────────────── */
.pg-hero {
    position: relative;
    padding: 50px 20px 40px;
    background:
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.pg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.5;
}

/* Yasal sayfa hero'su daha sade */
.pg-hero-legal {
    background:
        linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 40px 20px 32px;
}

.pg-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.pg-hero-icon {
    font-size: 44px;
    margin-bottom: 10px;
    line-height: 1;
}

.pg-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
}

.pg-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #FFFFFF;
}

.pg-hero-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 8px 0 0;
}

/* ─────────────── CONTAINER ─────────────── */
.pg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 20px 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 960px) {
    .pg-container {
        grid-template-columns: minmax(0, 1fr) 280px;
        align-items: start;
    }
}

/* ─────────────── BODY ─────────────── */
.pg-body {
    background: white;
    border-radius: 16px;
    padding: 32px clamp(20px, 4vw, 48px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid var(--border, #e5e7eb);
}

.pg-prose {
    color: var(--text, #1f2937);
    font-size: 17px;
    line-height: 1.8;
    font-family: 'Georgia', 'Times New Roman', serif;
    max-width: 70ch;
}

.pg-prose > * + * { margin-top: 1em; }

.pg-prose p { margin: 0 0 1.2em; }

.pg-prose h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text, #111827);
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.pg-prose h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--text, #111827);
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.pg-prose h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text, #111827);
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

.pg-prose strong { color: var(--text, #111827); font-weight: 700; }

.pg-prose a {
    color: #0ea5e9;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}
.pg-prose a:hover { color: #0284c7; }

.pg-prose blockquote {
    margin: 1.5em 0;
    padding: 16px 24px;
    border-left: 4px solid #0ea5e9;
    background: #f0f9ff;
    color: var(--text, #4b5563);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}
.pg-prose blockquote p { margin: 0; }

.pg-prose ul, .pg-prose ol {
    padding-left: 1.6em;
    margin: 0 0 1.2em;
}
.pg-prose li { margin-bottom: 0.5em; }
.pg-prose ul li::marker { color: #0ea5e9; }

.pg-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.4em 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.pg-prose hr {
    border: 0;
    border-top: 1px solid var(--border, #e5e7eb);
    margin: 2em 0;
}

.pg-prose code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.92em;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    color: #dc2626;
}

.pg-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 15px;
}
.pg-prose th, .pg-prose td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.pg-prose th {
    background: var(--bg-page, #f9fafb);
    font-weight: 600;
    color: var(--text, #111827);
}

/* Yasal sayfalar: daha sade tipografi */
.pg-legal .pg-prose {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}
.pg-legal .pg-prose h2 { font-size: 22px; }
.pg-legal .pg-prose h3 { font-size: 18px; }

/* ─────────────── SIDEBAR ─────────────── */
.pg-sidebar {
    background: white;
    border-radius: 12px;
    padding: 22px 20px;
    border: 1px solid var(--border, #e5e7eb);
    position: sticky;
    top: 20px;
}

.pg-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted, #6b7280);
    margin: 0 0 14px;
}

.pg-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pg-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text, #374151);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
}
.pg-sidebar-link:hover {
    background: #fffbeb;
    color: #b45309;
}
.pg-sidebar-link.is-legal {
    color: var(--muted, #6b7280);
    font-size: 13px;
}

/* 🎯 Aktif sayfa — vurgulu amber gradient */
.pg-sidebar-link.is-active {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.35);
    position: relative;
    padding-inline-start: 16px;
}
.pg-sidebar-link.is-active::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 4px;
    background: #78350f;
}
.pg-sidebar-link.is-active .pg-sidebar-badge {
    /* aktif kart üzerindeki rozet (📜) — yumuşak gölge */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.pg-sidebar-link.is-active:hover {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    color: #fff !important;
}

.pg-sidebar-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.pg-sidebar-badge {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.6;
}

/* Mobil: sidebar altta */
@media (max-width: 959px) {
    .pg-sidebar {
        position: static;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   🎨 PREMIUM COMPONENT LIBRARY — Mandıracı Dede Marka Sistemi
   Marka rengi: Amber #f59e0b · Tonlar: #fffbeb, #fef3c7, #fde68a, #b45309
   Uygulanan sayfalar: Hakkımızda, Gizlilik, KVKK, Çerez, Kullanım, İade,
   Teslimat, Mesafeli Satış (SSS kendi .faq-* sistemini kullanır).
   ════════════════════════════════════════════════════════════════════════ */

:root {
    --brand-50:  #fffbeb;
    --brand-100: #fef3c7;
    --brand-200: #fde68a;
    --brand-300: #fcd34d;
    --brand-500: #f59e0b;
    --brand-600: #d97706;
    --brand-700: #b45309;
    --brand-900: #78350f;
}

/* ─── Marka rengi ile renklenmiş HERO override ─────────────────────────── */
.pg-hero.is-brand,
.pg-hero-legal.is-brand {
    background:
        radial-gradient(circle at 20% 30%, rgba(252, 211, 77, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #78350f 0%, #b45309 60%, #92400e 100%);
}
.pg-hero.is-brand .pg-hero-tag {
    background: rgba(252, 211, 77, 0.20);
    color: #fef3c7;
}
.pg-hero.is-brand::before {
    background-image: radial-gradient(circle at 1px 1px, rgba(252, 211, 77, 0.15) 1px, transparent 0);
}

/* ─── 📑 Sticky TOC (Table of Contents) ────────────────────────────────── */
.legal-layout {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

/* 🔧 Legal-layout'lu sayfalarda dış pg-sidebar gizle, içeriği tam genişlik yap.
   page-detail.php pg-container = 2 kolon (içerik + sidebar). Bizim TOC ile
   çakışıp 3 kolona dönüşüyor — içerik daralıyor. Düzeltme: */
.pg-container:has(.legal-layout) {
    max-width: 1280px;  /* 2 kolonu rahat sığdırmak için biraz daha geniş */
}
.pg-body:has(.legal-layout) {
    padding: 24px clamp(16px, 3vw, 32px) !important;
}

/* Legal-layout içindeki pg-prose 70ch kapsayıcısı ana içeriği daraltıyor — kaldır */
.legal-layout .pg-prose,
.pg-body:has(.legal-layout) .pg-prose {
    max-width: none;
}
.legal-main {
    min-width: 0; /* grid çocukta overflow önleme */
}

.legal-toc {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--brand-100);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.06);
}
.legal-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-700);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-100);
}
.legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.legal-toc li {
    counter-increment: toc;
    margin: 0;
}
.legal-toc a {
    display: block;
    padding: 8px 10px 8px 32px;
    font-size: 13px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.15s;
    line-height: 1.4;
}
.legal-toc a::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 8px;
    top: 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-500);
    opacity: 0.6;
}
.legal-toc a:hover {
    background: var(--brand-50);
    color: var(--brand-700);
}
.legal-toc a.is-active {
    background: var(--brand-100);
    color: var(--brand-900);
    font-weight: 600;
}
.legal-toc a.is-active::before { opacity: 1; }

/* ─── Anchored sections ────────────────────────────────────────────────── */
.legal-section {
    scroll-margin-top: 80px;
    margin-bottom: 40px;
    padding-top: 8px;
}
.legal-section h2 {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-100);
    color: #1f2937;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.legal-section h2 .legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    flex-shrink: 0;
}
.legal-section h3 {
    color: var(--brand-700);
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 10px;
}
.legal-section p {
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 14px;
}
.legal-section a {
    color: var(--brand-700);
    font-weight: 500;
    border-bottom: 1px dashed var(--brand-300);
    text-decoration: none;
    transition: all 0.15s;
}
.legal-section a:hover {
    color: var(--brand-900);
    border-bottom-style: solid;
}
.legal-section strong { color: #1f2937; font-weight: 700; }
.legal-section em { color: var(--brand-700); font-style: italic; }

/* ─── 📋 Hızlı bakış kartları ──────────────────────────────────────────── */
.legal-quick-facts {
    background: linear-gradient(135deg, var(--brand-50), #fff);
    border: 1px solid var(--brand-200);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}
.legal-quick-facts-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-900);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.legal-quick-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.legal-quick-facts li {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 3px solid var(--brand-500);
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}
.legal-quick-facts li strong { color: var(--brand-700); display: block; margin-bottom: 2px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── 💬 Callout kutuları (4 tip) ──────────────────────────────────────── */
.legal-callout {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 14px;
}
.legal-callout-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}
.legal-callout-body { flex: 1; min-width: 0; }
.legal-callout-body strong { display: block; margin-bottom: 4px; font-weight: 700; }
.legal-callout-body p { margin: 0 0 6px; }
.legal-callout-body p:last-child { margin-bottom: 0; }

.legal-callout--info    { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e3a8a; }
.legal-callout--warn    { background: #fffbeb; border-left: 4px solid var(--brand-500); color: var(--brand-900); }
.legal-callout--danger  { background: #fef2f2; border-left: 4px solid #dc2626; color: #7f1d1d; }
.legal-callout--success { background: #f0fdf4; border-left: 4px solid #10b981; color: #064e3b; }

/* ─── 📊 Info table (premium) ──────────────────────────────────────────── */
.legal-section table.info-table,
.pg-prose table.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
}
.legal-section table.info-table th,
.pg-prose table.info-table th {
    background: var(--brand-50);
    color: var(--brand-900);
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 2px solid var(--brand-200);
}
.legal-section table.info-table td,
.pg-prose table.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563;
    vertical-align: top;
}
.legal-section table.info-table tbody tr:last-child td { border-bottom: 0; }
.legal-section table.info-table tbody tr:hover td { background: var(--brand-50); }

/* ─── 🔢 Numbered list (premium) ───────────────────────────────────────── */
.legal-section ol:not(.legal-toc ol),
.legal-section ul {
    margin: 14px 0 18px;
    padding-left: 22px;
}
.legal-section ol li,
.legal-section ul li {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 6px;
}
.legal-section ol li::marker {
    color: var(--brand-600);
    font-weight: 700;
}
.legal-section ul li::marker {
    color: var(--brand-500);
}

/* ─── 📜 Meta bar (versiyon + tarih) ──────────────────────────────────── */
.legal-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #6b7280;
}
.legal-meta-bar > * {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.legal-meta-bar strong { color: #1f2937; font-weight: 600; }

/* ─── 🎯 Hero CTA (alt) ───────────────────────────────────────────────── */
.legal-footer-cta {
    background: linear-gradient(135deg, var(--brand-50), #fff);
    border-radius: 16px;
    padding: 32px 28px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid var(--brand-200);
}
.legal-footer-cta h3 {
    margin: 0 0 8px;
    color: var(--brand-900);
    font-size: 20px;
    font-weight: 700;
}
.legal-footer-cta p { margin: 0 0 18px; color: #6b7280; }
.legal-footer-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    border: 0 !important;
    transition: all 0.2s;
}
.legal-footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45); }

/* ─── 🪜 Mobile: TOC kapanır, içerik tam ─────────────────────────────── */
@media (max-width: 960px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 16px;
    }
    .legal-toc {
        position: static;
        max-height: none;
        order: -1;
    }
    .legal-toc-collapsible {
        cursor: pointer;
    }
    .legal-toc-collapsible[aria-expanded="false"] ol { display: none; }
    .legal-section h2 { font-size: 20px; }
    .legal-section h2 .legal-num { min-width: 30px; height: 30px; font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════════════════
   🌿 HAKKIMIZDA — Hikâye odaklı tasarım
   ════════════════════════════════════════════════════════════════════════ */

.about-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Açılış paragrafı (lead) */
.about-lead {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: #374151;
    margin: 30px 0 40px;
    padding: 0 0 0 24px;
    border-left: 4px solid var(--brand-500);
}
.about-lead strong { color: var(--brand-700); }
.about-lead em { color: var(--brand-900); font-style: italic; }

/* Hikâye section'ları */
.about-story {
    margin: 50px 0;
}
.about-story h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-story h2 .emoji {
    font-size: 0.85em;
    background: var(--brand-50);
    border-radius: 12px;
    padding: 8px 12px;
    line-height: 1;
}
.about-story p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 16px;
    font-size: 16px;
}

/* 🎯 Değerler grid (2 veya 3 sütun) */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 28px 0;
}
.about-value-card {
    background: linear-gradient(135deg, #fff, var(--brand-50));
    border-radius: 16px;
    padding: 22px;
    border: 1px solid var(--brand-100);
    transition: all 0.2s;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.15);
    border-color: var(--brand-300);
}
.about-value-icon {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--brand-100);
    border-radius: 14px;
}
.about-value-card h3 {
    margin: 0 0 8px;
    color: var(--brand-900);
    font-size: 17px;
    font-weight: 700;
}
.about-value-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* 📊 İstatistikler */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 30px 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--brand-50), #fff);
    border-radius: 16px;
    border: 1px solid var(--brand-200);
}
.about-stat {
    text-align: center;
}
.about-stat-number {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}
.about-stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    font-weight: 500;
}

/* 🏛️ Tüzel bilgi tablosu */
.about-legal {
    background: #1f2937;
    color: #f9fafb;
    border-radius: 18px;
    padding: 28px;
    margin: 40px 0;
}
.about-legal h2 {
    color: #fde68a;
    font-size: 18px;
    margin: 0 0 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.about-legal table { width: 100%; border-collapse: collapse; }
.about-legal th, .about-legal td {
    padding: 10px 8px;
    border-bottom: 1px solid #374151;
    text-align: left;
    font-size: 14px;
}
.about-legal th {
    color: #9ca3af;
    font-weight: 500;
    width: 40%;
    font-size: 13px;
}
.about-legal td { color: #f9fafb; }
.about-legal tr:last-child th, .about-legal tr:last-child td { border-bottom: 0; }

/* 💬 Kapanış quote */
.about-quote {
    margin: 40px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
    border-radius: 18px;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: var(--brand-900);
    border-left: 6px solid var(--brand-500);
    text-align: center;
}
.about-quote strong { font-style: normal; color: var(--brand-700); display: block; margin-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── 🪜 Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .about-lead { padding-left: 16px; font-size: 16px; }
    .about-story h2 { font-size: 22px; }
    .about-legal { padding: 20px; }
}
