﻿:root {
    --navy: #0a1628;
    --blue: #1a56db;
    --blue-lt: #3b82f6;
    --cyan: #06b6d4;
    --green: #10b981;
    --white: #ffffff;
    --g50: #f8fafc;
    --g100: #f1f5f9;
    --g200: #e2e8f0;
    --g300: #cbd5e1;
    --g400: #94a3b8;
    --g500: #64748b;
    --g600: #475569;
    --g700: #334155;
    --g800: #1e293b;
    --r: 14px;
    --rs: 8px;
    --info-bg: #eff6ff;
    --info-bdr: #bfdbfe;
    --info-txt: #1e40af;
    --info-drk: #1e3a8a;
    --ok-bg: #f0fdf4;
    --ok-bdr: #a7f3d0;
    --ok-txt: #065f46;
    --ok-drk: #047857;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree',sans-serif;
    background: var(--g50);
    color: var(--g800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Disclaimer üst banner ── */
.disc-bar {
    background: var(--info-bg);
    border-bottom: 2px solid var(--info-bdr);
    padding: 9px 24px;
    position: sticky;
    top: 0;
    z-index: 500;
}

.disc-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disc-bar-text {
    font-size: .77rem;
    color: var(--info-txt);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

    .disc-bar-text strong {
        color: var(--info-drk);
    }

    .disc-bar-text a {
        color: var(--info-drk);
        font-weight: 700;
        text-decoration: underline;
    }

/* ── NAV ── */
nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo em {
    color: var(--cyan);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,.7);
        text-decoration: none;
        font-size: .88rem;
        font-weight: 500;
        padding: 8px 13px;
        border-radius: var(--radius-sm);
        transition: all .18s;
    }

        .nav-links a:hover {
            color: var(--white);
            background: rgba(255,255,255,.08);
        }

        .nav-links a.active {
            color: var(--white);
            background: rgba(255,255,255,.1);
            font-weight: 700;
        }

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
}

    .nav-cta:hover {
        background: var(--blue-light) !important;
    }
/* Mobil menü drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 12px 16px 32px;
    overflow-y: auto;
    animation: slideDown .22s ease both;
}

    .mobile-nav.open {
        display: flex;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    transition: all .15s;
}

    .mobile-nav a:hover {
        color: var(--white);
        background: rgba(255,255,255,.07);
    }

.mobile-nav .mob-cta {
    display: block;
    margin-top: 16px;
    background: var(--blue);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-weight: 700;
    border-bottom: none;
}

    .mobile-nav .mob-cta:hover {
        background: var(--blue-light) !important;
    }
/* ── RESPONSIVE ── */
/* Hamburger butonu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 8px;
    transition: background .15s;
}

    .hamburger:hover {
        background: rgba(255,255,255,.08);
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: rgba(255,255,255,.85);
        border-radius: 2px;
        transition: transform .25s ease, opacity .2s ease, width .2s ease;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── HERO ── */
.page-hero {
    background: var(--navy);
    background-image: radial-gradient(ellipse 60% 140% at 95% 50%, rgba(26,86,219,.2) 0%, transparent 60%), radial-gradient(ellipse 40% 80% at 5% 80%, rgba(6,182,212,.07) 0%, transparent 55%);
    padding: 44px 24px 52px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .77rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: rgba(255,255,255,.42);
        text-decoration: none;
        transition: color .15s;
    }

        .breadcrumb a:hover {
            color: var(--cyan);
        }

    .breadcrumb .sep {
        color: rgba(255,255,255,.18);
    }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(26,86,219,.2);
    border: 1px solid rgba(26,86,219,.4);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: .3px;
    margin-bottom: 16px;
}

.hero-inner h1 {
    font-size: clamp(1.6rem,3vw,2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.7px;
    line-height: 1.1;
    margin-bottom: 14px;
}

    .hero-inner h1 em {
        color: var(--cyan);
        font-style: normal;
    }

.hero-desc {
    font-size: .92rem;
    color: rgba(255,255,255,.5);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--rs);
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}

    .hero-badge strong {
        color: var(--white);
    }

/* ── Anchor nav ── */
.anchor-nav {
    background: var(--white);
    border-bottom: 1px solid var(--g200);
    position: sticky;
    top: 108px;
    z-index: 90;
}

