/* ==========================================================================
   KALKIŞ TARİFESİ — script4 tasarım sistemi
   Konsept: Havalimanı/istasyon kalkış panosu + biniş kartı (boarding pass).
   Araç kiralama = "kalkışa hazır" metaforu üzerinden kurgulanmıştır.
   ========================================================================== */

:root {
  /* --- Renk jetonları --- */
  --asphalt: #1a1d22;
  --asphalt-2: #24272e;
  --asphalt-line: rgba(243, 241, 234, 0.14);
  --concrete: #ded9d0;
  --concrete-2: #cfc9be;
  --paper: #f6f4ef;
  --paper-card: #fffdfa;
  --ink: #1a1d22;
  --ink-soft: #5b584f;
  --paper-soft: rgba(246, 244, 239, 0.68);
  --line: rgba(26, 29, 34, 0.14);
  --amber: #ffb020;
  --amber-dark: #d99510;
  --route: #3654ff;
  --route-dark: #2740cc;
  --green: #1f9d57;
  --green-bg: rgba(31, 157, 87, 0.12);

  /* --- Tipografi --- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.4rem, 5.6vw, 4.6rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 2.8vw, 2.15rem);
  --fs-h3: 1.2rem;
  --fs-eyebrow: 0.78rem;

  --radius-card: 4px;
  --shadow-card: 0 18px 40px -18px rgba(26, 29, 34, 0.28);
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--route);
  outline-offset: 2px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: var(--fs-h2);
  margin: 10px 0 12px;
}

.section-lede {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section {
  padding: 84px 0;
}

.section--tight { padding: 56px 0; }

.section--dark {
  background: var(--asphalt);
  color: var(--paper);
}

.section--dark .section-lede { color: var(--paper-soft); }
.section--dark .eyebrow { color: var(--amber); }

/* --- Butonlar --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber {
  background: var(--amber);
  color: var(--asphalt);
  box-shadow: 0 10px 24px -8px rgba(255, 176, 32, 0.55);
}
.btn--amber:hover { background: var(--amber-dark); }

.btn--outline {
  border-color: currentColor;
  background: transparent;
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn--outline-ink {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline-ink:hover { background: rgba(26, 29, 34, 0.06); }

.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: #000; }

.btn--sm { padding: 10px 16px; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--asphalt);
  border-bottom: 1px solid var(--asphalt-line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-dot { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--paper-soft);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--amber);
  transition: right 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--paper); }
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }

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

.nav-phone {
  font-family: var(--font-mono);
  color: var(--paper);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--paper); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--asphalt-2);
  border-top: 1px solid var(--asphalt-line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 24px;
  color: var(--paper-soft);
  border-bottom: 1px solid var(--asphalt-line);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-wp { display: none; }
  .nav-burger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  background: var(--asphalt);
  color: var(--paper);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* yol çizgisi dokusu */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 34px, transparent 34px 64px);
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  margin: 18px 0 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-copy {
  color: var(--paper-soft);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--paper-soft);
}

.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* --- Kalkış Panosu (split-flap board) --- */

.board {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--asphalt-line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.board-head .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 6px; box-shadow: 0 0 0 3px var(--green-bg); }

.board-cols {
  display: grid;
  grid-template-columns: 2.1fr 1.2fr 0.9fr 1.1fr;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-soft);
  opacity: 0.6;
}

.board-body { padding: 0 10px 10px; }

.board-row {
  display: grid;
  grid-template-columns: 2.1fr 1.2fr 0.9fr 1.1fr;
  align-items: center;
  padding: 12px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  transform-origin: top;
  animation: flapIn 0.6s var(--ease) both;
}

.board-row:hover { background: rgba(255, 255, 255, 0.04); }

.board-cell--name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--paper);
  text-transform: none;
}
.board-cell--cat { font-size: 0.72rem; color: var(--paper-soft); text-transform: uppercase; }
.board-cell--price { font-size: 0.88rem; color: var(--amber); font-weight: 600; }
.board-cell--status {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}
.board-cell--status::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

.board-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--asphalt-line);
  text-align: center;
}
.board-foot a { color: var(--route); font-family: var(--font-mono); font-size: 0.82rem; }
.board-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }

@keyframes flapIn {
  from { opacity: 0; transform: rotateX(-90deg); }
  to { opacity: 1; transform: rotateX(0deg); }
}

