/* ==========================================================
   NoSorgu — tasarım sistemi (public site)
   Admin paneli /styles.css + /admin.css kullanır, bu dosyaya bağlı değildir.
   ========================================================== */

:root {
  --bg: #F4F5FA;
  --surface: #FFFFFF;
  --surface-2: #F0F2F9;
  --ink: #0D1230;
  --ink-2: #1B2150;
  --text: #3A405F;
  --muted: #6A7090;
  --faint: #9BA1BB;
  --line: #E3E6F0;
  --line-2: #D3D8E8;

  --brand: #4F46E5;
  --brand-600: #4338CA;
  --brand-700: #3730A3;
  --brand-50: #EEF0FF;
  --brand-100: #E0E3FF;
  --cyan: #22D3EE;

  --ok: #047857;   --ok-bg: #ECFDF5;   --ok-line: #A7F3D0;
  --warn: #B45309; --warn-bg: #FFFBEB; --warn-line: #FDE68A;
  --bad: #B91C1C;  --bad-bg: #FEF2F2;  --bad-line: #FECACA;
  --info: #1D4ED8; --info-bg: #EFF6FF; --info-line: #BFDBFE;

  --hero-bg:
    radial-gradient(900px 420px at 88% -20%, rgba(99, 102, 241, .55), transparent 60%),
    radial-gradient(700px 360px at -10% 120%, rgba(34, 211, 238, .22), transparent 60%),
    linear-gradient(180deg, #0D1230 0%, #151B45 100%);

  --r-lg: 20px;
  --r: 14px;
  --r-sm: 10px;
  --shadow-1: 0 1px 2px rgba(13, 18, 48, .06);
  --shadow-2: 0 12px 32px -14px rgba(13, 18, 48, .22);
  --shadow-3: 0 24px 60px -20px rgba(13, 18, 48, .35);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --container: 1200px;
  --header-h: 68px;
}

/* ---------- Reset / temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.25; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(79, 70, 229, .45); outline-offset: 2px; border-radius: 6px; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 28px; } }

.section { padding: 40px 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section--tight { padding: 24px 0; }
@media (min-width: 768px) { .section { padding: 56px 0; } }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}
.section-head__title { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; }
.section-head__sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.section-head__link { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px;
  border-radius: 12px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-600); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--brand-50); color: var(--brand-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--glass { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .22); }
.btn--glass:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 36px; height: 36px; }
.brand__text { font-weight: 800; font-size: 20px; letter-spacing: -0.03em; line-height: 1; }
.brand__text b { color: var(--brand); font-weight: 800; }
.brand__tld { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 1px; }
.brand--light, .brand--light:hover { color: #fff; }
.brand--light .brand__text b { color: #A5B4FC; }
.brand--light .brand__tld { color: rgba(255, 255, 255, .55); }

.site-nav { display: none; align-items: center; gap: 4px; margin-left: 8px; }
.site-nav a {
  padding: 8px 12px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
}
.site-nav a:hover, .site-nav a.is-active { background: var(--brand-50); color: var(--brand-700); }

.header-search { display: none; margin-left: auto; position: relative; }
.header-search input {
  width: 230px; height: 40px;
  padding: 0 14px 0 38px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--surface-2);
  font-family: var(--mono); font-size: 14px;
  transition: border-color .15s, background .15s, width .2s;
}
.header-search input:focus { outline: none; border-color: var(--brand); background: #fff; width: 270px; }
.header-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }

.header-cta { display: none; }
.header-menu-btn {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: #fff; color: var(--ink); cursor: pointer;
}

@media (min-width: 1000px) {
  .site-nav { display: flex; }
  .header-search { display: block; }
  .header-menu-btn { display: none; }
  .site-header--home .header-search { display: none; }
  .site-header--home .header-cta { display: inline-flex; margin-left: auto; }
}

/* Mobil menü (app.js: .site-header.is-menu-open) */
@media (max-width: 999.98px) {
  .site-header.is-menu-open .site-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0;
    margin: 0; padding: 16px;
    background: #fff;
    overflow-y: auto;
  }
  .site-header.is-menu-open .site-nav a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-header.is-menu-open .site-nav .site-nav__search { display: block; }
}
.site-nav__search { display: none; margin-bottom: 10px; }
.site-nav__search input {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1px solid var(--line-2); border-radius: 12px;
  font-family: var(--mono); font-size: 16px;
}

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 14px 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: 13px; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.crumbs li + li::before { content: ''; width: 5px; height: 5px; border-top: 1.5px solid var(--faint); border-right: 1.5px solid var(--faint); transform: rotate(45deg); }
.crumbs a { color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }
.crumbs--dark { position: relative; z-index: 1; }
.crumbs--dark li, .crumbs--dark a { color: rgba(255, 255, 255, .6); }
.crumbs--dark a:hover { color: #fff; }
.crumbs--dark [aria-current] { color: #fff; }
.crumbs--dark li + li::before { border-color: rgba(255, 255, 255, .4); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  color: rgba(255, 255, 255, .78);
  padding: 56px 0 64px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 85%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1000px) {
  .hero { padding: 80px 0 88px; }
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: 56px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  font-size: 12.5px; font-weight: 600; color: #C7D2FE;
  margin-bottom: 18px;
}
.hero__eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(34, 211, 238, .2); }
.hero__title { color: #fff; font-size: clamp(2rem, 5vw, 3.35rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; }
.hero__title em { font-style: normal; background: linear-gradient(90deg, #A5B4FC, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin-top: 16px; font-size: clamp(15px, 1.6vw, 17.5px); max-width: 560px; }
.hero__lead strong { color: #fff; }
.hero__hint { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, .55); }

/* Büyük arama kutusu */
.search {
  margin-top: 28px;
  display: flex; gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-3);
  max-width: 620px;
}
.search__field { position: relative; flex: 1; min-width: 0; }
.search__field svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--faint); pointer-events: none; }
.search__input {
  width: 100%; height: 52px;
  padding: 0 14px 0 44px;
  border: 0; border-radius: 12px;
  font-family: var(--mono); font-size: 17px; font-weight: 500; color: var(--ink);
  background: transparent;
}
.search__input::placeholder { font-family: var(--font); font-weight: 500; color: var(--faint); font-size: 15px; }
.search__input:focus { outline: none; }
.search .btn { height: 52px; padding: 0 24px; border-radius: 12px; font-size: 15.5px; }
@media (max-width: 479.98px) {
  .search { flex-direction: column; }
  .search .btn { width: 100%; }
}

.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat {
  padding: 18px 18px 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}
.stat__num { display: block; font-family: var(--mono); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.stat__label { font-size: 13px; color: rgba(255, 255, 255, .6); }

/* ---------- Sayfa başlığı (liste / hub / statik) ---------- */
.page-head {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  color: rgba(255, 255, 255, .75);
  padding-bottom: 36px;
}
.page-head .container { position: relative; z-index: 1; }
.page-head__body { padding-top: 22px; max-width: 820px; }
.page-head__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.page-head h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; }
.page-head__lead { margin-top: 10px; font-size: 15.5px; }
.page-head__lead strong { color: #fff; }
.page-head__note { margin-top: 8px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.page-head__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hchip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px; font-weight: 600; color: #E0E7FF;
}
.hchip b { color: #fff; font-family: var(--mono); font-weight: 700; }
@media (min-width: 768px) { .page-head { padding-bottom: 48px; } }

/* ---------- Kart ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-1);
}
.card + .card { margin-top: 16px; }
@media (min-width: 768px) { .card { padding: 26px; } }
.card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.card__icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand);
}
.card__title { font-size: 1.12rem; font-weight: 800; }
.card__hint { font-size: 14px; color: var(--muted); margin: -6px 0 14px; }

/* ---------- Layout: ana + yan kolon ---------- */
.layout { display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1000px) {
  .layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 32px; align-items: start; }
  .layout__side { position: sticky; top: calc(var(--header-h) + 20px); }
}
.layout__side { display: grid; gap: 16px; align-content: start; }

/* ---------- Numara listesi ---------- */
.num-list { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .num-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .num-list--3 { grid-template-columns: repeat(3, 1fr); } }
.num-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.num-row:hover { border-color: var(--brand-100); box-shadow: var(--shadow-2); transform: translateY(-1px); color: var(--text); }
.num-row__icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--surface-2); color: var(--brand);
}
.num-row__body { min-width: 0; flex: 1; }
.num-row__no { display: block; font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.num-row__title { display: block; font-size: 13px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.num-row__meta { display: flex; gap: 10px; font-size: 12.5px; color: var(--muted); }
.num-row__meta b { color: var(--ink); font-weight: 700; }
.num-row__arrow { color: var(--faint); flex-shrink: 0; transition: color .15s, transform .15s; }
.num-row:hover .num-row__arrow { color: var(--brand); transform: translate(2px, -2px); }

/* ---------- Etiket (arama tipi / durum) ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 700; line-height: 1.4;
  background: var(--surface-2); color: var(--muted);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.tag--spam, .tag--telefon-pazarlama { background: var(--warn-bg); color: var(--warn); border-color: var(--warn-line); }
.tag--dolandirici { background: var(--bad-bg); color: var(--bad); border-color: var(--bad-line); }
.tag--anket { background: var(--info-bg); color: var(--info); border-color: var(--info-line); }
.tag--tahsilat { background: #F5F3FF; color: #6D28D9; border-color: #DDD6FE; }
.tag--arkadasim, .tag--guvenli { background: var(--ok-bg); color: var(--ok); border-color: var(--ok-line); }
.tag--onemli { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }

/* ---------- Yorum kartları (anasayfa) ---------- */
.review-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  color: var(--text);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.review-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--brand-100); color: var(--text); }
.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-card__no { font-family: var(--mono); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.review-card__body { font-size: 14.5px; line-height: 1.6; color: var(--text); flex: 1; }
.review-card__meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); padding-top: 10px; border-top: 1px dashed var(--line-2); }