.anchor-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

    .anchor-nav-inner::-webkit-scrollbar {
        display: none;
    }

.anchor-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--g500);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all .18s;
}

    .anchor-link:hover {
        color: var(--blue);
        border-bottom-color: var(--blue);
    }

    .anchor-link.active {
        color: var(--blue);
        border-bottom-color: var(--blue);
    }

/* ── LAYOUT ── */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 90px;
    display: grid;
    grid-template-columns: 1fr 284px;
    gap: 36px;
    align-items: start;
}

/* ── BÖLÜM BAŞLIKLARI ── */
.section {
    margin-bottom: 10px;
    scroll-margin-top: 180px;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--g100);
}

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

    .section-icon.blue {
        background: var(--info-bg);
    }

    .section-icon.green {
        background: var(--ok-bg);
    }

    .section-icon.amber {
        background: #fffbeb;
    }

    .section-icon.purple {
        background: #f5f3ff;
    }

.section-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--g400);
    margin-bottom: 2px;
}

.section-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.3px;
}

/* ── KART CONTAINER ── */
.card {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: var(--r);
    padding: 26px 28px;
    margin-bottom: 16px;
}

    .card p {
        font-size: .85rem;
        color: var(--g600);
        line-height: 1.82;
        margin-bottom: 10px;
    }

        .card p:last-child {
            margin-bottom: 0;
        }

    .card strong {
        color: var(--g800);
    }

    .card a {
        color: var(--blue);
        text-decoration: none;
        font-weight: 600;
    }

        .card a:hover {
            text-decoration: underline;
        }

    .card h3 {
        font-size: .9rem;
        font-weight: 800;
        color: var(--navy);
        margin: 18px 0 8px;
    }

        .card h3:first-child {
            margin-top: 0;
        }

/* ── ANA UYARI KUTUSU ── */
.main-notice {
    background: var(--info-bg);
    border: 2px solid var(--info-bdr);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.main-notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main-notice-title {
    font-size: .95rem;
    font-weight: 800;
    color: var(--info-txt);
    margin-bottom: 6px;
}

.main-notice-text {
    font-size: .83rem;
    color: var(--info-txt);
    line-height: 1.78;
}

    .main-notice-text strong {
        color: var(--info-drk);
    }

    .main-notice-text a {
        color: var(--info-drk);
        font-weight: 700;
        text-decoration: underline;
    }

/* ── BELGE KARTLARI ── */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 0;
}

.doc-card {
    background: var(--white);
    border: 1.5px solid var(--g200);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s;
}

    .doc-card:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 20px rgba(26,86,219,.1);
    }

.doc-card-header {
    padding: 16px 18px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--g100);
}

.doc-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

    .doc-type-icon.temsilcilik {
        background: #eff6ff;
    }

    .doc-type-icon.kvkk {
        background: #f0fdf4;
    }

    .doc-type-icon.faaliyet {
        background: #fffbeb;
    }

