﻿
:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --cyan: #06b6d4;
    --green: #10b981;
    --red: #ef4444;
    --red-light: #fef2f2;
    --amber: #f59e0b;
    --amber-light: #fffbeb;
    --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);
    --shadow-lg: 0 8px 40px rgba(10,22,40,0.13);
}

* {
    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: 32px 24px 36px;
    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: 18px;
    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-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-title-wrap h1 {
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.5px;
    line-height: 1.2;
}

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

.hero-title-wrap p {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    margin-top: 5px;
}

.hero-steps-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 24px;
}

.h-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 800;
    color: rgba(255,255,255,.35);
    flex-shrink: 0;
    transition: all .3s;
}

    .h-step-dot.active {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
        box-shadow: 0 0 0 4px rgba(26,86,219,.25);
    }

    .h-step-dot.done {
        background: var(--green);
        border-color: var(--green);
        color: var(--white);
    }

.h-step-label {
    font-size: .74rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    white-space: nowrap;
    transition: color .3s;
}

    .h-step-label.active {
        color: var(--white);
    }

    .h-step-label.done {
        color: rgba(255,255,255,.55);
    }

.h-step-line {
    width: 36px;
    height: 1.5px;
    background: rgba(255,255,255,.1);
    margin: 0 6px;
    flex-shrink: 0;
}

    .h-step-line.done {
        background: rgba(16,185,129,.4);
    }

/* ── ANA LAYOUT ── */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 90px;
    display: grid;
    grid-template-columns: 1fr 284px;
    gap: 32px;
    align-items: start;
}

/* ── SORGULAMA KARTI ── */
.sorgu-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: fadeUp .35s ease both;
}

.sorgu-card-head {
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-100);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sorgu-card-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sorgu-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sorgu-head-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.sorgu-head-sub {
    font-size: .78rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.sorgu-secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    padding: 5px 12px;
    font-size: .73rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
}

.sorgu-card-body {
    padding: 28px;
}

/* ── FORM ALANLARI ── */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-label {
    margin-bottom: 7px;
}

    .form-label .lbl-required {
        color: var(--red);
        font-size: .8rem;
        margin-left: 1px;
    }

    .form-label .lbl-hint {
        margin-left: 8px;
        font-size: .69rem;
        font-weight: 500;
        color: var(--blue);
        cursor: pointer;
        text-decoration: underline dotted;
        text-underline-offset: 2px;
    }

.form-input-wrap {
    width: 100%;
}

.form-helper {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: 5px;
    line-height: 1.5;
}

.form-error-msg {
    font-size: .72rem;
    color: var(--red);
    margin-top: 5px;
    display: none;
}

.form-group.has-error .form-error-msg {
    display: block;
}

.form-group.has-error .form-helper {
    display: none;
}

.form-label {
    font-size: .74rem;
    font-weight: 700;
    color: var(--gray-600);
}

.form-input, .form-select {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: .88rem;
    color: var(--navy);
    font-family: inherit;
    background: var(--gray-50);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

    .form-input:focus, .form-select:focus {
        border-color: var(--blue);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(26,86,219,.1);
    }

    .form-input.error {
        border-color: var(--red);
        background: var(--red-light);
    }

        .form-input.error:focus {
            box-shadow: 0 0 0 3px rgba(239,68,68,.1);
        }

    .form-input.success {
        border-color: var(--green);
    }

    .form-input::placeholder {
        color: var(--gray-300);
    }

.select-wrap {
    position: relative;
}

    .select-wrap::after {
        content: "▾";
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-50%);
        font-size: .72rem;
        color: var(--gray-400);
        pointer-events: none;
    }

.form-select {
    padding-right: 36px;
    cursor: pointer;
}

    .form-select option {
        color: var(--navy);
        background: var(--white);
    }

.form-helper {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: 5px;
    line-height: 1.5;
}

.form-error-msg {
    font-size: .72rem;
    color: var(--red);
    margin-top: 5px;
    display: none;
}

.form-group.has-error .form-error-msg {
    display: block;
}

/* ── CAPTCHA ALANI ── */
.captcha-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-check-wrap {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.captcha-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background: var(--white);
    transition: all .2s;
    flex-shrink: 0;
}

    .captcha-check:checked {
        background: var(--blue);
        border-color: var(--blue);
    }

        .captcha-check:checked::after {
            content: "✓";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            color: var(--white);
            font-size: .75rem;
            font-weight: 800;
        }

.captcha-label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--gray-700);
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.captcha-logo-icon {
    font-size: 1.4rem;
}

.captcha-logo-text {
    font-size: .58rem;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: .5px;
    text-align: center;
    line-height: 1.2;
}

