:root {
  --blue: #0052ff;
  --blue-light: #e8f0ff;
  --blue-mid: #3d7fff;
  --bg: #fcfdfe;
  --text-dark: #0a0f1e;
  --text-mid: #3d4a6b;
  --text-soft: #6b7a9d;
  --white: #ffffff;
  --shadow-blue: rgba(0, 82, 255, 0.18);
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
}

/* ══════════════════════════════════════════
   HERO (DOKUNULMADI)
══════════════════════════════════════════ */
.location-hero {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0px 0 40px;
}
.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.location-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-bl {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0, 82, 255, 0.15);
  width: fit-content;
  animation: fadeSlideDown 0.6s ease both;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  animation: fadeSlideDown 0.6s 0.1s ease both;
}
.hero-h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 4px;
  opacity: 0.25;
}
.hero-body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text-mid);
  max-width: 480px;
  animation: fadeSlideDown 0.6s 0.2s ease both;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.6s 0.3s ease both;
}
.btn-primary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 82, 255, 0.3);
}
.btn-secondary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  background: transparent;
  border: 1.5px solid rgba(0, 82, 255, 0.3);
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  animation: fadeSlideDown 0.6s 0.4s ease both;
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulseDot 2s infinite;
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp 0.8s 0.25s ease both;
}
.map-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 460px;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(0, 82, 255, 0.1);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 64px rgba(0, 82, 255, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.turkey-shape {
  position: relative;
  width: 320px;
  height: 160px;
}
.turkey-land {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f0f5ff 0%, #e4edff 100%);
  border-radius: 40% 55% 45% 38% / 38% 45% 55% 44%;
  border: 1.5px solid rgba(0, 82, 255, 0.14);
  overflow: hidden;
}
.net-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.net-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.1), transparent);
  height: 1px;
  width: 100%;
  transform-origin: left center;
}
.net-line:nth-child(1) {
  top: 30%;
  transform: rotate(-4deg);
}
.net-line:nth-child(2) {
  top: 52%;
  transform: rotate(3deg);
  width: 88%;
  left: 6%;
}
.net-line:nth-child(3) {
  top: 22%;
  transform: rotate(-9deg);
  width: 72%;
  left: 14%;
}
.turkey-east {
  position: absolute;
  right: -20px;
  top: 28px;
  width: 58px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0ff, #ddeaff);
  border-radius: 28% 62% 42% 30% / 32% 42% 58% 38%;
  border: 1.5px solid rgba(0, 82, 255, 0.12);
}
.turkey-west-notch {
  position: absolute;
  left: 28px;
  bottom: -10px;
  width: 72px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
}
.city-dot {
  position: absolute;
}
.city-dot::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.2);
  animation: cityPulse 2.5s infinite;
  position: relative;
  z-index: 2;
}
.city-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(0, 82, 255, 0.3);
  border-radius: 50%;
  animation: cityRing 2.5s infinite;
}
.city-dot.istanbul {
  top: 22%;
  left: 18%;
}
.city-dot.istanbul::before {
  animation-delay: 0s;
}
.city-dot.istanbul::after {
  animation-delay: 0s;
}
.city-dot.ankara {
  top: 38%;
  left: 45%;
}
.city-dot.ankara::before {
  animation-delay: 0.5s;
}
.city-dot.ankara::after {
  animation-delay: 0.5s;
}
.city-dot.izmir {
  top: 56%;
  left: 20%;
}
.city-dot.izmir::before {
  animation-delay: 1s;
}
.city-dot.izmir::after {
  animation-delay: 1s;
}
.city-dot.antalya {
  top: 72%;
  left: 40%;
}
.city-dot.antalya::before {
  animation-delay: 1.5s;
}
.city-dot.antalya::after {
  animation-delay: 1.5s;
}
.city-dot.bursa {
  top: 28%;
  left: 30%;
}
.city-dot.bursa::before {
  animation-delay: 0.8s;
}
.city-dot.bursa::after {
  animation-delay: 0.8s;
}
.city-dot.trabzon {
  top: 16%;
  left: 70%;
}
.city-dot.trabzon::before {
  animation-delay: 1.2s;
}
.city-dot.trabzon::after {
  animation-delay: 1.2s;
}
.city-dot.gaziantep {
  top: 64%;
  left: 64%;
}
.city-dot.gaziantep::before {
  animation-delay: 2s;
}
.city-dot.gaziantep::after {
  animation-delay: 2s;
}
.city-connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.city-connector line {
  stroke: rgba(0, 82, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  animation: dashFlow 3s linear infinite;
}
.loc-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(0, 82, 255, 0.14);
  border-radius: 100px;
  padding: 7px 14px 7px 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow:
    0 4px 16px rgba(0, 82, 255, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  white-space: nowrap;
  z-index: 10;
}
.loc-tag.t-istanbul {
  top: -18px;
  left: -16px;
  animation: floatA 3.8s ease-in-out infinite;
}
.loc-tag.t-ankara {
  top: 38px;
  right: -24px;
  animation: floatB 4.2s ease-in-out infinite;
  animation-delay: 0.5s;
}
.loc-tag.t-izmir {
  bottom: 64px;
  left: -26px;
  animation: floatA 4.6s ease-in-out infinite;
  animation-delay: 1s;
}
.loc-tag.t-antalya {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatC 3.6s ease-in-out infinite;
  animation-delay: 1.5s;
}
.loc-tag.t-bursa {
  top: 108px;
  right: -20px;
  animation: floatA 5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.stat-chip {
  position: absolute;
  background: linear-gradient(135deg, var(--blue) 0%, #1a6aff 100%);
  color: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.3);
  z-index: 10;
}
.stat-chip .sc-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-chip .sc-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.chip-cities {
  top: -20px;
  right: 28px;
  animation: floatB 4s ease-in-out infinite;
}
.chip-clients {
  bottom: -16px;
  right: 44px;
  animation: floatA 4.4s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cityPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0, 82, 255, 0.06);
  }
}
@keyframes cityRing {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}
@keyframes dashFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -27;
  }
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.07);
  }
}