.doc-card-name {
    font-size: .88rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

.doc-card-sub {
    font-size: .7rem;
    color: var(--g400);
    margin-top: 2px;
    font-family: 'DM Mono',monospace;
}

.doc-card-body {
    padding: 14px 18px;
}

.doc-card-desc {
    font-size: .8rem;
    color: var(--g600);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* JPEG görsel önizleme alanı */
.doc-preview {
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: var(--rs);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.doc-preview-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s;
}

.doc-preview:hover .doc-preview-img {
    transform: scale(1.02);
}

.doc-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,.0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .2s;
}

.doc-preview:hover .doc-preview-overlay {
    background: rgba(10,22,40,.45);
    opacity: 1;
}

.doc-preview-btn {
    background: var(--white);
    color: var(--navy);
    border: none;
    border-radius: var(--rs);
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

/* Belge placeholder (gerçek JPEG yüklenene kadar) */
.doc-placeholder {
    background: linear-gradient(135deg, var(--g100) 0%, var(--g50) 100%);
    border: 2px dashed var(--g300);
    border-radius: var(--rs);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .18s;
    position: relative;
    overflow: hidden;
}

    .doc-placeholder:hover {
        border-color: var(--blue);
        background: var(--info-bg);
    }

.doc-placeholder-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.doc-placeholder-text {
    font-size: .78rem;
    color: var(--g500);
    font-weight: 600;
    line-height: 1.5;
}

    .doc-placeholder-text strong {
        color: var(--navy);
        display: block;
        margin-bottom: 4px;
        font-size: .82rem;
    }

.doc-placeholder-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--g200);
    color: var(--g600);
    font-size: .66rem;
    font-weight: 700;
    font-family: 'DM Mono',monospace;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

/* Tam ekran modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .modal-overlay.open {
        display: flex;
    }

.modal-box {
    background: var(--white);
    border-radius: var(--r);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.modal-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--g100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-head-title {
    font-size: .9rem;
    font-weight: 800;
    color: var(--navy);
}

.modal-close {
    background: var(--g100);
    border: none;
    border-radius: var(--rs);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

    .modal-close:hover {
        background: var(--g200);
    }

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img {
    max-width: 100%;
    border-radius: var(--rs);
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.modal-foot {
    padding: 14px 20px;
    border-top: 1px solid var(--g100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-foot-note {
    font-size: .75rem;
    color: var(--g500);
}

.modal-dl-btn {
    background: linear-gradient(135deg,var(--blue),var(--blue-lt));
    color: var(--white);
    border: none;
    border-radius: var(--rs);
    padding: 9px 18px;
    font-size: .82rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── AKıŞ ŞEMASI ── */
.flow-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 140px;
    background: var(--g50);
    border: 1.5px solid var(--g200);
    border-radius: var(--r);
    padding: 18px 16px;
    text-align: center;
    position: relative;
    transition: border-color .18s;
}

    .flow-step:hover {
        border-color: var(--blue);
    }

.flow-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--blue),var(--cyan));
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 2px 8px rgba(26,86,219,.25);
}

.flow-step-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    display: block;
}

.flow-step-title {
    font-size: .8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.flow-step-desc {
    font-size: .72rem;
    color: var(--g500);
    line-height: 1.55;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--g300);
    font-size: 1.2rem;
    flex-shrink: 0;
    align-self: center;
}

