/* ============================================================================
   TAŞDEMİR OTO ÇEKİCİ — Sakarya 7/24 Oto Çekici & Yol Yardımı
   v6 · Profesyonel yeniden tasarım · Sora + Plus Jakarta Sans
   Mobil-öncelikli, kullanıcı odaklı, gerçek WhatsApp arayüzü
   ============================================================================ */

:root {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-2: #eef0f3;
  --ink: #15171c;
  --ink-soft: #383b44;
  --muted: #646b78;
  --muted-2: #939aa6;
  --line: #e9ebf0;
  --line-soft: #f0f2f5;

  --red: #e4121f;
  --red-dark: #b50e19;
  --red-bright: #ff2d2d;
  --red-tint: #fdecec;
  --night: #0d0f15;
  --night-2: #14171f;
  --night-3: #1c2029;

  /* Gerçek WhatsApp renkleri */
  --wa-header: #075e54;
  --wa-header-2: #0a6b5f;
  --wa-wall: #efeae2;
  --wa-in: #ffffff;
  --wa-out: #d9fdd3;
  --wa-send: #00a884;
  --wa-brand: #25d366;
  --wa-tick: #53bdeb;
  --wa-ink: #111b21;
  --wa-muted: #667781;
  --wa-bar: #f0f2f5;

  --max: 1180px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --sh-xs: 0 1px 2px rgba(15, 17, 22, 0.06);
  --sh-sm: 0 4px 14px -6px rgba(15, 17, 22, 0.12);
  --sh-md: 0 14px 36px -14px rgba(15, 17, 22, 0.18);
  --sh-lg: 0 30px 70px -28px rgba(15, 17, 22, 0.34);
  --sh-red: 0 16px 34px -14px rgba(228, 18, 31, 0.5);

  --display: "Manrope", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, Arial, sans-serif;

  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 10px;
  transform: translateY(-180%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Typography (sentence-case, refined) ---------- */
h1, h2, h3, h4 {
  margin: 0; font-family: var(--display); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.06; text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3.05rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--red); font-family: var(--body); font-weight: 700;
  font-size: 13.5px; letter-spacing: 0.04em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 22px; flex: none; border-radius: 7px;
  background: var(--red-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e4121f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Topline ---------- */
.topline {
  background: var(--night); color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500;
}
.topline .container {
  display: flex; min-height: 40px; align-items: center;
  justify-content: space-between; gap: 16px;
}
.topline strong { color: #fff; font-weight: 700; }
.topline span:last-child { color: rgba(255,255,255,0.66); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #0b0c11;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex; min-height: var(--header-h); align-items: center;
  justify-content: space-between; gap: 22px;
}
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 50px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; font-size: 15px; font-weight: 600;
}
.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.82); padding: 9px 15px; border-radius: 10px;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav-links a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.09); }
.nav-links .btn { margin-left: 10px; }

.menu-toggle {
  display: none; width: 46px; height: 46px; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 12px;
  background: rgba(255, 255, 255, 0.06); color: #fff;
}
.menu-toggle svg { width: 22px; height: 22px; stroke: currentColor; }

/* Mobil header CTA — çerçevesiz: beyaz yazı + kırmızı yanıp sönen nokta */
.nav-call {
  display: none; align-items: center; gap: 9px;
  margin-left: auto; padding: 8px 4px; background: none; color: #fff;
  font-weight: 800; font-size: 15.5px; letter-spacing: -0.01em; white-space: nowrap;
  transition: opacity .18s var(--ease), transform .14s var(--ease);
}
.nav-call:active { transform: scale(0.97); opacity: .8; }
.nav-call .icon { width: 18px; height: 18px; fill: #fff; }
.nav-call .nc-now { font-weight: 800; }
.nav-call .nc-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--red-bright); flex: none;
  box-shadow: 0 0 0 0 rgba(255,42,46,.7); animation: ctaDot 1.25s ease-in-out infinite;
}
@keyframes ctaDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,42,46,.75); opacity: 1; transform: scale(1); }
  50%  { box-shadow: 0 0 0 8px rgba(255,42,46,0); opacity: .35; transform: scale(.82); }
  100% { box-shadow: 0 0 0 0 rgba(255,42,46,0); opacity: 1; transform: scale(1); }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; min-height: 52px;
  align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border: 1.5px solid transparent; border-radius: 12px;
  color: #fff; font-family: var(--body); font-weight: 700;
  font-size: 15.5px; letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease),
    background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-red { background: var(--red); box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(228,18,31,.6); }
