/* ════════════════════════════════════════════════════════════════════════
   SON DEPREMLER TÜRKİYE — RESMİ WEB SİTESİ
   Modern dark-first design system
═════════════════════════════════════════════════════════════════════════ */

/* ── CSS RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --c-primary:        #009245;
  --c-primary-light:  #00B856;
  --c-primary-dark:   #007a3a;

  /* Semantic */
  --c-red:    #EF4444;
  --c-orange: #F97316;
  --c-yellow: #F59E0B;
  --c-green:  #22C55E;
  --c-blue:   #3B82F6;

  /* Surfaces (dark) */
  --bg-base:    #0F1216;
  --bg-elev-1:  #181C22;
  --bg-elev-2:  #1F232B;
  --bg-elev-3:  #262A34;
  --bg-card:    #1A1E25;

  /* Borders */
  --br-soft: rgba(255,255,255,0.06);
  --br-mid:  rgba(255,255,255,0.10);
  --br-hard: rgba(255,255,255,0.18);

  /* Text */
  --t-primary:   #FFFFFF;
  --t-secondary: #B7BFCB;
  --t-tertiary:  #7A8190;
  --t-muted:     #5B616E;

  /* Effects */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.45);
  --glow-primary: 0 0 0 1px rgba(0,146,69,0.25), 0 8px 32px rgba(0,146,69,0.15);

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Type */
  --font-sans: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ── BASE ──────────────────────────────────────────────────────────────── */
html, body {
  background: var(--bg-base);
  color: var(--t-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(0,146,69,0.12), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(59,130,246,0.07), transparent 60%),
    var(--bg-base);
  background-repeat: no-repeat;
}

::selection { background: rgba(0,146,69,0.3); color: #fff; }

/* ── Visually hidden (screen-reader & SEO için) ─────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Skip to content (a11y) ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

/* ── UTILITIES ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,146,69,0.10);
  border: 1px solid rgba(0,146,69,0.25);
  border-radius: 999px;
  color: var(--c-primary-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-primary-light);
  box-shadow: 0 0 10px var(--c-primary-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--t-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { color: var(--t-secondary); }

.text-muted { color: var(--t-tertiary); }

.gradient-text {
  background: linear-gradient(135deg, var(--c-primary-light) 0%, #4ade80 60%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
  border-radius: 10px;
  gap: 8px;
}
.btn-sm .icon { width: 16px; height: 16px; }

/* ── Live wave icon (animated sismic pulse) ───────────────────────────── */
.live-wave {
  position: relative;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.live-wave .lw-bar {
  position: absolute;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
  animation: lw-bounce 1.1s ease-in-out infinite;
}
.live-wave .lw-bar:nth-child(1) { left: 0;  height: 6px;  animation-delay: -.55s; }
.live-wave .lw-bar:nth-child(2) { left: 4px; height: 12px; animation-delay: -.40s; }
.live-wave .lw-bar:nth-child(3) { left: 8px; height: 18px; animation-delay: -.25s; }
.live-wave .lw-bar:nth-child(4) { left: 12px; height: 12px; animation-delay: -.10s; }
.live-wave .lw-bar:nth-child(5) { left: 16px; height: 6px;  animation-delay:  .05s; }

@keyframes lw-bounce {
  0%, 100% { transform: scaleY(0.45); opacity: 0.65; }
  50%      { transform: scaleY(1);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .live-wave .lw-bar { animation: none; transform: scaleY(0.7); }
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,146,69,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0,146,69,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--br-mid);
  color: var(--t-primary);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--br-hard);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #fff;
  color: #0F1216;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.4); }
.btn-store .store-icon { width: 28px; height: 28px; flex-shrink: 0; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.btn-store .store-text small { font-size: 11px; color: #5B616E; font-weight: 500; }
.btn-store .store-text strong { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }

/* ── NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,18,22,0.96);
  border-bottom: 1px solid var(--br-soft);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.brand .brand-tag {
  font-size: 10px;
  background: rgba(0,146,69,0.15);
  color: var(--c-primary-light);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,146,69,0.25);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--t-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--t-primary); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--c-primary-light); background: rgba(0,146,69,0.1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--br-mid);
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--t-primary); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: #0F1216;                                   /* tam opak — okunabilirlik için */
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(0,146,69,0.08), transparent 65%),
    #0F1216;
  border-top: 1px solid var(--br-soft);
  z-index: 9999;                                          /* body altına taşındı, her şeyin üstünde */
  padding: 20px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--t-primary);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--br-soft);
  background: rgba(255,255,255,0.03);                    /* her itemin kendi katmanı — kontrast */
  transition: background .15s, border-color .15s, color .15s;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: var(--br-mid);
  color: #fff;
  outline: none;
}
.mobile-menu a.active {
  color: var(--c-primary-light);
  background: rgba(0,146,69,0.15);
  border-color: rgba(0,146,69,0.4);
  font-weight: 600;
}

/* Body kilitli scroll (menü açıkken sayfa kayar olmamalı) */
body.menu-open { overflow: hidden; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(0,184,86,0.18), transparent 60%),
    radial-gradient(600px 400px at 80% 60%, rgba(239,68,68,0.10), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero p.lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--t-secondary);
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .stat { display: flex; flex-direction: column; }
.hero-meta .stat strong { font-size: 22px; font-weight: 700; color: var(--t-primary); }
.hero-meta .stat span { font-size: 13px; color: var(--t-tertiary); }
.hero-meta .divider { width: 1px; height: 32px; background: var(--br-mid); }

/* Phone mockup */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(0,146,69,0.22), transparent);
  filter: blur(50px);
  z-index: 0;
}

/* ── Deprem dalga halkaları (epicenter pulse) ──────────────────────── */
.wave-rings {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 0;
}
.wave-rings .wave {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 184, 86, 0.55);
  opacity: 0;
  transform: scale(0.4);
  animation: wave-expand 5s cubic-bezier(.2, .7, .3, 1) infinite;
  will-change: transform, opacity;
}
.wave-rings .wave:nth-child(2) { animation-delay: 1.25s; border-color: rgba(0, 184, 86, 0.45); }
.wave-rings .wave:nth-child(3) { animation-delay: 2.5s;  border-color: rgba(239, 68, 68, 0.4); }
.wave-rings .wave:nth-child(4) { animation-delay: 3.75s; border-color: rgba(245, 158, 11, 0.4); }

@keyframes wave-expand {
  0%   { transform: scale(0.35); opacity: 0; border-width: 3px; }
  10%  { opacity: 1; }
  100% { transform: scale(7);    opacity: 0; border-width: 1px; }
}

.wave-rings .epicenter {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: radial-gradient(circle, #ef4444 0%, #b91c1c 70%);
  box-shadow: 0 0 24px rgba(239,68,68,0.7), 0 0 0 6px rgba(239,68,68,0.2);
  animation: epicenter-pulse 1.6s ease-in-out infinite;
}
@keyframes epicenter-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 24px rgba(239,68,68,0.7), 0 0 0 6px rgba(239,68,68,0.2); }
  50%      { transform: scale(1.3); box-shadow: 0 0 32px rgba(239,68,68,0.9), 0 0 0 12px rgba(239,68,68,0.05); }
}

