/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-950: #061529;
  --blue-900: #0a2158;
  --blue-800: #0f3178;
  --blue-700: #16469f;
  --blue-600: #1c5fd6;
  --blue-500: #3576f5;
  --cyan: #5fd0ff;
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.58);
  --white-15: rgba(255, 255, 255, 0.13);
  --white-10: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.14);
  --green: #34d399;
  --orange: #ff9452;
  --purple: #7c5cfc;
  --navy: #0b1526;
  --slate-60: rgba(11, 21, 38, 0.62);
  --bg-light: #eef3fd;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--white);
  background:
    radial-gradient(1100px 700px at 12% -10%, rgba(95, 208, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at 100% 20%, rgba(53, 118, 245, 0.35), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(10, 33, 88, 0.9), transparent 60%),
    linear-gradient(165deg, var(--blue-700) 0%, var(--blue-800) 42%, var(--blue-950) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

svg {
  display: block;
}

.icon {
  width: 18px;
  height: 18px;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 18px;
  z-index: 50;
  padding: 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.navbar--scrolled .navbar__inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.navbar--light .navbar__inner {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 21, 38, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 18px 40px -14px rgba(11, 21, 38, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.navbar__logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s var(--ease), opacity 0.25s ease;
}

.navbar__logo:hover .navbar__logo-img {
  transform: translateY(-1px);
}

.navbar__logo-img--dark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.navbar--light .navbar__logo-img--light {
  opacity: 0;
}

.navbar--light .navbar__logo-img--dark {
  opacity: 1;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
}

.navbar__nav a {
  position: relative;
  color: var(--white-70);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
  padding: 4px 0;
}

.navbar--light .navbar__nav a {
  color: rgba(11, 21, 38, 0.68);
}

.navbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}

.navbar__nav a:hover {
  color: var(--white);
}

.navbar--light .navbar__nav a:hover {
  color: var(--navy);
}

.navbar__nav a:hover::after {
  transform: scaleX(1);
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: inherit;
  color: var(--white-70);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.navbar--light .navbar__dropdown-trigger {
  color: rgba(11, 21, 38, 0.68);
}

.navbar__dropdown-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.2s var(--ease);
}

.navbar__dropdown:hover .navbar__dropdown-trigger,
.navbar__dropdown.is-open .navbar__dropdown-trigger {
  color: var(--white);
}

.navbar--light .navbar__dropdown:hover .navbar__dropdown-trigger,
.navbar--light .navbar__dropdown.is-open .navbar__dropdown-trigger {
  color: var(--navy);
}

.navbar__dropdown:hover .navbar__dropdown-chevron,
.navbar__dropdown.is-open .navbar__dropdown-chevron {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin-top: 14px;
  min-width: 190px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 50px -20px rgba(11, 21, 38, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
}

.navbar__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.is-open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.navbar__dropdown-menu a {
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.navbar__dropdown-menu a::after {
  content: none;
}

.navbar__dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--blue-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--pill {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  color: var(--white);
  border: 1px solid var(--border-soft);
  padding: 11px 22px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.35);
}

.btn--pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 26px -8px rgba(95, 208, 255, 0.35);
}

.navbar--light .btn--pill {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 24px -10px rgba(28, 95, 214, 0.5);
}

.navbar--light .btn--pill:hover {
  box-shadow: 0 14px 30px -10px rgba(28, 95, 214, 0.6);
}

.navbar__burger {
  display: none;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.navbar--light .navbar__burger {
  background: rgba(11, 21, 38, 0.06);
}

.navbar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.navbar--light .navbar__burger span {
  background: var(--navy);
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 1200px;
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  margin: 8px 20px 0;
  padding: 14px 20px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.navbar--light .navbar__mobile {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 21, 38, 0.08);
}

.navbar__mobile.is-open {
  display: flex;
}

.navbar__mobile a {
  color: var(--white-70);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar--light .navbar__mobile a {
  color: rgba(11, 21, 38, 0.7);
  border-bottom-color: rgba(11, 21, 38, 0.08);
}

.navbar__mobile-cta {
  margin-top: 14px;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  --phone-scale: 0.8;
  position: relative;
  height: calc(100dvh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(12px, 2vh, 24px);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero__blob--1 {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(95, 208, 255, 0.14), rgba(95, 208, 255, 0.01) 70%);
}

.hero__blob--2 {
  width: 320px;
  height: 320px;
  right: 6%;
  top: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01) 70%);
}

.hero__blob--3 {
  width: 240px;
  height: 240px;
  right: 30%;
  top: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(53, 118, 245, 0.35), transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(16px, 3vh, 40px);
  position: relative;
  z-index: 2;
  padding-top: clamp(16px, 4vh, 56px);
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  font-size: clamp(28px, 3.2vw + 2.4vh, 72px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: clamp(12px, 2vh, 28px);
  background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.82));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title .accent {
  background: linear-gradient(120deg, var(--cyan), #a8e6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  font-family: 'Inter', var(--font);
  font-size: clamp(13px, 0.7vw + 0.6vh, 18px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--white-70);
  max-width: 500px;
  margin-bottom: clamp(16px, 3vh, 38px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(18px, 3vh, 46px);
}

.btn--dark,
.btn--outline {
  padding: 14px 26px;
  border-radius: 16px;
  gap: 14px;
}

.btn--dark {
  background: linear-gradient(160deg, #10192e, #060c1a);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
}

.btn--dark:hover {
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.65);
}

.btn--dark .icon {
  width: 26px;
  height: 26px;
}

.btn--outline {
  background: linear-gradient(160deg, #ffffff, #f0f4ff);
  color: var(--blue-800);
  box-shadow: 0 14px 30px -10px rgba(95, 208, 255, 0.35);
}

.btn--outline:hover {
  box-shadow: 0 18px 36px -10px rgba(95, 208, 255, 0.5);
}

.btn--outline .icon {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

.btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.btn__text small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  padding-top: clamp(14px, 2vh, 32px);
  border-top: 1px solid var(--border-soft);
  max-width: 520px;
}

.stat__num {
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat__label {
  font-family: 'Inter', var(--font);
  font-size: 13px;
  color: var(--white-60);
  font-weight: 500;
}

/* ===== Phone mockup ===== */
.hero__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 0;
  height: calc(740px * var(--phone-scale, 1));
  transform: scale(var(--phone-scale, 1));
  transition: transform 0.2s ease, height 0.2s ease;
}

.phone-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 208, 255, 0.28), transparent 68%);
  filter: blur(10px);
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.phone {
  width: 320px;
  height: 660px;
  background: linear-gradient(160deg, #17224a, #060b1c);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  padding: 12px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.65),
    0 20px 50px -20px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  animation: float-phone 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes float-phone {

  0%,
  100% {
    /* Salınım aşağıya yanlı: yukarı uçta bile navbar'ın altına girip kesilmesin. */
    transform: translateY(20px) rotate(0deg);
  }

  50% {
    transform: translateY(6px) rotate(0.3deg);
  }
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #04070f;
  border-radius: 14px;
  z-index: 5;
}

.phone__notch::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10203f;
  box-shadow: inset 0 0 0 1px rgba(95, 208, 255, 0.35);
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #1b4bc4, #0c2264);
}

/* ===== App mockup (interactive) ===== */
.app-mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #eef2f7;
}

.app-mock__statusbar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  background: #ffffff;
  color: #0c1424;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 6;
}

.app-mock__status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.app-mock__status-icons svg {
  display: block;
}

.app-mock__status-icons svg:nth-child(1) {
  width: 17px;
  height: 12px;
}

.app-mock__status-icons svg:nth-child(3) {
  width: 22px;
  height: 12px;
}

.app-mock__lte {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.app-mock__searchbar {
  position: absolute;
  top: 34px;
  left: 12px;
  right: 92px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 8px 20px -10px rgba(10, 30, 80, 0.4);
  font-size: 13.5px;
  font-weight: 700;
  color: #0c1424;
  z-index: 900;
}

.app-mock__searchbar>svg:first-child {
  width: 17px;
  height: 17px;
  color: var(--blue-600);
  flex-shrink: 0;
}

.app-mock__searchbar span {
  flex: 1;
}

.app-mock__searchbar .chevron {
  width: 13px;
  height: 13px;
  color: #9aa3b5;
  flex-shrink: 0;
}

.app-mock__searchbar-actions {
  position: absolute;
  top: 34px;
  right: 12px;
  display: flex;
  gap: 7px;
  z-index: 900;
}

.app-mock__icon-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c1424;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(10, 30, 80, 0.4);
}

.app-mock__icon-btn svg {
  width: 15px;
  height: 15px;
}

.app-mock__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #ff5252;
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
}

.app-mock__map-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
}

.app-mock__map {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* Statik flat harita zemini: gerçek karo çekilmez, her açılışta aynı görünür. */
.app-mock__map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.app-mock__map .leaflet-container {
  font-family: var(--font);
  background: transparent;
  cursor: default;
}

.app-mock__map .leaflet-control-attribution {
  font-size: 7.5px !important;
  background: rgba(255, 255, 255, 0.65) !important;
  padding: 1px 4px !important;
  line-height: 1.3;
}

.app-mock__map .leaflet-control-zoom {
  display: none;
}

.app-mock__map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 40, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.app-mock__map-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.app-mock__fab {
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-500));
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px -8px rgba(28, 95, 214, 0.6);
  z-index: 1150;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.app-mock__fab:active {
  transform: scale(0.92);
}

.app-mock__fab svg {
  width: 20px;
  height: 20px;
}

.app-mock__tabbar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 14px;
  background: #fafbfe;
  position: relative;
  z-index: 6;
  overflow: visible;
}

.app-mock__tabbar-wave {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 26px;
  color: #3d7dfa;
  pointer-events: none;
}

.app-mock__tab {
  position: relative;
  width: 19px;
  height: 19px;
  color: #3d7dfa;
  display: flex;
}

.app-mock__tab svg:not(.app-mock__tabbar-wave) {
  width: 100%;
  height: 100%;
}

/* cluster markers (Leaflet divIcon content) */
.cluster-marker {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: linear-gradient(150deg, #ffffff, #eaf3ff 55%, #dbebff);
  border: 3px solid #5b9dff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -6px rgba(10, 30, 90, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -6px 10px -4px rgba(91, 157, 255, 0.25);
  cursor: pointer;
  position: relative;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease;
}

.cluster-marker:hover {
  transform: scale(1.1);
  border-color: #1c46c9;
}

.cluster-marker__glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cluster-marker__water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, #4a8bff, #1c46c9 92%);
  transform: translateY(100%);
  transition: transform 2.4s cubic-bezier(0.45, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.cluster-marker:hover .cluster-marker__water {
  transform: translateY(0%);
}

.cluster-marker__count {
  position: relative;
  z-index: 2;
  color: #1c5fd6;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: var(--font);
  font-size: calc(var(--size) * 0.3);
  pointer-events: none;
  transition: color 0.5s ease 0.15s;
}

.cluster-marker:hover .cluster-marker__count {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.cluster-marker__ping {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(95, 208, 255, 0.65);
  animation: cluster-ping 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes cluster-ping {
  0% {
    transform: scale(0.82);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* bottom-sheet download prompt */
.map-tooltip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 14px 24px 24px;
  box-shadow: 0 -20px 40px -14px rgba(8, 16, 40, 0.4);
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
  z-index: 1200;
  text-align: center;
}

.map-tooltip.is-open {
  transform: translateY(0);
  opacity: 1;
}

.map-tooltip__handle {
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: #e2e6ee;
  margin: 0 auto 14px;
}

.map-tooltip__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f4fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6579;
  cursor: pointer;
}

.map-tooltip__close svg {
  width: 12px;
  height: 12px;
}

.map-tooltip__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 10px;
  box-shadow: 0 8px 18px -6px rgba(28, 95, 214, 0.5);
}

.map-tooltip__icon svg {
  width: 21px;
  height: 21px;
}

.map-tooltip__label {
  font-size: 16px;
  font-weight: 600;
  color: #0c1424;
  letter-spacing: -0.01em;
}

.map-tooltip__label-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.map-tooltip__sub {
  font-family: 'Inter', var(--font);
  font-size: 12px;
  color: #6b7688;
  margin-top: 6px;
  line-height: 1.5;
}

.map-tooltip__cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 22px -8px rgba(28, 95, 214, 0.55);
  transition: transform 0.15s ease;
}

.map-tooltip__cta svg {
  width: 16px;
  height: 16px;
}

.map-tooltip__cta:hover {
  transform: translateY(-2px);
}

.btn--attention {
  animation: btn-attention-pulse 1.4s ease 2;
}

@keyframes btn-attention-pulse {

  0%,
  100% {
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
  }

  50% {
    box-shadow: 0 14px 30px -10px rgba(95, 208, 255, 0.9), 0 0 0 6px rgba(95, 208, 255, 0.25);
  }
}

/* ===== Scroll hint ===== */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: clamp(16px, 4vh, 48px);
  padding-top: clamp(10px, 2vh, 30px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-60);
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.2s ease;
}

.hero__scroll:hover {
  color: var(--white);
}

.hero__scroll-track {
  position: relative;
  width: 2px;
  height: 34px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.05));
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px 1px rgba(95, 208, 255, 0.6);
  animation: scroll-dot 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    top: 28px;
    opacity: 0;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero {
    --phone-scale: 0.62;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__phone-wrap {
    margin-top: 0;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__cta-desktop {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    --phone-scale: 0.5;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ===== Neden SuPublic? ===== */
.why {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-light);
  color: var(--navy);
  padding: clamp(48px, 8vh, 90px) 0;
}

.why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why__head {
  max-width: 720px;
  text-align: center;
  margin-bottom: clamp(28px, 5vh, 48px);
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--slate-60);
  margin-bottom: 16px;
}

.why__title {
  font-size: clamp(26px, 3vw + 1vh, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

.accent-blue {
  color: var(--blue-600);
}

.why__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .why__desc {
    white-space: normal;
  }
}

.why__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  gap: 40px;
  padding: 50px 20px 10px 40px;
}

.why__card-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 14px 14px 0 0;
  display: flex;
  animation: why-highlight 8s ease-in-out infinite;
}

.why__card-wrap--seq1 {
  animation-delay: 0s;
}

.why__card-wrap--seq2 {
  animation-delay: 2s;
}

.why__card-wrap--seq3 {
  animation-delay: 4s;
}

.why__card-wrap--seq4 {
  animation-delay: 6s;
}

@keyframes why-highlight {
  0% {
    transform: scale(1);
    z-index: 1;
  }

  8% {
    transform: scale(1.06);
    z-index: 3;
  }

  22% {
    transform: scale(1.06);
    z-index: 3;
  }

  32% {
    transform: scale(1);
    z-index: 1;
  }

  100% {
    transform: scale(1);
    z-index: 1;
  }
}

.why__card-wrap .why__card {
  animation: why-highlight-shadow 8s ease-in-out infinite;
}

.why__card-wrap--seq1 .why__card {
  animation-delay: 0s;
}

.why__card-wrap--seq2 .why__card {
  animation-delay: 2s;
}

.why__card-wrap--seq3 .why__card {
  animation-delay: 4s;
}

.why__card-wrap--seq4 .why__card {
  animation-delay: 6s;
}

@keyframes why-highlight-shadow {
  0% {
    box-shadow: 0 22px 40px -18px rgba(11, 21, 38, 0.3);
  }

  8% {
    box-shadow: 0 30px 55px -14px rgba(11, 21, 38, 0.45);
  }

  22% {
    box-shadow: 0 30px 55px -14px rgba(11, 21, 38, 0.45);
  }

  32% {
    box-shadow: 0 22px 40px -18px rgba(11, 21, 38, 0.3);
  }

  100% {
    box-shadow: 0 22px 40px -18px rgba(11, 21, 38, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {

  .why__card-wrap,
  .why__card-wrap .why__card {
    animation: none;
  }
}

.why__card-wrap--blue {
  --accent: var(--blue-600);
}

.why__card-wrap--purple {
  --accent: var(--purple);
}

.why__card-wrap--orange {
  --accent: var(--orange);
}

.why__card-wrap--green {
  --accent: #1ba869;
}

.why__card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  background: var(--accent);
  border-radius: 26px;
}

.why__card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 26px;
  padding: 70px 32px 46px;
  text-align: center;
  box-shadow: 0 22px 40px -18px rgba(11, 21, 38, 0.3);
  margin: 14px 0 0 14px;
}

.why__badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: 7px solid var(--accent);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 10px 22px -10px rgba(11, 21, 38, 0.4);
}

.why__card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin: 10px 0 14px;
}