.btn-wa { background: var(--wa-send); color: #06352b; box-shadow: 0 14px 30px -14px rgba(0,168,132,.6); }
.btn-wa:hover { background: #06916f; color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); color: #fff; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-small { min-height: 46px; padding: 11px 18px; font-size: 14.5px; }
.icon { width: 19px; height: 19px; flex: 0 0 auto; fill: currentColor; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--night); color: #fff;
}
.hero-video, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { z-index: 0; object-fit: cover; object-position: center; }
.hero-scrim {
  z-index: 1;
  background:
    radial-gradient(130% 95% at 86% 4%, rgba(228, 18, 31, 0.32), transparent 50%),
    linear-gradient(96deg, rgba(10,11,16,0.97) 0%, rgba(10,11,16,0.9) 30%, rgba(10,11,16,0.5) 60%, rgba(10,11,16,0.28) 100%),
    linear-gradient(0deg, rgba(10,11,16,0.82), transparent 44%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; align-items: center; gap: 52px;
  min-height: 700px;
  grid-template-columns: minmax(0, 1fr) minmax(396px, 0.78fr);
}
.hero-copy { padding-block: 80px; max-width: 620px; }

.hero-live {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  padding: 8px 15px 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92); font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
}
.hero-live i {
  width: 9px; height: 9px; border-radius: 50%; background: #3ee06f;
  box-shadow: 0 0 0 5px rgba(62, 224, 111, 0.18); animation: pulse 2.1s ease-in-out infinite;
}
.hero .eyebrow { color: #ff2d2d; margin-bottom: 16px; }
.hero .eyebrow::before { background-color: rgba(255,255,255,0.12); }

.hero h1 {
  color: #fff; font-size: clamp(3rem, 6vw, 5.1rem); line-height: 1.0; letter-spacing: -0.025em;
  font-weight: 800; text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 strong, .hero h1 .h1-sub { display: block; margin-top: 0.12em; color: var(--red-bright); font-weight: 800; }

.hero-copy p {
  max-width: 530px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.78);
  font-size: 18.5px; line-height: 1.6; text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note {
  display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px;
  color: rgba(255, 255, 255, 0.82); font-size: 14.5px; font-weight: 500;
}
.hero-note span { display: inline-flex; align-items: center; gap: 9px; }
.hero-note span::before {
  content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: rgba(62, 224, 111, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233ee06f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.hero-visual { display: flex; align-items: center; justify-content: flex-end; min-height: 100%; }

/* ---------- WhatsApp telefon ---------- */
.wa-stage { position: relative; width: min(400px, 100%); scroll-margin-top: 100px; }
.wa-callout {
  position: absolute; left: -26px; z-index: 5; display: flex; gap: 12px; width: 196px;
  padding: 13px 15px; border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(16, 18, 24, 0.82);
  color: rgba(255, 255, 255, 0.86); font-size: 12.5px; line-height: 1.4;
  backdrop-filter: blur(12px); box-shadow: var(--sh-lg);
}
.wa-callout b {
  color: #ff2d2d; font-family: var(--display); font-weight: 800; font-size: 25px; line-height: 1;
}
.wa-callout::after {
  content: ""; position: absolute; top: 50%; right: -28px; width: 28px;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.4);
}
.wa-callout-top { top: 11%; transform: translateX(-84%); }
.wa-callout-bottom { bottom: 13%; transform: translateX(-84%); }

.wa-phone {
  position: relative; z-index: 4; width: min(376px, 100%); margin-left: auto;
  overflow: hidden; border: 9px solid #16181f; border-radius: 46px; background: #16181f;
  box-shadow: 0 44px 90px -30px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 2px rgba(255,255,255,0.04);
}
.wa-statusbar {
  display: flex; height: 32px; align-items: center; justify-content: space-between;
  padding: 0 18px; background: var(--wa-header); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.01em;
}
.wa-device-icons { display: inline-flex; align-items: center; gap: 5px; }
.wa-device-icons i { display: inline-block; width: 3px; border-radius: 1px; background: #fff; }
.wa-device-icons i:nth-child(1) { height: 5px; }
.wa-device-icons i:nth-child(2) { height: 7px; }
.wa-device-icons i:nth-child(3) { height: 9px; }
.wa-device-icons b { font-size: 9px; }
.wa-device-icons em {
  width: 20px; height: 10px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 2.5px;
  box-shadow: inset 0 0 0 1.5px var(--wa-header), inset 0 0 0 8px #fff;
}

.wa-panel { background: #fff; }
.wa-head {
  display: flex; min-height: 62px; align-items: center; gap: 10px;
  padding: 9px 13px; background: var(--wa-header); color: #fff;
}
.wa-back { font-size: 28px; font-weight: 300; line-height: 1; opacity: 0.92; }
.wa-avatar {
  display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center;
  border-radius: 50%; overflow: hidden; background: #fff;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-avatar svg { width: 24px; height: 24px; }
.wa-head-copy { flex: 1; min-width: 0; line-height: 1.25; }
.wa-name { display: block; font-size: 15.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-status {
  display: flex; align-items: center; gap: 6px; margin-top: 1px;
  font-size: 12px; color: rgba(255, 255, 255, 0.82); white-space: nowrap;
}
.wa-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6fe8a5; }
.wa-head-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.wa-head-icon { width: 18px; height: 18px; fill: #fff; opacity: 0.92; }

.wa-body {
  position: relative; min-height: 372px; max-height: 372px; overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  padding: 18px 14px 14px;
  background-color: var(--wa-wall);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23000' fill-opacity='0.025'%3E%3Cpath d='M22 18c2-3 6-3 8 0M86 30a4 4 0 1 1-8 0 4 4 0 0 1 8 0M40 64l5 5M104 72c-3 2-3 6 0 8M18 92h8M64 100l4-6 4 6M96 104a3 3 0 1 0 0-6 3 3 0 0 0 0 6M58 24h10M30 110c2-2 6-2 8 0'/%3E%3C/g%3E%3C/svg%3E");
  scrollbar-width: thin;
}
.wa-body::-webkit-scrollbar { width: 5px; }
.wa-body::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.16); border-radius: 5px; }

.wa-prompt {
  position: relative; width: fit-content; max-width: 92%; margin: 0 0 14px;
  padding: 9px 13px 8px; border-radius: 9px; border-top-left-radius: 2px;
  background: var(--wa-in); color: var(--wa-ink); box-shadow: 0 1px 1px rgba(11, 20, 26, 0.1);
}
.wa-prompt::before {
  content: ""; position: absolute; top: 0; left: -7px; width: 9px; height: 13px;
  background: var(--wa-in); clip-path: polygon(100% 0, 0 0, 100% 60%);
}
.wa-prompt strong { display: block; font-size: 14.5px; font-weight: 600; }
.wa-prompt span { display: block; margin-top: 3px; color: var(--wa-muted); font-size: 12.5px; line-height: 1.45; }
.wa-prompt .t { display: block; text-align: right; font-size: 10.5px; color: var(--wa-muted); margin-top: 4px; }

.wa-service-actions { display: grid; gap: 8px; }
.wa-service {
  display: flex; min-height: 46px; align-items: center; gap: 12px;
  padding: 10px 13px; border: 1px solid #e3e1dc; border-radius: 11px;
  background: var(--wa-in); color: #1f2c34; font-size: 14px; font-weight: 600;
  text-align: left; box-shadow: 0 1px 1px rgba(11, 20, 26, 0.04);
  transition: border-color .18s var(--ease), background-color .18s var(--ease), transform .12s var(--ease);
}
.wa-service:hover, .wa-service:focus-visible, .wa-service.is-selected {
  border-color: var(--wa-send); background: #f1fcf6; transform: translateY(-1px);
}
.wa-service:active { transform: scale(0.99); }
.wa-service b {
  display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center;
  border-radius: 9px; background: #e7f7f0; color: var(--wa-header); font-size: 17px; line-height: 1;
}
.wa-service b svg { width: 17px; height: 17px; fill: currentColor; }

.wa-form {
  display: flex; align-items: center; gap: 8px; padding: 9px 10px;
  background: var(--wa-bar); border-top: 1px solid #dfe3e6;
}
.wa-smile { display: grid; width: 26px; place-items: center; color: #54656f; }
.wa-smile svg { width: 22px; height: 22px; }
.wa-input {
  min-width: 0; flex: 1; min-height: 44px; padding: 11px 15px;
  border: 0; border-radius: 22px; background: #fff; color: var(--wa-ink); font-size: 14.5px;
  box-shadow: 0 1px 1px rgba(11, 20, 26, 0.06);
}
.wa-input::placeholder { color: #8696a0; }
.wa-send {
  display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center;
  border: 0; border-radius: 50%; background: var(--wa-send); color: #fff;
  transition: background-color .18s var(--ease), transform .12s var(--ease);
}
.wa-send:hover { background: #06916f; }
.wa-send:active { transform: scale(0.94); }
.wa-send .icon { width: 22px; height: 22px; }

.wa-continue {
  display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 14px; background: var(--wa-brand); color: #06352b;
  font-family: var(--body); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  transition: background-color .18s var(--ease), transform .12s var(--ease);
}
.wa-continue:hover, .wa-continue.is-ready { background: #1fbd57; }
.wa-continue:active { transform: scale(0.99); }
.wa-continue .icon { width: 21px; height: 21px; }

.wa-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px; background: #fff; color: #54656f; font-size: 11px; font-weight: 500;
}
.wa-secure svg { width: 12px; height: 12px; fill: #54656f; }

/* ============================================================================
   TRUST BAR
   ============================================================================ */
.trust { background: var(--night); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.trust-item {
  display: flex; align-items: center; gap: 14px; min-height: 104px;
  padding: 20px 24px; background: var(--night);
}
.trust-item .t-ic {
  display: grid; width: 46px; height: 46px; flex: none; place-items: center;
  border-radius: 13px; background: rgba(228, 18, 31, 0.14); color: #ff2d2d;
}
.trust-item .t-ic svg { width: 24px; height: 24px; fill: currentColor; }
.trust-item b {
  display: block; color: #fff; font-family: var(--display); font-weight: 800;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.02em;
}
.trust-item span { display: block; color: rgba(255, 255, 255, 0.6); font-size: 13.5px; font-weight: 500; margin-top: 2px; }

/* ============================================================================
   SECTIONS
   ============================================================================ */
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-soft { background: var(--surface); }
.section-dark { background: var(--night); color: #fff; }
.section-red { background: var(--red); color: #fff; }
.section-dark h2, .section-red h2 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 52px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-lead {
  max-width: 660px; margin: 16px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6;
}
.section-dark .section-lead, .section-red .section-lead { color: rgba(255, 255, 255, 0.78); }
.section-dark .eyebrow { color: #ff2d2d; }
.section-dark .eyebrow::before { background-color: rgba(255,255,255,0.1); }

/* ---------- Services (soft cards, NO hard borders) ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px;
}
.service {
  position: relative; display: grid; grid-template-columns: 56px 1fr; align-items: start; gap: 18px;
  padding: 26px 26px 26px 24px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.section-soft .service { background: #fff; }
.service::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  border-radius: 3px; background: var(--red); opacity: 0; transition: opacity .22s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.service:hover::before { opacity: 1; }
.service-icon {
  display: grid; width: 56px; height: 56px; place-items: center; border-radius: 15px;
  background: var(--red-tint); color: var(--red); flex: none;
}
.service-icon svg { width: 28px; height: 28px; fill: currentColor; }
.service-number { display: none; }
.service h3 { font-size: 1.28rem; letter-spacing: -0.025em; }
.service p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--red);
  font-family: var(--body); font-weight: 700; font-size: 14.5px;
}
.service-link::after {
  content: ""; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23e4121f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s var(--ease);
}
.service:hover .service-link::after { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: clamp(28px, 4vw, 60px); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  position: relative; overflow: hidden; border-radius: var(--r-lg); min-height: 400px;
  background: var(--ink); box-shadow: var(--sh-md);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-media .badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 14px; background: rgba(13,15,21,.78);
  backdrop-filter: blur(10px); color: #fff; font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
}
.split-media .badge i {
  width: 9px; height: 9px; border-radius: 50%; background: #3ee06f;
  box-shadow: 0 0 0 5px rgba(62,224,111,.18);
}
.split-copy { align-self: center; }
.split-copy .eyebrow { margin-bottom: 16px; }
.split-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.split-copy > p { margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.split-points { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.split-points li { display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 16px; }
.split-points .pt-ic {
  display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px;
  background: var(--red-tint); color: var(--red); flex: 0 0 auto;
}
.split-points .pt-ic svg { width: 24px; height: 24px; fill: currentColor; }
.split-points b { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; display: block; }
.split-points span { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---------- Photo CTA band ---------- */
.section-photo { position: relative; overflow: hidden; color: #fff; background: var(--night); }
.section-photo .photo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-photo .photo-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(92deg, rgba(10,11,16,.95) 0%, rgba(10,11,16,.8) 40%, rgba(10,11,16,.4) 100%),
    radial-gradient(120% 90% at 90% 10%, rgba(228,18,31,.36), transparent 52%);
}
.section-photo .container { position: relative; z-index: 2; }
.section-photo h2 { color: #fff; }
.section-photo .section-lead { color: rgba(255, 255, 255, 0.84); }
.eyebrow.on-photo { color: #ff2d2d; margin-bottom: 16px; }
.eyebrow.on-photo::before { background-color: rgba(255,255,255,0.12); }
.section-photo .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; counter-reset: step; }
.step {
  position: relative; padding: 30px 26px; border-radius: var(--r);
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.09);
  transition: transform .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease);
}
.step:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); border-color: rgba(228,18,31,0.4); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: inline-block; font-family: var(--display); font-weight: 800; font-size: 18px;
  color: #ff2d2d; letter-spacing: 0.04em;
}
.step span { display: none; }
.step h3 { margin-top: 14px; font-size: 1.35rem; color: #fff; }
.step p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 15.5px; line-height: 1.55; }

/* ---------- Districts ---------- */
.district-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.district-link {
  display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 20px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em;
  box-shadow: var(--sh-xs);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.district-link span {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red-tint); color: var(--red); font-size: 15px; transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.district-link:hover, .district-link.is-active {
  background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh-red);
}
.district-link:hover span, .district-link.is-active span { background: rgba(255,255,255,0.2); color: #fff; transform: translateX(2px); }

/* ---------- Local content ---------- */
.local-content { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; }
.prose { max-width: 72ch; }
.prose > h2:first-child, .prose > h1:first-child { margin-top: 0; }
.prose h2 { margin-top: 44px; font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.prose h3 { margin-top: 30px; font-size: clamp(1.3rem, 2vw, 1.6rem); }
.prose p { margin: 15px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.prose ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.prose li { position: relative; padding-left: 32px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; }
.prose li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 7px;
  background: var(--red-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23e4121f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose-figure {
  margin: 28px 0 8px; border-radius: var(--r); overflow: hidden; position: relative;
  background: var(--ink); box-shadow: var(--sh-md);
}
.prose-figure img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.prose-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px;
  background: linear-gradient(0deg, rgba(13,15,21,.9), transparent); color: #fff; font-size: 14px; font-weight: 500;
}

.side-cta {
  position: sticky; top: 96px; height: fit-content; overflow: hidden;
  padding: 28px; border-radius: var(--r); background: var(--night); color: #fff;
  box-shadow: var(--sh-lg);
}
.side-cta::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(228,18,31,.4), transparent 60%); pointer-events: none;
}
.side-cta > * { position: relative; }
.side-cta .eyebrow { color: #ff2d2d; margin-bottom: 12px; }
.side-cta .eyebrow::before { background-color: rgba(255,255,255,0.12); }
.side-cta h3 { font-size: 1.55rem; color: #fff; }
.side-cta p { margin: 12px 0 20px; color: rgba(255, 255, 255, 0.76); font-size: 15px; }
.side-cta .btn { width: 100%; margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 8px; display: grid; gap: 12px; }
details {
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  box-shadow: var(--sh-xs); overflow: hidden; transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
details[open] { box-shadow: var(--sh-sm); border-color: transparent; }
.section-soft details { background: #fff; }
summary {
  position: relative; padding: 22px 60px 22px 24px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  letter-spacing: -0.025em; color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e4121f' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
details[open] summary::after {
  transform: translateY(-50%) rotate(135deg); background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
details p { max-width: 80ch; margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.blog-card {
  display: flex; flex-direction: column; min-height: 240px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs); overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.blog-card .thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.blog-card small {
  display: inline-flex; align-self: flex-start; padding: 5px 11px; border-radius: 999px;
  background: var(--red-tint); color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 0;
}
.blog-card h3 { margin-top: 14px; font-size: 1.22rem; line-height: 1.25; letter-spacing: -0.025em; }
.blog-card p { margin: 10px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; flex: 1; }
.blog-card b {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  color: var(--red); font-family: var(--body); font-weight: 700; font-size: 14px;
}
.blog-card b::after {
  content: ""; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e4121f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s var(--ease);
}
.blog-card:hover b::after { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 36px; padding: clamp(36px, 5vw, 64px); border-radius: var(--r-lg);
  background: var(--night); color: #fff; box-shadow: var(--sh-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 130% at 100% 0%, rgba(228,18,31,.5), transparent 52%),
    radial-gradient(70% 110% at 0% 100%, rgba(228,18,31,.28), transparent 52%);
}
.cta-band > * { position: relative; }
.cta-band .eyebrow { color: #ff2d2d; margin-bottom: 12px; }
.cta-band .eyebrow::before { background-color: rgba(255,255,255,0.12); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; }
.cta-band p { max-width: 580px; margin: 14px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 18px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band-actions .btn { min-width: 252px; }

/* ---------- Breadcrumbs & article head ---------- */
.breadcrumbs { padding: 18px 0; color: var(--muted); font-size: 14px; }
.breadcrumbs a { font-weight: 600; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { margin: 0 8px; color: var(--muted-2); }

.article-head { max-width: 860px; padding: 48px 0 36px; }
.article-meta {
  display: inline-flex; align-self: flex-start; margin-bottom: 18px; padding: 6px 13px; border-radius: 999px;
  background: var(--red-tint); color: var(--red); font-weight: 700; font-size: 13px;
}
.article-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.04em; }
.article-head p { max-width: 700px; margin: 18px 0 0; color: var(--muted); font-size: 19px; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: #fff; padding: 64px 0 88px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.9fr 0.9fr; gap: 40px; }
.footer-logo { height: 54px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 460px; color: rgba(255, 255, 255, 0.6); font-size: 15px; line-height: 1.6; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.site-footer h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: #fff; margin-bottom: 6px; }
.footer-links { display: grid; gap: 10px; margin-top: 16px; }
.footer-links a { color: rgba(255, 255, 255, 0.66); font-size: 15px; transition: color .15s var(--ease), padding-left .15s var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: rgba(255, 255, 255, 0.46); font-size: 13.5px;
}

/* ---------- Gallery slider (gerçek iş fotoğrafları) ---------- */
.gallery-slider { position: relative; margin-top: 8px; }
.gallery-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px; margin: -4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 1 / 1; background: var(--ink); box-shadow: var(--sh-sm);
  scroll-snap-align: start;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,12,17,0.78) 2%, rgba(11,12,17,0.12) 40%, transparent 70%);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.gallery-cap::before {
  content: ""; display: block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--red); margin-bottom: 8px;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--ink); box-shadow: var(--sh-md);
  border: 1px solid var(--line); transition: transform .15s var(--ease), background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}
.gallery-nav:hover { background: var(--red); color: #fff; border-color: var(--red); }
.gallery-nav:active { transform: translateY(-50%) scale(0.94); }
.gallery-nav svg { width: 22px; height: 22px; fill: currentColor; }
.gallery-nav.prev { left: -10px; }
.gallery-nav.next { right: -10px; }
.gallery-nav[disabled] { opacity: 0; pointer-events: none; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.gallery-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  transition: background-color .2s var(--ease), width .2s var(--ease);
}
.gallery-dots button.is-active { background: var(--red); width: 22px; border-radius: 4px; }

/* ---------- Mobile sticky contact ---------- */
.mobile-contact { display: none; }

/* ---------- Sabit WhatsApp butonu (masaüstü; mobilde alt çubuk var) ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 15px; border-radius: 999px;
  background: var(--wa-send); color: #fff; font-weight: 800; font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 36px -12px rgba(0,168,132,0.75), 0 3px 10px rgba(0,0,0,0.22);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -12px rgba(0,168,132,0.85), 0 3px 10px rgba(0,0,0,0.22); }
.wa-float .icon { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 760px) { .wa-float { display: none; } }

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================================================
   RESPONSIVE — TABLET
   ============================================================================ */
@media (max-width: 1040px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero-copy { padding: 64px 0 16px; max-width: 640px; }
  .hero-visual { justify-content: center; padding-bottom: 60px; }
  .wa-callout { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-track { grid-auto-columns: minmax(46%, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================================
   RESPONSIVE — MOBILE (mobil-öncelikli, kullanıcı odaklı)
   ============================================================================ */
@media (max-width: 760px) {
  :root { --header-h: 60px; }
  body { font-size: 16px; padding-bottom: 70px; }
  html { scroll-padding-top: 72px; }

  .topline { display: none; }
  .nav { min-height: 60px; gap: 0; }
  .logo { flex: none; }
  .logo img { height: 40px; }
  .menu-toggle { display: grid; flex: none; }
  .nav-call { display: flex; margin-left: auto; margin-right: 14px; min-height: 44px; }

  .nav-links {
    position: absolute; top: 60px; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 18px 18px;
    background: rgba(13, 15, 21, 0.98); backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.btn) { display: block; padding: 13px 14px; border-radius: 11px; font-size: 16px; }
  .nav-links .btn { width: 100%; margin-left: 0; margin-top: 8px; }

  /* HERO — video üstte net bant, altında metin */
  .hero { display: flex; flex-direction: column; background: var(--night); }
  .hero-video {
    position: relative; inset: auto; z-index: 0;
    width: 100%; height: clamp(230px, 62vw, 320px); object-position: center 42%;
  }
  .hero-scrim {
    inset: 0 0 auto 0; height: clamp(230px, 62vw, 320px);
    background: linear-gradient(180deg, rgba(10,11,16,0.1) 0%, rgba(10,11,16,0.25) 52%, var(--night) 100%);
  }
  .hero-grid { display: block; min-height: 0; }
  .hero-copy { padding: 24px 0 8px; max-width: none; }

  .hero-live {
    margin-bottom: 16px; padding: 7px 13px 7px 11px; font-size: 12.5px;
  }
  .hero .eyebrow { margin-bottom: 12px; }

  .hero h1 { font-size: clamp(2.3rem, 8.8vw, 3.1rem); line-height: 1.05; letter-spacing: -0.035em; }
  .hero-copy p { max-width: none; margin-top: 14px; font-size: 16.5px; color: rgba(255, 255, 255, 0.82); }

  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .hero-actions .btn { width: 100%; min-height: 56px; font-size: 16px; }
  .hero-actions .btn-wa { order: -1; }
  .hero-actions .btn-red { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); box-shadow: none; }
  .hero-actions .btn-red:hover { background: rgba(255,255,255,0.12); }
  .hero-note { gap: 8px 18px; margin-top: 18px; font-size: 13.5px; }

  .hero-visual { padding: 6px 0 32px; min-height: auto; display: block; }
  .wa-stage { width: 100%; }
  .wa-phone {
    width: 100%; margin: 0; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
    box-shadow: 0 20px 46px -22px rgba(0, 0, 0, 0.7);
  }
  .wa-statusbar { display: none; }
  /* MOBİL: iç kaydırma kapalı → sayfa akıcı kayar, takılma yok */
  .wa-body { min-height: 0; max-height: none; overflow: visible; }

  /* TRUST — 2x2, ikon üstte */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { flex-direction: column; align-items: flex-start; gap: 10px; min-height: 0; padding: 20px 18px; }
  .trust-item .t-ic { width: 42px; height: 42px; }
  .trust-item b { font-size: 22px; }
  .trust-item span { font-size: 12.5px; }

  /* SECTIONS */
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service { padding: 20px; gap: 16px; grid-template-columns: 50px 1fr; }
  .service-icon { width: 50px; height: 50px; }

  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .split-media { min-height: 230px; max-height: 300px; border-radius: var(--r); }
  .split-points { gap: 16px; }

  .steps { gap: 12px; }
  .step { padding: 24px 22px; }

  .district-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .district-link { min-height: 56px; padding: 14px 16px; font-size: 15px; }

  .local-content { grid-template-columns: 1fr; gap: 32px; }
  .side-cta { position: static; order: -1; }

  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card { min-height: 0; }

  .gallery-track { grid-auto-columns: minmax(84%, 1fr); gap: 12px; }
  .gallery-nav { display: none; }

  .cta-band { grid-template-columns: 1fr; gap: 22px; padding: 32px 26px; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { width: 100%; min-width: 0; }

  .article-head { padding: 32px 0 24px; }

  .footer { }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { margin-top: 36px; }

  /* Sticky alt iletişim çubuğu */
  .mobile-contact {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid;
    grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(0,0,0,0.12);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.16); padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-contact .btn { min-height: 62px; border: 0; border-radius: 0; font-size: 16px; box-shadow: none; }
  .mobile-contact .btn:hover { transform: none; }
  .mobile-contact .btn-wa { order: -1; background: var(--wa-send); color: #fff; }
  .mobile-contact .btn-red { background: var(--red); }
}

/* ---------- Çok dar ekran ---------- */
@media (max-width: 430px) {
  .nav-call .nc-now { display: none; }
  .nav-call { font-size: 14.5px; }
}
@media (max-width: 380px) {
  .logo img { height: 36px; }
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.7rem); }
  .hero-copy p { font-size: 15.5px; }
  .wa-service { font-size: 13.5px; }
  .trust-item b { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
}