/* ── Telefon ──────────────────────────────────────────────────────── */
.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 9 / 19.5;
  background: #0a0d11;
  border-radius: 44px;
  border: 1px solid #2a2f38;
  box-shadow:
    0 0 0 6px #15181e,
    0 0 0 7px #2a2f38,
    0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
  z-index: 2;
}
.hero-phone {
  transform: rotate(-3deg);
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-10px); }
}
.phone::after {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0a0d11;
  border-radius: 999px;
  z-index: 3;
}
.hero-phone-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #f5f6fa;
  z-index: 1;
}

/* ── Floating push notification ────────────────────────────────────── */
.hero-notif {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(20, 24, 30, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 3;
  animation: notif-in 0.8s cubic-bezier(.2,.8,.2,1) 0.4s both, notif-float 5s ease-in-out 1.2s infinite;
  transform-origin: right center;
}
.hero-notif::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239,68,68,0.4), rgba(0,146,69,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@keyframes notif-in {
  from { opacity: 0; transform: translateX(40px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}
@keyframes notif-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-notif-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(239,68,68,0.35);
}
.hero-notif-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 2px solid rgba(239,68,68,0.4);
  animation: notif-bell-pulse 1.4s ease-out infinite;
}
@keyframes notif-bell-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.hero-notif-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-notif-body { flex: 1; min-width: 0; }
.hero-notif-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t-secondary);
  margin-bottom: 4px;
}
.hero-notif-time { color: var(--t-tertiary); font-weight: 400; font-size: 11px; }
.hero-notif-text {
  font-size: 13px;
  color: var(--t-primary);
  line-height: 1.45;
}
.hero-notif-text strong { color: #fff; font-weight: 600; }

/* ── Konum / mesafe rozeti ─────────────────────────────────────────── */
.hero-loc {
  position: absolute;
  bottom: 8%;
  left: -10%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(20, 24, 30, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 3;
  animation: loc-in 0.8s cubic-bezier(.2,.8,.2,1) 0.7s both, notif-float 5.5s ease-in-out 1.5s infinite reverse;
}
@keyframes loc-in {
  from { opacity: 0; transform: translateX(-30px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0)     scale(1); }
}
.hero-loc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-primary-light);
  box-shadow: 0 0 0 5px rgba(0,184,86,0.18), 0 0 14px var(--c-primary-light);
  flex-shrink: 0;
  animation: loc-blink 2s ease-in-out infinite;
}
@keyframes loc-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 5px rgba(0,184,86,0.18), 0 0 14px var(--c-primary-light); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0,184,86,0.08), 0 0 18px var(--c-primary-light); }
}
.hero-loc-body { display: flex; flex-direction: column; line-height: 1.2; }
.hero-loc-body strong { font-size: 13px; font-weight: 600; color: #fff; }
.hero-loc-body span { font-size: 11px; color: var(--t-tertiary); }

/* ── Magnitude chip ────────────────────────────────────────────────── */
.hero-mag {
  position: absolute;
  top: 38%;
  left: -8%;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(239,68,68,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 3;
  transform: rotate(-8deg);
  animation: mag-in 0.8s cubic-bezier(.2,.8,.2,1) 0.5s both, mag-bob 4s ease-in-out 1.5s infinite;
}
@keyframes mag-in {
  from { opacity: 0; transform: rotate(-20deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(-8deg)  scale(1); }
}
@keyframes mag-bob {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-8px); }
}
.hero-mag strong { font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: -0.5px; }
.hero-mag span { font-size: 10px; opacity: 0.85; letter-spacing: 1.4px; margin-top: 3px; }
.phone-screen .ps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
}
.phone-screen .ps-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,146,69,0.14);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,146,69,0.25);
}
.phone-screen .ps-logo img { width: 22px; height: 22px; }
.phone-screen .ps-title { font-size: 13px; font-weight: 700; }
.phone-screen .ps-pill {
  margin-left: auto;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,146,69,0.15);
  color: var(--c-primary-light);
  font-weight: 600;
  border: 1px solid rgba(0,146,69,0.25);
}
.phone-screen .ps-card {
  background: #262A34;
  border: 1px solid #35383F;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-screen .ps-card .mag {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.phone-screen .ps-card .mag.r { background: var(--c-red); }
.phone-screen .ps-card .mag.o { background: var(--c-orange); }
.phone-screen .ps-card .mag.y { background: var(--c-yellow); }
.phone-screen .ps-card .mag.g { background: var(--c-green); }
.phone-screen .ps-card .info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.phone-screen .ps-card .info .loc { font-size: 11px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone-screen .ps-card .info .meta { font-size: 9px; color: #9CA3AF; }

@media (max-width: 880px) {
  .hero { padding: 64px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .phone-stage { min-height: 540px; }
  .hero-phone { transform: rotate(0); animation: none; }
  .hero-notif { right: 0; width: 250px; top: 6%; }
  .hero-loc   { left: 0;  bottom: 4%; }
  .hero-mag   { left: -4%; top: 36%; }
}
@media (max-width: 480px) {
  .phone-stage { min-height: 520px; }
  .hero-notif { width: calc(100% - 24px); right: 12px; }
  .hero-loc   { left: 12px; padding: 10px 14px; }
  .hero-mag   { width: 56px; height: 56px; left: -8px; top: 40%; }
  .hero-mag strong { font-size: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wave-rings .wave,
  .wave-rings .epicenter,
  .hero-phone,
  .hero-notif,
  .hero-loc,
  .hero-mag,
  .hero-notif-icon::after,
  .hero-loc-dot { animation: none !important; }
}

/* ── DATA SOURCES BAR ──────────────────────────────────────────────────── */
.sources-bar {
  border-top: 1px solid var(--br-soft);
  border-bottom: 1px solid var(--br-soft);
  padding: 24px 0;
}
.sources-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sources-inner .label {
  color: var(--t-tertiary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.source-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--bg-elev-1);
  border: 1px solid var(--br-soft);
  font-weight: 600;
  font-size: 14px;
  color: var(--t-primary);
}
.source-chip svg { width: 16px; height: 16px; color: var(--c-primary-light); }

/* ── FEATURES GRID ─────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, rgba(0,184,86,0.08), transparent);
  pointer-events: none;
  opacity: 0; transition: opacity .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--br-hard); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(0,146,69,0.14);
  border: 1px solid rgba(0,146,69,0.25);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--c-primary-light); }
.feature-icon.red { background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.25); }
.feature-icon.red svg { color: var(--c-red); }
.feature-icon.blue { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.25); }
.feature-icon.blue svg { color: var(--c-blue); }
.feature-icon.orange { background: rgba(249,115,22,0.14); border-color: rgba(249,115,22,0.25); }
.feature-icon.orange svg { color: var(--c-orange); }
.feature-icon.yellow { background: rgba(245,158,11,0.14); border-color: rgba(245,158,11,0.25); }
.feature-icon.yellow svg { color: var(--c-yellow); }

.feature-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.feature-card p { font-size: 14.5px; color: var(--t-secondary); }

/* ════════════════════════════════════════════════════════════════════════
   FEATURE SPOTLIGHTS — alternating layout, derinlemesine özellik tanıtımı
═════════════════════════════════════════════════════════════════════════ */
.spotlight-section { position: relative; padding: 64px 0 32px; }

.spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  position: relative;
}
.spotlight + .spotlight { border-top: 1px solid var(--br-soft); }
.spotlight.reverse { grid-template-columns: 1.1fr 0.95fr; }
.spotlight.reverse .sp-visual { order: 2; }
.spotlight.reverse .sp-content { order: 1; }

.sp-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(0,146,69,0.10);
  border: 1px solid rgba(0,146,69,0.25);
  color: var(--c-primary-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.sp-eyebrow svg { width: 14px; height: 14px; }
.sp-eyebrow.is-red {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.28);
  color: #ff8a8a;
}
.sp-eyebrow.is-orange {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.28);
  color: #ffae6b;
}

.sp-content h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.sp-content h3 .accent { color: var(--c-primary-light); }
.sp-content h3 .accent-red { color: #ef4444; }
.sp-content h3 .accent-orange { color: #f97316; }
.sp-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--t-secondary);
}
.sp-content p strong { color: #fff; font-weight: 600; }

.sp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.sp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--t-secondary);
  line-height: 1.55;
}
.sp-list li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  color: var(--c-primary-light);
}
.sp-list li.red svg { color: #ef4444; }
.sp-list li.orange svg { color: #f97316; }
.sp-list strong { color: #fff; font-weight: 600; }

.sp-note {
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid rgba(249,115,22,0.55);
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  color: var(--t-tertiary);
  line-height: 1.55;
}
.sp-note strong { color: var(--t-secondary); }

/* Visual sütun — telefon mockup içine ekran görüntüsü */
.sp-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.sp-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, var(--sp-glow, rgba(0,184,86,0.18)), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.sp-visual.glow-red::before    { --sp-glow: rgba(239,68,68,0.20); }
.sp-visual.glow-orange::before { --sp-glow: rgba(249,115,22,0.20); }

.sp-phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #0a0d11;
  border-radius: 42px;
  border: 1px solid #2a2f38;
  box-shadow:
    0 0 0 6px #15181e,
    0 0 0 7px #2a2f38,
    0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
  z-index: 2;
  transform: rotate(-2deg);
}
.spotlight.reverse .sp-phone { transform: rotate(2deg); }
.sp-phone::after {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #0a0d11;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}
.sp-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #f5f6fa;
  z-index: 1;
}

/* Floating accent — sp-visual çevresinde dekoratif badge */
.sp-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(20,24,30,0.95);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--br-mid);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.sp-badge svg { width: 14px; height: 14px; }
.sp-badge.tl { top: 10%;  left: -5%;  animation: sp-float 5s ease-in-out infinite; }
.sp-badge.br { bottom: 12%; right: -5%; animation: sp-float 5.5s ease-in-out 1s infinite reverse; }
.sp-badge.tr { top: 18%;  right: -5%; animation: sp-float 5.2s ease-in-out 0.5s infinite; }
.sp-badge.bl { bottom: 14%; left: -5%; animation: sp-float 5.8s ease-in-out 1.2s infinite reverse; }
.sp-badge.is-green { color: var(--c-primary-light); border-color: rgba(0,146,69,0.4); }
.sp-badge.is-red   { color: #ff8a8a; border-color: rgba(239,68,68,0.4); }
.sp-badge.is-orange{ color: #ffae6b; border-color: rgba(249,115,22,0.4); }

@keyframes sp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .sp-badge { animation: none; }
}

@media (max-width: 880px) {
  .spotlight,
  .spotlight.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .spotlight.reverse .sp-visual { order: -1; }
  .spotlight.reverse .sp-content { order: 0; }
  .sp-content { max-width: none; }
  .sp-visual { min-height: 480px; }
  .sp-phone { transform: rotate(0); width: 250px; }
  .spotlight.reverse .sp-phone { transform: rotate(0); }
  .sp-badge.tl, .sp-badge.bl { left: 0; }
  .sp-badge.br, .sp-badge.tr { right: 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   DOWNLOAD CTA (yenilenmiş, daha güçlü görsel)
═════════════════════════════════════════════════════════════════════════ */
.download-v2 {
  position: relative;
  margin-top: 96px;
  padding: 64px 48px;
  border-radius: 28px;
  background:
    radial-gradient(900px 500px at 110% -30%, rgba(0,184,86,0.22), transparent 65%),
    radial-gradient(700px 400px at -10% 110%, rgba(59,130,246,0.10), transparent 65%),
    linear-gradient(135deg, #14181E 0%, #1B2028 100%);
  border: 1px solid var(--br-mid);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
}
.download-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,0.015) 16px, rgba(255,255,255,0.015) 17px);
  pointer-events: none;
}
.download-v2-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.dlv2-content { display: flex; flex-direction: column; gap: 18px; }
.dlv2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 7px 14px;
  background: rgba(0,184,86,0.16);
  border: 1px solid rgba(0,184,86,0.35);
  border-radius: 999px;
  color: var(--c-primary-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.dlv2-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dlv2-content > p {
  font-size: 1.05rem;
  color: var(--t-secondary);
  max-width: 520px;
  line-height: 1.65;
}
.dlv2-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.dlv2-trust-item { display: flex; flex-direction: column; }
.dlv2-trust-item strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.dlv2-trust-item span {
  font-size: 12px;
  color: var(--t-tertiary);
  margin-top: 4px;
}
.dlv2-trust-item .stars {
  display: inline-flex;
  gap: 1px;
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 2px;
}
.dlv2-divider { width: 1px; height: 36px; background: var(--br-mid); }

.dlv2-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.dlv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.dlv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--br-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--t-secondary);
}
.dlv2-tag svg { width: 12px; height: 12px; color: var(--c-primary-light); }

/* Sağ taraf: çapraz duran iki telefon */
.dlv2-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.dlv2-phones::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(0,184,86,0.28), transparent);
  filter: blur(60px);
  z-index: 0;
}
.dlv2-phone {
  position: absolute;
  width: 200px;
  aspect-ratio: 9 / 19.5;
  background: #0a0d11;
  border-radius: 32px;
  border: 1px solid #2a2f38;
  box-shadow:
    0 0 0 5px #15181e,
    0 0 0 6px #2a2f38,
    0 25px 60px rgba(0,0,0,0.55);
  overflow: hidden;
  z-index: 1;
}
.dlv2-phone::after {
  content: "";
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 18px;
  background: #0a0d11;
  border-radius: 999px;
  z-index: 3;
}
.dlv2-phone img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  background: #f5f6fa;
}
.dlv2-phone.back {
  transform: translate(-32%, 14%) rotate(-10deg);
  z-index: 1;
  opacity: 0.95;
}
.dlv2-phone.front {
  transform: translate(28%, -8%) rotate(8deg);
  z-index: 2;
}

