/* ========== BEEBUS – Tüm uygulama stilleri (app-static/css/app.css) ========== */

/* ---------- Renk paleti & tema değişkenleri ---------- */
:root {
  --beeup-orange: #F69011;
  --beeup-orange-700: #D9790A;
  --beeup-navy: #08284F;
  --beeup-navy-900: #061E3A;
  --beeup-cyan: #0BAEE1;
  --beeup-cyan-200: #AEEAF7;
}

[data-theme="light"],
:root:not([data-theme="dark"]) {
  --bg: #F8FAFC;
  --bg-elevated: #fff;
  --bg-section: #EFF6FF;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #E2E8F0;
  --accent: var(--beeup-orange);
  --accent-hover: var(--beeup-orange-700);
  --accent-soft: rgba(246, 144, 17, 0.12);
  --highlight: var(--beeup-cyan);
  --highlight-soft: rgba(11, 174, 225, 0.12);
  --navy-soft: rgba(8, 40, 79, 0.06);
  --glow: rgba(246, 144, 17, 0.25);

  /* Backward-compatible alias'lar — eski template'ler bu isimlerle çalışıyor.
     Yeni kod doğrudan --bg / --bg-elevated kullanmalı. */
  --card-bg: var(--bg-elevated);
  --panel-bg: var(--beeup-navy);
  --color-bg-base: var(--bg);
  --color-bg-elevated: var(--bg-elevated);
  --color-bg-card: var(--bg-elevated);
  --color-border: var(--border);
  --color-text-primary: var(--text);
  --color-text-muted: var(--text-muted);
  --color-accent-primary: var(--accent);
  --color-accent-secondary: var(--beeup-navy);
}

[data-theme="dark"] {
  --bg: var(--beeup-navy-900);
  --bg-elevated: var(--beeup-navy);
  --bg-section: #08284F;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --accent: var(--beeup-orange);
  --accent-hover: var(--beeup-orange-700);
  --accent-soft: rgba(246, 144, 17, 0.15);
  --highlight: var(--beeup-cyan);
  --highlight-soft: rgba(11, 174, 225, 0.15);
  --navy-soft: rgba(255, 255, 255, 0.03);
  --glow: rgba(246, 144, 17, 0.35);

  --card-bg: var(--bg-elevated);
  --panel-bg: var(--beeup-navy-900);
  --color-bg-base: var(--bg);
  --color-bg-elevated: var(--bg-elevated);
  --color-bg-card: var(--bg-elevated);
  --color-border: var(--border);
  --color-text-primary: var(--text);
  --color-text-muted: var(--text-muted);
  --color-accent-primary: var(--accent);
  --color-accent-secondary: var(--beeup-cyan);
}

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.25s ease, color 0.25s ease;
}

body.app-pages {
  padding: 1.5rem;
}

body.app-form-page {
  padding: 2rem 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: 56rem;
  margin: 0 auto;
}

.container--narrow {
  max-width: 32rem;
}

.container--form {
  max-width: 28rem;
}

/* ---------- Nav (panel sayfaları) ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.nav--fixed.is-scrolled {
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -12px rgba(8, 40, 79, 0.15);
}

[data-theme="dark"] .nav--fixed.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.6);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav--fixed .nav-logo {
  font-size: 1.35rem;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---------- Butonlar ---------- */
.btn-theme {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.btn-theme:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.nav--fixed .btn {
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  margin-right: 0.5rem;
}

.nav--fixed .btn-outline {
  border-width: 2px;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Kartlar ---------- */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card--form {
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-row-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .form-row-grid {
    grid-template-columns: 1fr;
  }
}

/* Lokasyon formu: adres + ülke–mahalle; marker sonrası eksikse gösterilir */
.location-form-manual-fields[hidden] {
  display: none !important;
}
.location-form-manual-fields:not([hidden]) {
  padding-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.card--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem;
}

.vehicle-row-media {
  width: 250px;
  height: 175px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2, rgba(0, 0, 0, 0.04));
}
.vehicle-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-row-img--default {
  object-fit: contain;
  padding: 12px;
}
.vehicle-row-body {
  flex: 1;
  min-width: 0;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--glow);
}

.card h1,
.card h2,
.card h3 {
  color: var(--text);
}

.card h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card--row h2 {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.card .meta,
.meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}

/* ---------- Sayfa başlıkları ---------- */
.page-header {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.page-subtitle {
  margin: 0 0 1.5rem;
}

/* ---------- Dashboard ---------- */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px var(--glow);
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dashboard-actions {
  margin-bottom: 2rem;
}

.cards--dashboard {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card--action {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
}

.card--action:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--glow);
}

.card--action .card-icon {
  margin-bottom: 1rem;
}