/* ── SORGULA BUTONU ── */
.sorgu-btn-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sorgu-btn {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    font-size: .93rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 4px 16px rgba(26,86,219,.3);
}

    .sorgu-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #1e4fcf 0%, var(--blue-light) 100%);
        box-shadow: 0 6px 22px rgba(26,86,219,.38);
        transform: translateY(-1px);
    }

    .sorgu-btn:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

    .sorgu-btn .btn-arrow {
        font-size: .9rem;
        transition: transform .18s;
    }

    .sorgu-btn:hover:not(:disabled) .btn-arrow {
        transform: translateX(3px);
    }

    .sorgu-btn .btn-spinner {
        display: none;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,.3);
        border-top-color: var(--white);
        border-radius: 50%;
        animation: spin .7s linear infinite;
    }

    .sorgu-btn.loading .btn-spinner {
        display: block;
    }

    .sorgu-btn.loading .btn-arrow {
        display: none;
    }

.sorgu-reset {
    font-size: .82rem;
    color: var(--gray-500);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 500;
    text-decoration: underline dotted;
    text-underline-offset: 2px;
    transition: color .15s;
    white-space: nowrap;
}

    .sorgu-reset:hover {
        color: var(--blue);
    }

/* ── AYIRICI ── */
.result-divider {
    display: none;
    border: none;
    border-top: 2px dashed var(--gray-100);
    margin: 28px 0;
}

/* ── SONUÇ DURUMU — LOADING ── */
.state-loading {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.loading-rings {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

    .loading-rings span {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 3px solid transparent;
        animation: ring 1.4s cubic-bezier(.5,.1,.5,.9) infinite;
    }

        .loading-rings span:nth-child(1) {
            border-top-color: var(--blue);
            animation-delay: 0s;
        }

        .loading-rings span:nth-child(2) {
            inset: 7px;
            border-top-color: var(--cyan);
            animation-delay: .18s;
        }

        .loading-rings span:nth-child(3) {
            inset: 14px;
            border-top-color: rgba(26,86,219,.3);
            animation-delay: .36s;
        }

.state-loading p {
    font-size: .86rem;
    color: var(--gray-500);
    font-weight: 500;
}

.state-loading strong {
    display: block;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 6px;
}



.empty-box {
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #a7f3d0;
}

    .empty-box.is-error {
        background: linear-gradient(135deg, #fef2f2 0%, #fff1f1 100%);
        border-color: #fca5a5;
    }

.empty-icon-wrap {
    margin-bottom: 12px;
}

.empty-icon {
    font-size: 2.4rem;
    display: block;
}

.empty-box h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 7px;
}

.empty-box.is-error h3 {
    color: #991b1b;
}

.empty-box p {
    font-size: .84rem;
    color: #047857;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

.empty-box.is-error p {
    color: #b91c1c;
}

.empty-meta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.empty-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: .73rem;
    font-weight: 700;
    color: #047857;
}

.empty-box.is-error .empty-chip {
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.2);
    color: #b91c1c;
}

.empty-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.empty-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
}

.empty-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.empty-card-icon {
    font-size: 1rem;
}

.empty-card-head strong {
    font-size: .84rem;
    font-weight: 800;
    color: var(--navy);
}

.empty-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .empty-why-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: .8rem;
        color: var(--gray-600);
        line-height: 1.6;
    }

        .empty-why-list li span {
            font-size: .85rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

.empty-support-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.empty-support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all .15s;
}

    .empty-support-item:hover {
        border-color: var(--blue);
        background: var(--white);
    }

.es-icon {
    font-size: .95rem;
    flex-shrink: 0;
}

.es-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.es-label {
    font-size: .72rem;
    color: var(--gray-500);
    font-weight: 500;
}

.es-val {
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy);
}

.es-arr {
    font-size: .72rem;
    color: var(--gray-300);
}