@media (max-width: 880px) {
  .download-v2 { padding: 40px 24px; margin-top: 64px; }
  .download-v2-grid { grid-template-columns: 1fr; gap: 36px; }
  .dlv2-phones { min-height: 380px; }
  .dlv2-phone { width: 170px; }
  .dlv2-phone.back { transform: translate(-26%, 10%) rotate(-8deg); }
  .dlv2-phone.front { transform: translate(24%, -6%) rotate(7deg); }
}
@media (max-width: 480px) {
  .dlv2-phones { min-height: 340px; }
  .dlv2-phone { width: 150px; }
}

/* ── HOW IT WORKS ──────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.step .step-num {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 56px; line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
}
.step h3 { margin: 8px 0 8px; max-width: 75%; }
.step p { font-size: 14.5px; }
.step .step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,146,69,0.14);
  border: 1px solid rgba(0,146,69,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step .step-icon svg { width: 22px; height: 22px; color: var(--c-primary-light); }

/* ── HEADING BLOCK ─────────────────────────────────────────────────────── */
.heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.heading h2 { margin-top: 14px; }
.heading p { margin-top: 16px; font-size: 1.05rem; }

/* ── DOWNLOAD BANNER ───────────────────────────────────────────────────── */
.download {
  margin-top: 96px;
  padding: 56px 32px;
  background:
    radial-gradient(600px 300px at 90% 50%, rgba(0,184,86,0.18), transparent 70%),
    linear-gradient(135deg, #14181E 0%, #1B2028 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--br-mid);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.download h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.download p { margin-top: 12px; max-width: 480px; }
.download .stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.download .qr {
  display: flex; align-items: center; gap: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
}
.download .qr-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download .qr-icon img { width: 48px; height: 48px; }
@media (max-width: 800px) { .download { grid-template-columns: 1fr; padding: 36px 24px; } }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 36px; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--br-mid); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--t-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--c-primary-light);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,146,69,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--t-secondary);
  line-height: 1.65;
  font-size: 15px;
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  margin-top: 96px;
  border-top: 1px solid var(--br-soft);
  padding: 56px 0 32px;
  background: rgba(255,255,255,0.015);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--t-tertiary);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--t-secondary);
  font-size: 14.5px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--c-primary-light); }