.card--action h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.card--action .meta {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.card--action:hover .card-cta {
  text-decoration: underline;
}

/* ---------- Üyeler listesi ---------- */
.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card--member {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.member-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.member-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.member-name {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.member-email {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--admin {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge--member {
  background: var(--highlight-soft);
  color: var(--highlight);
}

.badge--viewer {
  background: var(--navy-soft);
  color: var(--text-muted);
}

.member-role-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.form-control--inline {
  width: auto;
  min-width: 140px;
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
}

.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
}

/* ---------- Boş durum (empty state) ---------- */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.empty-state-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.empty-state-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.empty-state-text {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Form sayfası (complete profile) ---------- */
.form-page-logo {
  display: inline-block;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.form-page-logo span {
  color: var(--accent);
}

.form-page-logo:hover {
  color: var(--accent);
}

.card-icon--form {
  margin-bottom: 1rem;
}

.card-sub,
.card .sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.form-page-back {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-page-back a {
  color: var(--text-muted);
  text-decoration: none;
}

.form-page-back a:hover {
  color: var(--accent);
}

.form-help {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

/* ---------- Formlar ---------- */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--bg-elevated);
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check--vertical {
  align-items: flex-start;
  margin: 1rem 0;
}

.form-check--vertical input {
  margin-top: 0.25rem;
}

/* ---------- Switch (On/Off) ---------- */
.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  user-select: none;
  cursor: pointer;
}

.switch--row-end {
  flex-shrink: 0;
  align-items: center;
}

.switch-track-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 52px;
  height: 32px;
  vertical-align: middle;
}

.switch-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  pointer-events: none;
}

.switch-thumb {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--bg-elevated);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  transition: left 0.2s, background 0.2s;
  pointer-events: none;
}

.switch-input:checked + .switch-track {
  background: var(--accent);
  border-color: transparent;
}

.switch-input:checked + .switch-track .switch-thumb {
  left: 23px;
}

.switch-input:focus-visible + .switch-track {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.switch-label {
  font-size: 0.95rem;
  color: var(--text);
}

.switch-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form satırı: başlık + açıklama solda, switch sağda */
.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--navy-soft);
}

.switch-row-text {
  flex: 1;
  min-width: 0;
}

.switch-row-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.35;
}

.switch-row-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.switch-state-pill {
  flex-shrink: 0;
  min-width: 3.25rem;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: background 0.2s, color 0.2s;
}

.switch-state-pill.is-on {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.switch-state-pill.is-off {
  background: rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
}

[data-theme="dark"] .switch-state-pill.is-off {
  background: rgba(148, 163, 184, 0.12);
}

@media (max-width: 520px) {
  .switch-row {
    flex-direction: column;
    align-items: stretch;
  }

  .switch.switch--row-end {
    justify-content: flex-end;
  }
}

.errorlist {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #dc2626;
}

button.btn-primary,
.btn-primary[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  margin-top: 0.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

button.btn-primary.full-width,
.btn-primary.full-width {
  width: 100%;
  display: block;
}

/* ---------- Mesajlar ---------- */
.messages {
  margin-bottom: 1rem;
}

.message {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.message.info {
  background: #EFF6FF;
  color: #1E40AF;
}

.message.success {
  background: #ECFDF5;
  color: #047857;
}

.message.error {
  background: #FEF2F2;
  color: #dc2626;
}

.message.warning {
  background: #FFFBEB;
  color: #B45309;
}

[data-theme="dark"] .message.info {
  background: rgba(11, 174, 225, 0.15);
  color: var(--beeup-cyan-200);
}

[data-theme="dark"] .message.success {
  background: rgba(4, 120, 87, 0.25);
  color: #6EE7B7;
}

[data-theme="dark"] .message.error {
  background: rgba(220, 38, 38, 0.2);
  color: #FCA5A5;
}

[data-theme="dark"] .message.warning {
  background: rgba(246, 144, 17, 0.2);
  color: #FCD34D;
}

/* ---------- Boş durum ---------- */
.empty {
  color: var(--text-muted);
  padding: 2rem;
  text-align: center;
}

/* ---------- Tablo ---------- */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

form.run-assign {
  display: inline;
}

/* ---------- QR bölümü & fiyat kutusu ---------- */
.qr-section {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.qr-section img {
  border: 1px solid var(--border);
  border-radius: 8px;
}

.qr-section .url {
  font-size: 0.85rem;
  word-break: break-all;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.price-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  font-weight: 600;
}

.price-box.loading {
  color: var(--text-muted);
}

#price-box[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  min-height: 0 !important;
}

.form-label-like {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text, #1a1a1a);
}

.phone-inline-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 0.75rem;
  align-items: end;
}

.register-map-trigger-wrap .register-map-open-btn {
  width: 100%;
  max-width: 20rem;
}

.register-map-use-my-location {
  margin-bottom: 0.75rem;
}

@media (max-width: 640px) {
  .phone-inline-row {
    grid-template-columns: 1fr;
  }
}

.register-map-modal[hidden] {
  display: none !important;
}

.register-map-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.register-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.register-map-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  max-height: min(90vh, 640px);
  display: flex;
  flex-direction: column;
  background: var(--surface, #fff);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.register-map-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.register-map-modal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.register-map-modal__icon-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted, #666);
}

.register-map-modal__icon-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.register-map-modal__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1rem;
}

.register-map-modal__hint {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted, #666);
  margin-bottom: 0.5rem;
}

.register-map-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.register-map-modal-open {
  overflow: hidden;
}

.register-map-block--modal .register-map-predictions {
  z-index: 20;
}

.register-map-block .register-map-search-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}

.register-map-block .register-map-search {
  display: block;
  width: 100%;
  min-height: 4.5rem;
  resize: vertical;
  line-height: 1.45;
}

.register-map-predictions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  max-height: 14rem;
  overflow-y: auto;
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.register-map-predictions li {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.35;
}

.register-map-predictions li:hover,
.register-map-predictions li:focus {
  background: var(--accent-soft, rgba(0, 0, 0, 0.04));
}

.register-loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.register-loading-overlay.is-visible {
  display: flex;
}

.register-loading-box {
  width: min(92vw, 420px);
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.register-loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(0, 0, 0, 0.14);
  border-top-color: var(--accent, #2f80ed);
  border-radius: 50%;
  animation: beebus-spin 0.8s linear infinite;
}

.register-loading-text {
  margin: 0;
  font-weight: 600;
}

@keyframes beebus-spin {
  to { transform: rotate(360deg); }
}

.register-map-block .register-map {
  position: relative;
  width: 100%;
  height: 280px;
  min-height: 260px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
}

.register-address-manual .form-control:disabled,
.register-address-manual textarea:read-only {
  opacity: 0.72;
  cursor: default;
  background: rgba(0, 0, 0, 0.03);
}

.register-address-manual .form-control:not(:disabled):not([readonly]),
.register-address-manual textarea:not([readonly]) {
  opacity: 1;
}

.register-address-manual[hidden] {
  display: none !important;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent, #2563eb);
  text-decoration: underline;
  cursor: pointer;
}

.btn-link:hover {
  opacity: 0.9;
}

.mt-0-75 {
  margin-top: 0.75rem;
}

.mb-0-75 {
  margin-bottom: 0.75rem;
}

/* ========== LANDING SAYFASI – Tanıtım Sayfası ========== */

/* ---------- Genel landing düzeni ---------- */
.landing-body {
  overflow-x: hidden;
  background: var(--bg);
}

.landing-section {
  padding: 6rem 1.5rem;
  position: relative;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--highlight-soft);
  color: var(--highlight);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(11, 174, 225, 0.25);
}

.landing-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 4px rgba(11, 174, 225, 0.18);
  animation: beebus-pulse 1.8s ease-in-out infinite;
}

