/* =============================================================================
   UcuzaDepo — Tasarım Sistemi
   Kimlik: koyu lacivert + safran, krem zemin, Manrope (başlık) + Inter (gövde)
   ============================================================================= */

/* ---------------------------------------------------------------- Değişkenler */
:root {
    --ink:        #16283a;
    --ink-2:      #0e1b29;
    --ink-3:      #1f374d;
    --paper:      #f7f4ee;
    --white:      #ffffff;
    --line:       #e4ddd1;
    --line-dark:  rgba(255, 255, 255, .14);
    --muted:      #5d6b79;
    --muted-2:    #8b96a2;
    --accent:     #e0762f;
    --accent-dk:  #c05e1d;
    --accent-soft:#fdf0e4;
    --gold:       #f0b429;
    --green:      #2e7d5b;
    --green-soft: #e9f3ee;
    --red:        #b3402f;

    --ff-display: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --ff-display-ls: -.02em;   /* başlıklarda sıkı harf aralığı — sade/kurumsal duruş */
    --ff-body:    "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    --shadow-sm:  0 1px 2px rgba(22, 40, 58, .07);
    --shadow-md:  0 10px 30px -12px rgba(22, 40, 58, .22);
    --shadow-lg:  0 24px 60px -20px rgba(14, 27, 41, .38);

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;

    --container: 1180px;
    --gutter: 24px;
}

/* ---------------------------------------------------------------- Reset / taban */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: clip;
    font-family: var(--ff-body);
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
picture > img { width: 100%; }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--ink);
    letter-spacing: var(--ff-display-ls);
}

p { margin: 0 0 1em; }

a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

ul, ol { margin: 0; padding: 0; }

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

::selection { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------- Yardımcılar */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: 88px; }
.section--tight { padding-block: 64px; }
.section--white { background: var(--white); border-block: 1px solid var(--line); }
.section--dark {
    background: var(--ink-2);
    color: rgba(255, 255, 255, .82);
}
.section--dark h2, .section--dark h3 { color: #fff; }

/* Bölüm başlığı düzeni: sol numara + başlık, sağ açıklama */
.sec-head {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 24px 64px;
    align-items: end;
    margin-bottom: 52px;
}
.sec-head--center {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}
.sec-head h2 {
    font-size: clamp(30px, 4vw, 42px);
    margin: 0;
}
.sec-head .lede {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}
.section--dark .sec-head .lede { color: rgba(255, 255, 255, .6); }

/* Bölüm sonu — ilgili hub sayfasına "tümünü gör" bağlantısı (ana sayfa) */
.sec-more { margin-top: 44px; text-align: center; }
.sec-more .btn svg { transition: transform .18s ease; }
.sec-more .btn:hover svg { transform: translateX(3px); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent-dk);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--accent);
}
.sec-head--center .eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--accent);
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before,
.section--dark .eyebrow::after { background: var(--gold); }

/* ---------------------------------------------------------------- Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 15.5px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { flex: none; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); color: #fff; }

.btn--outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--light {
    background: #fff;
    color: var(--ink);
}
.btn--light:hover { background: var(--paper); color: var(--ink); }

.btn--lg { padding: 17px 32px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- Üst bant */
.topbar {
    background: var(--ink-2);
    color: rgba(255, 255, 255, .75);
    font-size: 13.5px;
}
.topbar__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
}
.topbar__note { display: flex; align-items: center; gap: 8px; }
.topbar__note svg { color: var(--gold); flex: none; }
.topbar__links { display: flex; align-items: center; gap: 22px; }
.topbar__links a {
    color: rgba(255, 255, 255, .85);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar__links a:hover { color: #fff; text-decoration: none; }
.topbar__links svg { color: var(--gold); }

/* ---------------------------------------------------------------- Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 238, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.site-header__in {
    display: flex;
    align-items: center;
    gap: 36px;
    min-height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.logo img { display: block; height: 27px; width: auto; }
.logo:hover { text-decoration: none; }
.logo__badge {
    align-self: center;
    margin-left: 10px;
    padding: 4px 8px 3px;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav { margin-left: auto; }
/* Drawer parçaları yalnızca mobilde görünür */
.nav__head, .nav__alt { display: none; }
.nav-overlay { display: none; }
.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav a {
    color: var(--ink);
    font-weight: 500;
    font-size: 15.5px;
    padding-block: 8px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] {
    text-decoration: none;
    border-bottom-color: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}
.header-phone small {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
}
.header-phone__alt {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--accent) !important;
    margin-top: 1px;
}
.header-phone a {
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.header-phone small { white-space: nowrap; }
.header-phone a:hover { color: var(--accent-dk); text-decoration: none; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    color: var(--ink);
}

/* ---------------------------------------------------------------- Hero */
.hero {
    position: relative;
    background: var(--ink-2);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(10, 20, 31, .93) 34%, rgba(10, 20, 31, .55) 62%, rgba(10, 20, 31, .35)),
        url("../img/hero-depo.jpg") center 62% / cover no-repeat;
    /* WebP destekleyen tarayıcılar daha küçük dosyayı alır (progresif geliştirme) */
    background-image:
        linear-gradient(100deg, rgba(10, 20, 31, .93) 34%, rgba(10, 20, 31, .55) 62%, rgba(10, 20, 31, .35)),
        image-set(url("../img/hero-depo.webp") type("image/webp"), url("../img/hero-depo.jpg") type("image/jpeg"));
}
.hero__in {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 56px;
    align-items: center;
    padding-block: 96px 104px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

.hero h1 {
    color: #fff;
    font-size: clamp(34px, 4.6vw, 54px);
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
    max-width: 54ch;
    margin-bottom: 30px;
}
.hero__sub strong { color: #fff; font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__ticks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    list-style: none;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .85);
}
.hero__ticks li { display: flex; align-items: center; gap: 8px; }
.hero__ticks svg { color: var(--gold); flex: none; }

/* Teklif formu kartı */
.quote-card {
    background: #fff;
    color: var(--ink);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 34px 32px 30px;
}
.quote-card__head { margin-bottom: 22px; }
.quote-card__head h2 {
    font-size: 23px;
    margin-bottom: 6px;
}
.quote-card__head p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}
.quote-card form { display: grid; gap: 14px; }
.quote-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}
.field input, .field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--paper);
    font-size: 15px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 118, 47, .18);
    background: #fff;
}
.quote-card__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--muted);
    margin: 4px 0 0;
}
.quote-card__note svg { color: var(--green); }

