/* =========================================================
   Team Game — Tasarım Sistemi
   Neon (cyan/kırmızı) + derin lacivert cam (glassmorphism)
   ========================================================= */

:root {
  --bg-0: #081827;
  --bg-1: #0d2840;
  --bg-2: #112a45;
  --ink: #eaf2ff;
  --ink-soft: #b8c6db;
  --ink-dim: #8195ad;

  --cyan: #38e1ff;
  --red: #ff4d6d;
  --grad: linear-gradient(100deg, #38e1ff 0%, #6aa8ff 45%, #ff4d6d 100%);

  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-soft: rgba(255, 255, 255, 0.08);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow-cyan: 0 0 40px rgba(56, 225, 255, 0.35);
  --glow-red: 0 0 40px rgba(255, 77, 109, 0.3);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --nav-h: 124px;          /* en üstte: büyük logo için yüksek navbar */
  --nav-h-scrolled: 72px;  /* kaydırınca: kompakt navbar */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  /* Mobilde yatay kaymayı engelle: kapalı off-canvas menü ve dekoratif bloblar
     sağ kenarın dışına taşıyor; kökte kırp ki sayfa yana kaydırılamasın ve
     hamburger her zaman sağ üst köşede kalsın. (body'deki overflow-x sabit
     konumlu menüyü kırpmaya yetmiyor.) */
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 12% -8%, rgba(56, 225, 255, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, rgba(255, 77, 109, 0.12), transparent 55%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-0) 55%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  /* Sabit (fixed) navbar'ın altından başlasın diye içeriğe üst boşluk */
  padding-top: var(--nav-h);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--glass);
  margin-bottom: 22px;
}

section { position: relative; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; /* akıştan çıkar: küçülünce sayfa yüksekliği değişmez,
                      böylece scroll-anchoring kaynaklı "açılıp kapanma" glitch'i olmaz */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(24px, 6vw);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(8, 18, 33, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke-soft);
}

#nav-logo {
  height: 96px; /* sayfanın en üstündeyken büyük logo */
  object-fit: contain;
  transition: height 0.3s ease;
}
/* Kaydırınca logo (ve navbar) küçülür, daha az yer kaplar */
.navbar.scrolled #nav-logo { height: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.95rem;
}
.nav-links > a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links > a:hover,
.nav-links > a.active { color: var(--ink); }
.nav-links > a:hover::after,
.nav-links > a.active::after { width: 100%; }

/* Dil seçici */
.dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.dropdown-toggle:hover { color: var(--ink); border-color: var(--cyan); }
.dropdown .chev { font-size: 0.7rem; transition: transform 0.2s ease; }
.dropdown.open .chev { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  right: 0; top: calc(100% + 10px);
  min-width: 150px;
  background: rgba(13, 28, 45, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--glass-strong); color: var(--ink); }

/* CTA pill butonlar */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #06111d;
  background: var(--grad);
  box-shadow: var(--glow-cyan);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-pill:hover { transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 0 50px rgba(56, 225, 255, 0.5); }
.btn-pill.ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: none;
}
.btn-pill.ghost:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn-pill.full { width: 100%; }
.nav-cta { padding: 11px 22px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   ARKA PLAN BLOBLARI
   ========================================================= */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.blob-cyan { width: 420px; height: 420px; background: rgba(56, 225, 255, 0.35); top: -60px; left: -80px; }
.blob-red { width: 460px; height: 460px; background: rgba(255, 77, 109, 0.28); bottom: -120px; right: -100px; }
.blob-cyan.small { width: 300px; height: 300px; top: auto; left: 50%; transform: translateX(-50%); bottom: -100px; }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: clamp(40px, 7vw, 90px) max(24px, 6vw) clamp(60px, 8vw, 110px);
  min-height: calc(100vh - var(--nav-h));
}
.hero-content { position: relative; z-index: 2; max-width: 540px; }
.hero-content h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 38px;
  max-width: 440px;
}

/* App store rozetleri */
.app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.app-buttons.center { justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 16px;
  background: #f6f4ee;
  color: #11151c;
  min-width: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45); }
.store-badge.dark {
  background: rgba(20, 32, 50, 0.7);
  color: var(--ink);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}