/* ---------- Karolar (operatör, özel, şehir hub) ---------- */
.tile-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .tile-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.tile {
  position: relative;
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 44px 18px 18px;
  min-height: 92px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.tile:hover { border-color: var(--brand); box-shadow: var(--shadow-2); transform: translateY(-2px); color: var(--text); }
.tile__name { font-weight: 800; color: var(--ink); font-size: 16px; }
.tile__name--mono { font-family: var(--mono); font-size: 20px; letter-spacing: -0.02em; }
.tile__meta { font-size: 13px; color: var(--muted); line-height: 1.45; }
.tile__arrow {
  position: absolute; right: 14px; top: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--surface-2); color: var(--muted);
  transition: background .15s, color .15s;
}
.tile:hover .tile__arrow { background: var(--brand); color: #fff; }

.hub-card__prefix { margin-top: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.6; word-break: break-word; }

/* ---------- Şehir çipleri ---------- */
.city-grid { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1150px) { .city-grid { grid-template-columns: repeat(6, 1fr); } }
.city-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.city-chip:hover { border-color: var(--brand); background: var(--brand-50); color: var(--brand-700); }
.city-chip__kod { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--muted); }

/* ---------- Anasayfa: 2 kolon blok + "nasıl çalışır" ---------- */
.split { display: grid; gap: 32px; }
@media (min-width: 1000px) { .split { grid-template-columns: 1fr 1fr; gap: 40px; } }