/* ── GÜVENLİK ÖNLEMLERİ ── */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.sec-item {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--rs);
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sec-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.sec-item-title {
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.sec-item-desc {
    font-size: .76rem;
    color: var(--g600);
    line-height: 1.6;
}

/* ── SSS ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--rs);
    overflow: hidden;
}

    .faq-item details > summary {
        list-style: none;
    }

        .faq-item details > summary::-webkit-details-marker {
            display: none;
        }

.faq-q {
    padding: 13px 16px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    user-select: none;
}

    .faq-q::after {
        content: "▾";
        font-size: .72rem;
        color: var(--g400);
        flex-shrink: 0;
        transition: transform .2s;
    }

details[open] .faq-q {
    color: var(--blue);
}

    details[open] .faq-q::after {
        transform: rotate(180deg);
        color: var(--blue);
    }

.faq-a {
    padding: 12px 16px 14px;
    font-size: .83rem;
    color: var(--g600);
    line-height: 1.78;
    border-top: 1px solid var(--g100);
}

    .faq-a strong {
        color: var(--g800);
    }

/* ── İLETİŞİM ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.contact-item {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--rs);
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--info-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--g400);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
}

.contact-sub {
    font-size: .72rem;
    color: var(--g500);
    margin-top: 2px;
}

/* ── SIDEBAR ── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 196px;
}

.s-card {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: var(--r);
    overflow: hidden;
}

.s-head {
    padding: 13px 16px;
    border-bottom: 1px solid var(--g100);
    font-size: .78rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px;
}

.s-body {
    padding: 14px 16px;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: var(--rs);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    color: var(--g600);
    transition: all .15s;
}

    .toc-link:hover, .toc-link.active {
        background: var(--info-bg);
        color: var(--blue);
    }

.toc-link-num {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 800;
    color: var(--g400);
    flex-shrink: 0;
}

.toc-link:hover .toc-link-num, .toc-link.active .toc-link-num {
    background: var(--info-bdr);
    color: var(--blue);
}

.disc-sidebar {
    background: var(--info-bg);
    border: 1.5px solid var(--info-bdr);
    border-radius: var(--r);
    padding: 14px 16px;
}

.disc-sidebar-title {
    font-size: .78rem;
    font-weight: 800;
    color: var(--info-txt);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.disc-sidebar-text {
    font-size: .74rem;
    color: var(--info-txt);
    line-height: 1.65;
}

    .disc-sidebar-text a {
        color: var(--info-drk);
        font-weight: 700;
        text-decoration: underline;
    }

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 11px;
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--rs);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    color: var(--g700);
    transition: all .15s;
}

    .quick-link:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: var(--white);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 52px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 36px;
}

.footer-brand p {
    color: rgba(255,255,255,.42);
    font-size: .82rem;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: .81rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,.42);
    text-decoration: none;
    font-size: .81rem;
    padding: 4px 0;
    transition: color .15s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.disc-footer-legal {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.disc-footer-legal-text {
    font-size: .71rem;
    color: rgba(255,255,255,.28);
    line-height: 1.75;
    text-align: center;
}

    .disc-footer-legal-text strong {
        color: rgba(255,255,255,.42);
    }

    .disc-footer-legal-text a {
        color: rgba(255,255,255,.38);
        text-decoration: underline;
    }

.footer-bot {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bot p {
        color: rgba(255,255,255,.28);
        font-size: .74rem;
    }

/* ── PDF Viewer ── */
.pdf-thumb-wrap {
    position: relative;
    cursor: pointer;
    border-radius: var(--rs);
    overflow: visible;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.pdf-thumb {
    position: relative;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pdf-thumb-page {
    width: calc(100% - 16px);
    height: 150px;
    background: var(--white);
    border: 1.5px solid var(--g200);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(10,22,40,.1);
    transition: transform .2s, box-shadow .2s;
}

.pdf-thumb-wrap:hover .pdf-thumb-page {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(10,22,40,.15);
}

.pdf-thumb-stack {
    position: absolute;
    border-radius: 6px;
    background: var(--g100);
    border: 1.5px solid var(--g200);
}

    .pdf-thumb-stack.s2 {
        width: calc(100% - 24px);
        height: 150px;
        bottom: 0;
        right: 6px;
        z-index: 2;
        transform: rotate(1.5deg) translateY(3px);
    }

    .pdf-thumb-stack.s3 {
        width: calc(100% - 32px);
        height: 150px;
        bottom: 0;
        right: 10px;
        z-index: 1;
        transform: rotate(3deg) translateY(5px);
    }

.pdf-page-inner {
    padding: 16px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pdf-page-lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.pdf-line {
    height: 8px;
    background: var(--g100);
    border-radius: 3px;
}

    .pdf-line.w80 {
        width: 80%;
    }

    .pdf-line.w60 {
        width: 60%;
    }

    .pdf-line.w90 {
        width: 90%;
    }

    .pdf-line.w50 {
        width: 50%;
    }

    .pdf-line.w75 {
        width: 75%;
    }

    .pdf-line.w40 {
        width: 40%;
    }

    .pdf-line.w85 {
        width: 85%;
    }

.pdf-page-stamp {
    font-size: 1.8rem;
    text-align: right;
    opacity: .25;
}

.pdf-thumb-overlay {
    position: absolute;
    inset: 0 0 10px 0;
    z-index: 4;
    border-radius: var(--rs);
    background: rgba(10,22,40,0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .2s;
}

.pdf-thumb-wrap:hover .pdf-thumb-overlay {
    background: rgba(10,22,40,.45);
    opacity: 1;
}

.pdf-thumb-btn {
    background: var(--white);
    color: var(--navy);
    border: none;
    border-radius: var(--rs);
    padding: 9px 16px;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 14px rgba(0,0,0,.25);
}

.pdf-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--g100);
}

.pdf-meta-tag {
    font-size: .7rem;
    font-weight: 700;
    color: var(--g500);
    font-family: 'DM Mono',monospace;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pdf-dl-inline {
    background: var(--info-bg);
    color: var(--info-txt);
    border: 1px solid var(--info-bdr);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: .73rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    transition: all .15s;
}

    .pdf-dl-inline:hover {
        background: var(--info-bdr);
    }

/* ── PDF Modal ── */
.pdf-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.88);
    z-index: 1000;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

    .pdf-modal-overlay.open {
        display: flex;
    }

.pdf-modal-box {
    background: var(--g50);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Modal üst bar */
.pdf-modal-bar {
    background: var(--navy);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    flex-shrink: 0;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pdf-modal-title {
    font-size: .88rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pdf-modal-title span {
        font-size: .72rem;
        color: rgba(255,255,255,.4);
        font-weight: 500;
        font-family: 'DM Mono',monospace;
    }

.pdf-modal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-modal-btn {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--rs);
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .pdf-modal-btn:hover {
        background: rgba(255,255,255,.14);
        color: var(--white);
    }

    .pdf-modal-btn.primary {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
    }

        .pdf-modal-btn.primary:hover {
            background: var(--blue-lt);
        }

.pdf-modal-close {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--rs);
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: all .15s;
}

    .pdf-modal-close:hover {
        background: rgba(255,255,255,.16);
        color: var(--white);
    }

/* Sayfa navigasyon bar */
.pdf-nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--g200);
    padding: 0 20px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
}

.pdf-nav-btn {
    background: var(--g50);
    border: 1.5px solid var(--g200);
    border-radius: var(--rs);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    color: var(--g600);
    transition: all .15s;
}

    .pdf-nav-btn:hover:not(:disabled) {
        background: var(--info-bg);
        border-color: var(--blue);
        color: var(--blue);
    }

    .pdf-nav-btn:disabled {
        opacity: .35;
        cursor: not-allowed;
    }

.pdf-page-indicator {
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'DM Mono',monospace;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdf-page-input {
    width: 40px;
    text-align: center;
    border: 1.5px solid var(--g200);
    border-radius: 6px;
    padding: 4px 6px;
    font-size: .82rem;
    font-weight: 700;
    font-family: 'DM Mono',monospace;
    color: var(--navy);
    outline: none;
}

    .pdf-page-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(26,86,219,.1);
    }

.pdf-page-total {
    color: var(--g400);
    font-size: .78rem;
}

.pdf-thumb-strip {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 12px;
    border-left: 1px solid var(--g100);
    border-right: 1px solid var(--g100);
    margin: 0 8px;
}

.pdf-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g200);
    cursor: pointer;
    transition: all .15s;
    border: 1.5px solid transparent;
}

    .pdf-strip-dot.active {
        background: var(--blue);
        border-color: var(--blue);
        width: 10px;
        height: 10px;
    }

    .pdf-strip-dot:hover {
        background: var(--blue-lt);
    }

/* PDF görüntüleme alanı */
.pdf-viewer-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g100);
    position: relative;
}