/* ---------------------------------------------------------------- İstatistik bandı */
.stats {
    background: var(--ink);
    color: #fff;
    border-top: 1px solid var(--line-dark);
}
.stats__in {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 42px;
}
.stat {
    text-align: center;
    padding-inline: 18px;
    border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: 0; }
.stat__num {
    font-family: var(--ff-display);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.stat__label {
    font-size: 13.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-top: 6px;
    font-weight: 500;
}

/* ---------------------------------------------------------------- Hizmet kartları */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #d8cfc0;
}
.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
    color: var(--accent-dk);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 20.5px; margin-bottom: 10px; }
.service-card p {
    font-size: 15px;
    color: var(--muted);
    flex: 1;
    margin-bottom: 18px;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
}
.service-card__link svg { transition: transform .18s ease; }
.service-card__link:hover { color: var(--accent-dk); text-decoration: none; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- Neden Biz (özellik + görsel) */
.why { }
.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 64px;
    align-items: center;
}
.why__media {
    position: relative;
}
.why__media img {
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    width: 100%;
}
.why__media-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 300px;
}
.why__media-card svg { color: var(--green); flex: none; }
.why__media-card b { display: block; font-size: 15px; }
.why__media-card span { font-size: 13px; color: var(--muted); }

.feature-list { list-style: none; display: grid; gap: 26px; margin-top: 34px; }
.feature-list li { display: flex; gap: 18px; }
.feature-list .fi {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
}
.feature-list b {
    display: block;
    font-size: 16.5px;
    margin-bottom: 3px;
}
.feature-list p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------- Nasıl Çalışır */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
}
.step {
    padding: 34px 28px 30px;
    border-left: 1px solid var(--line);
    position: relative;
}
.step:first-child { border-left: 0; }
.step__no {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------- Fiyat tablosu */
.price-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
table.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15.5px;
    min-width: 760px;
}
.price-table th, .price-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.price-table thead th {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 0;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover td { background: #fbf9f5; }
.price-table .pt-tip { font-weight: 700; font-size: 16px; }
.price-table .pt-tip small {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}
.price-table .pt-ornek { color: var(--muted); font-size: 14px; max-width: 340px; }
.price-table .pt-fiyat {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.price-table .pt-fiyat small {
    font-family: var(--ff-body);
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500;
    display: block;
}
.badge-populer {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 4px 10px;
    margin-left: 10px;
    vertical-align: 2px;
}

.price-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 34px;
}
.price-note {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 28px;
}
.price-note h3 {
    font-size: 16px;
    font-family: var(--ff-body);
    font-weight: 700;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.price-note ul { list-style: none; display: grid; gap: 9px; }
.price-note li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--muted);
}
.price-note li svg { flex: none; margin-top: 3px; }
.price-note--dahil li svg { color: var(--green); }
.price-note--ops li svg { color: var(--accent); }

/* ---------------------------------------------------------------- Karşılaştırma */
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--line-dark);
}
table.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 15px;
    background: rgba(255, 255, 255, .03);
}
.compare th, .compare td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line-dark);
    text-align: center;
}
.compare th:first-child, .compare td:first-child {
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
}
.compare thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
}
.compare thead th.is-us {
    color: var(--ink);
    background: var(--gold);
    border-radius: 8px 8px 0 0;
    font-weight: 800;
}
.compare td.is-us { background: rgba(240, 180, 41, .1); font-weight: 600; color: #fff; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .ok { color: #6fcf97; }
.compare .no { color: #eb7a68; }
.compare .mid { color: rgba(255, 255, 255, .55); }

/* ---------------------------------------------------------------- İlçeler */
.districts { }
.districts__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.district-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 32px;
}
.district-panel h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}
.district-panel h3 .count {
    margin-left: auto;
    font-family: var(--ff-body);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 99px;
}
.district-panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 18px;
}
.district-panel a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 4px;
    font-size: 14.5px;
    color: var(--ink);
    border-radius: 4px;
}
.district-panel a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
    opacity: .55;
    transition: opacity .15s ease;
}
.district-panel a:hover {
    color: var(--accent-dk);
    text-decoration: none;
}
.district-panel a:hover::before { opacity: 1; }