.store-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.4 12.9c0-2 1.6-3 1.7-3a3.7 3.7 0 0 0-2.9-1.6c-1.2-.1-2.4.7-3 .7s-1.6-.7-2.6-.7A4 4 0 0 0 6 10.4C4.6 12.9 5.6 16.6 7 18.6c.7 1 1.5 2.1 2.5 2 1-.04 1.4-.65 2.6-.65s1.6.65 2.6.63c1.1-.02 1.8-1 2.5-2a8.7 8.7 0 0 0 1.1-2.3c-.03-.01-2.1-.8-2.1-3.2zM14.5 6.9c.5-.7.9-1.6.8-2.6-.8.04-1.8.55-2.4 1.2-.5.6-1 1.5-.8 2.4.9.07 1.8-.4 2.4-1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.4 12.9c0-2 1.6-3 1.7-3a3.7 3.7 0 0 0-2.9-1.6c-1.2-.1-2.4.7-3 .7s-1.6-.7-2.6-.7A4 4 0 0 0 6 10.4C4.6 12.9 5.6 16.6 7 18.6c.7 1 1.5 2.1 2.5 2 1-.04 1.4-.65 2.6-.65s1.6.65 2.6.63c1.1-.02 1.8-1 2.5-2a8.7 8.7 0 0 0 1.1-2.3c-.03-.01-2.1-.8-2.1-3.2zM14.5 6.9c.5-.7.9-1.6.8-2.6-.8.04-1.8.55-2.4 1.2-.5.6-1 1.5-.8 2.4.9.07 1.8-.4 2.4-1z'/%3E%3C/svg%3E");
}
.store-icon.play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3.2v17.6c0 .6.6 1 1.1.7l13-8.8c.5-.3.5-1 0-1.4l-13-8.8C4.6 2.2 4 2.6 4 3.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3.2v17.6c0 .6.6 1 1.1.7l13-8.8c.5-.3.5-1 0-1.4l-13-8.8C4.6 2.2 4 2.6 4 3.2z'/%3E%3C/svg%3E");
}
.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-text .small-text { font-size: 0.72rem; opacity: 0.75; }
.store-text .large-text { font-size: 1.15rem; font-weight: 700; font-family: "Poppins", sans-serif; }

/* Video pill görselleri */
.hero-visuals {
  position: relative;
  z-index: 1;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pill-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--grad);
  filter: blur(80px);
  opacity: 0.4;
}
.video-pill {
  width: 250px;
  height: 400px;
  border-radius: 130px;
  overflow: hidden;
  position: absolute;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Animasyon sırasında köşe kırpmasının "titremesini" (in/out glitch) önler:
     elemanı kendi GPU katmanına sabitle. */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  isolation: isolate;
}
.video-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}
.video-pill video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Videoyu da kendi yuvarlak maskesiyle kırp + kendi katmanına al;
     üst elemanın köşe kırpma hatasını telafi eder. */
  border-radius: inherit;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.pill-1 { left: 6%; top: 70px; z-index: 2; animation: float 6s ease-in-out infinite; }
.pill-2 { right: 6%; top: 0; z-index: 1; animation: float2 6s ease-in-out infinite 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(0.92); }
  50% { transform: translateY(-22px) scale(0.92); }
}

/* =========================================================
   VİDEO OYNATICI / VIDEO SHOWCASE
   ========================================================= */
.video-showcase {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) max(24px, 6vw);
}
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 10px; /* gradient çerçeve kalınlığı */
  background: var(--grad);
  box-shadow: var(--shadow), 0 0 60px rgba(56, 225, 255, 0.18);
}
/* İç koyu yüzey + videoyu yuvarlat */
.video-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  background: #04101d;
  z-index: 0;
}
.showcase-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #04101d;
  object-fit: cover;
}

/* Oynat kaplaması — videodan önce markalı kapak görevi görür */
.video-overlay {
  position: absolute;
  inset: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  color: var(--ink);
  background:
    radial-gradient(120% 120% at 50% 35%, rgba(56, 225, 255, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(13, 40, 64, 0.85), rgba(8, 18, 33, 0.92));
  backdrop-filter: blur(2px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.play-ring {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 10px rgba(56, 225, 255, 0.12), var(--glow-cyan);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-overlay:hover .play-ring {
  transform: scale(1.07);
  box-shadow: 0 0 0 14px rgba(56, 225, 255, 0.16), 0 0 50px rgba(56, 225, 255, 0.5);
}
.play-triangle {
  width: 0;
  height: 0;
  margin-left: 6px; /* görsel merkezleme */
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #06111d;
}
.play-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .play-ring { width: 70px; height: 70px; }
  .play-triangle { border-width: 13px 0 13px 21px; }
  .play-label { font-size: 0.95rem; }
}

/* =========================================================
   BÖLÜM BAŞLIĞI (ortak)
   ========================================================= */
.section-head {
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
  padding: 0 24px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); }

/* =========================================================
   ÖZELLİK KARTLARI
   ========================================================= */
.features, .values { padding: clamp(60px, 9vw, 110px) max(24px, 6vw); max-width: var(--maxw); margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--stroke);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  font-size: 1.8rem;
  border-radius: 18px;
  background: var(--glass-strong);
  border: 1px solid var(--stroke);
  margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* =========================================================
   NASIL ÇALIŞIR ÖNİZLEME (ana sayfa)
   ========================================================= */
.how-preview { max-width: var(--maxw); margin: 0 auto; padding: 0 max(24px, 6vw) clamp(60px, 9vw, 100px); }
.how-preview-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, rgba(56, 225, 255, 0.08), rgba(255, 77, 109, 0.08));
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 56px);
  backdrop-filter: blur(8px);
}
.how-preview-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.how-preview-text p { color: var(--ink-soft); margin-bottom: 26px; }
.mini-steps { list-style: none; display: grid; gap: 14px; }
.mini-steps li {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 500;
}
.mini-steps li span {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: #06111d;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
   ADIMLAR (Nasıl Çalışır sayfası)
   ========================================================= */
.steps { max-width: 820px; margin: 0 auto; padding: clamp(40px, 6vw, 70px) max(24px, 6vw) clamp(40px, 6vw, 60px); }
.step-list { list-style: none; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  padding: 30px 32px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateX(6px); border-color: var(--cyan); }
.step-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.step-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step-body p { color: var(--ink-soft); }

/* =========================================================
   SSS
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) max(24px, 6vw); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--stroke); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--cyan); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 0 20px; }

/* =========================================================
   SAYFA HERO (iç sayfalar)
   ========================================================= */
.page-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  padding: clamp(60px, 9vw, 120px) max(24px, 6vw) clamp(40px, 6vw, 70px);
}
.page-hero.short { padding-bottom: clamp(20px, 3vw, 40px); }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; margin-bottom: 18px; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.error-page { min-height: 70vh; display: grid; align-items: center; }
.error-page .btn-pill { margin-top: 28px; }