.board-row:nth-child(1) { animation-delay: 0.05s; }
.board-row:nth-child(2) { animation-delay: 0.15s; }
.board-row:nth-child(3) { animation-delay: 0.25s; }
.board-row:nth-child(4) { animation-delay: 0.35s; }
.board-row:nth-child(5) { animation-delay: 0.45s; }
.board-row:nth-child(6) { animation-delay: 0.55s; }

@media (max-width: 560px) {
  .board-cols { display: none; }
  .board-row { grid-template-columns: 1fr auto; row-gap: 4px; }
  .board-cell--cat { grid-column: 1; order: 2; }
  .board-cell--price { grid-column: 2; order: 1; justify-self: end; }
  .board-cell--status { grid-column: 2; order: 3; }
}

/* ==========================================================================
   GATE FİLTRELERİ
   ========================================================================== */

.gates {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.gate {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper-card);
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}

.gate:hover { border-color: var(--ink); color: var(--ink); }

.gate.is-active {
  background: var(--asphalt);
  border-color: var(--asphalt);
  color: var(--paper);
}

/* ==========================================================================
   FİLO — biniş kartı (boarding pass) tasarımlı araç kartları
   ========================================================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fleet-grid { grid-template-columns: 1fr; } }

.ticket {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  display: flex;
  flex-direction: column;
}

.ticket:hover { transform: translateY(-6px); }

.ticket-media {
  aspect-ratio: 16/10;
  background: var(--concrete);
  overflow: hidden;
  position: relative;
}
.ticket-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ticket:hover .ticket-media img { transform: scale(1.06); }

.ticket-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--asphalt);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

.ticket-main { padding: 18px 20px 16px; flex: 1; }

.ticket-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.ticket-rating { color: var(--amber-dark); }

.ticket-name { font-size: 1.15rem; margin-bottom: 8px; }

.ticket-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.ticket-specs li { display: flex; align-items: center; gap: 6px; }
.ticket-specs li:not(:last-child)::after { content: '·'; margin-left: 10px; color: var(--line); }

.ticket-perf {
  position: relative;
  height: 0;
  border-top: 2px dashed var(--line);
  margin: 0 0;
}
.ticket-perf::before, .ticket-perf::after {
  content: '';
  position: absolute;
  top: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--concrete);
}
.ticket-perf::before { left: -9px; }
.ticket-perf::after { right: -9px; }

.ticket-stub {
  padding: 16px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 7px) bottom / 100% 3px no-repeat, var(--paper-card);
}

.ticket-fare { font-family: var(--font-mono); }
.ticket-fare span { font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.ticket-fare small { color: var(--ink-soft); font-size: 0.75rem; }

.ticket-actions { display: flex; gap: 8px; }

.ticket-actions .btn {
  padding: 10px 14px;
  font-size: 0.78rem;
}

/* ==========================================================================
   GÖSTERGE (GAUGE) İSTATİSTİKLERİ
   ========================================================================== */

.gauges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 860px) { .gauges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gauges { grid-template-columns: 1fr; } }

.gauge-card { text-align: center; }

.gauge { position: relative; width: 128px; height: 128px; margin: 0 auto 16px; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-track { fill: none; stroke: var(--asphalt-line); stroke-width: 8; }
.gauge-fill {
  fill: none;
  stroke: var(--amber);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 1.5s var(--ease);
}
.gauge-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.gauge-label strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--paper); }
.gauge-label span { font-size: 0.65rem; color: var(--paper-soft); }

.gauge-caption { font-size: 0.92rem; color: var(--paper-soft); max-width: 180px; margin: 0 auto; }

/* ==========================================================================
   YOLCU YORUMLARI (testimonials)
   ========================================================================== */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }

.review-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
}

.review-stars { color: var(--amber-dark); font-family: var(--font-mono); letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 0.98rem; margin-bottom: 16px; }
.review-who { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); display: flex; justify-content: space-between; }

/* ==========================================================================
   SON ÇAĞRI (final CTA)
   ========================================================================== */

.final-cta {
  background: var(--asphalt);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.final-cta h2 { font-size: var(--fs-h1); margin-bottom: 14px; }
.final-cta p { color: var(--paper-soft); max-width: 480px; margin: 0 auto 32px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER — plaka şeridi
   ========================================================================== */

.plate-strip {
  height: 8px;
  background: linear-gradient(90deg, var(--route) 0 26px, var(--amber) 26px 100%);
}

.footer {
  background: var(--asphalt-2);
  color: var(--paper-soft);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--paper); margin-bottom: 10px; }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); margin-bottom: 14px; }