.footer-col p { font-size: 14px; color: var(--t-tertiary); margin-top: 14px; max-width: 320px; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--br-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--t-tertiary);
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════════════════
   MAP PAGE (Leaflet)
═════════════════════════════════════════════════════════════════════════ */
body.map-page {
  overflow: hidden;
  height: 100vh;
}
body.map-page footer { display: none; }

.map-stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  background: #0a0d11;
}
#leafletMap {
  width: 100%;
  height: 100%;
  background: #0a0d11;
}

/* Leaflet overrides for dark theme */
.leaflet-container {
  background: #0a0d11 !important;
  font-family: var(--font-sans) !important;
  outline: none;
}
.leaflet-control-zoom a {
  background: rgba(20,24,30,0.92) !important;
  color: var(--t-primary) !important;
  border-color: var(--br-mid) !important;
  backdrop-filter: blur(12px);
  font-weight: 600;
}
.leaflet-control-zoom a:hover {
  background: rgba(0,146,69,0.18) !important;
  color: #fff !important;
}
.leaflet-control-attribution {
  background: rgba(15,18,22,0.85) !important;
  color: var(--t-tertiary) !important;
  font-size: 10px !important;
  padding: 3px 8px !important;
  border-radius: 6px 0 0 0;
  backdrop-filter: blur(8px);
}
.leaflet-control-attribution a {
  color: var(--c-primary-light) !important;
}

/* ── Toolbar ─────────────────────────────────────────────────────────── */
.map-toolbar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 500;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.map-tabs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  background: rgba(20,24,30,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--br-mid);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}
.map-tab {
  height: 40px;
  border-radius: 10px;
  background: transparent;
  color: var(--t-tertiary);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  letter-spacing: 0.3px;
}
.map-tab:hover { color: var(--t-primary); }
.map-tab.active {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,146,69,0.4);
}
.map-mag-btn {
  flex-shrink: 0;
  width: 56px; height: 48px;
  background: rgba(20,24,30,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--br-mid);
  border-radius: 14px;
  color: var(--t-primary);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.map-mag-btn:hover { border-color: rgba(239,68,68,0.5); color: var(--c-red); }
.map-mag-btn.is-on {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(239,68,68,0.4);
}

/* ── Status bar ──────────────────────────────────────────────────────── */
.map-status {
  position: absolute;
  top: 76px;
  left: 12px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(20,24,30,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--br-soft);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--t-secondary);
}

/* ── Loading overlay ─────────────────────────────────────────────────── */
.map-loading {
  position: absolute;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,13,17,0.55);
  backdrop-filter: blur(4px);
}
.map-loading.show { display: flex; }
.map-loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  background: rgba(20,24,30,0.95);
  border: 1px solid var(--br-mid);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.map-loading-card strong { color: #fff; font-size: 14px; }
.map-loading-card span { color: var(--t-tertiary); font-size: 12.5px; }

/* ── Info card ───────────────────────────────────────────────────────── */
.map-info-card {
  position: absolute;
  top: 72px;
  left: 12px;
  right: 12px;
  z-index: 550;
  max-width: 540px;
  margin-inline: auto;
  padding: 16px;
  background: rgba(20,24,30,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--br-mid);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: mic-in .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes mic-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mic-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--t-secondary);
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.mic-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.mic-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-right: 32px;
  margin-bottom: 14px;
}
.mic-mag {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 1px solid;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700;
}
.mic-mag strong { font-size: 18px; line-height: 1; }
.mic-mag span { font-size: 10px; opacity: 0.7; margin-top: 2px; letter-spacing: 1px; }
.mic-title { flex: 1; min-width: 0; }
.mic-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mic-chips { display: flex; flex-wrap: wrap; gap: 6px 12px; }
.mic-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--t-tertiary);
}
.mic-chip svg { width: 12px; height: 12px; }
.mic-stats {
  display: flex;
  align-items: stretch;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}