.empty-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary-outline {
    flex: 2;
    min-width: 200px;
    background: var(--blue);
    color: var(--white);
    border: 1.5px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: .85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .16s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

    .btn-primary-outline:hover {
        background: var(--blue-light);
        border-color: var(--blue-light);
    }

.btn-secondary-outline {
    flex: 1;
    min-width: 160px;
    background: var(--white);
    color: var(--gray-600);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: .85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .16s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

    .btn-secondary-outline:hover {
        border-color: var(--gray-400);
        color: var(--navy);
    }

@media (max-width: 600px) {
    .empty-cards {
        grid-template-columns: 1fr;
    }
}

/* ── SONUÇ DURUMU — BORÇ VAR ── */
.state-result {
    display: none;
}

.result-abone-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.result-abone-icon {
    font-size: 1.1rem;
}

.result-abone-name {
    font-size: .93rem;
    font-weight: 800;
    color: var(--navy);
}

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

.result-abone-right {
    margin-left: auto;
}

.result-abone-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    background: #eff6ff;
    color: var(--blue);
    border: 1px solid #dbeafe;
    white-space: nowrap;
}

.result-faturalar {
    margin-bottom: 22px;
}

.result-fatura-head {
    font-size: .74rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.fatura-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all .16s;
    position: relative;
}

    .fatura-item:hover {
        border-color: var(--blue);
        box-shadow: 0 2px 12px rgba(26,86,219,.08);
    }

    .fatura-item.selected {
        border-color: var(--blue);
        background: #eff6ff;
        box-shadow: 0 3px 16px rgba(26,86,219,.12);
    }

    .fatura-item.gecikme {
        border-left: 3px solid var(--red);
    }

        .fatura-item.gecikme.selected {
            border-left: 3px solid var(--red);
            border-color: var(--red);
            background: #fef2f2;
        }

.fatura-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .15s;
}

.fatura-item.selected .fatura-radio {
    border-color: var(--blue);
    background: var(--blue);
}

    .fatura-item.selected .fatura-radio::after {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--white);
        display: block;
    }

.fatura-item.gecikme.selected .fatura-radio {
    border-color: var(--red);
    background: var(--red);
}

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

.fatura-donem {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 7px;
}

.fatura-gecikme-badge {
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    background: #fef2f2;
    color: var(--red);
    border: 1px solid #fecaca;
}

.fatura-son-tarih {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: 3px;
}

.fatura-tutar-wrap {
    text-align: right;
    flex-shrink: 0;
}

.fatura-tutar {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'DM Mono', monospace;
    letter-spacing: -0.5px;
}

    .fatura-tutar.gecikme-tutar {
        color: var(--red);
    }

.fatura-tutar-alt {
    font-size: .68rem;
    color: var(--gray-400);
    margin-top: 2px;
    text-align: right;
}

/* Tümünü seç */
.select-all-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

    .select-all-row input[type=checkbox] {
        width: 16px;
        height: 16px;
        accent-color: var(--blue);
        cursor: pointer;
    }

    .select-all-row label {
        font-size: .78rem;
        font-weight: 600;
        color: var(--gray-600);
        cursor: pointer;
    }

/* Özet */
.result-ozet {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.06);
}

.ozet-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .ozet-row:last-of-type {
        margin-bottom: 0;
    }

.ozet-label {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

.ozet-val {
    font-size: .88rem;
    color: rgba(255,255,255,.8);
    font-weight: 700;
}

.ozet-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 12px 0;
}

.ozet-toplam-label {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    font-weight: 700;
}

.ozet-toplam-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'DM Mono', monospace;
    letter-spacing: -1px;
}

    .ozet-toplam-val span {
        font-size: .75rem;
        color: var(--cyan);
        font-family: 'Figtree', sans-serif;
        margin-left: 5px;
    }

.ode-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px 24px;
    font-size: .95rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 4px 16px rgba(16,185,129,.3);
}

    .ode-btn:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        box-shadow: 0 6px 22px rgba(16,185,129,.38);
        transform: translateY(-1px);
    }

    .ode-btn:disabled {
        opacity: .5;
        cursor: not-allowed;
        transform: none;
    }

.result-fine-print {
    margin-top: 14px;
    font-size: .72rem;
    color: var(--gray-400);
    line-height: 1.65;
}

    .result-fine-print a {
        color: var(--blue);
        text-decoration: none;
    }

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

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

.bilgi-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bilgi-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .78rem;
    color: var(--gray-600);
    line-height: 1.6;
}

    .bilgi-item .bi-icon {
        font-size: .85rem;
        flex-shrink: 0;
        margin-top: 1px;
    }

.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İMASYONLAR ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.fade-in {
    animation: fadeIn .3s ease both;
}

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

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-steps-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .h-step-line {
        display: none;
    }
}

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

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

    .sorgu-card-body {
        padding: 20px 18px;
    }

    .sorgu-card-head {
        padding: 16px 18px;
    }

    .ozet-toplam-val {
        font-size: 1.15rem;
    }
}

/* ── KVKK ONAY SATIRI ── */
.kvkk-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 20px;
    transition: border-color .15s;
}

    .kvkk-row.has-error {
        border-color: var(--red);
        background: var(--red-light);
    }

.kvkk-check-wrap {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kvkk-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background: var(--white);
    transition: all .18s;
    flex-shrink: 0;
}

    .kvkk-check:checked {
        background: var(--blue);
        border-color: var(--blue);
    }

