/* ===========================
   YolMaliyetim — style.css
   =========================== */

:root {
  --bg: #080e1a;
  --bg2: #0d1525;
  --bg3: #111827;
  --card: #111827;
  --card2: #1c2333;
  --blue: #135BEC;
  --blue2: #2A75FF;
  --blue-dim: rgba(19,91,236,0.15);
  --blue-glow: rgba(19,91,236,0.35);
  --green: #4ADE80;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --radius: 16px;
  --radius2: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(90deg, #135BEC, #60a5fa, #2A75FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════
   NAV
════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8,14,26,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 48px; /* Logoya uygun yükseklik */
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--blue-dim);
}
.nav-cta {
  background: var(--blue);
  color: white;
  padding: 9px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--blue-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════
   HERO
════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(19,91,236,0.12);
  top: -100px; left: -150px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(96,165,250,0.07);
  top: 200px; right: -100px;
}
.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(19,91,236,0.3);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-desc {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 20px var(--blue-glow);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--blue-glow);
}
.btn-primary.full-w { width: 100%; text-align: center; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border2);
  transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  background: var(--blue-dim);
  border-color: rgba(19,91,236,0.4);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue2);
}
.stat-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* ── PHONE MOCKUP ── */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px;
  background: #0d1525;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 20px 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.phone-screen { display: flex; flex-direction: column; gap: 12px; }
