/* ============================================================
   Halı Yıkat Portal — Tanıtım Sayfası
   Aydınlık kurumsal tema. Palet marka ikonundan türetildi:
   kraliyet mavisi zemin + su damlası mavileri + kilim kehribarı.
   ============================================================ */
:root {
  --primary: #1d4ed8;          /* İkon zemini — kraliyet mavisi */
  --primary-dark: #1e40af;
  --primary-light: #edf2fe;
  --primary-tint: #d8e3fc;
  --navy: #10254e;             /* Başlıklar, koyu yüzeyler */
  --navy-soft: #1b3568;
  --ink-2: #44536f;            /* Gövde metni */
  --ink-3: #7a87a0;            /* Sönük metin */
  --line: #e4e9f2;
  --line-soft: #eff2f8;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --sky: #0ea5e9;              /* Su damlası mavisi */
  --amber: #f59e0b;            /* Kilim deseni */
  --amber-deep: #92400e;
  --amber-soft: #fef3e2;
  --green: #12a150;
  --green-soft: #e6f7ee;
  --red: #e11d48;
  --red-soft: #fee7ec;
  --wa-green: #25d366;

  --shadow-sm: 0 1px 3px rgba(16, 37, 78, 0.06), 0 1px 2px rgba(16, 37, 78, 0.04);
  --shadow-md: 0 4px 14px rgba(16, 37, 78, 0.08);
  --shadow-lg: 0 16px 40px rgba(16, 37, 78, 0.12);
  --shadow-xl: 0 28px 60px rgba(16, 37, 78, 0.16);

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Logodaki halı bordürü — kilim şeridi */
  --kilim: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='10' viewBox='0 0 24 10'%3E%3Crect width='24' height='10' fill='%2392400E'/%3E%3Cpolygon points='12,1 21,5 12,9 3,5' fill='%23F59E0B'/%3E%3C/svg%3E");

  --max-w: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.015em;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

/* ============ Butonlar ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--primary-tint); color: var(--primary); }
.btn-large { padding: 16px 30px; font-size: 16px; }

/* ============ Yerleşim ============ */
.section-inner, .nav-inner, .footer-inner, .trustbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--line { border-top: 1px solid var(--line); }
.section-title {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  margin: 0 0 52px;
  max-width: 26ch;
}
/* Bölüm başlıkları ortalanır (hero ve app hariç — onlar kendi kolonunda) */
.section-inner > .eyebrow { text-align: center; }
.section-inner > .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============ Güven şeridi ============ */
.trustbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
}
.trustbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trustbar-item { display: inline-flex; align-items: center; gap: 7px; }
.trustbar-item .ico { color: var(--amber); font-weight: 800; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--primary); }

.nav-links { display: flex; gap: 4px; font-weight: 600; font-size: 14px; }
.nav-links a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--ink-3);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 11px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-btn.is-active { background: var(--navy); color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--primary-dark); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse 760px 420px at 82% -6%, var(--primary-tint) 0%, transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-glow { display: none; }
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  margin-bottom: 22px;
}
.hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 161, 80, 0.16);
}

.hero-title {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  margin: 0 0 20px;
}
.hero-title em { font-style: normal; color: var(--primary); }

.hero-body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 0;
  margin: 38px 0 0;
}
.hero-stat { padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); }
.hero-stat dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
}
.hero-stat dd {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ink-3);
  max-width: 14ch;
}

/* Hero — canlı harita panel kartı */
.hero-visual { position: relative; }
.heromap {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-xl);
}
.heromap-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: liveDot 1.6s ease-in-out infinite;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 161, 80, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(18, 161, 80, 0); }
}
.heromap-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.heromap-svg {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background:
    linear-gradient(rgba(16, 37, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 78, 0.05) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 28px 28px, 28px 28px, auto;
}

.route-base {
  stroke: var(--primary-tint);
  stroke-width: 6;
  stroke-linecap: round;
}
.route-draw {
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 9;
  animation: routeFlow 1.4s linear infinite;
}
@keyframes routeFlow {
  to { stroke-dashoffset: -19; }
}

.pin { stroke: #fff; stroke-width: 2.5; }
.pin-done { fill: var(--green); }
.pin-next { fill: var(--amber); }
.pin-van {
  fill: var(--primary);
  transform-box: fill-box;
  transform-origin: center;
  animation: vanPulse 1.8s ease-in-out infinite;
}
@keyframes vanPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.heromap-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  animation: chipFloat 4s ease-in-out infinite;
}
.heromap-chip--call { top: 82px; left: -20px; }
.heromap-chip--sync { bottom: 74px; right: -20px; animation-delay: 2s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chip-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.chip-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.heromap-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}

/* Aşama noktaları */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
}
.dot-blue { background: var(--primary); }
.dot-sky { background: var(--sky); }
.dot-amber { background: var(--amber); }
.dot-green { background: var(--green); }

/* ============ Bir iş günü — rota föyü zaman çizelgesi ============ */
#gun { background: #fff; }
.day {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.day::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 40px;
  border-left: 2px dashed var(--primary-tint);
}
.stop {
  position: relative;
  padding: 0 0 84px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.stop:last-child { padding-bottom: 0; }
.stop-pin {
  position: absolute;
  left: 9px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 5px var(--primary-light);
}
.stop-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: var(--navy);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.stop-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}
.stop h3 {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  margin: 0 0 12px;
}
.stop-body { margin: 0 0 16px; color: var(--ink-2); }
.stop-list { display: grid; gap: 8px; }
.stop-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.stop-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.stop-visual { display: flex; justify-content: center; }