.landing-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1rem 0 0.75rem;
  color: var(--text);
}

.landing-section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin: 0 0 3rem;
}

.landing-section-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 44rem;
}

.landing-section-head .landing-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--beeup-orange) 0%, #ffb04a 50%, var(--beeup-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Hero: split layout ---------- */
.hero {
  position: relative;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy {
  text-align: left;
  max-width: 36rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(246, 144, 17, 0.25);
  animation: beebus-fade-up 0.8s ease-out;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: -0.035em;
  animation: beebus-fade-up 0.9s ease-out 0.1s both;
}

.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.32em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.hero p.hero-lede {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 32rem;
  animation: beebus-fade-up 0.9s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
  animation: beebus-fade-up 0.9s ease-out 0.3s both;
}

.hero-cta .btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  border-radius: 12px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--beeup-orange) 0%, #ffa340 100%);
  color: #fff;
  box-shadow: 0 10px 30px -8px var(--glow);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -8px var(--glow);
  color: #fff;
}

.btn-cta:hover::before {
  transform: translateX(100%);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
  margin-left: 0.4rem;
  transition: transform 0.25s ease;
}

.btn-cta:hover svg {
  transform: translateX(3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  animation: beebus-fade-up 0.9s ease-out 0.4s both;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-navy));
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}

.hero-trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #f69011, #ffb04a); }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #0baee1, #6cd3ec); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #08284f, #1a4a85); }
.hero-trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #f69011, #08284f); }

.hero-trust-stars {
  color: #f6c511;
  letter-spacing: 0.1em;
}

/* ---------- Hero: animasyonlu illüstrasyon ---------- */
.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
  animation: beebus-fade-up 1.1s ease-out 0.3s both;
}

.hero-visual-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-card {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(8, 40, 79, 0.25),
              0 14px 28px -14px rgba(8, 40, 79, 0.18);
  overflow: hidden;
}

[data-theme="dark"] .hero-card {
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6),
              0 14px 28px -14px rgba(0, 0, 0, 0.4);
}

