/* =========================================================
   Ankara Korsan Taksi — "Başkent Dispatch"
   Display: Bricolage Grotesque · Body: Figtree · Data: Space Mono
   ========================================================= */

:root {
  --ink:        #14161B;
  --ink-soft:   #23262F;
  --paper:      #F7F5F0;
  --paper-2:    #FFFFFF;
  --amber:      #F5B301;
  --amber-deep: #C98A00;
  --go:         #0E7C6B;
  --slate:      #5A6270;
  --line:       #E4E0D6;
  --line-2:     #EDEAE2;

  --radius:     16px;
  --radius-lg:  26px;
  --maxw:       1140px;
  --shadow:     0 1px 2px rgba(20,22,27,.04), 0 12px 32px -16px rgba(20,22,27,.22);
  --shadow-amber: 0 10px 30px -10px rgba(245,179,1,.55);

  --f-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --f-body:    "Figtree", system-ui, -apple-system, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Typografi ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.08; margin: 0 0 .4em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 .9rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; min-height: 46px;
}
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-amber); }
.btn-call:hover { transform: translateY(-2px); }
.btn-wa { background: var(--go); color: #fff; }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,245,240,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; line-height: 1.05; flex: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--ink);
  display: grid; place-items: center; color: var(--amber); font-size: 1.1rem; flex: none;
  box-shadow: inset 0 0 0 2px var(--amber);
}
.brand small { display: block; font-family: var(--f-mono); font-size: .56rem; letter-spacing: .16em; color: var(--slate); font-weight: 400; text-transform: uppercase; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav > a { font-weight: 500; font-size: .95rem; color: var(--slate); transition: color .15s; white-space: nowrap; }
.nav > a:hover { color: var(--ink); }
.nav-install { display: none; }
.head-cta { display: flex; align-items: center; gap: .55rem; flex: none; }
.head-cta .phone { font-family: var(--f-mono); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.btn-install {
  background: var(--ink); color: var(--paper); border: 0; cursor: pointer;
  padding: .55rem .9rem; font-size: .9rem; gap: .45rem;
}
.btn-install img { border-radius: 6px; display: block; }
.btn-install:hover { transform: translateY(-2px); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-right: -8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 .accent { color: var(--amber-deep); }
.hero .lead { font-size: 1.18rem; color: var(--slate); max-width: 30ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.live-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(14,124,107,.1); color: var(--go); padding: .42rem .85rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--go); position: relative; }
.live-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--go); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-meta .stat { }
.hero-meta .num { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.hero-meta .lbl { font-size: .82rem; color: var(--slate); }

/* ---------- Signature: dispatch / route card ---------- */
.dispatch {
  position: relative; background: var(--ink); border-radius: var(--radius-lg);
  padding: 1.6rem; color: var(--paper); box-shadow: 0 30px 60px -30px rgba(20,22,27,.6);
  overflow: hidden;
}
.dispatch::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,179,1,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(245,179,1,.06) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6;
}
.dispatch-head { display: flex; align-items: center; justify-content: space-between; position: relative; margin-bottom: 1.2rem; }
.dispatch-head .tag { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.dispatch-head .id { font-family: var(--f-mono); font-size: .72rem; color: var(--slate); }
.route { position: relative; height: 168px; margin: .4rem 0 1.1rem; }
.route svg { width: 100%; height: 100%; overflow: visible; }
.route-line { fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 6 7; }
.route-prog { fill: none; stroke: var(--amber); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 520; stroke-dashoffset: 520; animation: trace 4.2s ease-in-out infinite; }
@keyframes trace { 0% { stroke-dashoffset: 520; } 55%,100% { stroke-dashoffset: 0; } }
.node { fill: var(--ink); stroke: var(--amber); stroke-width: 2.5; }
.node-go { fill: var(--go); stroke: #fff; }
.car { animation: drive 4.2s ease-in-out infinite; }
@keyframes drive { 0% { offset-distance: 0%; opacity: 0; } 6% { opacity: 1; } 55%,100% { offset-distance: 100%; opacity: 1; } }
.route-pt { display: flex; align-items: center; justify-content: space-between; font-family: var(--f-mono); font-size: .8rem; position: relative; }
.route-pt .from { color: var(--paper); } .route-pt .to { color: var(--amber); }
.dispatch-foot { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.1); }
.dispatch-foot .meter { font-family: var(--f-mono); }
.dispatch-foot .meter b { font-size: 1.3rem; color: var(--amber); }
.dispatch-foot small { color: var(--slate); font-size: .72rem; display: block; }

/* ---------- Section frame ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.alt { background: var(--paper-2); border-block: 1px solid var(--line-2); }
.section-head { max-width: 56ch; margin-bottom: 2.4rem; }
.section-head p { color: var(--slate); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.svc .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1rem; }
.svc h3 { margin-bottom: .4rem; }
.svc p { color: var(--slate); font-size: .96rem; margin: 0; }

/* ---------- District grid ---------- */
.dist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .7rem; }
.dist-card {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; font-weight: 600; font-family: var(--f-display);
  transition: all .16s ease;
}
.dist-card:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.dist-card .arrow { font-family: var(--f-mono); color: var(--amber-deep); transition: transform .16s; }
.dist-card:hover .arrow { color: var(--amber); transform: translateX(3px); }
.dist-card.is-featured { border-color: var(--amber); }

/* ---------- Why / features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2.2rem; }
.feat { display: flex; gap: 1rem; }
.feat .n { font-family: var(--f-mono); font-size: .85rem; color: var(--amber-deep); padding-top: .25rem; flex: none; }
.feat h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.feat p { color: var(--slate); font-size: .96rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 1.15rem 2.2rem 1.15rem 0; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--f-mono); color: var(--amber-deep); font-size: 1.4rem; transition: transform .2s; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--slate); }
.faq-a div { padding: 0 0 1.2rem; }

/* ---------- Prose (SEO / article body) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p { color: #3a3f48; }
.prose ul { padding-left: 1.1rem; color: #3a3f48; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(245,179,1,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(245,179,1,.05) 1px,transparent 1px); background-size:30px 30px; }
.cta-band h2 { color: var(--paper); position: relative; }
.cta-band p { color: var(--slate); position: relative; max-width: 46ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; position: relative; margin-top: 1.6rem; margin-bottom: 0; }
.cta-band .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,.25); }
.cta-band .btn-ghost:hover { border-color: var(--paper); }

/* ---------- Breadcrumb ---------- */
.crumb { font-family: var(--f-mono); font-size: .78rem; color: var(--slate); padding: 1.4rem 0 0; }
.crumb a:hover { color: var(--amber-deep); }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: var(--paper); padding: 3.2rem 0 1.6rem; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-grid h4 { color: var(--amber); font-size: .82rem; font-family: var(--f-mono); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.foot-grid a, .foot-grid p { color: rgba(247,245,240,.72); font-size: .94rem; display: block; margin-bottom: .5rem; }
.foot-grid a:hover { color: var(--amber); }
.foot-brand { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; margin-bottom: .6rem; }
.foot-links-cols { columns: 2; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.4rem; font-size: .82rem; color: var(--slate); }

/* ---------- Floating FABs ---------- */
.fabs { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); transition: transform .15s; }
.fab:hover { transform: scale(1.08); }
.fab-wa { background: var(--go); }
.fab-call { background: var(--amber); color: var(--ink); }

/* ---------- Responsive ---------- */
/* nav 980px altında toplanır (dağınıklığı önler) */
@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .4rem 22px 1.1rem; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav > a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .nav-install {
    display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
    margin-top: .9rem; padding: .85rem; border: 0; border-radius: 999px; cursor: pointer;
    background: var(--ink); color: var(--paper); font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  }
  .nav-install img { border-radius: 6px; }
  .burger { display: block; }
  .head-cta .phone { display: none; }
  .btn-install { display: none !important; } /* mobilde menü + bant kullanılır */
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .dispatch, .callcard { order: 2; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem 1.8rem; }
  .hero .lead { max-width: none; }
  .hero-cta { gap: .6rem; }
  .hero-cta .btn { flex: 1 1 46%; }
  .callcard { padding: 1.2rem; }
  .section { }
}