/* ---------------------------------------------------------------- Yorumlar */
.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 10px 22px 10px 14px;
    box-shadow: var(--shadow-sm);
}
.rating-summary__score {
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
}
.rating-summary__meta { line-height: 1.3; }
.rating-summary__meta small { color: var(--muted); font-size: 12.5px; }

.stars { display: inline-flex; gap: 2px; }
.stars .star { fill: #ddd5c7; }
.stars .star.is-filled { fill: var(--gold); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-card__quote {
    font-size: 15px;
    color: #37475a;
    margin: 0;
    flex: 1;
}
.review-card__who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    flex: none;
}
.review-card__who b { display: block; font-size: 14.5px; }
.review-card__who small { color: var(--muted); font-size: 12.5px; }
.review-card__tag {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent-dk);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 99px;
    white-space: nowrap;
}

/* ---------------------------------------------------------------- SSS */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 64px;
    align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.faq-side .rating-summary { margin-top: 26px; }
.faq-side__contact {
    margin-top: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px 26px;
}
.faq-side__contact b { font-size: 16px; display: block; margin-bottom: 4px; }
.faq-side__contact p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.accordion { display: grid; gap: 12px; }
.acc-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.acc-item.is-open { border-color: #d3c9b8; box-shadow: var(--shadow-sm); }
.acc-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    background: none;
    border: 0;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    color: var(--ink);
}
.acc-item__q .acc-ico {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--accent-dk);
    transition: transform .22s ease, background .18s ease, color .18s ease;
}
.acc-item.is-open .acc-ico {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}
.acc-item__a {
    display: none;
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15px;
}
.acc-item.is-open .acc-item__a { display: block; }

/* ---------------------------------------------------------------- Rehber kartları */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.guide-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-card:hover h3 a { color: var(--accent-dk); }
.guide-card__img { aspect-ratio: 16 / 9.5; object-fit: cover; width: 100%; }
.guide-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.guide-card__kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-dk);
    margin-bottom: 10px;
}
.guide-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.guide-card h3 a { color: var(--ink); }
.guide-card h3 a:hover { text-decoration: none; }
.guide-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.guide-card time { font-size: 13px; color: var(--muted-2); }

/* ---------------------------------------------------------------- SEO metin bloğu */
.seo-text {
    columns: 2;
    column-gap: 56px;
    font-size: 15.5px;
    color: #46586b;
}
.seo-text h2, .seo-text h3 {
    column-span: all;
}
.seo-text h3 { font-size: 22px; margin-top: 10px; }
.seo-text p { break-inside: avoid-column; }

/* ---------------------------------------------------------------- CTA bandı */
.cta-band {
    position: relative;
    background: var(--ink-2);
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(10, 20, 31, .94) 30%, rgba(10, 20, 31, .72)),
        url("../img/depo-uniteleri.jpg") center / cover no-repeat;
    background-image:
        linear-gradient(95deg, rgba(10, 20, 31, .94) 30%, rgba(10, 20, 31, .72)),
        image-set(url("../img/depo-uniteleri.webp") type("image/webp"), url("../img/depo-uniteleri.jpg") type("image/jpeg"));
}
.cta-band__in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-block: 72px;
    color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, .72); margin: 0; max-width: 52ch; }
.cta-band__actions { display: flex; gap: 14px; flex: none; flex-wrap: wrap; }

/* ---------------------------------------------------------------- Footer */
.site-footer {
    background: var(--ink-2);
    color: rgba(255, 255, 255, .68);
    font-size: 14.5px;
}
.site-footer a { color: rgba(255, 255, 255, .68); }
.site-footer a:hover { color: #fff; text-decoration: none; }

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 2.5fr) minmax(0, 2.5fr) minmax(0, 3fr);
    gap: 48px;
    padding-block: 64px 48px;
    border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand .logo img { height: 26px; }