.footer ul li { margin-bottom: 9px; font-size: 0.9rem; }
.footer a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--asphalt-line);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   ORTAK: içerik sayfaları (hakkımızda / iletişim / yasal)
   ========================================================================== */

.page-hero {
  background: var(--asphalt);
  color: var(--paper);
  padding: 56px 0 44px;
}
.page-hero h1 { font-size: var(--fs-h1); margin-top: 12px; }
.page-hero p { color: var(--paper-soft); max-width: 560px; margin-top: 10px; }

.content-block {
  max-width: 760px;
}
.content-block p { margin-bottom: 16px; color: var(--ink-soft); }
.content-block h2 { font-size: 1.3rem; margin: 30px 0 12px; }
.content-block h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.content-block ul { margin: 0 0 16px 0; }
.content-block ul li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--ink-soft); }
.content-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber-dark); }

.info-table { width: 100%; border-collapse: collapse; margin: 20px 0 30px; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { text-align: left; padding: 12px 0; font-size: 0.92rem; }
.info-table th { color: var(--ink-soft); font-weight: 500; width: 220px; }

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
}
@media (max-width: 760px) { .info-cards { grid-template-columns: 1fr; } }

.info-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
}
.info-card .eyebrow { color: var(--amber-dark); margin-bottom: 10px; }
.info-card a:not(.btn) { color: var(--route); }
.info-card a:hover { text-decoration: underline; }

details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--paper-card);
}
details.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber-dark);
  transition: transform 0.2s var(--ease);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin-top: 12px; color: var(--ink-soft); }

.placeholder-note {
  background: var(--concrete);
  border-left: 3px solid var(--amber);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

/* ==========================================================================
   YÜZEN CTA (mobil sabit çubuk + masaüstü fab butonlar)
   ========================================================================== */

.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--asphalt);
  border-top: 1px solid var(--asphalt-line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
}
.sticky-mobile .btn { flex: 1; }

@media (max-width: 760px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 64px; }
}

.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: bottom 0.3s var(--ease);
}
@media (max-width: 760px) { .fab-stack { display: none; } }

/* Çerez banner açıkken kalkış çubuğunun altında kalmasın diye yukarı kayar */
body:has(#cookieBanner.show) .fab-stack { bottom: 150px; }

.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 1.3rem;
  box-shadow: 0 10px 24px -6px rgba(26,29,34,0.4);
  transition: transform 0.2s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); }
.fab--wa { background: #25d366; }
.fab--phone { background: var(--route); }

/* ==========================================================================
   ÇEREZ BANNER (paylaşılan partial ile uyumlu override)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 10px; left: 10px; right: 10px;
  max-width: 320px;
  margin: 0 auto;
  background: var(--asphalt);
  color: var(--paper);
  border: 1px solid var(--asphalt-line);
  border-radius: 6px;
  padding: 8px 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 100000;
  font-size: 10px;
  line-height: 1.3;
  box-shadow: var(--shadow-card);
  transition: bottom 0.3s var(--ease);
}
.cookie-banner.show { display: flex; }

.cookie-text a { color: var(--amber); }
.cookie-buttons { display: flex; gap: 6px; }
.cookie-btn {
  padding: 4px 9px;
  font-size: 0.62rem;
  border: 1px solid var(--asphalt-line);
  background: transparent;
  color: var(--paper);
  border-radius: 3px;
  font-family: var(--font-mono);
}
.cookie-accept { background: var(--amber); color: var(--asphalt); border-color: var(--amber); font-weight: 600; }

/* Mobilde sabit alt çubuğun (Ara / WhatsApp) üstünde kalmasın diye yukarı kayar */
@media (max-width: 760px) {
  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    max-width: 250px;
    padding: 8px 10px;
    gap: 5px;
    font-size: 10.5px;
    line-height: 1.3;
  }
  .cookie-buttons { gap: 5px; }
  .cookie-btn { padding: 4px 10px; font-size: 0.68rem; }
}
@media (min-width: 640px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .board-row { animation: none; opacity: 1; transform: none; }
  .ticket, .btn, .fab, .gate { transition: none; }
  .gauge-fill { transition: none; }
}