.mic-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.mic-stat svg { width: 16px; height: 16px; color: var(--t-tertiary); margin-bottom: 4px; }
.mic-stat .lbl { font-size: 10px; color: var(--t-tertiary); }
.mic-stat strong { font-size: 13px; color: #fff; font-weight: 600; }
.mic-divider { width: 1px; background: var(--br-soft); margin: 4px 0; }

/* ── Custom markers ──────────────────────────────────────────────────── */
.eq-marker-wrap {
  background: transparent !important;
  border: none !important;
}
.eq-marker {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.eq-marker .m-static {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform .15s, box-shadow .15s;
}
.eq-marker .m-static.lvl-low    { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.55); }
.eq-marker .m-static.lvl-mid    { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,0.55); }
.eq-marker .m-static.lvl-high   { background: #f97316; box-shadow: 0 0 10px rgba(249,115,22,0.65); }
.eq-marker .m-static.lvl-severe { background: #ef4444; box-shadow: 0 0 14px rgba(239,68,68,0.75); }
.eq-marker:hover .m-static { transform: scale(1.4); border-width: 3px; }

.eq-marker.is-latest {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-marker.is-latest .m-pulse,
.eq-marker.is-latest .m-ring,
.eq-marker.is-latest .m-core {
  position: absolute;
  border-radius: 50%;
}
.eq-marker.is-latest .m-pulse {
  width: 18px; height: 18px;
  opacity: 0.6;
  animation: eq-pulse 1.5s ease-out infinite;
}
.eq-marker.is-latest .m-ring {
  width: 22px; height: 22px;
}
.eq-marker.is-latest .m-core {
  width: 14px; height: 14px;
  border: 2.5px solid #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.15);
}
@keyframes eq-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3);   opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .eq-marker.is-latest .m-pulse { animation: none; }
}

/* ── Legend ──────────────────────────────────────────────────────────── */
.map-legend {
  position: absolute;
  bottom: 14px;
  left: 12px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(20,24,30,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--br-soft);
  border-radius: 10px;
  font-size: 11.5px;
  color: var(--t-secondary);
  flex-wrap: wrap;
}
.map-legend-title { color: var(--t-tertiary); font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; font-size: 10px; }
.map-legend-item { display: inline-flex; align-items: center; gap: 4px; }
.map-legend-item .dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid #fff;
}
.map-legend-item .dot.lvl-low    { background: #22c55e; }
.map-legend-item .dot.lvl-mid    { background: #f59e0b; }
.map-legend-item .dot.lvl-high   { background: #f97316; }
.map-legend-item .dot.lvl-severe { background: #ef4444; }

/* ── Resmi bildirim (sağ üst floating, açılır) ───────────────────────── */
.map-disclaimer {
  position: absolute;
  top: 76px;
  right: 12px;
  z-index: 500;
  max-width: 360px;
}
.map-disclaimer summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  padding: 7px 12px 7px 10px;
  background: rgba(249,115,22,0.16);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #ffb380;
  transition: background .15s, border-color .15s;
  user-select: none;
  white-space: nowrap;
}
.map-disclaimer summary::-webkit-details-marker { display: none; }
.map-disclaimer summary:hover {
  background: rgba(249,115,22,0.24);
  border-color: rgba(249,115,22,0.55);
}
.map-disclaimer summary svg { width: 14px; height: 14px; }
.map-disclaimer[open] summary {
  background: rgba(249,115,22,0.28);
  border-color: rgba(249,115,22,0.6);
}
.map-disclaimer-body {
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(20,24,30,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--br-mid);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  animation: mic-in .25s cubic-bezier(.2,.8,.2,1);
}
.map-disclaimer-body p {
  margin: 0;
  color: var(--t-secondary);
  font-size: 12.5px;
  line-height: 1.55;
}
.map-disclaimer-body strong { color: #fff; }
.map-disclaimer-body a {
  color: var(--c-primary-light);
  border-bottom: 1px dashed rgba(0,184,86,0.4);
}
@media (max-width: 600px) {
  .map-disclaimer { top: 64px; right: 8px; max-width: calc(100% - 16px); }
  .map-disclaimer summary { font-size: 11.5px; padding: 6px 10px 6px 8px; }
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .map-toolbar { left: 8px; right: 8px; gap: 6px; }
  .map-tabs { padding: 3px; gap: 3px; }
  .map-tab { font-size: 11px; height: 36px; }
  .map-mag-btn { width: 48px; height: 42px; font-size: 14px; }
  .map-status { top: 64px; left: 8px; padding: 6px 10px; font-size: 11.5px; }
  .map-info-card { left: 8px; right: 8px; padding: 14px; top: 64px; }
  .mic-mag { width: 48px; height: 48px; }
  .mic-mag strong { font-size: 16px; }
  .mic-stats { padding: 10px 6px; }
  .mic-stat strong { font-size: 12px; }
  .map-legend { left: 8px; bottom: 10px; padding: 6px 10px; gap: 8px; font-size: 10.5px; }
  .map-legend-title { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   SMART APP BANNER (iOS Safari / Android Chrome)
═════════════════════════════════════════════════════════════════════════ */
#smartBanner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 18, 22, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid var(--br-mid);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.45);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  font-family: var(--font-sans);
}
#smartBanner.open { transform: translateY(0); }
.sb-close {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--t-secondary);
  font-size: 18px;
  line-height: 1;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.sb-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.sb-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  display: flex; align-items: center; justify-content: center;
}
.sb-icon img { width: 100%; height: 100%; object-fit: contain; }
.sb-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1.25;
}
.sb-info strong { color: #fff; font-size: 14px; font-weight: 600; }
.sb-info span { color: var(--t-tertiary); font-size: 12px; }
.sb-info small { color: var(--c-primary-light); font-size: 11px; font-weight: 500; }
.sb-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,146,69,0.35);
}
.sb-cta:active { transform: scale(0.97); }
.sb-cta-icon { display: inline-flex; }
.sb-cta-icon svg { width: 16px; height: 16px; }

/* Sayfa içeriği banner'ın altında kalmasın */
@media (max-width: 768px) {
  #smartBanner.open ~ * { /* noop, just selectors */ }
  body:has(#smartBanner.open) { padding-bottom: 78px; }
}

/* ════════════════════════════════════════════════════════════════════════
   SCREENSHOTS SLIDER
═════════════════════════════════════════════════════════════════════════ */

.screenshots {
  position: relative;
  padding: 96px 0 32px;
  overflow: hidden;
}
.screenshots::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% 30%, rgba(0,184,86,0.10), transparent 65%),
    radial-gradient(700px 400px at 80% 80%, rgba(59,130,246,0.06), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.ss-stage {
  position: relative;
  margin-top: 56px;
  padding: 16px 0 8px;
}

.ss-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 28px clamp(16px, 12vw, 220px) 32px;
  -webkit-overflow-scrolling: touch;
}
.ss-track::-webkit-scrollbar { display: none; }

.ss-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), opacity .5s;
  opacity: 0.45;
  transform: scale(0.85);
}
.ss-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.ss-phone {
  position: relative;
  width: 270px;
  aspect-ratio: 9 / 19.5;
  background: #0a0d11;
  border-radius: 42px;
  border: 1px solid #2a2f38;
  box-shadow:
    0 0 0 6px #15181e,
    0 0 0 7px #2a2f38,
    0 30px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}