.steps { display: grid; gap: 14px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 22px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step::before {
  counter-increment: step; content: '0' counter(step);
  display: block; margin-bottom: 12px;
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--brand);
}
.step__title { font-size: 16px; font-weight: 800; }
.step__text { margin-top: 6px; font-size: 14px; color: var(--muted); }

/* ---------- Şehir SEO hücreleri ---------- */
.info-cells { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .info-cells { grid-template-columns: 1fr 1fr; } }
.info-cell {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.info-cell__title { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.info-cell__title::before { content: ''; width: 8px; height: 8px; border-radius: 3px; background: var(--brand); flex-shrink: 0; }
.info-cell__body { font-size: 14.5px; line-height: 1.7; }
.info-cell__body strong { color: var(--ink); }
.info-cell__body code { font-family: var(--mono); font-size: 13px; background: var(--surface-2); padding: 1px 6px; border-radius: 6px; color: var(--ink); }

/* ---------- Yan kolon ---------- */
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
}
.side-card__title {
  font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.side-card--brand { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-700) 100%); border-color: transparent; color: rgba(255, 255, 255, .8); }
.side-card--brand .side-card__title { color: #C7D2FE; }
.side-card--brand p { font-size: 14px; }
.side-card--brand strong { color: #fff; }
.side-card--brand a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.side-card__text { font-size: 14px; color: var(--text); }

.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.side-list li:first-child { border-top: 0; padding-top: 0; }
.side-list a { font-family: var(--mono); font-weight: 700; font-size: 14px; color: var(--ink); }
.side-list a:hover { color: var(--brand); }
.side-list a.side-list__text { font-family: var(--font); }
.side-list__meta { font-size: 12.5px; color: var(--muted); white-space: nowrap; }

.side-review { display: block; padding: 12px 0; border-top: 1px solid var(--line); color: var(--text); }
.side-review:first-child { border-top: 0; padding-top: 0; }
.side-review:hover { color: var(--text); }
.side-review:hover .side-review__no { color: var(--brand); }
.side-review__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.side-review__no { font-family: var(--mono); font-weight: 700; font-size: 14px; color: var(--ink); }
.side-review__body { font-size: 13.5px; line-height: 1.55; }
.side-review__meta { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }

/* ---------- Numara detay: hero ---------- */
.nx-hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  color: rgba(255, 255, 255, .75);
  padding-bottom: 40px;
}
.nx-hero .container { position: relative; z-index: 1; }
.nx-hero__grid { display: grid; gap: 22px; padding-top: 22px; }
@media (min-width: 1000px) { .nx-hero__grid { grid-template-columns: minmax(0, 1fr) auto; align-items: end; padding-top: 28px; } }
.nx-hero__type { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; }
.nx-hero__title { color: #fff; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.nx-hero__no { display: block; font-family: var(--mono); font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 700; letter-spacing: -0.04em; }
.nx-hero__q { display: block; margin-top: 6px; font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-weight: 600; color: #A5B4FC; letter-spacing: -0.01em; }
.nx-hero__fmt { margin-top: 12px; font-size: 14.5px; }
.nx-hero__fmt span { font-family: var(--mono); color: #fff; font-weight: 600; }
.nx-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.nx-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
@media (min-width: 700px) { .nx-facts { grid-template-columns: repeat(4, 1fr); } }
.nx-fact {
  padding: 14px 16px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  min-width: 0;
}
.nx-fact__label { display: block; font-size: 12px; color: rgba(255, 255, 255, .55); margin-bottom: 2px; }
.nx-fact__value { display: block; color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-fact__value.mono { font-size: 18px; }
.nx-fact a { color: #fff; }
.nx-fact a:hover { color: #C7D2FE; }

/* Durum rozeti (hero + kart) */
.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  background: rgba(255, 255, 255, .1); color: #E0E7FF; border: 1px solid rgba(255, 255, 255, .18);
}
.status-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #A5B4FC; }
.status-pill--guvenli::before { background: #34D399; }
.status-pill--spam::before, .status-pill--telefon-pazarlama::before { background: #FBBF24; }
.status-pill--dolandirici { background: rgba(239, 68, 68, .18); border-color: rgba(248, 113, 113, .45); color: #FECACA; }
.status-pill--dolandirici::before { background: #F87171; }
.status-pill--onemli::before { background: var(--cyan); }

.status-card { border-left: 5px solid var(--line-2); }
.status-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.status-card__label { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.status-card__note { font-size: 15px; line-height: 1.65; color: var(--text); }
.status-card__note strong { color: var(--ink); }
.status-card--guvenli { border-left-color: #10B981; background: linear-gradient(90deg, var(--ok-bg), #fff 60%); }
.status-card--spam, .status-card--telefon-pazarlama { border-left-color: #F59E0B; background: linear-gradient(90deg, var(--warn-bg), #fff 60%); }
.status-card--dolandirici { border-left-color: #EF4444; background: linear-gradient(90deg, var(--bad-bg), #fff 60%); }
.status-card--onemli { border-left-color: var(--brand); background: linear-gradient(90deg, var(--brand-50), #fff 60%); }
.status-card--belirsiz { border-left-color: var(--faint); }

/* Künye listesi */
.facts { display: grid; grid-template-columns: 1fr; margin: 0; }
@media (min-width: 640px) { .facts { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.facts__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-size: 13.5px; color: var(--muted); }
.facts dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 14.5px; text-align: right; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.facts dd.mono { font-size: 15px; }
.facts .kod { font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: var(--surface-2); color: var(--muted); border: 1px solid var(--line); }

/* SEO makale */
.article__item + .article__item { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.article__title { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.article__body p { font-size: 15px; line-height: 1.75; }
.article__body strong { color: var(--ink); }
.article__body ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.article__body li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.6; }
.article__body li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Yorum listesi (detay) */
.reviews { display: grid; gap: 12px; }
.review {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.review__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand-700);
  font-weight: 800; font-size: 13px; text-transform: uppercase;
}
.review__author { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.review__date { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.review__body { font-size: 15px; line-height: 1.65; color: var(--text); }
.review--dolandirici { border-left: 4px solid #EF4444; }
.review--spam, .review--telefon-pazarlama { border-left: 4px solid #F59E0B; }

.empty {
  padding: 28px 20px;
  text-align: center;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14.5px;
}
.empty strong { color: var(--ink); }
.list-info { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted); }

/* Yazım varyasyonları */
.format-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.format-chip {
  padding: 7px 12px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-family: var(--mono); font-size: 13.5px; font-weight: 500; color: var(--ink);
}

/* SSS */
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color .15s; }
.faq__item[open] { border-color: var(--brand-100); background: linear-gradient(180deg, var(--brand-50), #fff 70%); }
.faq__q {
  position: relative;
  padding: 15px 48px 15px 18px;
  font-size: 15px; font-weight: 700; color: var(--ink);
  cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ''; position: absolute; right: 18px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq__item[open] .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 18px 16px; font-size: 14.5px; line-height: 1.7; color: var(--text); }

/* ---------- Formlar ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--faint); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79, 70, 229, .12); }
.field .hint { font-size: 12.5px; color: var(--muted); }
.form__tos { font-size: 12.5px; color: var(--muted); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.flash {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 14px; margin-bottom: 14px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
}
.flash svg { flex-shrink: 0; margin-top: 2px; }
.flash--success { background: var(--ok-bg); border: 1px solid var(--ok-line); color: var(--ok); }
.flash--error { background: var(--bad-bg); border: 1px solid var(--bad-line); color: var(--bad); }

/* İletişim */
.contact { display: grid; gap: 24px; }
@media (min-width: 1000px) { .contact { grid-template-columns: 330px minmax(0, 1fr); gap: 32px; align-items: start; } }
.contact__side { display: grid; gap: 14px; }
.info-card { display: flex; gap: 14px; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.info-card__title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.info-card__text { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.info-card__text strong { color: var(--ink); }
.ref-number {
  display: grid; gap: 2px;
  padding: 14px 16px; margin-bottom: 18px;
  border-radius: var(--r);
  background: var(--brand-50); border: 1px solid var(--brand-100);
}
.ref-number__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-700); }
.ref-number a { font-family: var(--mono); font-size: 20px; font-weight: 700; color: var(--ink); }
.ref-number__sub { font-size: 13px; color: var(--muted); }

/* ---------- Sayfalama ---------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 28px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: 11px;
  font-size: 14px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.pagination a { background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination__current { background: var(--brand); color: #fff; }
.pagination__gap { color: var(--faint); }

/* ---------- Statik içerik ---------- */
.prose { max-width: 780px; font-size: 16px; line-height: 1.8; }
.prose > * + * { margin-top: 16px; }
.prose h2 { margin-top: 36px; font-size: 1.35rem; font-weight: 800; }
.prose h3 { margin-top: 28px; font-size: 1.1rem; font-weight: 800; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose em { color: var(--muted); font-size: 14px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--surface-2); color: var(--ink); }
.prose-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
@media (min-width: 768px) { .prose-card { padding: 40px 48px; } }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  background: #0B0F28;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: #fff; }
.site-footer__top { display: grid; gap: 32px; padding: 48px 0 32px; }
@media (min-width: 900px) { .site-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.site-footer__about { margin-top: 14px; max-width: 380px; line-height: 1.7; }
.site-footer__stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.site-footer__stats span { padding: 6px 10px; border-radius: 10px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); font-size: 12.5px; }
.site-footer__stats strong { color: #fff; font-family: var(--mono); }
.site-footer h4 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }

.site-footer__seo-wrap { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; }
.site-footer__seo-toggle { cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; color: #A5B4FC; }
.site-footer__seo-toggle::-webkit-details-marker { display: none; }
.site-footer__seo-toggle-less { display: none; }
.site-footer__seo-wrap[open] .site-footer__seo-toggle-more { display: none; }
.site-footer__seo-wrap[open] .site-footer__seo-toggle-less { display: inline; }
@media (min-width: 720px) { .site-footer__seo-toggle { display: none; } }
.site-footer__seo { display: grid; gap: 24px; margin-top: 16px; }
@media (min-width: 720px) { .site-footer__seo { grid-template-columns: repeat(3, 1fr); margin-top: 0; } }
.site-footer__seo h5 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.site-footer__seo ul { gap: 6px; font-size: 13.5px; }

.site-footer__cities { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; }
.site-footer__cities h5 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.cities-strip { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Yorum modalı (telefon.twig script'i: #yorum-modal, .is-show) ---------- */
.yorum-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; padding: 16px; }
.yorum-modal[hidden] { display: none; }
@media (min-width: 640px) { .yorum-modal { align-items: center; } }
.yorum-modal__backdrop { position: absolute; inset: 0; background: rgba(13, 18, 48, .55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s; }
.yorum-modal__card {
  position: relative;
  width: 100%; max-width: 460px;
  padding: 26px 22px 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-3);
  transform: translateY(24px); opacity: 0;
  transition: transform .25s, opacity .2s;
}
.yorum-modal.is-show .yorum-modal__backdrop { opacity: 1; }
.yorum-modal.is-show .yorum-modal__card { transform: none; opacity: 1; }
.yorum-modal__close {
  position: absolute; right: 12px; top: 12px;
  width: 34px; height: 34px; border: 0; border-radius: 10px;
  background: var(--surface-2); color: var(--muted);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.yorum-modal__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); }
.yorum-modal__title { margin: 4px 36px 16px 0; font-size: 1.25rem; font-weight: 800; }
.yorum-modal__title .mono { color: var(--brand-700); }
.yorum-modal__form { display: grid; gap: 12px; }
.yorum-modal__tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ym-tag { position: relative; cursor: pointer; }
.ym-tag input { position: absolute; opacity: 0; pointer-events: none; }
.ym-tag span {
  display: block; padding: 10px 6px;
  border: 1.5px solid var(--line-2); border-radius: 12px;
  text-align: center; font-size: 13.5px; font-weight: 700; color: var(--text);
  transition: all .15s;
}
.ym-tag--red input:checked + span { border-color: #EF4444; background: var(--bad-bg); color: var(--bad); }
.ym-tag--yellow input:checked + span { border-color: #F59E0B; background: var(--warn-bg); color: var(--warn); }
.ym-tag--blue input:checked + span { border-color: var(--brand); background: var(--brand-50); color: var(--brand-700); }
.ym-tag input:focus-visible + span { outline: 3px solid rgba(79, 70, 229, .4); outline-offset: 2px; }
.yorum-modal__form textarea, .yorum-modal__form input[type=text] {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: 12px; font-size: 15px;
}
.yorum-modal__form textarea { resize: vertical; }
.yorum-modal__form textarea:focus, .yorum-modal__form input[type=text]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79, 70, 229, .12); }

/* ---------- Yardımcılar ---------- */
.mt-0 { margin-top: 0 !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.page-head--plain .page-head__body { padding-top: 48px; }
.section--tight + .section { padding-top: 8px; }
/* backdrop-filter fixed öğeleri header'a hapsettiği için menü açıkken kapat */
.site-header.is-menu-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