.why__card p {
  font-family: 'Inter', var(--font);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--slate-60);
  margin-bottom: 26px;
  flex: 1;
}

.why__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}

.why__card-icon svg {
  width: 36px;
  height: 36px;
}

.why__bar {
  display: block;
  width: 50px;
  height: 7px;
  border-radius: 5px;
  background: var(--accent);
  margin: 0 auto;
}

/* ===== Nasıl Çalışır? ===== */
.how {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-light);
  color: var(--navy);
  padding: clamp(48px, 8vh, 90px) 0;
}

.how__head {
  max-width: 620px;
  margin: 0 auto clamp(32px, 5vh, 52px);
  text-align: center;
}

.how__title {
  font-size: clamp(30px, 3vw + 1vh, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.how__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .how__list {
    gap: 20px;
  }
}

.how__step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 128px;
  background: var(--white);
  border-radius: 22px;
  padding: 22px 32px 22px 176px;
  box-shadow: 0 16px 34px -20px rgba(11, 21, 38, 0.25);
  overflow: hidden;
}

.how__step--blue {
  --accent: var(--blue-600);
}

.how__step--purple {
  --accent: var(--purple);
}

.how__step--green {
  --accent: #1ba869;
}

.how__step-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 150px;
  background: var(--accent);
  border-radius: 22px 100px 100px 22px;
  display: flex;
  align-items: center;
}