.ss-phone::after {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #0a0d11;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}
.ss-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #f5f6fa;
}

.ss-caption {
  text-align: center;
  margin-top: 28px;
  max-width: 280px;
}
.ss-caption .ss-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--c-primary-light);
  background: rgba(0,146,69,0.12);
  border: 1px solid rgba(0,146,69,0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.ss-caption h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.ss-caption p {
  font-size: 14px;
  color: var(--t-tertiary);
  line-height: 1.5;
}

/* Navigation arrows */
.ss-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(20,24,30,0.88);
  border: 1px solid var(--br-mid);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .15s, border-color .15s, transform .15s;
}
.ss-nav:hover { background: rgba(0,146,69,0.18); border-color: rgba(0,146,69,0.4); transform: translateY(-50%) scale(1.05); }
.ss-nav:active { transform: translateY(-50%) scale(0.95); }
.ss-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.ss-nav svg { width: 22px; height: 22px; color: var(--t-primary); }
.ss-prev { left: 12px; }
.ss-next { right: 12px; }
@media (max-width: 700px) {
  .ss-nav { width: 44px; height: 44px; }
  .ss-prev { left: 6px; }
  .ss-next { right: 6px; }
}

/* Dots */
.ss-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.ss-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--bg-elev-3);
  border: 1px solid var(--br-soft);
  padding: 0;
  cursor: pointer;
  transition: width .25s, background .2s;
}
.ss-dot:hover { background: var(--br-hard); }
.ss-dot.is-active {
  width: 28px;
  background: var(--c-primary);
  border-color: var(--c-primary);
}

/* ════════════════════════════════════════════════════════════════════════
   SON DEPREMLER (LIVE LIST) PAGE
═════════════════════════════════════════════════════════════════════════ */

.page-header {
  padding: 64px 0 32px;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 14px; }
.page-header p { margin-top: 12px; max-width: 620px; }

.live-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.live-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-sm);
}
.live-search svg { width: 18px; height: 18px; color: var(--t-tertiary); flex-shrink: 0; }
.live-search input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14.5px;
  color: var(--t-primary);
}
.live-search input::placeholder { color: var(--t-muted); }

.filter-group {
  display: flex;
  gap: 6px;
  background: var(--bg-elev-2);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-sm);
  padding: 4px;
  min-width: 0;                /* flex item'ın overflow yapmasını engelle */
}
.filter-chip {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
  flex: 1 1 auto;              /* gerektiğinde grup içinde eşit dağıl */
  min-width: 0;
  text-align: center;
}
.filter-chip:hover { color: var(--t-primary); }
.filter-chip.active {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,146,69,0.3);
}

/* ── Mobil: her filter-group kendi satırına, butonlar eşit dağıl ── */
@media (max-width: 720px) {
  .live-toolbar {
    padding: 10px;
    gap: 8px;
  }
  .filter-group {
    flex: 1 1 100%;            /* tam genişlik = her grup ayrı satır */
    width: 100%;
  }
  .filter-chip {
    padding: 9px 6px;          /* daha az horizontal padding */
    font-size: 12.5px;
  }
  .live-search {
    flex: 1 1 100%;
    min-width: 0;
  }
}
@media (max-width: 380px) {
  .filter-chip { font-size: 11.5px; padding: 8px 4px; }
}

.live-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--t-tertiary);
  padding: 0 4px;
}
.live-status .live-dot {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-primary-light);
  font-weight: 600;
}
.live-status .live-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary-light);
  box-shadow: 0 0 8px var(--c-primary-light);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 14px;
}

/* ════════════════════════════════════════════════════════════════════════
   FEATURED (Son deprem) — yatay büyük kart + mini harita + sismik dalga
═════════════════════════════════════════════════════════════════════════ */
.eq-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 22px;
  padding: 28px;
  background:
    radial-gradient(800px 400px at 25% 30%, rgba(0,184,86,0.10), transparent 65%),
    linear-gradient(135deg, #14181E 0%, #1B2028 100%);
  border: 1px solid var(--br-mid);
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 260px;
}
.eq-featured:hover {
  transform: translateY(-3px);
  border-color: rgba(0,184,86,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,184,86,0.3);
}
.eq-featured:focus-visible {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(0,184,86,0.3);
}

/* Magnitude rengi — sol üst köşede aksent şerit */
.eq-featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, transparent, currentColor, transparent);
  opacity: 0.7;
  z-index: 1;
}
.eq-featured.lvl-low    { color: #22c55e; }
.eq-featured.lvl-mid    { color: #f59e0b; }
.eq-featured.lvl-high   { color: #f97316; }
.eq-featured.lvl-severe { color: #ef4444; }

/* ── Arka plan sismik dalga halkaları (kartın altında, soluk) ──────── */
.ef-waves {
  position: absolute;
  bottom: 16px;            /* kartın iç alt kenarında */
  left: 30%;               /* sol-bilgi paneli ile mini map arasında */
  width: 0; height: 0;
  pointer-events: none;
  z-index: 0;              /* info & map (z-index 2) arkasında */
}
.ef-wave {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
  transform: scale(0.4);
  animation: ef-wave-expand 6s cubic-bezier(.2, .7, .3, 1) infinite;
  will-change: transform, opacity;
}
.ef-wave:nth-child(2) { animation-delay: 1.5s; }
.ef-wave:nth-child(3) { animation-delay: 3s;   }
.ef-wave:nth-child(4) { animation-delay: 4.5s; }
@keyframes ef-wave-expand {
  0%   { transform: scale(0.35); opacity: 0;    border-width: 1.5px; }
  12%  { opacity: 0.22; }                      /* peak %22 — soluk ama görünür */
  100% { transform: scale(5.5);  opacity: 0;   border-width: 0.5px; }
}
.ef-epicenter {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0%, transparent 75%);
  opacity: 0.35;
  animation: ef-epi-pulse 2s ease-in-out infinite;
}
@keyframes ef-epi-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.25; }
  50%      { transform: scale(1.4); opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
  .ef-wave, .ef-epicenter { animation: none !important; }
}

/* ── Sol: Bilgi paneli ────────────────────────────────────────────── */
.ef-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding-right: 24px;
}

.ef-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px 6px 10px;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 999px;
  color: #ff7a7a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ef-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.ef-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.ef-mag {
  flex-shrink: 0;
  width: 92px; height: 92px;
  border-radius: 22px;
  background: currentColor;
  color: inherit;  /* gerçek renk eq-featured.lvl-* üzerinden gelir */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.ef-mag strong {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}
.ef-mag span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  margin-top: 4px;
}
.ef-title { flex: 1; min-width: 0; }
.ef-title h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  margin: 0 0 6px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ef-title p {
  margin: 0;
  font-size: 14px;
  color: var(--t-tertiary);
}