@media (max-width: 460px) {
  .wrap { padding-inline: 18px; }
  .head-inner { height: 60px; }
  .nav { inset: 60px 0 auto 0; }
  .brand { font-size: 1rem; }
  .brand small { display: none; }
  .brand .mark { width: 30px; height: 30px; }
  .head-cta .btn-call { padding: .6rem .95rem; font-size: .92rem; min-height: 42px; }
  h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero { padding-top: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .route-prog, .car, .live-dot::after { animation: none; }
  .route-prog { stroke-dashoffset: 0; }
  * { scroll-behavior: auto; }
}

/* =========================================================
   v2 — Form kartı, Son Yazılar, süreç, TOC, harita, güven
   ========================================================= */

/* ---- Araç çağırma kartı ---- */
.callcard {
  position: relative; background: var(--ink); border-radius: var(--radius-lg);
  padding: 1.5rem; color: var(--paper); box-shadow: 0 30px 60px -30px rgba(20,22,27,.6); overflow: hidden;
}
.callcard::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,179,1,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(245,179,1,.06) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .55; pointer-events: none;
}
.callcard-head { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.callcard-head .tag { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.callcard-head .id { font-family: var(--f-mono); font-size: .7rem; color: var(--slate); }
.callcard-body { position: relative; display: grid; gap: .7rem; }
.callcard label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #aeb4c0; display: flex; flex-direction: column; gap: .35rem; }
.callcard label .opt { color: #6b7280; text-transform: none; letter-spacing: 0; }
.callcard input {
  background: #0e1015; border: 1px solid #2a2e38; border-radius: 11px; padding: .72rem .85rem;
  color: #fff; font-size: 1rem; font-family: var(--f-body); transition: border-color .15s, box-shadow .15s;
}
.callcard input::placeholder { color: #5a616e; }
.callcard input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,179,1,.18); }
.callcard .cf-submit { width: 100%; justify-content: center; margin-top: .3rem; font-size: 1.05rem; padding: .95rem; }
.callcard .cf-note { position: relative; margin: .2rem 0 0; font-size: .72rem; color: var(--slate); text-align: center; }

/* ---- Güven şeridi ---- */
.trust-strip { background: var(--ink); color: var(--paper); }
.trust-inner { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: center; padding: .9rem 22px; font-family: var(--f-mono); font-size: .82rem; letter-spacing: .02em; }
.trust-inner span { color: #d9dae0; white-space: nowrap; }
.trust-inner span::first-letter { color: var(--amber); }

/* ---- Son Yazılar ---- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.post-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .2s ease, border-color .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--amber); }
.post-thumb { position: relative; height: 158px; background-size: cover; background-position: center; display: grid; place-items: center; }
.post-thumb-name { font-family: var(--f-display); font-weight: 800; font-size: 1.9rem; color: rgba(255,255,255,.92); letter-spacing: -.02em; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.post-badge { position: absolute; top: .7rem; left: .7rem; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; background: var(--amber); color: var(--ink); padding: .25rem .6rem; border-radius: 999px; font-weight: 700; }
.post-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.post-body h3 { margin: 0; font-size: 1.2rem; }
.post-body p { margin: 0; color: var(--slate); font-size: .93rem; flex: 1; }
.post-more { font-family: var(--f-display); font-weight: 600; color: var(--amber-deep); font-size: .92rem; }
.post-card:hover .post-more { color: var(--amber-deep); }

/* ---- Süreç ---- */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem 1.5rem; }
.step-n { position: absolute; top: -18px; left: 1.5rem; width: 44px; height: 44px; border-radius: 12px; background: var(--amber); color: var(--ink); display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; box-shadow: var(--shadow-amber); }
.step h3 { margin: .8rem 0 .3rem; }
.step p { color: var(--slate); font-size: .96rem; margin: 0; }

/* ---- İlçe makale + TOC ---- */
.article-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2.4rem; align-items: start; }
.toc-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1rem; }
.toc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.toc-head { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: .7rem; }
.toc nav { display: flex; flex-direction: column; gap: .1rem; }
.toc nav a { font-size: .92rem; color: var(--slate); padding: .4rem 0; border-bottom: 1px solid var(--line-2); line-height: 1.35; transition: color .15s; }
.toc nav a:last-child { border-bottom: 0; }
.toc nav a:hover { color: var(--ink); }
.side-call { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem; }
.side-call .sc-title { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; }
.side-call .btn { justify-content: center; }
.article-body { max-width: none; }
.article-body h2 { scroll-margin-top: 90px; }