.pdf-page-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pdf-page-sheet {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(10,22,40,.18);
    max-height: 100%;
    max-width: 100%;
    aspect-ratio: 210/297; /* A4 oran */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: fadeUp .2s ease;
}

/* PDF sayfa içeriği simülasyonu — gerçek PDF yüklenince iframe/canvas ile değişir */
.pdf-page-mock {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.pdf-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--g100);
}

.pdf-mock-logo {
    font-size: .72rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.3px;
}

.pdf-mock-doc-no {
    font-size: .65rem;
    color: var(--g400);
    font-family: 'DM Mono',monospace;
}

.pdf-mock-title {
    font-size: .85rem;
    font-weight: 800;
    color: var(--navy);
}

.pdf-mock-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pdf-mock-line {
    height: 9px;
    background: var(--g100);
    border-radius: 3px;
}

.pdf-mock-section-title {
    height: 11px;
    background: var(--g200);
    border-radius: 3px;
    width: 40%;
    margin-top: 6px;
}

.pdf-mock-footer {
    border-top: 1px solid var(--g100);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

.pdf-mock-footer-text {
    font-size: .62rem;
    color: var(--g400);
    font-family: 'DM Mono',monospace;
}

.pdf-page-sheet .pdf-page-num-badge {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .65rem;
    font-weight: 700;
    color: var(--g500);
    font-family: 'DM Mono',monospace;
}

/* Gerçek PDF embed — yorum kaldırıldığında aktif */
.pdf-embed-container {
    width: 100%;
    height: 100%;
}

    .pdf-embed-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* ── Utility ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
}

    .tag.blue {
        background: var(--info-bg);
        color: var(--info-txt);
        border: 1px solid var(--info-bdr);
    }

    .tag.green {
        background: var(--ok-bg);
        color: var(--ok-txt);
        border: 1px solid var(--ok-bdr);
    }

    .tag.amber {
        background: #fffbeb;
        color: #92400e;
        border: 1px solid #fde68a;
    }

    .tag.purple {
        background: #f5f3ff;
        color: #6d28d9;
        border: 1px solid #ddd6fe;
    }