/* --- Arayan kartı --- */
.callcard {
  position: relative;
  width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.callcard-pulse {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: callPulse 1.8s ease-out infinite;
}
@keyframes callPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}
.callcard-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  display: grid;
  place-items: center;
}
.callcard-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 2px;
}
.callcard-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.callcard-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.callcard-actions { display: flex; justify-content: center; gap: 22px; }
.callcard-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 700;
}
.callcard-btn--decline { background: var(--red-soft); color: var(--red); }
.callcard-btn--accept { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(18, 161, 80, 0.35); }

/* --- Panel kartları (kanban, harita, rapor) --- */
.glass-panel {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.mini-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mini-col {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.mini-col p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mini-card {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.mini-card--hot {
  border-color: var(--primary-tint);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.mini-detail {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-3);
}
.mini-row strong { color: var(--navy); font-weight: 700; }

.glass-panel--map { padding: 14px; }
.stopmap-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background:
    linear-gradient(rgba(16, 37, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 78, 0.05) 1px, transparent 1px),
    var(--bg-soft);
  background-size: 26px 26px, 26px 26px, auto;
  margin-bottom: 12px;
}

.mini-btn {
  display: block;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 18px;
  border-radius: 10px;
  margin: 0 auto;
}
.mini-btn--full { width: 100%; margin-top: 12px; }

/* --- Telefon çerçevesi --- */
.phone-frame {
  position: relative;
  width: 250px;
  background: var(--navy);
  border-radius: 38px;
  padding: 11px;
  box-shadow: var(--shadow-xl);
}
.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 20px;
  background: var(--navy);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  background: #f8fafc;
  border-radius: 28px;
  padding: 38px 14px 18px;
  min-height: 340px;
}
.offline-banner {
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  padding: 7px 10px;
  border-radius: 9px;
  margin-bottom: 14px;
}
.phone-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 10px;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.phone-row span:nth-child(2) { flex: 1; }
.phone-row--active {
  border-color: var(--primary-tint);
  box-shadow: 0 0 0 3px var(--primary-light);
  color: var(--navy);
}
.phone-row--muted { opacity: 0.55; }
.phone-check { color: var(--green); font-weight: 800; }
.phone-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  animation: liveDot 1.6s ease-in-out infinite;
}

/* --- Rapor çubukları --- */
.report-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 130px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.report-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--sky), var(--primary));
  border-radius: 7px 7px 3px 3px;
  min-height: 12px;
}

/* ============ Özellik kartları ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  border-color: var(--primary-tint);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  font-size: 20px;
  margin-bottom: 14px;
}
.card h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 8px;
}
.card p { margin: 0; font-size: 14px; color: var(--ink-2); }

.card--soon { border-style: dashed; background: var(--bg-soft); }
.card--soon .card-icon { background: var(--amber-soft); }
.card-soon-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============ Web / Mobil ayrımı ============ */
.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.split-card {
  border-radius: 20px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  background: #fff;
}
.split-card:first-child {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
}
.split-card:first-child h3 { color: #fff; }
.split-card:first-child p { color: rgba(255, 255, 255, 0.78); }
.split-card:first-child .split-card-label { color: var(--amber); }
.split-card-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 12px;
}
.split-card h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
}
.split-card p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ============ Uygulama / mağazalar ============ */
.app-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.app-copy .section-title { margin-bottom: 16px; }
.app-body { margin: 0 0 26px; font-size: 17px; max-width: 46ch; }
.app-visual { display: flex; justify-content: center; }

.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.store-badge:hover { background: var(--navy-soft); }
.store-badge:active { transform: translateY(1px); }
.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
}
.store-badge-text small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.store-note {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ============ CTA bandı ============ */
.cta-band {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--primary-dark) 100%);
  padding: 88px 0;
}
/* Logodaki kilim bordürü — imza şerit */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--kilim) repeat-x;
  background-size: 24px 10px;
}
.cta-inner { text-align: center; }
.cta-title {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  color: #fff;
  margin: 0 0 14px;
}
.cta-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin: 0 0 30px;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-band .btn-primary:hover { background: var(--primary-light); }

/* ============ Footer ============ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.brand--footer .brand-name { font-size: 16px; }
.footer-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; }
.footer-links a { color: var(--ink-2); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { margin: 0; font-size: 13px; color: var(--ink-3); }

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

/* ============ Görünme animasyonu ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-draw, .pin-van, .live-dot, .phone-pulse,
  .heromap-chip, .callcard-pulse { animation: none; }
}

/* ============ Duyarlılık ============ */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-links { display: none; }

  .hero { padding: 52px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .heromap-chip--call { left: 8px; }
  .heromap-chip--sync { right: 8px; }

  .stop {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 64px;
    align-items: start;
  }

  .app-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 36px; }

  /* Uzun buton metinleri (ör. telefon numaralı CTA) taşmasın */
  .btn { white-space: normal; text-align: center; }

  .trustbar { font-size: 12px; }
  .trustbar-inner { gap: 8px 18px; }

  .hero .eyebrow { font-size: 11px; letter-spacing: 0.1em; }

  /* Dar ekranda nav sıkışmasın */
  .nav-inner, .section-inner, .hero-inner, .footer-inner, .trustbar-inner { padding-left: 16px; padding-right: 16px; }
  .brand-name { font-size: 16px; }
  .nav-cta { padding: 9px 13px; font-size: 13px; }
  .lang-btn { padding: 7px 9px; }

  .hero-stats { flex-wrap: wrap; gap: 16px 0; }
  .hero-stat { padding: 0 20px; }
  .hero-stat:first-child { padding-left: 0; }

  .cards { grid-template-columns: 1fr; }
  .split-cards { grid-template-columns: 1fr; }

  .day::before { left: 15px; }
  .stop { padding-left: 52px; }
  .stop-pin { left: 5px; }

  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
}
