﻿
:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --cyan: #06b6d4;
    --green: #10b981;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
    --shadow: 0 4px 24px rgba(10,22,40,0.09);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── 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;
    }

/* ── HERO ── */
.page-hero {
    background: var(--navy);
    background-image: radial-gradient(ellipse 55% 160% at 92% 40%, rgba(26,86,219,.22) 0%, transparent 65%), radial-gradient(ellipse 30% 80% at 3% 70%, rgba(6,182,212,.07) 0%, transparent 60%);
    padding: 36px 24px 40px;
    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-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-left {
}

.hero-kicker {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: .8;
    margin-bottom: 8px;
}

.hero-left h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.7px;
    line-height: 1.15;
    margin-bottom: 12px;
}

    .hero-left h1 em {
        color: var(--cyan);
        font-style: normal;
    }

.hero-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.52);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    padding: 5px 13px;
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-stat {
    padding: 16px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.07);
}

    .hero-stat:last-child {
        border-right: none;
    }

.hero-stat-n {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'DM Mono', monospace;
    letter-spacing: -1px;
    line-height: 1;
}

    .hero-stat-n span {
        color: var(--cyan);
        font-size: 1rem;
    }

.hero-stat-l {
    font-size: .68rem;
    color: rgba(255,255,255,.38);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── 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ŞLIĞI ── */
.sec-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.sec-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.3px;
}

.sec-sub {
    font-size: .84rem;
    color: var(--gray-500);
    margin-top: 3px;
}

.sec-head {
    margin-bottom: 18px;
}

/* ── KURUM SATIRLARI (düz liste) ── */
.kurum-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

.kurum-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 15px 18px;
    text-decoration: none;
    transition: all .18s;
    animation: fadeUp .35s ease both;
}

    .kurum-row:hover {
        border-color: var(--blue);
        box-shadow: 0 3px 16px rgba(26,86,219,.09);
        transform: translateX(3px);
    }

.kurum-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid var(--gray-100);
}

.kurum-body {
    flex: 1;
    min-width: 0;
}

.kurum-name {
    font-size: .92rem;
    font-weight: 800;
    color: var(--navy);
}

.kurum-meta {
    font-size: .76rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.kurum-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.kurum-badge {
    font-size: .67rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    background: #eff6ff;
    color: var(--blue);
}

.kurum-arr {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: var(--gray-400);
    transition: all .18s;
}

.kurum-row:hover .kurum-arr {
    background: var(--blue);
    color: var(--white);
}

/* ── SEO BLOKLAR ── */
.seo-blk {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin-bottom: 18px;
}

    .seo-blk h2 {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--gray-100);
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .seo-blk h3 {
        font-size: .9rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 7px;
    }

    .seo-blk p {
        font-size: .86rem;
        color: var(--gray-600);
        line-height: 1.82;
        margin-bottom: 12px;
    }

        .seo-blk p:last-child {
            margin-bottom: 0;
        }

    .seo-blk a {
        color: var(--blue);
        text-decoration: none;
        font-weight: 600;
    }

        .seo-blk a:hover {
            text-decoration: underline;
        }

/* 2-kolon grid içerik */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
}

.info-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
}

    .info-card h3 {
        font-size: .84rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .info-card p {
        font-size: .81rem;
        color: var(--gray-600);
        line-height: 1.75;
        margin: 0;
    }

/* Bölge tablosu */
.bolge-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .83rem;
    margin-top: 6px;
}

    .bolge-tbl thead th {
        text-align: left;
        padding: 9px 12px;
        background: var(--gray-50);
        color: var(--gray-500);
        font-size: .71rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        border-bottom: 2px solid var(--gray-200);
    }

    .bolge-tbl tbody td {
        padding: 12px 12px;
        border-bottom: 1px solid var(--gray-100);
        color: var(--gray-700);
        vertical-align: top;
        line-height: 1.55;
    }

    .bolge-tbl tbody tr:last-child td {
        border-bottom: none;
    }

    .bolge-tbl tbody tr:hover td {
        background: var(--gray-50);
    }

.tbl-name {
    font-weight: 800;
    color: var(--navy);
    font-size: .86rem;
    display: block;
    margin-bottom: 2px;
}

.tbl-sub {
    font-size: .75rem;
    color: var(--gray-400);
}

.tbl-link {
    color: var(--blue);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}

    .tbl-link:hover {
        text-decoration: underline;
    }

/* Adım adım */
.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(26,86,219,.25);
}

.step-body {
}

    .step-body strong {
        font-size: .86rem;
        color: var(--navy);
        display: block;
        margin-bottom: 3px;
    }

    .step-body p {
        font-size: .83rem;
        color: var(--gray-600);
        line-height: 1.7;
        margin: 0;
    }