/* ── Meta grid ─────────────────────────────────────────────────────── */
.ef-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
}
.ef-meta > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ef-meta dt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--t-tertiary);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ef-meta dt svg {
  width: 12px; height: 12px;
  color: var(--t-tertiary);
}
.ef-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.ef-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
  flex-wrap: wrap;
}
.ef-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(0,146,69,0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.eq-featured:hover .ef-cta {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,146,69,0.45);
}
.ef-cta svg { width: 16px; height: 16px; }
.ef-cta-hint { font-size: 12px; color: var(--t-tertiary); }

/* ── Sağ: Mini harita ─────────────────────────────────────────────── */
.ef-map-wrap {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--br-mid);
  background: #0a0d11;
  min-height: 240px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.ef-mini-map {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #0a0d11;
}
.ef-mini-map .leaflet-container {
  background: #0a0d11 !important;
  font-family: var(--font-sans) !important;
}
.ef-map-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 500;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.ef-map-overlay .ef-map-pin {
  width: 14px; height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-light);
}
.ef-map-overlay .ef-map-pin svg { width: 100%; height: 100%; }

/* ── Mobil ─────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .eq-featured {
    grid-template-columns: 1fr;
    padding: 20px;
    min-height: 0;
  }
  .ef-info { padding-right: 0; gap: 14px; }
  .ef-mag { width: 76px; height: 76px; border-radius: 18px; }
  .ef-mag strong { font-size: 28px; }
  .ef-meta { grid-template-columns: repeat(2, 1fr); }
  .ef-map-wrap { min-height: 200px; margin-top: 4px; }
  .ef-mini-map { min-height: 200px; }
}
@media (max-width: 480px) {
  .eq-featured { padding: 16px; border-radius: 18px; }
  .ef-row { gap: 12px; }
  .ef-mag { width: 68px; height: 68px; }
  .ef-mag strong { font-size: 24px; }
  .ef-title h2 { font-size: 1.05rem; }
  .ef-cta-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .ef-cta { justify-content: center; }
  .ef-cta-hint { text-align: center; }
}

.eq-card {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  position: relative;
}
.eq-card:hover { transform: translateY(-2px); border-color: var(--br-mid); }

/* Tıklanabilir kart (haritaya yönlendirir) */
.eq-card.is-clickable {
  cursor: pointer;
  outline: none;
}
.eq-card.is-clickable:hover {
  border-color: rgba(0,184,86,0.45);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,184,86,0.25);
}
.eq-card.is-clickable:focus-visible {
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(0,184,86,0.25);
}
.eq-card.is-clickable:active {
  transform: translateY(0);
}

/* Map cue ikonu (kartın sağ üstünde, hover'da görünür) */
.eq-map-cue {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(0,146,69,0.12);
  border: 1px solid rgba(0,146,69,0.25);
  color: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .18s ease, transform .18s ease, background .15s;
  pointer-events: none;
}
.eq-card.is-clickable:hover .eq-map-cue,
.eq-card.is-clickable:focus-visible .eq-map-cue {
  opacity: 1;
  transform: translateX(0);
}
.eq-map-cue svg { width: 16px; height: 16px; }
@media (hover: none) {
  /* Mobilde her zaman görünür */
  .eq-card.is-clickable .eq-map-cue { opacity: 0.85; transform: none; }
}

.eq-top { display: flex; align-items: flex-start; gap: 14px; }
.eq-mag {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 800;
}
.eq-mag .mag-num { font-size: 20px; line-height: 1; }
.eq-mag .mag-label { font-size: 9px; opacity: 0.85; letter-spacing: 1px; }