@media (max-width: 920px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .location-hero {
    padding: 60px 0 50px;
  }

  .map-card {
    height: 360px;
    max-width: 440px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
  .hero-h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

/* ══════════════════════════════════════════
   BÖLÜM 2 — REGION SELECTOR DARK
══════════════════════════════════════════ */
.region-selector-dark {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #0a0b10;
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
}
.rsd-glow-1 {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.rsd-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.rsd-glow-3 {
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(61, 127, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.rsd-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.rsd-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.rsd-header {
  text-align: center;
  margin-bottom: 56px;
}
.rsd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.28);
  color: #5b9aff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.rsd-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #0052ff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 82, 255, 0.8);
  animation: eyebrowPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes eyebrowPulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 82, 255, 0.8);
  }
  50% {
    box-shadow:
      0 0 16px rgba(0, 82, 255, 0.4),
      0 0 4px rgba(0, 82, 255, 1);
  }
}
.rsd-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f0f4ff;
  margin-bottom: 16px;
}
.rsd-title .rsd-accent {
  color: #0052ff;
  position: relative;
  display: inline;
}
.rsd-title .rsd-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #3d7fff);
  border-radius: 3px;
  opacity: 0.35;
}
.rsd-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #5a6480;
  max-width: 560px;
  margin: 0 auto;
}

/* Search */
.rsd-search-wrap {
  max-width: 640px;
  margin: 0 auto 20px;
  position: relative;
}
.rsd-search-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0 20px 0 52px;
  height: 58px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8ff;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.rsd-search-bar::placeholder {
  color: #3a4260;
  font-weight: 400;
}
.rsd-search-bar:focus {
  border-color: rgba(0, 82, 255, 0.6);
  background: rgba(0, 82, 255, 0.06);
  box-shadow:
    0 0 0 3px rgba(0, 82, 255, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.rsd-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #3a4260;
  pointer-events: none;
  transition: color 0.25s;
}
.rsd-search-wrap:focus-within .rsd-search-icon {
  color: #5b9aff;
}
.rsd-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #0052ff;
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.4);
  white-space: nowrap;
}
.rsd-search-btn:hover {
  background: #1a6aff;
  box-shadow: 0 6px 22px rgba(0, 82, 255, 0.5);
}

/* Quick filters */
.rsd-quick-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}
.rsd-qf-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3a4260;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
  flex-shrink: 0;
}
.rsd-qf-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8899cc;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}
.rsd-qf-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.15), rgba(0, 82, 255, 0));
  opacity: 0;
  transition: opacity 0.25s;
}
.rsd-qf-btn:hover::before {
  opacity: 1;
}
.rsd-qf-btn:hover {
  color: #a8c4ff;
  border-color: rgba(0, 82, 255, 0.45);
  background: rgba(0, 82, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.15);
}
.rsd-qf-dot {
  width: 5px;
  height: 5px;
  background: #0052ff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 82, 255, 0.9);
  flex-shrink: 0;
}