/* SSS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

    .faq-item details > summary {
        list-style: none;
    }

        .faq-item details > summary::-webkit-details-marker {
            display: none;
        }

.faq-q {
    padding: 14px 18px;
    font-size: .87rem;
    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(--gray-400);
        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: 0 18px 14px;
    font-size: .83rem;
    color: var(--gray-600);
    line-height: 1.78;
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
}

/* Diğer kategoriler */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all .16s;
}

    .cat-link:hover {
        background: var(--white);
        border-color: var(--blue);
        box-shadow: var(--shadow-sm);
    }

.cat-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.cat-link-name {
    font-size: .83rem;
    font-weight: 700;
    color: var(--navy);
}

.cat-link-count {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: 1px;
}

/* ── SIDEBAR ── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 80px;
}

.s-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.s-head {
    padding: 13px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: .78rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px;
}

.s-body {
    padding: 14px 16px;
}

/* Hızlı ödeme formu */
.quick-form {
}

    .quick-form label {
        display: block;
        font-size: .75rem;
        font-weight: 700;
        color: var(--gray-600);
        margin-bottom: 6px;
    }

.quick-select, .quick-input {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: .83rem;
    color: var(--navy);
    font-family: inherit;
    background: var(--gray-50);
    margin-bottom: 10px;
    transition: border-color .15s;
    outline: none;
}

    .quick-select:focus, .quick-input:focus {
        border-color: var(--blue);
        background: var(--white);
    }

.quick-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px;
    font-size: .85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
}

    .quick-btn:hover {
        background: var(--blue-light);
    }

/* Güven */
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .79rem;
    color: var(--gray-700);
    font-weight: 500;
}

.t-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    flex-shrink: 0;
}

/* Taksit */
.taksit-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
}

    .taksit-tbl th {
        text-align: left;
        padding: 5px 6px;
        color: var(--gray-500);
        font-weight: 700;
        font-size: .69rem;
        text-transform: uppercase;
        border-bottom: 1px solid var(--gray-100);
    }

    .taksit-tbl td {
        padding: 8px 6px;
        border-bottom: 1px solid var(--gray-100);
        color: var(--gray-700);
        font-weight: 500;
    }

    .taksit-tbl tr:last-child td {
        border-bottom: none;
    }

.t-chip {
    display: inline-block;
    background: #eff6ff;
    color: var(--blue);
    font-size: .69rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

/* Şehir linkleri */
.city-links {
    display: flex;
    flex-direction: column;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .81rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}

    .city-link:last-child {
        border-bottom: none;
    }

    .city-link:hover {
        color: var(--blue);
    }

    .city-link .arr {
        font-size: .68rem;
        color: var(--gray-300);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 52px 24px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 52px;
}

.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;
    letter-spacing: .4px;
    margin-bottom: 16px;
}

.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);
    }

.footer-bot {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bot p {
        color: rgba(255,255,255,.28);
        font-size: .74rem;
    }

/* ── ANİMASYON ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── MOBİL ── */
@media (max-width: 980px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        width: 100%;
    }

    .hero-stat {
        flex: 1;
    }

    .nav-links {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .bolge-tbl {
        font-size: .78rem;
    }

        .bolge-tbl td, .bolge-tbl th {
            padding: 9px 8px;
        }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .page-wrap {
        padding: 28px 16px 60px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}
.kurum-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 22px;
    text-decoration: none;
    display: block;
    transition: all .18s;
    position: relative;
}

    .kurum-card:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 20px rgba(26,86,219,0.09);
        transform: translateX(3px);
    }

.kurum-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}
.meta-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

    .meta-tag.il {
        background: var(--gray-100);
        color: var(--gray-600);
    }

    .meta-tag.badge {
        background: #eff6ff;
        color: var(--blue);
    }

    .meta-tag.green {
        background: #d1fae5;
        color: #065f46;
    }
.kurum-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.kurum-cta {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 3px;
    transition: gap .15s;
}

.kurum-card:hover .kurum-cta {
    gap: 6px;
}
.kurum-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.55;
}
.alert-amber {
    display: flex;
    gap: 12px;
    background: var(--amber-light);
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-top: 14px;
}

.alert-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.alert-text {
    font-size: .82rem;
    color: #92400e;
    line-height: 1.7;
}

    .alert-text strong {
        color: #78350f;
    }
.alert-box {
    display: flex;
    gap: 12px;
    background: var(--amber-light);
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-top: 14px;
}
.kurum-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all .18s;
    flex-shrink: 0;
    align-self: center;
}

.kurum-card:hover .kurum-arrow-btn {
    background: var(--blue);
    color: var(--white);
}

.kurum-info {
    flex: 1;
    min-width: 0;
}

/* 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);
    }

@media (max-width: 900px) {
    .hero {
        padding: 32px 16px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* Ödeme kartı mobilde üste çıkar */
    .payment-card {
        order: -1;
        margin-bottom: 0;
    }

    .hero-left {
        order: 1;
        padding-bottom: 40px;
    }
    /* Mobilde H1 daha küçük */
    .hero h1 {
        font-size: 1.65rem;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    /* Stats daha kompakt */
    .hero-stats {
        gap: 20px;
        margin-bottom: 0;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}