.footer-brand p { max-width: 40ch; font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .18s ease, border-color .18s ease;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-col h4 {
    color: #fff;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-contact { list-style: none; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer-contact b { color: #fff; font-weight: 600; display: block; }
/* Telefon/e-posta artık link — düz metinle aynı görünsün, sadece numara vurgulansın */
.footer-contact a { display: block; }
.footer-contact a:hover b { color: var(--accent); }

.footer-districts {
    padding-block: 26px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 13px;
    line-height: 2.1;
}
.footer-districts b {
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.footer-districts a { white-space: nowrap; }
.footer-districts span.sep { color: rgba(255, 255, 255, .25); margin-inline: 7px; }

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}
.footer-legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* ---------------------------------------------------------------- WhatsApp yüzen buton */
/* Yüzen iletişim butonları — telefon üstte, WhatsApp altta */
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tel-float,
.wa-float {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform .15s ease;
}
.tel-float { background: var(--accent); box-shadow: 0 10px 26px -8px rgba(192, 94, 29, .7); }
.wa-float  { background: #25d366;      box-shadow: 0 10px 26px -8px rgba(18, 140, 74, .65); }
/* .nav a / .btn kuralları rengi ezmesin diye özgüllüğü yükseltiyoruz */
.float-cta .tel-float:hover,
.float-cta .wa-float:hover { transform: scale(1.07); color: #fff; }

/* Masaüstünde üzerine gelince numara/etiket görünsün */
.float-cta__ipucu {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}
.float-cta a:hover .float-cta__ipucu,
.float-cta a:focus-visible .float-cta__ipucu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
/* Dokunmatikte ipucu anlamsız (hover yok) + yer kaplamasın */
@media (hover: none) {
    .float-cta__ipucu { display: none; }
}
@media (max-width: 640px) {
    .float-cta { right: 16px; bottom: 16px; gap: 10px; }
    .tel-float, .wa-float { width: 52px; height: 52px; }
}
/* Çerez bandı açıkken yüzen butonlar gizlenir: mobilde bant + butonlar aynı köşede
   çakışıyor, yukarı itince de hero CTA'larının üstüne biniyordu. Bant tek seferlik
   ve kapatılması bekleniyor; kapanınca butonlar yumuşakça belirir.
   Sınıfı main.js ekler/kaldırır (:has() yerine — eski tarayıcılarda da çalışsın). */
.float-cta { transition: opacity .25s ease, transform .25s ease; }
@media (max-width: 860px) {
    .cerez-acik .float-cta {
        opacity: 0;
        transform: translateY(8px) scale(.9);
        pointer-events: none;
    }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 1280px) {
    .header-phone { display: none; }
    .nav ul { gap: 24px; }
    .site-header__in { gap: 28px; }
}

@media (max-width: 1080px) {
    .services-grid, .reviews-grid, .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(3) { border-left: 0; }
    .step:nth-child(n+3) { border-top: 1px solid var(--line); }
    .hero__in { grid-template-columns: 1fr; gap: 44px; padding-block: 72px; }
    .quote-card { max-width: 560px; }
    .why__grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
    .faq-side { position: static; }
    .why__media img { aspect-ratio: 16 / 10; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    /* backdrop-filter, position:fixed çocuklar için containing block yaratır ve
       drawer'ı header'ın içine hapsederdi. Mobilde blur yerine düz zemin. */
    .site-header { backdrop-filter: none; background: var(--paper); }

    /* ---- Mobil menü: sağdan açılan tam yükseklik drawer ---- */
    .nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(360px, 86vw);
        margin: 0;
        background: var(--white);
        box-shadow: -14px 0 44px rgba(10, 20, 31, .22);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 70;
        transform: translateX(100%);
        transition: transform .26s cubic-bezier(.4, 0, .2, 1);
        visibility: hidden;
    }
    .nav.is-open { transform: none; visibility: visible; }

    .nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 18px;
        border-bottom: 1px solid var(--line);
        flex: none;
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 2;
    }
    .nav__head .logo img { height: 23px; }
    .nav__close {
        width: 38px; height: 38px; flex: none;
        display: grid; place-items: center;
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
        background: var(--white);
        color: var(--ink);
        cursor: pointer;
    }
    .nav__close:hover { border-color: var(--accent); color: var(--accent); }

    .nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 6px 18px;
        flex: 1 0 auto;
    }
    .nav > ul > li > a {
        display: block;
        padding: 14px 2px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }
    .nav > ul > li:last-child > a { border-bottom: 0; }

    .nav__alt {
        display: block;
        flex: none;
        padding: 14px 18px 18px;
        border-top: 1px solid var(--line);
        background: var(--paper);
    }
    /* .nav ul (masaüstü flex kuralı) buradan daha özgül olduğu için .nav öneki şart */
    .nav .nav__iletisim {
        list-style: none;
        margin: 0 0 14px;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0;
    }
    /* Sade: her satır tek satır — ikon + değer (+ küçük etiket) */
    .nav .nav__iletisim a,
    .nav .nav__iletisim span {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 6px 0;
        color: var(--ink);
        border-bottom: 0;
        font-size: 13.5px;
        line-height: 1.35;
    }
    .nav .nav__iletisim svg { color: var(--accent); flex: none; }
    .nav .nav__iletisim em {
        font-style: normal;
        font-size: 11px;
        color: var(--muted-2);
        margin-left: auto;
        flex: none;
    }
    .nav .nav__iletisim a:hover { text-decoration: none; color: var(--accent); }

    /* Turuncu CTA: .nav a { color: var(--ink) } bu kuralı eziyordu → özgüllük artırıldı */
    .nav .nav__cta { color: #fff; margin: 0; }
    .nav .nav__cta:hover { color: #fff; }

    /* Arka plan filtresi — tıklayınca kapanır */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 20, 31, .55);
        backdrop-filter: blur(1px);
        z-index: 60;
        opacity: 0;
        transition: opacity .26s ease;
    }
    .nav-overlay[hidden] { display: none; }
    .nav-overlay.is-open { opacity: 1; }

    /* Menü açıkken arka plan kaymasın */
    body.nav-acik { overflow: hidden; }

    /* Header: logo solda, kalan her şey sağda */
    .nav-toggle { display: block; }
    .header-cta { margin-left: auto; }
    .header-phone { display: none; }
    .header-cta .btn { padding: 12px 18px; font-size: 14px; }
    .topbar__note { display: none; }
    .topbar__in { justify-content: center; }
    .sec-head { grid-template-columns: 1fr; align-items: start; margin-bottom: 38px; }
    .section { padding-block: 64px; }
    .stats__in { grid-template-columns: 1fr 1fr; gap: 26px 0; }
    .stat:nth-child(3) { border-left: 0; }
    .districts__cols { grid-template-columns: 1fr; }
    .district-panel ul { grid-template-columns: repeat(2, 1fr); }
    .price-notes { grid-template-columns: 1fr; }
    .cta-band__in { flex-direction: column; align-items: flex-start; }
    .seo-text { columns: 1; }
    .footer-legal { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    body { font-size: 15.5px; }
    .site-header__in { gap: 12px; min-height: 64px; }
    .logo img { height: 24px; }
    .logo__badge { display: none; }
    .header-cta { gap: 8px; }
    .header-cta .btn { padding: 10px 13px; font-size: 13px; }
    .nav-toggle { padding: 6px 2px; }
    .topbar { font-size: 12.5px; }
    .topbar__links { gap: 14px; flex-wrap: wrap; justify-content: center; }
    .topbar__links .hide-sm { display: none; }
    .hero__sub { font-size: 16.5px; }
    .services-grid, .reviews-grid, .guides-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step { border-left: 0; }
    .step:nth-child(n+2) { border-top: 1px solid var(--line); }
    .stats__in { grid-template-columns: 1fr 1fr; }
    .quote-card { padding: 26px 22px; }
    .quote-card .row2 { grid-template-columns: 1fr; }
    .hero__actions .btn { flex: 1; }
    .footer-main { grid-template-columns: 1fr; gap: 36px; }
    .district-panel ul { grid-template-columns: 1fr 1fr; }
    .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

/* ---------------------------------------------------------------- İç sayfa ortak (FAZ 3) */
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--paper);
    font-size: 15px;
    resize: vertical;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 118, 47, .18);
    background: #fff;
}

.prose-narrow { max-width: 760px; }
.prose-narrow p { color: var(--muted); line-height: 1.85; font-size: 16.5px; margin-bottom: 18px; }
.prose-narrow p strong { color: var(--ink); }
.prose-narrow a { color: var(--accent); font-weight: 600; }

/* Açık zeminde istatistik bandı (kurumsal) */
.stats--light { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
.stats--light .stat { border-left-color: var(--line); }
.stats--light .stat__num { color: var(--accent); }
.stats--light .stat__label { color: var(--muted); }

/* Değerler (kurumsal) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.value-card__icon {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: var(--accent-soft); color: var(--accent);
    border-radius: var(--r-md);
    margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

/* Yorumlar hero puanı */
.review-hero__rating { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.review-hero__score {
    font-family: var(--ff-display); font-weight: 800;
    font-size: 52px; line-height: 1; color: var(--gold);
    letter-spacing: -.02em;
}
.review-hero__rating .stars svg { width: 18px; height: 18px; }
.review-hero__rating small { display: block; color: rgba(255,255,255,.7); font-size: 13.5px; margin-top: 4px; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--ink);
}
a.contact-row:hover { border-color: var(--accent); text-decoration: none; }
.contact-row__ico {
    width: 44px; height: 44px; flex: none;
    display: grid; place-items: center;
    background: var(--ink); color: #fff;
    border-radius: var(--r-md);
}
.contact-row b { display: block; font-family: var(--ff-display); font-size: 16px; }
.contact-row span > span, .contact-row > span { font-size: 14px; color: var(--muted); }
.contact-row b { color: var(--ink); }
@media (max-width: 820px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- Form geri bildirim bandı */
.form-uyari {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; border-radius: var(--r-md);
    font-size: 13.5px; line-height: 1.5; margin-bottom: 16px;
    border: 1px solid;
}
.form-uyari svg { flex: none; margin-top: 1px; }
.form-uyari--ok    { background: var(--green-soft); border-color: #cfe6da; color: var(--green); }
.form-uyari--err   { background: #fdeceb; border-color: #f2cfcb; color: var(--red); }
.form-uyari--bilgi { background: var(--accent-soft); border-color: #f3d9c2; color: var(--accent-dk); }
.form-uyari b { font-weight: 700; }

/* ---------------------------------------------------------------- Form: KVKK + honeypot + durum (FAZ 7) */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    opacity: 0; pointer-events: none;
}
.kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 4px 0 4px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
    cursor: pointer;
}
.kvkk-check input {
    margin-top: 2px;
    width: 16px; height: 16px;
    accent-color: var(--accent);
    flex: none;
}
.kvkk-check a { color: var(--accent); font-weight: 600; }
[data-form-status].is-success { color: var(--green); font-weight: 500; }
[data-form-status].is-error { color: var(--red); font-weight: 500; }
[data-form-status].is-success svg, [data-form-status].is-error svg { display: none; }

/* ---------------------------------------------------------------- Çerez onayı (FAZ 5) */
.cookie-bar {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 60;
    max-width: 720px;
    margin: 0 auto;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.82); flex: 1 1 320px; }
.cookie-bar a { color: var(--gold); }
.cookie-bar__actions { display: flex; gap: 10px; flex: none; }
.cookie-bar .btn--outline { color: #fff; border-color: rgba(255,255,255,.32); }
.cookie-bar .btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
@media (max-width: 520px) {
    .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
    /* flex-basis dikey eksende yükseklik olur; sıfırlanmazsa band 320px boyunda açılıyordu */
    .cookie-bar p { flex: 0 1 auto; }
    .cookie-bar__actions { justify-content: center; }
}

/* ---------------------------------------------------------------- Blog yazısı (FAZ 4) */
.article__head {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    padding: clamp(28px, 5vw, 48px) 0 clamp(32px, 5vw, 52px);
}
.article__head-in { max-width: 820px; }
.article__head .breadcrumb { margin-bottom: 22px; }
.article__head .breadcrumb li { color: rgba(255,255,255,.55); }
.article__head .breadcrumb a { color: rgba(255,255,255,.75); }
.article__head .breadcrumb a:hover { color: #fff; }
.article__head .breadcrumb li:not(:first-child)::before { color: rgba(255,255,255,.28); }
.article__head .breadcrumb li[aria-current] { color: #fff; }
.article__head h1 { color: #fff; font-size: clamp(26px, 3.8vw, 40px); margin-bottom: 14px; }
.article__meta { color: rgba(255,255,255,.6); font-size: 14px; margin: 0; }
.article__figure { max-width: 900px; margin: -28px auto 0; position: relative; }
/* Oran sabit: panelden farklı oranda görsel yüklense de yer zıplamasın (CLS). */
.article__figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.article__body { max-width: 760px; margin: 0 auto; padding-block: clamp(32px, 5vw, 52px); }
.article__lead { font-size: 20px; line-height: 1.7; color: var(--ink); font-weight: 500; margin-bottom: 28px; }
.article__body h2 { font-size: clamp(21px, 2.6vw, 27px); margin: 36px 0 14px; }
.article__body p { color: var(--muted); line-height: 1.85; font-size: 17px; margin-bottom: 18px; }
.article__body ul, .article__body ol { color: var(--muted); line-height: 1.8; font-size: 17px; margin: 0 0 18px; padding-left: 24px; }
.article__body li { margin-bottom: 8px; }
.article__cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    margin-top: 40px; padding: 26px 30px;
    background: var(--accent-soft);
    border: 1px solid #f3d9c2;
    border-radius: var(--r-lg);
}
.article__cta b { font-family: var(--ff-display); font-size: 18px; color: var(--ink); display: block; }
.article__cta span { color: var(--muted); font-size: 15px; }
.article__ilgili { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.article__ilgili > b {
    display: block; margin-bottom: 14px;
    font-family: var(--ff-display); font-size: 13px;
    letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2);
}

/* ---------------------------------------------------------------- Hizmet detay (FAZ 2) */
.hizmet-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(30px, 5vw, 56px);
    align-items: start;
}
.hizmet-body__main { max-width: none; }
.hizmet-body__main h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 36px 0 18px; }
.hizmet-body__main > p { color: var(--muted); line-height: 1.85; font-size: 16.5px; margin-bottom: 18px; }
.hizmet-body__main .values-grid { grid-template-columns: 1fr 1fr; }
.usecase-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.usecase-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--ink); font-size: 15.5px; line-height: 1.5;
}
.usecase-list svg { color: var(--green); flex: none; margin-top: 1px; }

.hizmet-body__aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.hizmet-cta-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 26px;
}
.hizmet-cta-card b { font-family: var(--ff-display); font-size: 18px; display: block; margin-bottom: 6px; }
.hizmet-cta-card p { color: rgba(255,255,255,.72); font-size: 14.5px; margin: 0 0 18px; }
.hizmet-cta-card .btn { margin-bottom: 10px; }
.hizmet-cta-card .btn--outline { color: #fff; border-color: rgba(255,255,255,.3); }
.hizmet-cta-card .btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.hizmet-other {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 22px 24px;
}
.hizmet-other > b { font-family: var(--ff-display); font-size: 15px; display: block; margin-bottom: 12px; }
.hizmet-other ul { list-style: none; margin: 0; padding: 0; }
.hizmet-other li { border-top: 1px solid var(--line); }
.hizmet-other li:first-child { border-top: 0; }
.hizmet-other a { display: flex; align-items: center; gap: 10px; padding: 11px 0; color: var(--muted); font-size: 14.5px; }
.hizmet-other a svg { color: var(--accent); flex: none; }
.hizmet-other a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 860px) {
    .hizmet-body { grid-template-columns: 1fr; }
    .hizmet-body__aside { position: static; }
    .hizmet-body__main .values-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- Güven şeridi */
.trust-bar { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar__in {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item > svg { color: var(--accent); flex: none; }
.trust-item b { display: block; font-family: var(--ff-display); font-size: 14.5px; color: var(--ink); line-height: 1.25; }
.trust-item span > span, .trust-item span { font-size: 12.5px; color: var(--muted); }
.trust-item b { color: var(--ink); }
@media (max-width: 900px) {
    .trust-bar__in { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
}
@media (max-width: 480px) {
    .trust-bar__in { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- m³ Hesaplayıcı */
.calc { display: grid; grid-template-columns: 1fr 340px; gap: clamp(24px, 4vw, 44px); align-items: start; }
.calc__items { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.calc__group h3 {
    font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted-2); margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.calc__item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 9px 0;
}
.calc__name { font-size: 14.5px; color: var(--ink); }
.calc__item.is-active .calc__name { font-weight: 600; }
.calc__stepper { display: flex; align-items: center; gap: 4px; flex: none; }
.calc__btn {
    width: 30px; height: 30px; flex: none;
    border: 1px solid var(--line); background: var(--white);
    border-radius: 8px; font-size: 18px; line-height: 1; color: var(--ink);
    cursor: pointer; transition: all .12s ease;
}
.calc__btn:hover { border-color: var(--accent); color: var(--accent); }
.calc__count { min-width: 26px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

.calc__result { position: sticky; top: 100px; }
.calc__result-card {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff; border-radius: var(--r-lg); padding: 26px;
}
.calc__result-label { color: rgba(255,255,255,.6); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 4px; }
.calc__volume { font-family: var(--ff-display); font-weight: 800; font-size: 44px; line-height: 1; margin: 0 0 20px; letter-spacing: -.02em; }
.calc__volume small { font-size: 20px; font-weight: 600; color: rgba(255,255,255,.7); }
.calc__price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.calc__price-label { display: block; color: rgba(255,255,255,.6); font-size: 12.5px; margin-bottom: 3px; }
.calc__price { font-family: var(--ff-display); font-weight: 800; font-size: 26px; color: var(--gold); }
.calc__tier { font-size: 12.5px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.1); padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.calc__note { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; margin: 14px 0 16px; }
/* Koyu kart üstünde .btn--outline'ın koyu yazısı görünmüyordu */
.calc__result-card .btn--outline { color: #fff; border-color: rgba(255,255,255,.32); }
.calc__result-card .btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.calc__result-card .btn { margin-bottom: 8px; }
.calc__reset { display: block; width: 100%; margin-top: 10px; background: none; border: 0; color: rgba(255,255,255,.6); font-size: 13px; cursor: pointer; padding: 6px; }
.calc__reset:hover { color: #fff; text-decoration: underline; }
@media (max-width: 860px) {
    .calc { grid-template-columns: 1fr; }
    .calc__result { position: static; }
}
@media (max-width: 560px) {
    .calc__items { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------------------------------------------------------------- Breadcrumb */
.breadcrumb { font-size: 13.5px; }
.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-2);
}
.breadcrumb li:not(:first-child)::before {
    content: "/";
    color: var(--line);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); text-decoration: none; }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 500; }

/* ---------------------------------------------------------------- İlçe sayfası */
.ilce-hero {
    background:
        radial-gradient(120% 120% at 85% -20%, rgba(224,118,47,.16) 0%, transparent 55%),
        linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    padding: clamp(28px, 5vw, 52px) 0 clamp(44px, 6vw, 66px);
}
.ilce-hero .breadcrumb { margin-bottom: 26px; }
.ilce-hero .breadcrumb li { color: rgba(255,255,255,.55); }
.ilce-hero .breadcrumb a { color: rgba(255,255,255,.75); }
.ilce-hero .breadcrumb a:hover { color: #fff; }
.ilce-hero .breadcrumb li:not(:first-child)::before { color: rgba(255,255,255,.28); }
.ilce-hero .breadcrumb li[aria-current] { color: #fff; }
.eyebrow--light { color: var(--gold); }
.ilce-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.4vw, 48px);
    max-width: 20ch;
    margin-bottom: 18px;
}
.ilce-hero__lead {
    font-size: 17.5px;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
    max-width: 66ch;
    margin: 0 0 28px;
}
.ilce-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.ilce-hero__chips {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.ilce-hero__chips li {
    display: flex; align-items: center; gap: 9px;
    font-size: 14.5px; color: rgba(255,255,255,.9);
}
.ilce-hero__chips svg { color: var(--gold); flex: none; }

.ilce-intro {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
}
.ilce-intro__main h2 { font-size: clamp(23px, 3vw, 31px); }
.ilce-intro__main p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.ilce-facts {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 8px 22px;
}
.ilce-fact {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.ilce-fact:last-child { border-bottom: 0; }
.ilce-fact > svg { color: var(--accent); flex: none; }
.ilce-fact b { display: block; font-family: var(--ff-display); font-size: 15px; color: var(--ink); }
.ilce-fact span { font-size: 13.5px; color: var(--muted); }

.semt-list {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 20px;
}
.semt-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    font-weight: 500;
    color: var(--ink);
}
.semt-list svg { color: var(--accent); flex: none; }

.price-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.price-mini__card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.price-mini__card b { font-family: var(--ff-display); font-size: 17px; color: var(--ink); }
.price-mini__vol { display: block; color: var(--muted); font-size: 14px; margin: 4px 0 16px; }
.price-mini__price {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 26px;
    color: var(--accent);
    letter-spacing: -.02em;
}
.price-mini__price small { display: block; font-weight: 500; font-size: 12.5px; color: var(--muted-2); letter-spacing: 0; }
.price-mini__note { margin: 0; }

.neighbor-links { display: flex; flex-wrap: wrap; gap: 12px; }
.neighbor-links a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-weight: 500;
    color: var(--ink);
    font-size: 14.5px;
}
.neighbor-links a svg { color: var(--accent); flex: none; }
.neighbor-links a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.neighbor-links__all { background: var(--ink) !important; color: #fff !important; border-color: var(--ink) !important; }
.neighbor-links__all:hover { background: var(--ink-2) !important; }

/* İlçe CTA bandı mevcut .cta-band bileşenini (fotoğraflı) kullanır — tekrar tanımlanmaz. */
@media (max-width: 820px) {
    .ilce-intro { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- 404 sayfası */
.errpage {
    padding: clamp(56px, 9vw, 110px) 0;
    background:
        radial-gradient(120% 90% at 50% -10%, #fdf0e4 0%, transparent 60%),
        var(--paper);
}
.errpage__in {
    max-width: 720px;
    text-align: center;
}
.errpage__code {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(88px, 18vw, 168px);
    line-height: .9;
    letter-spacing: -.04em;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}
.errpage__title {
    font-size: clamp(24px, 4vw, 36px);
    margin: 10px 0 14px;
}
.errpage__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 auto 28px;
}
.errpage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 44px;
}
.errpage__links {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}
.errpage__links > b {
    display: block;
    font-family: var(--ff-display);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 14px;
}
.errpage__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.errpage__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 500;
    padding: 6px 0;
}
.errpage__links a svg { color: var(--accent); flex: none; }
.errpage__links a:hover { color: var(--accent); text-decoration: none; }
.errpage__help {
    margin-top: 26px;
    color: var(--muted);
    font-size: 15px;
}
.errpage__help a { color: var(--accent); font-weight: 600; }
@media (max-width: 560px) {
    .errpage__links ul { grid-template-columns: 1fr; }
    .errpage__actions .btn { flex: 1; }
}

/* ---------------------------------------------------------------- Footer ilçe ağı — mobil
   Masaüstünde "·" ayraçlı akış şık; mobilde nowrap + ayraç yüzünden satırlar
   düzensiz kırılıp iç içe görünüyordu. Mobilde temiz iki sütuna alınır. */
@media (max-width: 640px) {
    .footer-districts { columns: 2; column-gap: 16px; line-height: 1.4; }
    .footer-districts b { column-span: all; margin-bottom: 10px; }
    .footer-districts a {
        display: block;
        white-space: normal;        /* nowrap kaldırıldı: sütun içinde kırılabilsin */
        break-inside: avoid;
        padding: 5px 0;
        font-size: 12.5px;
    }
    .footer-districts span.sep { display: none; }
}
@media (max-width: 380px) {
    .footer-districts { columns: 1; }
}

/* ---------------------------------------------------------------- Mobil taşma düzeltmeleri
   Ölçümle bulundu (iframe + scrollWidth/clientWidth): 360px'de 3 sayfa, 320px'de tümü taşıyordu.
   Kök sebepler: sabit 24px gutter, grid çocuklarında min-width:auto, header'ın dar ekranda sığmaması.
   Not: sorunu gizlemek için body{overflow-x:hidden} KULLANILMADI; sebepler düzeltildi. */

/* 1) Grid/flex çocukları min-content'in altına inebilsin.
      (min-width:auto varsayılanı yüzünden "Küçükçekmece", "12.500+" gibi uzun içerik kabı genişletiyordu) */
.districts__cols > *, .reviews-grid > *, .stats__in > *, .services-grid > *,
.guides-grid > *, .calc > *, .calc__items > *, .values-grid > *, .price-mini > *,
.why__grid > *, .faq-grid > *, .contact-grid > *, .hizmet-body > *, .ilce-intro > * { min-width: 0; }

/* Hesaplayıcıda uzun eşya adları (ör. "Çift kişilik yatak + baza") satır kırabilsin */
.calc__name { min-width: 0; overflow-wrap: anywhere; }

/* 2) Dar ekranda kenar boşluğunu azalt → 320px'de 16px daha kullanılabilir alan */
@media (max-width: 480px) {
    :root { --gutter: 16px; }
}

/* 3) Header: logo + CTA + menü düğmesi çok dar ekranda sığmıyordu */
@media (max-width: 420px) {
    .site-header__in { gap: 8px; }
    .logo img { height: 22px; }
    .header-cta .btn { padding: 9px 11px; font-size: 12.5px; }
    .nav-toggle { padding: 6px 0; }
}
@media (max-width: 360px) {
    /* 12px altına inilmiyor: okunabilirlik sınırı (Google "yazı çok küçük" uyarısı) */
    .header-cta .btn { padding: 8px 8px; font-size: 12px; }
}

/* 4) İlçe panelinde uzun ilçe adları iki sütuna sığmıyordu */
@media (max-width: 420px) {
    .district-panel ul { grid-template-columns: 1fr; }
}

/* 5) İstatistik kutuları: dar ekranda iç boşluk azaltılıp taşma engellenir */
@media (max-width: 480px) {
    .stat { padding-inline: 8px; }
    .stat__label { font-size: 12px; letter-spacing: .03em; }
}

/* 6) Uzun kelime/URL'ler kabı genişletmesin */
.prose-narrow p, .article__body p, .review-card__quote, .ilce-hero__lead,
.semt-list li, .neighbor-links a { overflow-wrap: anywhere; }

/* ---------------------------------------------------------------- Küçük dokunuşlar */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