.how__step-badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--white);
  padding-left: 22px;
}

.how__step-badge small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.how__step-badge strong {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.how__step-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
}

.how__step-icon svg {
  width: 36px;
  height: 36px;
}

.how__step-text h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.how__step-text p {
  font-family: 'Inter', var(--font);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate-60);
}

@media (max-width: 640px) {
  .how__step {
    padding: 18px 18px 18px 18px;
    padding-top: 84px;
    flex-wrap: wrap;
  }

  .how__step-color {
    width: 100%;
    height: 64px;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    border-radius: 22px 22px 0 0;
    justify-content: flex-start;
  }

  .how__step-badge {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-left: 22px;
  }

  .how__step-badge small {
    padding-top: 3px;
  }
}

@media (max-width: 900px) {
  .why__row {
    flex-direction: column;
    max-width: 380px;
    gap: 46px;
    padding-left: 34px;
  }
}

/* ===== Oyunlaştırma ===== */
.game {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  padding: clamp(48px, 8vh, 90px) 0;
}

.game__head {
  max-width: 620px;
  margin: 0 auto clamp(32px, 5vh, 52px);
  text-align: center;
}

.game__title {
  font-size: clamp(30px, 3vw + 1vh, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

.accent-green {
  color: #1ba869;
}

.game__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
}

.game__panel {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid var(--border-soft-navy, rgba(11, 21, 38, 0.08));
  border-radius: 32px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 70px -30px rgba(11, 21, 38, 0.2);
  overflow: hidden;
}

.game__panel::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 208, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.game__path {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 6px;
  margin-bottom: 44px;
}

.game__track {
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 7.5%;
  right: 7.5%;
  height: 3px;
  background: rgba(11, 21, 38, 0.1);
  border-radius: 3px;
}

.game__track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan), #1ba869);
  border-radius: 3px;
}