.kvkk-tick {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: .7rem;
    font-weight: 800;
    pointer-events: none;
}

.kvkk-check:checked + .kvkk-tick {
    display: block;
}

.kvkk-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kvkk-label {
    font-size: .8rem;
    color: var(--gray-600);
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
}

.kvkk-required {
    color: var(--red);
    font-size: .8rem;
}

.kvkk-link {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: color .15s;
}

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

.kvkk-error {
    display: none;
    font-size: .72rem;
    color: var(--red);
    font-weight: 600;
}

.kvkk-row.has-error .kvkk-error {
    display: block;
}
.seo-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.seo-blk {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px 28px;
}

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

    .seo-blk h3 {
        font-size: .88rem;
        font-weight: 800;
        color: var(--navy);
        margin: 18px 0 7px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .seo-blk h3:first-of-type {
            margin-top: 0;
        }

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

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

    .seo-blk strong {
        color: var(--gray-800);
    }

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

        .seo-blk a:hover {
            text-decoration: underline;
        }
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

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

    .info-card h3 {
        font-size: .82rem;
        font-weight: 800;
        color: var(--navy);
        margin: 0 0 6px;
    }

    .info-card p {
        font-size: .79rem;
        color: var(--gray-600);
        line-height: 1.75;
        margin: 0;
    }
    .abone-hint-box { display:flex; gap:14px; background:#eff6ff; border:1.5px solid #bfdbfe; border-radius:var(--radius-sm); padding:16px 18px; margin:14px 0; }
  .abone-hint-icon { font-size:1.5rem; flex-shrink:0; }
  .abone-hint-body { font-size:.83rem; color:#1e40af; line-height:1.75; }
  .abone-hint-body strong { color:#1e3a8a; }
  .abone-hint-body em { font-style:normal; background:#dbeafe; border-radius:4px; padding:1px 5px; font-family:'DM Mono',monospace; font-size:.8rem; }


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

  /* Uyarı kutusu */
  .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; }


* Gecikme ücret tablosu */
.ucret-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
    margin-top: 14px;
}

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

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

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

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

.ucret-name {
    font-weight: 700;
    color: var(--navy);
}

.ucret-val {
    font-family: 'DM Mono',monospace;
    font-size: .82rem;
    font-weight: 700;
}

    .ucret-val.red {
        color: var(--red);
    }

    .ucret-val.green {
        color: var(--green);
    }

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

.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: 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(--gray-400);
        flex-shrink: 0;
        transition: transform .2s;
    }

details[open] .faq-q {
    color: var(--ds);
}

    details[open] .faq-q::after {
        transform: rotate(180deg);
        color: var(--ds);
    }

.faq-a {
    padding: 11px 16px 14px;
    font-size: .83rem;
    color: var(--gray-600);
    line-height: 1.78;
    border-top: 1px solid var(--gray-100);
}

    .faq-a strong {
        color: var(--gray-800);
    }
/* ── DOC MODAL (KVKK / Kullanım Koşulları) ── */
.doc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.6);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .doc-overlay.open {
        display: flex;
    }

.doc-modal {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 580px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: fadeUp .25s ease both;
}

.doc-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.doc-modal-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-modal-icon {
    font-size: 1.2rem;
}

.doc-modal-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--navy);
}

.doc-modal-close {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}

    .doc-modal-close:hover {
        background: var(--gray-100);
        color: var(--navy);
    }

.doc-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 22px;
    font-size: .83rem;
    color: var(--gray-600);
    line-height: 1.85;
}

    .doc-modal-body h4 {
        font-size: .86rem;
        font-weight: 800;
        color: var(--navy);
        margin: 16px 0 6px;
    }

        .doc-modal-body h4:first-child {
            margin-top: 0;
        }

    .doc-modal-body p {
        margin-bottom: 10px;
    }

        .doc-modal-body p:last-child {
            margin-bottom: 0;
        }

    .doc-modal-body ul {
        padding-left: 18px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .doc-modal-body strong {
        color: var(--gray-800);
    }

.doc-modal-foot {
    display: flex;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.doc-modal-accept {
    flex: 2;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 18px;
    font-size: .86rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .16s;
}

    .doc-modal-accept:hover {
        background: var(--blue-light);
    }

.doc-modal-cancel {
    flex: 1;
    background: var(--white);
    color: var(--gray-500);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 11px 18px;
    font-size: .86rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .16s;
}

    .doc-modal-cancel:hover {
        border-color: var(--gray-400);
        color: var(--navy);
    }

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