/* =========================================================
   HAKKIMIZDA: HİKÂYE
   ========================================================= */
.about-story { max-width: var(--maxw); margin: 0 auto; padding: clamp(30px, 5vw, 60px) max(24px, 6vw); }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.story-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.story-text p { color: var(--ink-soft); margin-bottom: 16px; }
.story-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.story-visual .video-pill { position: relative; }

/* =========================================================
   CTA BANT
   ========================================================= */
.cta-band {
  max-width: 960px;
  margin: clamp(40px, 6vw, 80px) auto;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) max(24px, 6vw);
  background: linear-gradient(120deg, rgba(56, 225, 255, 0.1), rgba(255, 77, 109, 0.1));
  border: 1px solid var(--stroke);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; z-index: 2; }
.cta-band p { color: var(--ink-soft); margin-bottom: 30px; position: relative; z-index: 2; }
.cta-band .app-buttons { position: relative; z-index: 2; }

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact { max-width: var(--maxw); margin: 0 auto; padding: clamp(30px, 5vw, 60px) max(24px, 6vw) clamp(60px, 9vw, 100px); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }
.contact-info {
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  backdrop-filter: blur(8px);
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 22px; }
.contact-info ul { list-style: none; display: grid; gap: 20px; margin-bottom: 26px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.3rem; }
.contact-info li div { display: flex; flex-direction: column; }
.contact-info strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-dim); margin-bottom: 2px; }
.contact-info a:hover { color: var(--cyan); }

.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  padding: 34px 32px;
  backdrop-filter: blur(8px);
}
.contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  background: rgba(8, 18, 33, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 225, 255, 0.15);
}

.alert {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 0.95rem;
  border: 1px solid;
}
.alert.success { background: rgba(56, 225, 255, 0.1); border-color: rgba(56, 225, 255, 0.4); color: #c9f5ff; }
.alert.error { background: rgba(255, 77, 109, 0.1); border-color: rgba(255, 77, 109, 0.4); color: #ffd6de; }

.social-row { display: flex; gap: 12px; }
.social {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--glass-strong);
  border: 1px solid var(--stroke);
  font-size: 0.8rem; font-weight: 700;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.social:hover { color: #06111d; background: var(--grad); border-color: transparent; transform: translateY(-3px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  margin-top: 40px;
  border-top: 1px solid var(--stroke-soft);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: var(--grad);
  filter: blur(120px);
  opacity: 0.18;
}
.footer-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding: clamp(48px, 6vw, 72px) max(24px, 6vw) 36px;
}
.footer-logo { height: 38px; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-dim); max-width: 300px; margin-bottom: 20px; font-size: 0.95rem; }
.footer-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge.sm { min-width: auto; padding: 9px 16px; }
.store-badge.sm .small-text { font-size: 0.65rem; }
.store-badge.sm .large-text { font-size: 0.95rem; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-soft); margin-bottom: 12px; font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--stroke-soft);
  padding: 22px max(24px, 6vw);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 0.88rem;
}
.footer-legal a:hover { color: var(--cyan); }

/* =========================================================
   SCROLL-REVEAL ANİMASYONU
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pill-1, .pill-2 { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-section { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .hero-content { margin: 0 auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .app-buttons { justify-content: center; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-preview-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* Mobilde: dev logo hamburger'ı ekrandan taşırıyordu — navbar ve logoyu küçült */
  :root { --nav-h: 84px; --nav-h-scrolled: 64px; }
  #nav-logo { height: 52px; }
  .navbar.scrolled #nav-logo { height: 42px; }

  .nav-toggle { display: flex; z-index: 110; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 0 36px;
    background: rgba(8, 18, 33, 0.97);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--stroke);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a { font-size: 1.15rem; }
  .dropdown, .nav-cta { width: auto; }
}

@media (max-width: 480px) {
  .hero-visuals { height: 440px; }
  .video-pill { width: 200px; height: 330px; }
  .pill-1 { left: 0; } .pill-2 { right: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .app-buttons { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
}