.app-topbar {
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-title-sm {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}
.app-card {
  background: linear-gradient(135deg, #1C2333, #0F141E);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.app-card-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.app-car-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}
.app-car-sub {
  font-size: 11px;
  color: var(--text3);
  margin-top: 3px;
}
.app-calc {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.app-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.app-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-dot.blue { background: var(--blue2); }
.app-dot.red { background: #ef4444; }
.app-input-fake {
  font-size: 11px;
  color: var(--text2);
}
.app-divider-line {
  height: 1px;
  background: var(--border);
  margin: 4px 0 4px 16px;
}
.app-result-card {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  position: relative;
  background: rgba(255,255,255,0.02);
}
.app-result-card.cheapest {
  background: rgba(74,222,128,0.06);
  border-color: rgba(74,222,128,0.3);
}
.app-route-name { font-size: 12px; font-weight: 600; color: white; }
.app-route-info { font-size: 10px; color: var(--text3); margin-top: 2px; }
.app-route-price {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}
.app-route-price.alt { color: #818cf8; font-size: 12px; }
.app-badge-rec {
  position: absolute;
  bottom: 6px; left: 12px;
  font-size: 8px;
  font-weight: 700;
  background: var(--green);
  color: black;
  padding: 2px 6px;
  border-radius: 4px;
}
.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: var(--blue-glow);
  filter: blur(40px);
  border-radius: 50%;
}

/* ════════════════════════
   SECTIONS COMMON
════════════════════════ */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 56px;
  max-width: 560px;
}

/* ════════════════════════
   FEATURES
════════════════════════ */
#ozellikler { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(19,91,236,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card.highlight-card {
  border-color: rgba(19,91,236,0.4);
  background: linear-gradient(145deg, #111827, #0d1525);
}
.feat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  background: var(--blue-glow);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* ════════════════════════
   NASIL ÇALIŞIR — YILAN S DÜZENİ
════════════════════════ */
#nasil-calisir { background: var(--bg); }

.road-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.road-svg {
  position: absolute;
  top: 40px; bottom: 40px; left: 0; right: 0;
  width: 100%; height: calc(100% - 80px);
  z-index: 0;
}

.road-bg {
  fill: none;
  stroke: #1e293b;
  stroke-width: 60px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.road-dash {
  fill: none;
  stroke: #fff;
  stroke-width: 4px;
  stroke-dasharray: 20 20;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.road-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.road-step {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 220px;
}

/* Sağ peak -> İçerik solda, marker sağda */
.step-right { justify-content: flex-start; }
.step-right .rs-content {
  width: 55%;
  margin-left: 20px;
}
.step-right .rs-marker {
  position: absolute;
  left: 84.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Sol peak -> İçerik sağda, marker solda */
.step-left { justify-content: flex-end; }
.step-left .rs-content {
  width: 55%;
  margin-right: 20px;
}
.step-left .rs-marker {
  position: absolute;
  left: 15.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rs-content {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.rs-content:hover {
  transform: translateY(-5px);
  border-color: rgba(19,91,236,0.4);
}

.rs-marker {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  border: 6px solid var(--bg);
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.rs-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.rs-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}

/* ════════════════════════
   GOOGLE PLAY İNDİR (CTA)
════════════════════════ */
#indir {
  background: var(--bg2);
  padding: 80px 5%;
}
.download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--card);
  border: 1px solid var(--blue-dim);
  border-radius: var(--radius2);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.dl-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--blue-glow);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.dl-left {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.dl-badge {
  display: inline-block;
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.3);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dl-left h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.dl-left p {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
}
.dl-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gplay-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 12px;
  color: white;
  transition: all 0.3s;
  cursor: default; /* Şimdilik link yok */
}
.gplay-btn:hover {
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.gplay-logo {
  width: 24px;
  height: 24px;
}
.gplay-text {
  display: flex;
  flex-direction: column;
}
.gplay-sub {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gplay-main {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}
.dl-info-chip {
  font-size: 13px;
  color: var(--text3);
  background: rgba(255,255,255,0.05);
  padding: 8px 14px;
  border-radius: 12px;
}

.dl-right {
  position: relative;
  z-index: 1;
}
.dl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dl-feat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ════════════════════════
   MİSYON VİZYON
════════════════════════ */
#misyon {
  background: var(--bg2);
  text-align: center;
}
#misyon .section-sub { margin: 0 auto 56px; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}
.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px;
  transition: all 0.3s;
}
.mv-card:hover {
  border-color: rgba(19,91,236,0.35);
  transform: translateY(-3px);
}
.mv-card.mission { border-top: 3px solid var(--blue); }
.mv-card.vision { border-top: 3px solid #60a5fa; }
.mv-icon { font-size: 36px; margin-bottom: 16px; }
.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
}
.values-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.value-pill {
  background: var(--blue-dim);
  border: 1px solid rgba(19,91,236,0.25);
  color: #93c5fd;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.value-pill:hover {
  background: rgba(19,91,236,0.25);
  transform: scale(1.05);
}

/* ════════════════════════
   GELİŞTİRİCİ
════════════════════════ */
#gelistirici { background: var(--bg); }
.dev-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 48px;
}
.dev-avatar-wrap { position: relative; flex-shrink: 0; }
.dev-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
}
.dev-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(135deg, var(--blue), transparent) border-box;
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.dev-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dev-name-row h3 {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}
.dev-badge {
  background: var(--blue-dim);
  border: 1px solid rgba(19,91,236,0.3);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.dev-bio {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.dev-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}
.tech-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 8px;
}
.dev-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.dev-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

/* ════════════════════════
   GİZLİLİK
════════════════════════ */
#gizlilik { background: var(--bg2); }
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.privacy-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.privacy-block:hover { border-color: rgba(19,91,236,0.25); }
.privacy-block h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.privacy-block p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}
.privacy-block ul { padding-left: 4px; }
.privacy-block li {
  font-size: 14px;
  color: var(--text2);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.6;
}
.privacy-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue2);
  font-size: 12px;
}
.privacy-block strong { color: var(--text); }
.privacy-link {
  color: var(--blue2);
  font-weight: 600;
}
.privacy-link:hover { text-decoration: underline; }

/* ════════════════════════
   İLETİŞİM
════════════════════════ */
#iletisim { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(19,91,236,0.3); }
.contact-icon {
  font-size: 24px;
  width: 48px; height: 48px;
  background: var(--blue-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
a.contact-value:hover { color: var(--blue2); }

/* FORM */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--green);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: #050b14;
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.brand-logo-footer {
  height: 60px; /* Footer logosu biraz daha büyük olabilir */
  width: auto;
  object-fit: contain;
}
.footer-desc {
  color: var(--text3);
  font-size: 14px;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-links a {
  color: var(--text2);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 6px;
}
.footer-pkg { font-size: 11px !important; opacity: 0.6; }

/* ════════════════════════
   ANIMATIONS
════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .dev-card {
    flex-direction: column;
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }
  .dev-name-row { justify-content: center; }
  .dev-techs { justify-content: center; }
  /* Yılan Düzeni → dikey (mobil) */
  .road-svg { display: none; }
  .road-step {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 16px;
    margin-bottom: 24px;
  }
  .step-right, .step-left {
    justify-content: center;
    padding: 0;
  }
  .step-right .rs-content, .step-left .rs-content {
    width: 100%;
    margin: 0;
  }
  .step-right .rs-marker, .step-left .rs-marker {
    position: relative;
    left: auto; top: auto;
    transform: none;
    order: -1; /* Marker'ı her zaman üste al */
  }

  /* İndir Banner Mobil */
  .download-banner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .dl-actions {
    justify-content: center;
  }
  .dl-glow {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  section { padding: 70px 5%; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
}