.game__badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 15%;
}

.game__badge--blue {
  --accent: var(--blue-500);
  --accent-2: var(--cyan);
}

.game__badge--green {
  --accent: #1ba869;
  --accent-2: #34d399;
}

.game__badge--purple {
  --accent: var(--purple);
  --accent-2: #ff6fb8;
}

.game__badge--orange {
  --accent: var(--orange);
  --accent-2: #ffce45;
}

.game__badge--cyan {
  --accent: var(--cyan);
  --accent-2: var(--blue-500);
}

.game__badge--gold {
  --accent: #f5b942;
  --accent-2: #ffce45;
}

.game__badge-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-light));
  border: 2px solid color-mix(in srgb, var(--accent) 35%, var(--bg-light));
  color: color-mix(in srgb, var(--accent) 75%, black 5%);
}

.game__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  overflow: hidden;
}

.game__badge-dot svg {
  width: 28px;
  height: 28px;
}

.game__badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game__badge--unlocked .game__badge-dot {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}

.game__badge-check,
.game__badge-lock {
  position: absolute;
  bottom: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
}

.game__badge-check {
  background: var(--bg-light);
  color: #1ba869;
}

.game__badge-check svg {
  width: 20px;
  height: 20px;
}

.game__badge-lock {
  background: #eef1f6;
  color: var(--slate-60);
}