/* Magnitude colors */
.eq-mag.lvl-low { background: linear-gradient(135deg, #16a34a, #22c55e); }
.eq-mag.lvl-mid { background: linear-gradient(135deg, #ca8a04, #f59e0b); }
.eq-mag.lvl-high { background: linear-gradient(135deg, #ea580c, #f97316); }
.eq-mag.lvl-severe { background: linear-gradient(135deg, #b91c1c, #ef4444); box-shadow: 0 4px 14px rgba(239,68,68,0.35); }

.eq-info { flex: 1; min-width: 0; }
.eq-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--t-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.eq-loc { font-size: 13px; color: var(--t-tertiary); }

.eq-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 6px; }
.eq-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--t-secondary);
}
.eq-meta-item svg { width: 14px; height: 14px; color: var(--t-tertiary); }

.eq-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--br-soft);
  font-size: 12px;
}
.eq-time { color: var(--t-tertiary); }
.eq-source {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  border: 1px solid var(--br-soft);
  color: var(--t-secondary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.empty-state, .loading-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-card);
  border: 1px dashed var(--br-mid);
  border-radius: var(--radius-lg);
  color: var(--t-tertiary);
}
.empty-state .icon, .loading-state .icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  display: flex; align-items: center; justify-content: center;
}
.empty-state .icon svg, .loading-state .icon svg { width: 28px; height: 28px; color: var(--t-tertiary); }
.spinner {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(0,146,69,0.2);
  border-top-color: var(--c-primary-light);
  margin: 0 auto 18px;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════════════
   STATS PAGE
═════════════════════════════════════════════════════════════════════════ */

.stats-toolbar {
  margin-bottom: 18px;
}
.stats-range-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
}
.stats-range-btn {
  padding: 12px 8px;
  border-radius: 10px;
  background: transparent;
  color: var(--t-secondary);
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.stats-range-btn:hover { color: var(--t-primary); }
.stats-range-btn.active {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,146,69,0.35);
}
@media (max-width: 480px) {
  .stats-range-btn { font-size: 12px; padding: 10px 4px; }
}

/* Toplam deprem kartı */
.stats-total-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(0,184,86,0.10), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--br-mid);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.stc-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,146,69,0.14);
  border: 1px solid rgba(0,146,69,0.28);
  display: flex; align-items: center; justify-content: center;
}
.stc-icon svg { width: 26px; height: 26px; color: var(--c-primary-light); }
.stc-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.stc-label { font-size: 13px; color: var(--t-tertiary); font-weight: 500; }
.stc-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stc-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.stc-source {
  padding: 5px 12px;
  background: rgba(0,146,69,0.14);
  border: 1px solid rgba(0,146,69,0.3);
  border-radius: 999px;
  color: var(--c-primary-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.stc-range { font-size: 11px; color: var(--t-tertiary); }

/* Bölüm başlığı */
.stats-section-title {
  margin: 32px 0 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t-primary);
}

/* İl listesi */
.stats-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats-city-row {
  display: grid;
  grid-template-columns: 36px minmax(110px, 130px) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: 12px;
  transition: border-color .15s, transform .15s;
}
.stats-city-row:hover {
  border-color: var(--br-mid);
  transform: translateX(2px);
}

.scr-rank {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.05);
  color: var(--t-secondary);
}
.scr-rank.lvl-rank-1 { background: rgba(239,68,68,0.18);  color: #ef4444; }
.scr-rank.lvl-rank-2 { background: rgba(249,115,22,0.18); color: #f97316; }
.scr-rank.lvl-rank-3 { background: rgba(245,158,11,0.18); color: #f59e0b; }

.scr-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scr-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  overflow: hidden;
}
.scr-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--c-primary);
  border-radius: 5px;
  transition: width .6s cubic-bezier(.2,.8,.2,1);
}
.scr-bar-fill.lvl-rank-1 { background: linear-gradient(90deg, #b91c1c, #ef4444); }
.scr-bar-fill.lvl-rank-2 { background: linear-gradient(90deg, #c2410c, #f97316); }
.scr-bar-fill.lvl-rank-3 { background: linear-gradient(90deg, #b45309, #f59e0b); }
.scr-bar-fill.lvl-primary { background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light)); }

.scr-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--t-primary);
  min-width: 28px;
  text-align: right;
}
.scr-count.lvl-rank-1 { color: #ef4444; }
.scr-count.lvl-rank-2 { color: #f97316; }
.scr-count.lvl-rank-3 { color: #f59e0b; }
.scr-count.lvl-primary { color: var(--c-primary-light); }

.stats-meta-line {
  margin-top: 18px;
  font-size: 12px;
  color: var(--t-tertiary);
  text-align: center;
}

@media (max-width: 600px) {
  .stats-total-card { padding: 16px; gap: 12px; }
  .stc-icon { width: 48px; height: 48px; border-radius: 12px; }
  .stc-icon svg { width: 22px; height: 22px; }
  .stats-city-row {
    grid-template-columns: 30px 100px 1fr auto;
    gap: 8px;
    padding: 10px 12px;
  }
  .scr-rank { width: 24px; height: 24px; font-size: 12px; }
  .scr-name { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════════════
   LEGAL & CONTACT PAGES
═════════════════════════════════════════════════════════════════════════ */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 0 40px;
}
.legal .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,146,69,0.10);
  border: 1px solid rgba(0,146,69,0.25);
  border-radius: 999px;
  color: var(--c-primary-light);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.legal > p.intro {
  font-size: 1.05rem;
  color: var(--t-secondary);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--br-soft);
}
.legal section { margin-bottom: 36px; }
.legal section h2 {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.legal section h2 .num {
  width: 30px; height: 30px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.legal p { color: var(--t-secondary); margin-bottom: 12px; line-height: 1.75; }
.legal ul, .legal ol { padding-left: 22px; color: var(--t-secondary); margin-bottom: 12px; line-height: 1.75; }
.legal ul li, .legal ol li { margin-bottom: 8px; padding-left: 6px; }
.legal ul li { list-style: disc; }
.legal ol li { list-style: decimal; }
.legal a {
  color: var(--c-primary-light);
  border-bottom: 1px dashed rgba(0,184,86,0.4);
  transition: color .15s, border-color .15s;
}
.legal a:hover { color: #fff; border-color: var(--c-primary-light); }

.callout {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
  margin: 14px 0;
}
.callout.warn { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.25); }
.callout.danger { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); }
.callout.info { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.25); }
.callout svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.callout.warn svg { color: var(--c-orange); }
.callout.danger svg { color: var(--c-red); }
.callout.info svg { color: var(--c-blue); }
.callout p { margin: 0; color: var(--t-primary); font-size: 14px; }

.source-list-card {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 14px 0;
}
.source-list-card a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--br-soft);
  color: var(--t-primary);
  font-weight: 500;
  border-bottom: 1px solid var(--br-soft);
  transition: background .15s;
}
.source-list-card a:last-child { border-bottom: none; }
.source-list-card a:hover { background: var(--bg-elev-1); }
.source-list-card a .src-icon {
  width: 36px; height: 36px;
  background: rgba(59,130,246,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.source-list-card a .src-icon svg { width: 18px; height: 18px; color: var(--c-blue); }
.source-list-card a .src-arrow { margin-left: auto; color: var(--c-blue); }
.source-list-card a .src-arrow svg { width: 16px; height: 16px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.contact-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(0,146,69,0.14);
  border: 1px solid rgba(0,146,69,0.25);
}
.contact-card .ic svg { width: 24px; height: 24px; color: var(--c-primary-light); }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; color: var(--t-secondary); margin-bottom: 18px; flex: 1; }
.contact-card .action {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--bg-elev-2);
  border: 1px solid var(--br-soft);
  color: var(--c-primary-light);
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: background .15s, border-color .15s;
}
.contact-card .action:hover { background: rgba(0,146,69,0.12); border-color: rgba(0,146,69,0.3); }
.contact-card .action svg { width: 16px; height: 16px; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--br-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px; font-weight: 600;
  color: var(--t-secondary); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--br-soft);
  border-radius: 10px;
  color: var(--t-primary);
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(0,146,69,0.5);
  background: rgba(0,146,69,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ════════════════════════════════════════════════════════════════════════
   404 PAGE
═════════════════════════════════════════════════════════════════════════ */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #00B856 0%, #009245 50%, #1F232B 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.error-page p { max-width: 440px; margin: 0 auto 32px; color: var(--t-tertiary); }
.error-page .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── MOBILE SCROLL PERFORMANCE ─────────────────────────────────────────────
   Mobil GPU'larda backdrop-filter ve sonsuz animasyonlar scroll jank'ına
   sebep oluyor. <= 880px ekranlarda blur'u sadeleştir, sürekli animasyonları
   durdur. Görsel hiyerarşi korunur (solid arka plan + statik konum).
═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  /* Navbar — sticky + blur kombosu en büyük scroll jank sebebi */
  .navbar {
    background: rgba(15,18,22,0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Hero üzerindeki dekoratif sürekli animasyonlar */
  .wave-rings .wave,
  .wave-rings .epicenter,
  .hero-phone,
  .hero-notif,
  .hero-loc,
  .hero-mag,
  .hero-notif-icon::after,
  .hero-loc-dot,
  .sp-badge,
  .eq-marker.is-latest .m-pulse {
    animation: none !important;
  }

  /* Mobilde ağır blur'ları azalt — görsel etki büyük ölçüde korunur */
  .hero-notif,
  .hero-loc,
  .hero-mag,
  .sp-badge {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}


/* ── SCROLL PERFORMANCE: Hero hariç tüm sürekli animasyonlar kapalı ─────
   Hero alanı dışındaki sonsuz animasyonlar (eyebrow noktaları, navbar
   live-wave bars, spotlight badge'leri, harita marker pulse'ları,
   ef-row dalgaları) scroll sırasında compositor work üretip jank
   yaratıyordu. Hero animasyonları korunur. */
.eyebrow::before,
.live-wave .lw-bar,
.live-status .live-dot::before,
.sp-badge,
.eq-marker .m-pulse,
.ef-wave,
.ef-epicenter,
.ef-badge-dot {
  animation: none !important;
}
/* Hero içinde tekrar aç */
.hero .eyebrow::before {
  animation: pulse-dot 2s ease-in-out infinite !important;
}
.hero .live-wave .lw-bar {
  animation: lw-bounce 1.1s ease-in-out infinite !important;
}