/* ── BENTO GRID ── */
.rsd-bento {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
  margin-bottom: 72px;
}
.rsd-region-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 32px 32px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.rsd-region-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.6), rgba(61, 127, 255, 0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
.rsd-region-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 30% 0%, rgba(0, 82, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.rsd-region-card:hover::before {
  opacity: 1;
}
.rsd-region-card:hover::after {
  opacity: 1;
}
.rsd-region-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 82, 255, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.3);
}
.rsd-region-card.card-large {
  grid-row: span 3;
  min-height: 500px;
}
.rc-top,
.rc-bottom {
  position: relative;
  z-index: 1;
}
.rc-region-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 82, 255, 0.14);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #5b9aff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.rc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.rsd-region-card:hover .rc-icon-wrap {
  background: rgba(0, 82, 255, 0.22);
  border-color: rgba(0, 82, 255, 0.45);
}
.rc-icon-wrap svg {
  color: #4d8aff;
  width: 22px;
  height: 22px;
}
.rc-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #e8edff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.card-large .rc-title {
  font-size: 2rem;
}
.rc-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: #3d4a70;
  line-height: 1.65;
}
.rc-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.rc-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0052ff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 82, 255, 0.4);
}
.card-large .rc-stat-num {
  font-size: 3.2rem;
}
.rc-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3d4a70;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rc-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5b9aff;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.25);
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
  margin-top: 20px;
}
.rc-cta:hover {
  background: rgba(0, 82, 255, 0.2);
  border-color: rgba(0, 82, 255, 0.5);
  color: #a0c4ff;
  transform: translateX(3px);
}
.rc-cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.rc-cta:hover svg {
  transform: translateX(3px);
}
.rc-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.rc-city-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #3d4a70;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 4px 10px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.rsd-region-card:hover .rc-city-tag {
  color: #6680aa;
  border-color: rgba(0, 82, 255, 0.2);
  background: rgba(0, 82, 255, 0.06);
}
.rc-shimmer {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.12), transparent 65%);
  border-radius: 0 24px 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.rsd-region-card:hover .rc-shimmer {
  opacity: 1;
}
.rc-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.35), transparent);
  top: 0;
  animation: scanDown 4s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.rsd-region-card:hover .rc-scanline {
  opacity: 1;
}
@keyframes scanDown {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}

/* ══════════════════════════════════════════
   ŞEHİR KARTLARI — WHITE BÖLÜM
══════════════════════════════════════════ */
.rsd-city-index {
  margin: 0 -40px -110px;
  padding: 80px 40px 110px;
  position: relative;
}