.game__badge-lock svg {
  width: 11px;
  height: 11px;
}

.game__badge strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
}

.game__badge span {
  font-family: 'Inter', var(--font);
  font-size: 11.5px;
  color: var(--slate-60);
}

.game__badge--unlocked span {
  color: var(--accent-2);
}

.game__stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 32px;
  border-top: 1px solid rgba(11, 21, 38, 0.08);
}

.game__stat {
  text-align: center;
}

.game__stat strong {
  display: block;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-600);
}

.game__stat span {
  font-family: 'Inter', var(--font);
  font-size: 13px;
  color: var(--slate-60);
}

.game__tip {
  flex: 1;
  min-width: min(240px, 100%);
  font-family: 'Inter', var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-60);
  border-left: 2px solid var(--blue-500);
  padding-left: 16px;
}

.game__tip b {
  color: var(--navy);
}

@media (max-width: 760px) {
  .game__path {
    flex-wrap: wrap;
    row-gap: 28px;
  }

  .game__track {
    display: none;
  }

  .game__badge {
    width: 30%;
  }

  .game__stats {
    row-gap: 20px;
  }
}

/* ===== Liderler Tablosu ===== */
.board {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  padding: clamp(32px, 5vh, 56px) 0;
}

.board__head {
  max-width: 620px;
  margin: 0 auto clamp(18px, 3vh, 28px);
  text-align: center;
}

.board__title {
  font-size: clamp(24px, 2.4vw + 1vh, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}

.board__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
}