.divider {
    height: 1px;
    background: var(--g100);
    margin: 16px 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:980px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .flow-wrap {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
        align-self: center;
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none;
    }

    nav {
        top: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .anchor-nav {
        top: 104px;
    }
}

@media (max-width:480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .page-wrap {
        padding: 24px 16px 60px;
    }

    .disc-bar {
        top: 0;
    }

    nav {
        top: 80px;
    }

    .anchor-nav {
        top: 144px;
    }
}
/* Gerçek PDF embed — yorum kaldırıldığında aktif */
.pdf-embed-container {
    width: 100%;
    height: 100%;
}

    .pdf-embed-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* ── PDF Entry Row (kart içi önizleme + bilgi) ── */
.pdf-entry-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    border-bottom: 1px solid var(--g100);
}

.pdf-entry-thumb {
    width: 90px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    border-radius: var(--rs);
    overflow: visible;
}

.pdf-entry-info {
    flex: 1;
}

.pdf-open-btn {
    background: linear-gradient(135deg,var(--blue),var(--blue-lt));
    color: var(--white);
    border: none;
    border-radius: var(--rs);
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .18s;
    box-shadow: 0 2px 8px rgba(26,86,219,.25);
}

    .pdf-open-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(26,86,219,.35);
    }

    .pdf-open-btn.secondary {
        background: var(--g50);
        color: var(--g700);
        border: 1.5px solid var(--g200);
        box-shadow: none;
    }

        .pdf-open-btn.secondary:hover {
            background: var(--white);
            border-color: var(--blue);
            color: var(--blue);
        }

/* ── Gömülü PDF (sayfa içi) ── */
.pdf-inline-wrap {
    border-top: 1px solid var(--g100);
    display: flex;
    flex-direction: column;
}

.pdf-inline-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--g50);
    border-bottom: 1px solid var(--g100);
    gap: 12px;
    flex-wrap: wrap;
}

.pdf-inline-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--g500);
    font-family: 'DM Mono',monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf-inline-action {
    background: var(--g100);
    color: var(--g700);
    border: 1px solid var(--g200);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: .73rem;
    font-weight: 700;
    font-family: 'Figtree',sans-serif;
    cursor: pointer;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .pdf-inline-action:hover {
        background: var(--g200);
    }

    .pdf-inline-action.primary {
        background: var(--info-bg);
        color: var(--info-txt);
        border-color: var(--info-bdr);
    }

        .pdf-inline-action.primary:hover {
            background: var(--info-bdr);
        }

.pdf-inline-frame {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
    background: var(--g100);
}

.pdf-fallback {
    padding: 40px;
    text-align: center;
    font-size: .85rem;
    color: var(--g500);
}

    .pdf-fallback a {
        color: var(--blue);
        font-weight: 600;
    }
.fco-section-title {
    font-size: .7rem;
    font-weight: 800;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fco-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fco-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

    .fco-row:last-child {
        border-bottom: none;
    }

.fco-row-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.fco-label {
    font-size: .68rem;
    color: rgba(255,255,255,.3);
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

.fco-value {
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    text-align: right;
    line-height: 1.5;
}

    .fco-value.mono {
        font-family: 'DM Mono', monospace;
        font-size: .72rem;
    }

.fco-link {
    font-size: .73rem;
    color: rgba(255,255,255,.5);
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
}

    .fco-link:hover {
        color: var(--cyan);
    }

.fco-cert-list {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fco-cert {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fco-cert-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.fco-cert-name {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
}

.fco-cert-issuer {
    font-size: .67rem;
    color: rgba(255,255,255,.25);
    margin-top: 1px;
}