.rsd-index-header {
  text-align: center;
  margin-bottom: 48px;
}
.rsd-index-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.28);
  color: #5b9aff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 13px 5px 9px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.rsd-index-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: #0052ff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 82, 255, 0.5);
}
.rsd-index-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #f0f4ff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.rsd-index-title .acc {
  color: #0052ff;
}
.rsd-index-sub {
  font-size: 0.9rem;
  color: #5a6a90;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* City card grid */
.rsd-city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Individual city card */
.rsd-city-card {
  border: 1px solid rgba(0, 82, 255, 0.1);
  background: rgba(255, 255, 255, 0.028);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.rsd-city-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.4), rgba(61, 127, 255, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.rsd-city-card:hover::before {
  opacity: 1;
}
.rsd-city-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(0, 82, 255, 0.12),
    0 4px 12px rgba(0, 82, 255, 0.06);
}

.rsd-cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(0, 82, 255, 0.07);
  position: relative;
  z-index: 1;
}
.rsd-cc-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rsd-cc-emoji {
  width: 44px;
  height: 44px;
  background: #f0f5ff;
  border: 1px solid rgba(0, 82, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.rsd-city-card:hover .rsd-cc-emoji {
  background: #e0eaff;
  border-color: rgba(0, 82, 255, 0.28);
}
.rsd-cc-city-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e8edff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.rsd-cc-region {
  font-size: 0.68rem;
  font-weight: 500;
  color: #8899bb;
  margin-top: 2px;
}
.rsd-cc-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: #0052ff;
  background: #e8f0ff;
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rsd-cc-links {
  padding: 14px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.rsd-cc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #6880bd;
  font-size: 0.8rem;
  font-weight: 500;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}
.rsd-cc-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #0052ff;
  border-radius: 2px;
  transition: height 0.2s;
}
.rsd-cc-link:hover::before {
  height: 60%;
}
.rsd-cc-link:hover {
  color: #0052ff;
  background: #001b35;
}
.rsd-cc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.25);
  flex-shrink: 0;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.rsd-cc-link:hover .rsd-cc-dot {
  background: #0052ff;
  box-shadow: 0 0 6px rgba(0, 82, 255, 0.5);
}
.rsd-cc-link-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: #0052ff;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.rsd-cc-link:hover .rsd-cc-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom CTA */
.rsd-bottom-cta {
  margin-top: 64px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.rsd-bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.5), transparent);
}
.rsd-bcta-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #c8d4f0;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.rsd-bcta-sub {
  font-size: 0.82rem;
  color: #3a4870;
  font-weight: 400;
}
.rsd-bcta-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.rsd-bcta-btn-primary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: #0052ff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0, 82, 255, 0.35);
}
.rsd-bcta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 82, 255, 0.45);
}
.rsd-bcta-btn-secondary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5b9aff;
  background: transparent;
  border: 1px solid rgba(0, 82, 255, 0.3);
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.rsd-bcta-btn-secondary:hover {
  border-color: rgba(0, 82, 255, 0.6);
  background: rgba(0, 82, 255, 0.08);
  transform: translateY(-2px);
}
        .hero-right {
            width: 100%;
            max-width: 760px;
        }

        /* --- Karanlık Pano (Dashboard Card) --- */
        .tr-dashboard {
            background-color: #0b1120;
            border: 1px solid #1e293b;
            border-radius: 20px;
            padding: 32px;
            color: #94a3b8;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .tr-dashboard::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(11, 17, 32, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .dashboard-content {
            position: relative;
            z-index: 1;
        }

        /* --- Üst Başlık Alanı --- */
        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .dash-title-area .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #38bdf8;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .dot {
            width: 6px;
            height: 6px;
            background-color: #38bdf8;
            border-radius: 50%;
            display: inline-block;
        }

        .dash-title-area h2 {
            color: #f8fafc;
            font-size: 24px;
            font-weight: 600;
        }

        .dash-title-area h2 .highlight {
            color: #38bdf8;
        }

        .dash-status {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .signal-bars {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 16px;
        }

        .signal-bars span {
            width: 4px;
            background-color: #1d4ed8;
            border-radius: 2px;
        }
        .signal-bars span:nth-child(1) { height: 6px; }
        .signal-bars span:nth-child(2) { height: 10px; }
        .signal-bars span:nth-child(3) { height: 14px; background-color: #38bdf8;}
        .signal-bars span:nth-child(4) { height: 18px; background-color: #38bdf8;}

        .live-btn {
            background-color: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #34d399;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .live-btn .dot { background-color: #34d399; }

        /* --- İstatistik Satırı --- */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
            padding: 20px 0;
            margin-bottom: 30px;
        }

        .stat-item {
            border-right: 1px solid #1e293b;
            padding: 0 15px;
        }
        .stat-item:last-child { border-right: none; }
        .stat-item:first-child { padding-left: 0; }

        .stat-val {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 28px;
            color: #38bdf8;
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -1px;
        }
        .stat-item:nth-child(2) .stat-val { color: #f8fafc; }
        .stat-item:nth-child(3) .stat-val { color: #34d399; }
        .stat-item:nth-child(4) .stat-val { color: #fbbf24; }

        .stat-label {
            font-size: 11px;
            font-weight: 700;
            color: #64748b;
            margin-bottom: 4px;
        }
        .stat-sub { font-size: 10px; color: #475569; }

        /* --- Harita Alanı (Görsel ve Animasyonlu) --- */
        .map-section { margin-bottom: 30px; }
        
        .map-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .map-title {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #64748b;
        }

        .map-legend {
            display: flex;
            gap: 12px;
            font-size: 11px;
        }
        .map-legend div { display: flex; align-items: center; gap: 5px; }
        .map-legend .l-bati .dot { background-color: #3b82f6; }
        .map-legend .l-orta .dot { background-color: #34d399; }
        .map-legend .l-dogu .dot { background-color: #fbbf24; }
        .map-legend .l-ic-anadolu .dot { background-color: #f1c2b4; }
        .map-legend .l-akdeniz .dot { background-color: #DD70DC; }

        .map-container {
            position: relative;
            width: 100%;
            height: 240px;
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid #1e293b;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden;
        }

        .map-image {
            width: 100%; 
            height: auto;
            object-fit: contain;
            opacity: 0.7;
            filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.2));
        }

        /* Şehir Noktaları */
        .city-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .city-node .point {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 10px 2px currentColor;
            position: relative;
            z-index: 2;
        }

        /* Radar/Nabız Animasyonu */
        .city-node .pulse {
            position: absolute;
            top: 14%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: currentColor;
            border-radius: 50%;
            z-index: 1;
            opacity: 0;
            animation: pulseAnim 2s infinite;
        }

        @keyframes pulseAnim {
            0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
            100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
        }

        .city-node .name {
            font-size: 9px;
            color: rgba(255,255,255,0.9);
            margin-top: 6px;
            font-weight: 600;
            pointer-events: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        /* Konumlandırmalar (Kendi görseline göre bu yüzdelerle oynayabilirsin) */
        .c-istanbul { top: 30%; left: 24%; color: #3b82f6; }
        .c-bursa { top: 42%; left: 24%; color: #3b82f6; }
        .c-izmir { top: 60%; left: 16%; color: #34d399; }
        .c-ankara { top: 45%; left: 40%; color: #f1c2b4; }
        .c-antalya { top: 75%; left: 31%; color: #DD70DC; }
        .c-trabzon { top: 33%; left: 69%; color: #fbbf24; }

        /* --- Bölgeler Grid --- */
        .regions-title {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #64748b;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .regions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }

        .region-card {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid #1e293b;
            border-radius: 10px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .region-card:hover {
            background: rgba(30, 41, 59, 0.8);
            border-color: #334155;
        }

        .rc-header {
            display: flex;
            align-items: center;
            text-wrap:nowrap;
            gap: 6px;
            font-size: 11px;
            color: #cbd5e1;
            margin-bottom: 10px;
        }

        .rc-val {
            font-size: 18px;
            font-weight: 700;
            color: #f8fafc;
            font-family: 'Arial Black', Impact, sans-serif;
        }

        .rc-sub { font-size: 10px; color: #64748b; }

        /* Kart Renkleri */
        .rc-marmara .dot { background: #3b82f6; }
        .rc-marmara { border-top-color: #3b82f6; }
        .rc-ege .dot { background: #34d399; }
        .rc-ege { border-top-color: #34d399; }
        .rc-akdeniz .dot { background: #818cf8; }
        .rc-akdeniz { border-top-color: #818cf8; }
        .rc-icanadolu .dot { background: #10b981; }
        .rc-icanadolu { border-top-color: #10b981; }
        .rc-karadeniz .dot { background: #fbbf24; }
        .rc-karadeniz { border-bottom-color: #fbbf24; }
        .rc-dogu .dot { background: #f59e0b; }
        .rc-dogu { border-bottom-color: #f59e0b; }
        .rc-gdogu .dot { background: #a855f7; }
        .rc-gdogu { border-bottom-color: #a855f7; }
        
        .rc-growth {
            background: rgba(14, 165, 233, 0.05);
            border-color: rgba(14, 165, 233, 0.2);
        }
        .rc-growth .dot { background: #0ea5e9; }
        .rc-growth .rc-val { color: #0ea5e9; }

        /* --- Footer / Progress --- */
        .progress-header {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #64748b;
            margin-bottom: 8px;
        }
        .progress-header span:last-child {
            color: #38bdf8;
            font-weight: 700;
        }

        .progress-bar-bg {
            width: 100%;
            height: 6px;
            background: #1e293b;
            border-radius: 3px;
            margin-bottom: 20px;
            position: relative;
        }
        .progress-bar-fill {
            position: absolute;
            left: 0; top: 0; height: 100%; width: 100%;
            background: linear-gradient(90deg, #1d4ed8, #0ea5e9, #34d399);
            border-radius: 3px;
            box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
        }
        .progress-bar-fill::after {
            content: '';
            position: absolute;
            right: -2px; top: -2px;
            width: 10px; height: 10px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 8px #34d399;
        }

        .city-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .city-tag {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid #1e293b;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 11px;
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .city-tag .dot { width: 5px; height: 5px; }


/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .rsd-bento {
    grid-template-columns: 1fr 1fr;
  }
  .rsd-region-card.card-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }
  .card-large .rc-title {
    font-size: 1.7rem;
  }
  .card-large .rc-stat-num {
    font-size: 2.4rem;
  }
  .rsd-city-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .rsd-city-index {
    margin: 0 -40px -110px;
    padding: 72px 40px 110px;
  }
}
@media (max-width: 760px) {
  .rsd-inner {
    padding: 0 20px;
  }
  .region-selector-dark {
    padding: 72px 0 80px;
  }
  .rsd-bento {
    grid-template-columns: 1fr;
  }
  .rsd-region-card.card-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .rsd-city-cards {
    grid-template-columns: 1fr;
  }
  .rsd-city-index {
    margin: 0 -20px -110px;
    padding: 56px 20px 110px;
  }
  .rsd-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .rsd-bcta-right {
    width: 100%;
  }
  .rsd-bcta-btn-primary,
  .rsd-bcta-btn-secondary {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .rsd-quick-filters {
    gap: 6px;
  }
  .rsd-city-cards {
    grid-template-columns: 1fr;
  }
}