.board__panel {
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.board__features {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.board__feature {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-radius: 20px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 20px 44px -28px rgba(11, 21, 38, 0.3);
  overflow: hidden;
}

.board__feature-badge {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 0 0 14px 0;
}

.board__feature-badge--gold {
  background: linear-gradient(135deg, #f5b942, #e08a2b);
}

.board__feature-badge--slate {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.board__feature-badge--orange {
  background: linear-gradient(135deg, var(--orange), #e07a2e);
}

.board__feature-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
  border: 3px solid var(--bg-light);
  overflow: hidden;
}

.board__feature-avatar img,
.board__row-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.board__feature-avatar--gold {
  background: linear-gradient(160deg, #f5b942, #e08a2b);
  box-shadow: 0 0 0 3px #f5b942, 0 10px 20px -10px rgba(245, 185, 66, 0.55);
}

.board__feature-avatar--slate {
  background: linear-gradient(160deg, #94a3b8, #64748b);
  box-shadow: 0 0 0 3px #94a3b8, 0 10px 20px -10px rgba(100, 116, 139, 0.45);
}

.board__feature-avatar--orange {
  background: linear-gradient(160deg, var(--orange), #e07a2e);
  box-shadow: 0 0 0 3px var(--orange), 0 10px 20px -10px rgba(255, 148, 82, 0.5);
}

.board__feature-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.board__feature-role {
  display: block;
  font-family: 'Inter', var(--font);
  font-size: 13px;
  color: var(--slate-60);
  margin-bottom: 16px;
}

.board__feature-score {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 12px;
}

.board__feature-score strong {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1.1;
}

.board__feature-score span {
  font-family: 'Inter', var(--font);
  font-size: 12px;
  color: var(--slate-60);
}

.board__rows {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 8px 16px;
}

.board__row {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: 0 10px 24px -18px rgba(11, 21, 38, 0.25);
}

.board__row-rank {
  flex: none;
  width: 26px;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate-60);
}

.board__row-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  overflow: hidden;
}

.board__row-avatar--gold {
  background: linear-gradient(160deg, #f5b942, #e08a2b);
}

.board__row-avatar--slate {
  background: linear-gradient(160deg, #94a3b8, #64748b);
}

.board__row-avatar--blue {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-500));
}

.board__row-avatar--purple {
  background: linear-gradient(160deg, var(--purple), #ff6fb8);
}

.board__row-avatar--orange {
  background: linear-gradient(160deg, var(--orange), #e07a2e);
}

.board__row-avatar--green {
  background: linear-gradient(160deg, #1ba869, #34d399);
}

.board__row-avatar--cyan {
  background: linear-gradient(160deg, var(--cyan), var(--blue-500));
}

.board__row-who {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.board__row-who strong {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board__row-who small {
  font-family: 'Inter', var(--font);
  font-size: 11.5px;
  color: var(--slate-60);
}

.board__row-score {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 8px 14px;
  border-radius: 12px;
  color: var(--white);
}

.board__row-score strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.board__row-score span {
  font-family: 'Inter', var(--font);
  font-size: 9.5px;
  opacity: 0.85;
}

.board__row-score--blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
}

.board__row-score--purple {
  background: linear-gradient(135deg, var(--purple), #ff6fb8);
}

.board__row-score--orange {
  background: linear-gradient(135deg, var(--orange), #e07a2e);
}

.board__row-score--green {
  background: linear-gradient(135deg, #1ba869, #34d399);
}

.board__row-score--cyan {
  background: linear-gradient(135deg, var(--cyan), var(--blue-500));
}

@media (max-width: 720px) {
  .board__rows {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}

@media (max-width: 560px) {
  .board__features {
    flex-direction: column;
  }
}

/* ===== Sosyal Sorumluluk ===== */
.impact {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-light);
  color: var(--navy);
  padding: clamp(36px, 6vh, 64px) 0;
}

.impact__head {
  max-width: 680px;
  margin: 0 auto clamp(24px, 4vh, 36px);
  text-align: center;
}

.impact__title {
  font-size: clamp(26px, 2.6vw + 1vh, 38px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 8px 0 12px;
}

.impact__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
}

.impact__card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 30px 70px -35px rgba(11, 21, 38, 0.25);
  overflow: hidden;
}

.impact__content {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.impact__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #e2edff;
  color: var(--blue-600);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.impact__tag svg {
  width: 15px;
  height: 15px;
}

.impact__claim {
  font-size: clamp(22px, 2vw + 1vh, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}

.impact__text {
  font-family: 'Inter', var(--font);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate-60);
  margin-bottom: 22px;
}

.impact__text b {
  color: var(--navy);
}

.impact__progress {
  margin-bottom: 26px;
}

.impact__progress-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: 'Inter', var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.impact__progress-label strong {
  color: var(--blue-600);
  font-weight: 800;
}

.impact__progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-light);
  overflow: hidden;
}

.impact__progress-fill {
  display: block;
  height: 100%;
  min-width: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan));
}

.impact__progress-note {
  font-family: 'Inter', var(--font);
  font-size: 12.5px;
  color: var(--slate-60);
  margin-top: 8px;
}

.impact__cta {
  align-self: flex-start;
  margin-top: auto;
}

.impact__media {
  position: relative;
  min-height: 320px;
}

.impact__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact__media-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 16px;
  padding: 14px 18px;
}

.impact__media-caption span {
  display: block;
  font-family: 'Inter', var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue-600);
  margin-bottom: 2px;
}

.impact__media-caption strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.impact__media-caption small {
  display: block;
  font-family: 'Inter', var(--font);
  font-size: 12px;
  color: var(--slate-60);
  margin-top: 2px;
}

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

  .impact__media {
    min-height: 260px;
    order: -1;
  }
}

/* ===== Yorumlar + İndir ===== */
.testi {
  position: relative;
  background: var(--white);
  color: var(--navy);
  padding: clamp(28px, 4vh, 48px) 0;
}

.testi__head {
  max-width: 620px;
  margin: 0 auto clamp(16px, 2.5vh, 24px);
  text-align: center;
}

.testi__title {
  font-size: clamp(28px, 3vw + 1vh, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 8px;
}

.testi__grid {
  max-width: 1180px;
  margin: 0 auto clamp(20px, 3vh, 28px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi__card {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 22px 22px;
}

.testi__stars {
  display: flex;
  gap: 3px;
  color: #f5b942;
  margin-bottom: 10px;
}

.testi__stars svg {
  width: 17px;
  height: 17px;
}

.testi__quote {
  font-family: 'Inter', var(--font);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 14px;
}

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

.testi__avatar {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}

.testi__avatar--blue {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-500));
}

.testi__avatar--green {
  background: linear-gradient(160deg, #1ba869, #34d399);
}

.testi__avatar--purple {
  background: linear-gradient(160deg, var(--purple), #ff6fb8);
}

.testi__who {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.testi__who strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
}

.testi__who small {
  font-family: 'Inter', var(--font);
  font-size: 12px;
  color: var(--slate-60);
}

.testi__download {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(155deg, var(--blue-600), var(--blue-800));
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 48px) 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(11, 21, 38, 0.4);
}

.testi__download-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 208, 255, 0.3), transparent 70%);
  pointer-events: none;
}

.testi__download-drop {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: var(--cyan);
  filter: drop-shadow(0 8px 16px rgba(95, 208, 255, 0.5));
  margin-bottom: 6px;
}

.testi__download-drop svg {
  width: 34px;
  height: 34px;
}

.testi__download-title {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 2.6vw + 1vh, 36px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.testi__download-desc {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto 24px;
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-70);
}

.testi__download-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.testi__store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 11px 20px;
  border-radius: 14px;
  box-shadow: 0 14px 30px -12px rgba(6, 21, 41, 0.4);
  transition: transform 0.2s var(--ease);
}

.testi__store:hover {
  transform: translateY(-2px);
}

.testi__store .icon {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

.testi__store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
  font-size: 14.5px;
  font-weight: 700;
}

.testi__store-text small {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--slate-60);
}

.testi__download-note {
  position: relative;
  z-index: 1;
  font-family: 'Inter', var(--font);
  font-size: 12.5px;
  color: var(--white-60);
}

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

@media (max-width: 480px) {
  .testi__download-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Haberler & Bloglar ===== */
.news {
  position: relative;
  background: var(--bg-light);
  color: var(--navy);
  padding: clamp(36px, 6vh, 64px) 0;
}

.news__head {
  max-width: 680px;
  margin: 0 auto clamp(24px, 4vh, 36px);
  text-align: center;
}

.news__heading {
  font-size: clamp(26px, 2.6vw + 1vh, 38px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 8px 0 12px;
}

.news__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
}

.news__grid {
  max-width: 1180px;
  margin: 0 auto clamp(24px, 4vh, 36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 50px -32px rgba(11, 21, 38, 0.3);
  overflow: hidden;
}

.news__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  color: var(--white);
}

.news__media svg {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.news__media--blue {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-500));
}

.news__media--green {
  background: linear-gradient(160deg, #1ba869, #34d399);
}

.news__media--purple {
  background: linear-gradient(160deg, var(--purple), #ff6fb8);
}

.news__media--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
}

.news__content {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 24px;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', var(--font);
  font-size: 12px;
  color: var(--slate-60);
  margin-bottom: 10px;
}

.news__card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
}

.news__excerpt {
  font-family: 'Inter', var(--font);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate-60);
  margin-bottom: 16px;
}

.news__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-600);
  align-self: flex-start;
  transition: gap 0.2s var(--ease);
}