/* ---- Harita ---- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { display: block; width: 100%; }

@media (max-width: 920px) {
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .article-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .toc-aside { position: static; }
}
@media (max-width: 680px) {
  .posts-grid { grid-template-columns: 1fr; }
  .callcard { order: 2; }
}

/* ---- Yatay taşma koruması ---- */
html, body { overflow-x: hidden; max-width: 100%; }
img, iframe { max-width: 100%; }

/* ---- Uygulamayı indir bandı ---- */
.pwa-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  display: flex; align-items: center; gap: .85rem;
  background: var(--ink); color: var(--paper); border-radius: 18px;
  padding: .8rem 1rem; box-shadow: 0 20px 50px -15px rgba(0,0,0,.55);
  max-width: 460px; margin-inline: auto;
  animation: pwaUp .35s ease both;
}
@keyframes pwaUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pwa-banner .pwa-ico { border-radius: 11px; flex: none; }
.pwa-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.pwa-txt strong { font-family: var(--f-display); font-size: 1rem; }
.pwa-txt span { font-size: .8rem; color: #c3c7cf; }
.pwa-get {
  flex: none; background: var(--amber); color: var(--ink); border: 0; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  padding: .6rem 1rem; border-radius: 999px; min-height: 42px;
}
.pwa-get:active { transform: translateY(1px); }
.pwa-x {
  flex: none; background: rgba(255,255,255,.1); color: #fff; border: 0; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%; font-size: 1.1rem; line-height: 1;
}
/* bant açıkken çağrı/WhatsApp butonlarını bandın TEPESİNE taşı (asla üst üste binmez) */
@media (max-width: 980px) {
  .pwa-open .fabs { bottom: 108px; }
}
@media (min-width: 981px) {
  .pwa-banner { display: none !important; } /* masaüstünde header'daki indir butonu yeterli */
}
@media (min-width: 600px) and (max-width: 980px) {
  /* tablette bandı sağ alta topla */
  .pwa-banner { left: auto; right: 18px; bottom: 18px; margin-inline: 0; max-width: 400px; }
  .pwa-open .fabs { bottom: 108px; }
}