/* Ana dashboard kartı */
.hero-card-main {
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateZ(0);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-card-title .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
  animation: beebus-pulse 1.6s ease-in-out infinite;
}

.hero-card-tabs {
  display: flex;
  gap: 0.35rem;
}

.hero-card-tab {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.hero-card-tab:nth-child(1) { background: #ff5f57; }
.hero-card-tab:nth-child(2) { background: #ffbd2e; }
.hero-card-tab:nth-child(3) { background: #27c93f; }

/* Mini istatistik satırı */
.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.hero-mini-stat {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
}

.hero-mini-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-mini-stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.hero-mini-stat-value .up {
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 700;
  margin-left: 0.3rem;
}

/* Harita alanı */
.hero-card-map {
  flex: 1;
  background: var(--bg-section);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.hero-map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-map-route path.hero-route-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6 6;
  filter: drop-shadow(0 2px 6px var(--glow));
  animation: beebus-dash 14s linear infinite;
}

.hero-map-route path.route-cyan {
  fill: none;
  stroke: var(--highlight);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6 6;
  filter: drop-shadow(0 2px 6px rgba(11, 174, 225, 0.4));
  animation: beebus-dash 18s linear infinite reverse;
}

.hero-map-bus-motion {
  color: var(--accent);
}

.hero-map-bus-disk {
  fill: var(--bg-elevated);
  stroke: currentColor;
  stroke-width: 2;
  filter: drop-shadow(0 4px 10px var(--glow));
}

.hero-map-bus-shape {
  color: inherit;
}

.hero-map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-elevated);
  box-shadow: 0 0 0 0 rgba(246, 144, 17, 0.6);
  animation: beebus-ping 2s ease-out infinite;
  z-index: 2;
}

.hero-map-pin.cyan {
  background: var(--highlight);
  box-shadow: 0 0 0 0 rgba(11, 174, 225, 0.6);
  animation-delay: 0.7s;
}

.hero-map-pin.navy {
  background: var(--beeup-navy);
  box-shadow: 0 0 0 0 rgba(8, 40, 79, 0.5);
  animation-delay: 1.3s;
}

[data-theme="dark"] .hero-map-pin.navy {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

/* Yan kart: live activity */
.hero-card-side {
  position: absolute;
  width: 230px;
  padding: 1rem 1.1rem;
  right: -36px;
  bottom: 28px;
  z-index: 3;
  animation: beebus-float 4.5s ease-in-out infinite;
}

.hero-card-side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-activity {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-activity-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text);
}

.hero-activity-row .ico {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hero-activity-row .ico.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.hero-activity-row .ico.orange { background: var(--accent-soft); color: var(--accent); }
.hero-activity-row .ico.cyan { background: var(--highlight-soft); color: var(--highlight); }

.hero-activity-row .label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-activity-row .time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Yüzen bee/badge */
.hero-card-bee {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--beeup-orange) 0%, #ffb04a 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -8px var(--glow);
  z-index: 4;
  animation: beebus-float 5s ease-in-out infinite reverse;
}

.hero-card-bee svg {
  width: 44px;
  height: 44px;
  color: #fff;
}

.hero-card-bee .ring {
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(246, 144, 17, 0.55);
  border-radius: 50%;
  animation: beebus-rotate 16s linear infinite;
}

/* ---------- Hero arka plan dekorları ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: beebus-float 10s ease-in-out infinite;
}

[data-theme="dark"] .hero-bg-orb {
  opacity: 0.4;
}

.hero-bg-orb.orange {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--beeup-orange) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-bg-orb.cyan {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--beeup-cyan) 0%, transparent 70%);
  bottom: -120px;
  left: -100px;
  animation-delay: -3s;
}

.hero-bg-orb.navy {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--beeup-navy) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -6s;
  opacity: 0.18;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
}

/* ---------- Logo / güven şeridi ---------- */
.trust-strip {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.trust-logos {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
  filter: grayscale(0.5);
}

.trust-logo:hover {
  opacity: 1;
  color: var(--text);
  filter: grayscale(0);
  transform: translateY(-2px);
}

.trust-logo svg {
  width: 22px;
  height: 22px;
}

/* ---------- Stats / sayaç şeridi ---------- */
.stats-strip {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--beeup-navy) 0%, #0d3568 50%, var(--beeup-navy-900) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(246, 144, 17, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(11, 174, 225, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffb04a 0%, var(--beeup-orange) 50%, var(--beeup-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 0.7em;
  color: var(--beeup-orange);
  -webkit-text-fill-color: var(--beeup-orange);
}

.stat-label {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- Özellik kartları ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(8, 40, 79, 0.15);
  border-color: var(--accent-soft);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--accent);
  color: #fff;
}

.feature-card:nth-child(2) .feature-icon { background: var(--highlight-soft); color: var(--highlight); }
.feature-card:nth-child(2):hover .feature-icon { background: var(--highlight); color: #fff; }
.feature-card:nth-child(3) .feature-icon { background: rgba(8, 40, 79, 0.1); color: var(--beeup-navy); }
.feature-card:nth-child(3):hover .feature-icon { background: var(--beeup-navy); color: #fff; }
.feature-card:nth-child(5) .feature-icon { background: var(--highlight-soft); color: var(--highlight); }
.feature-card:nth-child(5):hover .feature-icon { background: var(--highlight); color: #fff; }
.feature-card:nth-child(6) .feature-icon { background: rgba(8, 40, 79, 0.1); color: var(--beeup-navy); }
.feature-card:nth-child(6):hover .feature-icon { background: var(--beeup-navy); color: #fff; }

[data-theme="dark"] .feature-card:nth-child(3) .feature-icon,
[data-theme="dark"] .feature-card:nth-child(6) .feature-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Showcase: ürün görselli geniş bölüm ---------- */
.showcase {
  padding: 6rem 1.5rem;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.showcase-grid.is-reverse {
  direction: rtl;
}

.showcase-grid.is-reverse > * {
  direction: ltr;
}

.showcase-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin: 1rem 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text);
}

.showcase-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-list .check svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* Showcase visual: Filo haritası */
.showcase-visual {
  position: relative;
  height: 460px;
}

.fleet-map {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(8, 40, 79, 0.18);
}

[data-theme="dark"] .fleet-map {
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}

.fleet-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}

.fleet-map svg.fleet-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fleet-map svg.fleet-roads path.fleet-road-base {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
  stroke: var(--border);
  opacity: 0.7;
}

.fleet-map svg.fleet-roads path.lane {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 4 8;
  stroke: var(--accent);
  opacity: 0.9;
  animation: beebus-dash 18s linear infinite;
}

.fleet-map svg.fleet-roads path.lane.cyan {
  stroke: var(--highlight);
  animation-direction: reverse;
  animation-duration: 22s;
}

.fleet-bus-motion {
  pointer-events: none;
  color: var(--accent);
}

.fleet-bus-motion.b2 {
  color: var(--highlight);
}

.fleet-bus-motion.b3 {
  color: var(--beeup-navy);
}

[data-theme="dark"] .fleet-bus-motion.b3 {
  color: #fff;
}

.fleet-bus-disk {
  fill: var(--bg-elevated);
  stroke: currentColor;
  stroke-width: 2;
  filter: drop-shadow(0 4px 10px rgba(8, 40, 79, 0.15));
}

[data-theme="dark"] .fleet-bus-disk {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.fleet-bus-motion.b1 .fleet-bus-disk {
  filter: drop-shadow(0 4px 10px var(--glow));
}

.fleet-bus-motion.b2 .fleet-bus-disk {
  filter: drop-shadow(0 4px 10px rgba(11, 174, 225, 0.35));
}

.fleet-pin {
  position: absolute;
  width: 38px;
  height: 50px;
  margin-left: -19px;
  margin-top: -50px;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(8, 40, 79, 0.18));
  animation: beebus-bounce 3s ease-in-out infinite;
}

.fleet-pin.p1 { top: 20%; left: 18%; animation-delay: 0s; }
.fleet-pin.p2 { top: 65%; left: 70%; animation-delay: -1s; }
.fleet-pin.p3 { top: 80%; left: 22%; animation-delay: -2s; }

.fleet-mini-card {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  font-size: 0.82rem;
  box-shadow: 0 10px 30px -10px rgba(8, 40, 79, 0.2);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: beebus-float 4s ease-in-out infinite;
}

[data-theme="dark"] .fleet-mini-card {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.fleet-mini-card.top-right {
  top: 18px;
  right: 18px;
}

.fleet-mini-card.bottom-left {
  bottom: 18px;
  left: 18px;
  animation-delay: -2s;
}

.fleet-mini-card .ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.fleet-mini-card .ico svg { width: 16px; height: 16px; }

.fleet-mini-card.bottom-left .ico { background: rgba(16, 185, 129, 0.15); color: #10b981; }

.fleet-mini-card .num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.fleet-mini-card .lbl {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Showcase visual: Sürücü mobil mockup */
.driver-phone {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 30px 60px -15px rgba(8, 40, 79, 0.4),
              inset 0 0 0 2px rgba(255,255,255,0.05);
  animation: beebus-float 6s ease-in-out infinite;
}

.driver-phone::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}

.driver-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.driver-phone-status {
  height: 44px;
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  padding: 0 1.25rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  justify-content: space-between;
}

.driver-phone-app {
  flex: 1;
  background: linear-gradient(180deg, var(--beeup-navy) 0%, var(--beeup-navy-900) 100%);
  padding: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
}

.driver-phone-greeting {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.driver-phone-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: -2px;
}

.driver-phone-route {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.driver-phone-route .row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
}

.driver-phone-route .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beeup-orange);
  flex-shrink: 0;
}

.driver-phone-route .dot.cyan { background: var(--beeup-cyan); }

.driver-phone-route .line {
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 4px;
  border-radius: 1px;
  margin-block: 4px;
}

.driver-phone-action {
  background: linear-gradient(135deg, var(--beeup-orange), #ffb04a);
  color: #fff;
  padding: 0.85rem;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px -6px var(--glow);
}

.driver-phone-stops {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.driver-phone-stop {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  font-size: 0.8rem;
}

.driver-phone-stop .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.driver-phone-stop.done .check {
  background: #10b981;
  border-color: #10b981;
}

.driver-phone-stop.done .label {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

.driver-phone-stop .label {
  flex: 1;
}

.driver-phone-stop .time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}

/* Showcase visual: Analytics chart */
.analytics-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  height: 460px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 30px 60px -20px rgba(8, 40, 79, 0.18);
}

[data-theme="dark"] .analytics-card {
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.analytics-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.analytics-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.analytics-trend {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.analytics-big {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.analytics-chart {
  flex: 1;
  position: relative;
}

.analytics-chart svg {
  width: 100%;
  height: 100%;
}

.analytics-chart .area {
  fill: url(#chartGradient);
  opacity: 0.9;
}

.analytics-chart .line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: beebus-draw 2.5s ease-out forwards;
}

.analytics-chart .point {
  fill: var(--bg-elevated);
  stroke: var(--accent);
  stroke-width: 2.5;
}

.analytics-chart .point.active {
  r: 6;
  filter: drop-shadow(0 0 8px var(--glow));
}

.analytics-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.analytics-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.analytics-legend-item .swatch {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
}

.analytics-legend-item .swatch.cyan { background: var(--highlight); }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.how-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(8, 40, 79, 0.15);
}

.how-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb04a);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -6px var(--glow);
  position: relative;
}

.how-step:nth-child(2) .how-step-num {
  background: linear-gradient(135deg, var(--highlight), #6cd3ec);
  box-shadow: 0 10px 24px -6px rgba(11, 174, 225, 0.4);
}

.how-step:nth-child(3) .how-step-num {
  background: linear-gradient(135deg, var(--beeup-navy), #1a4a85);
  box-shadow: 0 10px 24px -6px rgba(8, 40, 79, 0.4);
}

.how-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.how-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.how-step-icon {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 6px 14px -4px rgba(8, 40, 79, 0.15);
}

.how-step-icon svg { width: 18px; height: 18px; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -16px rgba(8, 40, 79, 0.18);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-soft);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f6c511;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.testimonial-quote {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb04a);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, var(--highlight), #6cd3ec); }
.testimonial:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, var(--beeup-navy), #1a4a85); }

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-elevated);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 24px -10px rgba(8, 40, 79, 0.12);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.cta-strip {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--beeup-navy) 0%, var(--beeup-navy-900) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(246, 144, 17, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(11, 174, 225, 0.22) 0%, transparent 45%);
  z-index: -1;
}

.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  z-index: -1;
}

.cta-strip-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 1rem 0 1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .landing-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-strip .landing-eyebrow::before {
  background: var(--beeup-orange);
  box-shadow: 0 0 0 4px rgba(246, 144, 17, 0.25);
}

.cta-strip-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cta-strip .btn-cta {
  background: linear-gradient(135deg, var(--beeup-orange) 0%, #ffb04a 100%);
}

.cta-strip .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-strip .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  padding: 4rem 1.5rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 22rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

.footer-socials a svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ---------- Animasyonlar ---------- */
@keyframes beebus-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes beebus-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.85; }
}

@keyframes beebus-ping {
  0% { box-shadow: 0 0 0 0 currentColor; }
  70% { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes beebus-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes beebus-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes beebus-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes beebus-dash {
  to { stroke-dashoffset: -200; }
}

@keyframes beebus-draw {
  to { stroke-dashoffset: 0; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .hero-card-bee,
  .hero-card-side,
  .hero-bg-orb,
  .driver-phone,
  .fleet-mini-card,
  .fleet-pin,
  .hero-map-route path,
  .fleet-map svg.fleet-roads path.lane,
  .hero-card-bee .ring,
  .hero-card-title .live-dot,
  .hero-map-pin,
  .landing-eyebrow::before {
    animation: none !important;
  }

  .hero-map-bus-motion,
  .fleet-bus-motion {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Mobil: hero illüstrasyonu gizle ---------- */
@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
}

/* ---------- Responsive: tablet ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .showcase-grid,
  .showcase-grid.is-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero p.hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: 480px;
    max-width: 540px;
    margin: 0 auto;
  }

  .features-grid,
  .how-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Responsive: mobil ---------- */
@media (max-width: 640px) {
  .landing-section {
    padding: 4rem 1.25rem;
  }

  .hero {
    padding: 7rem 1.25rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-card-side {
    width: 200px;
    right: -10px;
  }

  .hero-card-bee {
    width: 64px;
    height: 64px;
    top: -16px;
    left: -16px;
  }

  .hero-card-bee svg {
    width: 32px;
    height: 32px;
  }

  .features-grid,
  .how-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .driver-phone {
    transform: scale(0.85);
  }
}

/* ---------- Yardımcı (inline yerine class) ---------- */
.text-muted {
  color: var(--text-muted);
}

.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }

/* ========== YÖNETİM PANELİ (Admin-style layout) ========== */
.panel-body {
  display: flex;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

/* Sol sidebar */
.panel-sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 200;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-sidebar-header {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.panel-logo span {
  color: var(--accent);
}

.panel-sidebar-close {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
}

.panel-sidebar-close:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.panel-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
}

.panel-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0.75rem;
}

.panel-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.2rem;
}

.panel-nav-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.panel-nav-item.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.panel-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.9;
}

.panel-nav-item.is-active .panel-nav-icon {
  opacity: 1;
}

.panel-sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.panel-user-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-user-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.panel-sidebar-icon-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-left: auto;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.panel-sidebar-icon-btn:hover {
  color: var(--text);
  background: var(--surface-2);
}

.panel-sidebar-icon-btn.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

.panel-user-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-user-email {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Overlay (mobil) */
.panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.panel-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Ana içerik alanı */
.panel-main {
  flex: 1;
  min-width: 0;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Üst bar */
.panel-topbar {
  height: 56px;
  min-height: 56px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.panel-topbar-menu-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
}

.panel-topbar-menu-btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.panel-topbar-breadcrumb {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.panel-breadcrumb-current {
  letter-spacing: -0.02em;
}

.panel-topbar-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.panel-topbar-breadcrumb a:hover {
  color: var(--accent);
}

.panel-breadcrumb-sep {
  color: var(--text-muted);
  margin: 0 0.35rem;
  font-weight: 400;
}

.panel-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.panel-topbar-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.panel-topbar-btn.btn-theme {
  width: 2.5rem;
  padding: 0.5rem;
}

.panel-topbar-btn.btn-theme .icon-moon {
  display: none;
}

.panel-topbar-btn.btn-theme .icon-sun {
  display: block;
}

[data-theme="dark"] .panel-topbar-btn.btn-theme .icon-sun {
  display: none;
}

[data-theme="dark"] .panel-topbar-btn.btn-theme .icon-moon {
  display: block;
}

.panel-topbar-logout {
  color: var(--text-muted);
}

.panel-topbar-logout:hover {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.4);
}

/* İçerik */
.panel-content {
  flex: 1;
  padding: 1.5rem 1.5rem 2rem;
  background: var(--bg);
}

/* Dashboard özel (ilk giriş ekranı) */
.dashboard-home {
  display: grid;
  gap: 0.9rem;
}

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dashboard-title {
  font-size: 1.38rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.dashboard-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.dashboard-laptop-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 0.9rem;
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.dashboard-kpi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.dashboard-kpi-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-kpi-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.dashboard-kpi-sub {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.dashboard-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.dashboard-card-header h2 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.dashboard-chip {
  font-size: 0.72rem;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  background: color-mix(in srgb, var(--accent-soft) 80%, transparent);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.dashboard-card-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.dashboard-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dashboard-legend {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.dashboard-legend span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.dot {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  display: inline-block;
}

.dot-active {
  background: #f97316;
}

.dot-passive {
  background: #fbbf24;
}

.dashboard-mini-bars {
  height: 112px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
  align-items: end;
}

.dashboard-mini-bars span {
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #fb923c 0%, #f97316 100%);
}

.dashboard-mini-bar-labels {
  margin-top: 0.42rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

.dashboard-score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.dashboard-score-row strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.dashboard-score-row span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.dashboard-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.12rem;
  font-weight: 700;
}

.dashboard-impact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, var(--bg-elevated) 38%);
  min-height: 136px;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.dashboard-impact-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dashboard-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  height: 1.3rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: #ffffff;
  background: #2563eb;
  border-radius: 3px;
}

.dashboard-green-bars {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 0.22rem;
}

.dashboard-green-bars span {
  width: 0.68rem;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.dashboard-impact-title {
  margin: 0 0 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dashboard-impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-impact-metric strong {
  display: block;
  font-size: 2.05rem;
  line-height: 1;
  color: #052e16;
  letter-spacing: -0.01em;
}

.dashboard-impact-metric strong span {
  font-size: 1.05rem;
  color: #16a34a;
  font-weight: 700;
}

.dashboard-impact-metric small {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.82rem;
  color: #1f2937;
}

.dashboard-lower-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.85rem;
}

.dashboard-list-bars {
  display: grid;
  gap: 0.45rem;
}

.dashboard-list-bars div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 0.45rem;
}

.dashboard-list-bars span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.dashboard-list-bars i {
  display: block;
  height: 0.35rem;
  border-radius: 99px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}

.dashboard-dual-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.dashboard-dual-stat strong {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

.dashboard-dual-stat span {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.dashboard-orange-list {
  grid-column: span 1;
}

.panel-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.2rem 0 0.8rem;
}

.panel-quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.panel-quick-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.panel-quick-card:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 10px var(--glow);
}

.panel-quick-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.panel-quick-card span {
  margin: 0;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1200px) {
  .dashboard-laptop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-lower-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-orange-list {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .dashboard-laptop-grid,
  .dashboard-kpi-grid,
  .dashboard-lower-grid,
  .dashboard-score-row,
  .dashboard-dual-stat {
    grid-template-columns: 1fr;
  }

  .dashboard-impact-card {
    grid-template-columns: 1fr;
  }

  .dashboard-impact-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dashboard-orange-list {
    grid-column: auto;
  }
}

/* Mobil: sidebar gizlenir, hamburger ile açılır */
@media (max-width: 900px) {
  .panel-sidebar {
    transform: translateX(-100%);
  }

  .panel-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }

  .panel-sidebar-close {
    display: flex;
  }

  .panel-main {
    margin-left: 0;
  }

  .panel-topbar-menu-btn {
    display: flex;
  }
}

/* Servislerim - 4 kart yan yana */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.service-card-media {
  width: 100%;
  height: max-content;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-2, rgba(0, 0, 0, 0.04));
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-img--default {
  object-fit: contain;
  padding: 1.5rem;
}

.service-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

.service-card-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
}
.service-card-title strong {
  font-size: 1.1rem;
}
.service-card-title .meta {
  font-size: 0.8rem;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.service-card-meta {
  font-size: 0.85rem;
}

.service-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.service-card-stats .stat {
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2, rgba(0, 0, 0, 0.02));
  text-align: center;
}

.service-card-stats .stat-value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.service-card-stats .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Servis detayı - koltuk planı */
.service-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-detail-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.85rem;
  white-space: nowrap;
}

.seatmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .seatmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.seat {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.6rem 0.7rem;
  background: var(--surface);
}

.seat.is-occupied {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.08);
}

.seat.is-empty {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
}

.seat-no {
  font-weight: 800;
  color: var(--text);
}

.seat-name {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

/* ========== Modal component (a11y-aware) ==========
   Kullanım:
     <div class="modal" role="dialog" aria-modal="true" aria-labelledby="modal-title-id" hidden>
       <div class="modal__overlay" data-modal-close></div>
       <div class="modal__dialog">
         <button class="modal__close" type="button" data-modal-close aria-label="Kapat">×</button>
         <h2 class="modal__title" id="modal-title-id">Başlık</h2>
         <div class="modal__body">…içerik…</div>
       </div>
     </div>
   `[hidden]` attribute'u açıkken/kapalıyken durumu yönetir; aşağıdaki kurallar
   open state için `:not([hidden])` selector'ünü kullanır. */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 79, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 25px 60px -20px rgba(8, 40, 79, 0.45);
  padding: 1.4rem 1.4rem 1.2rem;
  animation: modal-in 0.18s ease-out;
}

.modal__dialog--wide {
  max-width: 48rem;
}

.modal__dialog--full {
  max-width: 64rem;
}

.modal__title {
  margin: 0 0 0.85rem;
  padding-right: 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.modal__body {
  font-size: 0.95rem;
  color: var(--text);
}

.modal__body p {
  margin: 0 0 0.75rem;
}

.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal open iken arka planda scroll kilitlemek için .modal-open class'ı body'e eklenir.
   Bu sınıf JS tarafından (panel/base.html veya modal-helper.js) eklenir. */
body.modal-open {
  overflow: hidden;
}

/* ========== Buton ailesi (BEM) ==========
   Tüm yeni şablonlar `.btn .btn--<variant>` formatını kullanmalı.
   `.btn-primary` / `.btn-outline` gibi eski isimler aşağıda alias olarak korunur. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.05s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary,
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover,
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn--secondary,
.btn-secondary {
  background: var(--beeup-navy);
  color: #fff;
  border-color: var(--beeup-navy);
}

.btn--secondary:hover,
.btn-secondary:hover {
  background: var(--beeup-navy-900);
  border-color: var(--beeup-navy-900);
}

.btn--outline,
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover,
.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--text);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.btn--danger {
  background: #DC2626;
  color: #fff;
  border-color: #DC2626;
}

.btn--danger:hover {
  background: #B91C1C;
  border-color: #B91C1C;
}

.btn--success {
  background: #16A34A;
  color: #fff;
  border-color: #16A34A;
}

.btn--success:hover {
  background: #15803D;
  border-color: #15803D;
}

.btn--sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn--lg {
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn--block {
  width: 100%;
}