.news__link .icon {
  width: 16px;
  height: 16px;
}

.news__link:hover {
  gap: 10px;
}

.news__more {
  display: flex;
  justify-content: center;
}

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

/* ===== Haberler & Bloglar (liste sayfası) ===== */
.newsroom {
  background: var(--white);
  color: var(--navy);
  padding: clamp(120px, 16vh, 160px) 0 90px;
}

.newsroom__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.newsroom__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: clamp(36px, 5vh, 48px);
}

.newsroom__column + .newsroom__column {
  border-left: 1px solid rgba(11, 21, 38, 0.1);
  padding-left: 48px;
}

.newsroom__section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(11, 21, 38, 0.1);
}

.newsroom__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsroom__card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 20px 22px;
}

.newsroom__card-media {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.newsroom__card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', var(--font);
  font-size: 12px;
  margin-bottom: 8px;
}

.newsroom__card-tag {
  font-weight: 700;
  color: var(--blue-600);
}

.newsroom__card-date {
  color: var(--slate-60);
}

.newsroom__card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.newsroom__card-excerpt {
  font-family: 'Inter', var(--font);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate-60);
  margin-bottom: 10px;
}

.newsroom__card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
}

.newsroom__card-link:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .newsroom__columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsroom__column + .newsroom__column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(11, 21, 38, 0.1);
    padding-top: 40px;
  }
}

