/* ─── Servisyol Web Landing ─────────────────────────────────────────────── */
:root {
  --text: #1C1C1E;
  --text-secondary: #6B7280;
  --bg: #F8F9FA;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --border-soft: #EEF0F2;
  --accent: #E53935;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.12);
  --tab-inactive: #6B7280;
  --tab-active: #1C1C1E;
  --tabbar-h: 64px;
}

* { box-sizing: border-box; }
*::-webkit-tap-highlight-color { -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
}
/* tabbar kaldırıldı — body padding-bottom gereksiz */
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
img, svg { display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── HEADER ───────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.brand-name {
  font-family: 'Bakbak One', sans-serif;
  font-size: 30px;
  letter-spacing: 0.4px;
  line-height: 1;
}
.store-btns { display: flex; gap: 8px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: inherit;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.store-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.store-btn .ico { width: 18px; height: 18px; flex-shrink: 0; }
.store-btn .lines { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .lines .top { font-size: 9px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.5px; }
.store-btn .lines .bottom { font-size: 13px; font-weight: 600; }
.store-btn.dark { background: #1C1C1E; color: #fff; border-color: #1C1C1E; }
.store-btn.light { background: #fff; color: #1C1C1E; border-color: var(--border); }
.store-btn.outline { background: transparent; color: #fff; border-color: #3a3d42; }
.store-btn.outline:hover { background: #1A1C20; box-shadow: none; }
.store-btn.lg { padding: 12px 18px; border-radius: 12px; width: 100%; justify-content: center; }
.store-btn.lg .ico { width: 22px; height: 22px; }
.store-btn.lg .lines .top { font-size: 11px; }
.store-btn.lg .lines .bottom { font-size: 15px; }

/* ─── INTRO (compact, descriptive) ─────────────────────────────────────── */
.intro { padding: 18px 0 10px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.intro-text { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08); }
}
.eyebrow-sep { opacity: 0.4; }
.intro h1 {
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  max-width: 640px;
}
.intro h1 .accent-word { position: relative; white-space: nowrap; }
.intro h1 .accent-word::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 10px;
  background: rgba(229, 57, 53, 0.18);
  border-radius: 4px;
  z-index: -1;
}
.intro p.lead {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 10px;
  max-width: 640px;
}
.intro p.lead strong {
  color: var(--text);
  font-weight: 700;
}
.intro p.lead em {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
  background: linear-gradient(transparent 70%, rgba(229, 57, 53, 0.14) 70%);
}

/* Feature pills under lead */
.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
}
.feature-pill svg {
  width: 12px; height: 12px;
  color: var(--accent);
}

/* ─── MAP (FULL WIDTH, compact + descriptive) ──────────────────────────── */
.map-section {
  padding: 10px 0 16px;
}
.map-wrap {
  width: 100%;
}
.map-head, .map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.map-foot { margin-top: 8px; margin-bottom: 0; }
.map-head-text { display: flex; flex-direction: column; gap: 2px; }
.map-head h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.map-h2-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}
.map-head p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}
.map-head p strong { color: var(--text); font-weight: 700; }
.map-head-actions { display: flex; align-items: center; gap: 8px; }
.legend-step.s5 { background: #99004C; }
.map-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 12px;
}
.legend-scale { display: flex; align-items: center; gap: 4px; }
.legend-step { width: 10px; height: 10px; border-radius: 50%; }
.legend-step.s1 { background: #00C800; }
.legend-step.s2 { background: #FFDC00; }
.legend-step.s3 { background: #FF9600; }
.legend-step.s4 { background: #DC0000; }

.map {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 300px;
  max-height: 460px;
  background-color: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.map > div { border-radius: 0 !important; }
@media (max-width: 520px) {
  .map { height: 36vh; min-height: 240px; }
}
.compass {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  z-index: 4;
  box-shadow: var(--shadow-sm);
}
.compass-needle {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.compass-needle::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--card);
  border-radius: 50%;
}

.city {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: 0;
  padding: 0;
  display: block;
  cursor: pointer;
}
.city .halo { display: none; }
.city .dot {
  position: relative;
  display: block;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 3px #fff, 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.18s ease;
}
.city .label {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--text);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.city.always-label .label { opacity: 1; }
.city:hover .label, .city.active .label { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.city:hover .dot { transform: scale(1.15); }
.city.active .dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent), 0 2px 8px rgba(229, 57, 53, 0.5);
}
.city.t1 .dot {
  width: 14px; height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 3px #fff, 0 2px 6px rgba(229, 57, 53, 0.4);
}
.city.t2 .dot { width: 12px; height: 12px; }
.city.t3 .dot { width: 10px; height: 10px; }
.city.t4 .dot { width: 8px; height: 8px; background: rgba(28, 28, 30, 0.75); }

.map-stats { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.stat-mini { display: flex; align-items: baseline; gap: 6px; }
.stat-mini .num { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.stat-mini .lbl { font-size: 12px; color: var(--text-secondary); }
.stat-mini .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.hint {
  font-size: 12px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hint svg { width: 12px; height: 12px; }

/* ─── CITY SELECT (compact) ────────────────────────────────────────────── */
.city-section { padding: 4px 0 2px; }
.city-wrap {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 42px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.city-wrap:focus-within {
  border-color: var(--text);
  box-shadow: var(--shadow-md);
}
.city-icon { color: var(--text); flex-shrink: 0; }
.city-select {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 26px 0 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  height: 100%;
}
.city-chevron {
  position: absolute;
  right: 14px;
  color: var(--text-secondary);
  pointer-events: none;
}

/* ─── LISTINGS (compact) ───────────────────────────────────────────────── */
.listings { padding: 10px 0 32px; }
.listings-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.listings-head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}
.listings-head p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ─── Mobile App Card (1:1 mimic) ────────────────────────────────────── */
.m-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.m-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.m-head {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
}
.m-user {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.m-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #F0F0F0;
  display: grid;
  place-items: center;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.m-avatar img { width: 100%; height: 100%; object-fit: cover; }
.m-avatar.pro { box-shadow: 0 0 0 2px #FFD700, 0 0 0 4px var(--card); }
.m-user-meta { display: flex; flex-direction: column; min-width: 0; }
.m-name-row { display: flex; align-items: center; gap: 5px; }
.m-name {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}
.m-pro-badge {
  font-size: 9px; font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1C1C1E;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.m-date {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.m-more {
  color: var(--text-secondary);
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.m-img-wrap {
  position: relative;
  height: 190px;
  background: #F0F0F0;
  overflow: hidden;
}
.m-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.m-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E5E7EB, #F0F0F0);
  color: var(--text-secondary);
  font-size: 12px;
}

.m-tags {
  position: absolute;
  top: 10px; left: 0; right: 110px;
  display: flex; gap: 6px;
  padding: 0 10px;
  overflow-x: auto;
  scrollbar-width: none;
  pointer-events: none;
}
.m-tags::-webkit-scrollbar { display: none; }
.m-tag {
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.m-district {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.m-district svg { width: 13px; height: 13px; color: #fff; }
.m-posttype {
  position: absolute;
  bottom: 10px; left: 10px;
  background: #fff;
  color: var(--text);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2px;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.m-body { padding: 12px 14px; }
.m-title {
  font-size: 15px; font-weight: 700;
  color: var(--text);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-desc {
  font-size: 12px;
  line-height: 18px;
  color: var(--text-secondary);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-footer-row {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-bottom: 8px;
}
.m-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px; font-weight: 600;
  color: var(--text);
}
.m-location svg { width: 13px; height: 13px; }
.m-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}
.m-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 14px;
  font-size: 11px;
  color: var(--text-secondary);
}
.m-stat svg { width: 13px; height: 13px; }
.m-stat.liked { color: #E53935; }
.m-stat.liked svg { color: #E53935; }
.m-cat {
  margin-left: auto;
  color: var(--text);
  display: flex;
  align-items: center;
}
.m-cat svg { width: 20px; height: 20px; }

/* ─── Load More Button ─────────────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  margin-top: 24px;
}
.load-more-btn {
  background: var(--text);
  color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: var(--shadow-sm);
}
.load-more-btn:hover { opacity: 0.9; box-shadow: var(--shadow-md); }
.load-more-btn:active { transform: scale(0.97); }
.load-more-btn[hidden] { display: none; }

.skeleton-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 18px;
  color: var(--text-secondary);
}
.empty-state strong { display: block; color: var(--text); font-size: 16px; margin-bottom: 4px; }

/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.footer {
  background: #0F1012;
  color: #cdd0d4;
  padding: 64px 0 24px;
  margin-top: 16px;
}
.footer a { color: #cdd0d4; transition: color 0.15s; }
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2c30;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-mark {
  background: transparent;
  box-shadow: none;
  width: 48px; height: 48px;
}
.footer-brand .brand-name { font-size: 26px; }
.footer-tag {
  font-size: 14px;
  color: #9aa0a8;
  margin: 16px 0 24px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-stores { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-stores .store-btn.dark {
  background: #1A1C20;
  border-color: #2a2c30;
  color: #fff;
}
.footer-stores .store-btn.dark:hover { background: #23262b; box-shadow: none; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li { font-size: 14px; }
.footer-col li .new {
  font-size: 10px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: #767b82; }
.footer-copy .sep { margin: 0 8px; opacity: 0.5; }
.ig-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #FED576 0%, #F47133 25%, #BC3081 60%, #4C63D2 100%);
  box-shadow: 0 4px 14px rgba(188, 48, 129, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ig-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(188, 48, 129, 0.55);
}
.ig-pill svg { width: 18px; height: 18px; stroke: #fff; }

/* ─── BOTTOM TAB BAR (mobile only) ─────────────────────────────────────── */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--card);
  height: var(--tabbar-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}
@media (min-width: 900px) {
  .tabbar { display: none; }
}
.tab {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--tab-inactive);
  font-size: 10px;
  font-weight: 500;
  transition: color 0.15s;
  cursor: pointer;
}
.tab svg { color: currentColor; }
.tab span { font-size: 10px; letter-spacing: 0.1px; }
.tab--active { color: var(--tab-active); }
.tab:active { transform: scale(0.96); }
.tab--center { position: relative; }
.tab-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-top: -6px;
}

/* ─── MODAL ────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  padding: 28px 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--border); }
.modal-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: block;
  box-shadow: var(--shadow-sm);
}

/* ── iPhone frame mockup (Dynamic Island + ekran)
   webindir.png 506×901 → aspect 0.56. Frame aspect aynı tutuldu → kırpma yok. ── */
.phone-frame {
  position: relative;
  width: 140px;
  aspect-ratio: 506 / 901;     /* image ile aynı */
  margin: 2px auto 14px;
  background: #0F1012;
  border-radius: 26px;
  padding: 6px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(0, 0, 0, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  box-sizing: border-box;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: contain;          /* taşma yok */
  display: block;
  background: var(--bg);
}
.phone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Modal scrollable — küçük ekranda taşma engelle */
.modal-card {
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 420px) {
  .phone-frame { width: 120px; padding: 5px; border-radius: 22px; }
  .phone-screen { border-radius: 17px; }
  .phone-island { width: 40px; height: 12px; top: 9px; }
}
.modal-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.5;
}
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
  .intro { padding: 20px 0 10px; }
  .intro-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .intro h1 { font-size: 26px; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .map { height: 48vh; min-height: 380px; max-height: 520px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (max-width: 520px) {
  .store-btn .lines .top { display: none; }
  .store-btn .lines .bottom { font-size: 12px; }
  .store-btn { padding: 8px 10px; }
  .header-inner { height: 64px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 24px; }
  .city .label { font-size: 10px; padding: 1px 6px; }
  .city.t4 .label { display: none; }
  .city.t3 .label { display: none; }
  .listings-head h2 { font-size: 22px; }
  .footer { padding: 48px 0 24px; }
}