/* ===== İletişim ===== */
.contact {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  padding: clamp(40px, 7vh, 80px) 0;
}

.contact__head {
  max-width: 620px;
  margin: 0 auto clamp(24px, 4vh, 36px);
  text-align: center;
}

.contact__title {
  font-size: clamp(26px, 2.6vw + 1vh, 38px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 8px 0 12px;
}

.contact__desc {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-60);
}

.contact__panel {
  max-width: 1080px;
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--bg-light);
  border-radius: 28px;
  box-shadow: 0 30px 70px -35px rgba(11, 21, 38, 0.25);
  overflow: hidden;
}

.contact__info {
  position: relative;
  background: linear-gradient(165deg, var(--blue-700) 0%, var(--blue-800) 55%, var(--blue-950) 100%);
  color: var(--white);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact__info-item strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white-60);
  margin-bottom: 2px;
}

.contact__info-item span {
  font-family: 'Inter', var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}

.contact__info-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
}

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

.contact__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

a.contact__social--instagram:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white);
}

a.contact__social--x:hover {
  background: #000000;
  color: var(--white);
}

a.contact__social--linkedin:hover {
  background: #0a66c2;
  color: var(--white);
}

.contact__social svg {
  width: 36px;
  height: 36px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 16px;
  padding: 32px 30px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  gap: 16px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 6px;
}

.contact__field span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}

.contact__field input,
.contact__field textarea {
  font-family: 'Inter', var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(11, 21, 38, 0.08);
  border-radius: 12px;
  padding: 11px 14px;
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(53, 118, 245, 0.15);
}

.contact__submit {
  align-self: stretch;
  justify-content: center;
  margin-top: 4px;
}

.contact__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}

.contact__captcha-row {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.contact__captcha-question {
  flex: none;
  font-family: 'Inter', var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(11, 21, 38, 0.08);
  border-radius: 12px;
  padding: 11px 16px;
  white-space: nowrap;
}

.contact__captcha-row input {
  flex: 1;
  min-width: 0;
}

.contact__captcha-refresh {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(11, 21, 38, 0.08);
  background: var(--white);
  color: var(--slate-60);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact__captcha-refresh:hover {
  color: var(--blue-600);
  transform: rotate(90deg);
}

.contact__captcha-refresh svg {
  width: 16px;
  height: 16px;
}

.contact__captcha-error {
  display: none;
  font-family: 'Inter', var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: #e0453c;
  margin-top: -6px;
}

.contact__captcha-error.is-visible {
  display: block;
}

.contact__success {
  display: none;
  font-family: 'Inter', var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: #1ba869;
}

.contact__success.is-visible {
  display: block;
}

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

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

/* ===== Footer ===== */
.footer {
  background: var(--blue-950);
  color: var(--white-70);
  padding: 56px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer__logo {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 16px;
}

.footer__desc {
  font-family: 'Inter', var(--font);
  font-size: 14px;
  line-height: 1.65;
  color: var(--white-60);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 17px;
  height: 17px;
}

.footer__social-link--instagram:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer__social-link--x:hover {
  background: #ffffff;
  color: #000000;
}

.footer__social-link--linkedin:hover {
  background: #0a66c2;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__col a {
  font-family: 'Inter', var(--font);
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', var(--font);
  font-size: 13px;
  color: var(--white-60);
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.footer__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Yasal Sayfalar ===== */
.legal {
  background: var(--white);
  color: var(--navy);
  padding: clamp(120px, 16vh, 160px) 0 90px;
  min-height: 70vh;
}

.legal__inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 28px;
}

.legal__back svg {
  width: 16px;
  height: 16px;
}

.legal__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-60);
  margin-bottom: 10px;
}

.legal__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-cover {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.legal__meta {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 40px;
  font-family: 'Inter', var(--font);
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate-60);
}

.legal__meta strong {
  color: var(--navy);
  font-weight: 700;
}

.legal__meta a {
  color: var(--blue-600);
  font-weight: 600;
}

.legal article h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
}

.legal article p {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-60);
  margin-bottom: 14px;
}

.legal article ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal article li {
  font-family: 'Inter', var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-60);
}

.legal article a {
  color: var(--blue-600);
  font-weight: 600;
}

.legal article strong {
  color: var(--navy);
}