
:root {
  --lav: #E5DAFF;
  --sky: #D5F5FF;
  --pink: #FFECEE;
  --purp: #A78BFA;
  --blue: #C9D7FF;
  --ink: #302D62;
  --ink-dark: #1a1835;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Roboto', system-ui, sans-serif;
  background: var(--ink-dark);
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-width: 0;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  body,
  .logo,
  .footer-logo,
  .store-btn,
  .btn-cta,
  .download h2,
  .hero-title,
  .gallery-header h2,
  .features h2,
  .feature h3,
  .full-nav a { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
/* Mobil taşma önleme */
main { overflow-x: hidden; width: 100%; min-width: 0; }
section { min-width: 0; }

/* Cursor */
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lav);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
}
body:not(.hover-btn) .cursor-dot { transform: scale(1); }
body.hover-btn .cursor-dot { transform: scale(2); opacity: 0.5; }
body.nav-open { overflow: hidden; }

/* Header - minimal floating */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  min-width: 0;
  width: 100%;
}
@media (min-width: 480px) {
  .header { padding: 20px 24px; padding-top: max(20px, env(safe-area-inset-top)); padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
}
@media (min-width: 768px) {
  .header { padding: 28px 48px; padding-top: 28px; padding-left: 48px; padding-right: 48px; }
}
.header.scrolled { background: rgba(26, 24, 53, 0.9); backdrop-filter: blur(12px); }
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .header-right { gap: 20px; }
}
/* ========== Dil seçici: varsayılan EN, solda dünya + dil kodu + aşağı ok, transparan ========== */
.lang-selector {
  position: relative;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 10px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.lang-trigger:hover {
  color: #fff;
}
.lang-trigger:focus-visible {
  outline: none;
  opacity: 1;
}
.lang-trigger-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.9;
}
.lang-trigger-value {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.lang-trigger-chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}
.lang-selector.open .lang-trigger-chevron {
  transform: rotate(180deg);
}
/* Liste: tıklanınca hemen altında açılır */
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 160px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  padding: 4px 0;
  max-height: 280px;
  overflow-y: auto;
  z-index: 1000;
  list-style: none;
}
.lang-selector.open .lang-dropdown {
  display: block;
}
/* Her dil tek satır, liste gibi */
.lang-option {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lang-option.active {
  color: var(--lav);
  background: rgba(229, 218, 255, 0.08);
}
.lang-option:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 767px) {
  .lang-dropdown {
    min-width: 140px;
    max-height: 260px;
  }
  .lang-option {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}
@media (max-width: 380px) {
  .lang-trigger-value { font-size: 0.8rem; }
  .lang-trigger-icon { width: 16px; height: 16px; }
}
/* Varsayılan: linkler gizli (mobil için), hamburger de gizli başla — media ile açılacak */
.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: flex !important;
    align-items: center;
    gap: 32px;
  }
  .header-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .header-nav a:hover { color: var(--lav); }
  .menu-trigger {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header-nav {
    display: none !important;
  }
  .menu-trigger {
    display: flex !important;
    flex-direction: column;
  }
}
.logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .logo { font-size: 1.25rem; }
}
.logo span { color: var(--lav); }
.menu-trigger {
  width: 44px;
  min-height: 44px;
  padding: 11px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .menu-trigger { width: 32px; min-height: 24px; padding: 0; gap: 0; justify-content: space-between; }
}
.menu-trigger span {
  display: block;
  height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-open .menu-trigger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.nav-open .menu-trigger span:nth-child(2) { opacity: 0; }
.nav-open .menu-trigger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Full screen nav — mobilde hamburger tıklanınca açılır; main'in üstünde, header'ın altında */
.full-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 100002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: env(safe-area-inset-top) 24px env(safe-area-inset-bottom);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
  pointer-events: none;
}
.full-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .full-nav { gap: 32px; padding: 24px; }
}
.full-nav a {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  transition: color 0.2s, transform 0.2s;
  padding: 20px 24px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.full-nav a:hover {
  color: var(--lav);
  transform: translateX(12px);
}
@media (max-width: 480px) {
  .full-nav a { font-size: 1.4rem; padding: 24px 20px; min-height: 52px; }
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px 48px;
  padding-top: max(80px, calc(60px + env(safe-area-inset-top)));
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-bottom: max(48px, env(safe-area-inset-bottom));
  position: relative;
  gap: 32px;
  width: 100%;
  background: var(--ink-dark);
}
@media (min-width: 480px) {
  .hero { padding: 90px 24px 60px; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
}
@media (min-width: 768px) {
  .hero { padding: 120px 48px 80px; gap: 48px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb-1 {
  width: 300px; height: 300px;
  background: var(--purp);
  top: -20%; right: -10%;
}
.orb-2 {
  width: 250px; height: 250px;
  background: var(--lav);
  bottom: -10%; left: -5%;
}
.orb-3 {
  width: 200px; height: 200px;
  background: var(--sky);
  top: 50%; left: 30%;
}
@media (min-width: 768px) {
  .orb-1 { width: 500px; height: 500px; }
  .orb-2 { width: 400px; height: 400px; }
  .orb-3 { width: 300px; height: 300px; left: 40%; }
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lav);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-label { font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 20px; }
}
.hero-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.25rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .hero-title { font-size: clamp(3rem, 8vw, 4rem); margin-bottom: 24px; }
}
.hero-title .line { display: block; }
.hero-title .grad {
  background: linear-gradient(135deg, var(--lav), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 42em;
}
@media (min-width: 480px) {
  .hero-desc { font-size: 1.1rem; margin-bottom: 40px; }
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  min-height: 48px;
  background: white;
  color: var(--ink);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
  max-width: 100%;
}
@media (min-width: 480px) {
  .btn-cta { padding: 18px 28px; min-height: 52px; font-size: 1rem; }
}
@media (min-width: 768px) {
  .btn-cta { padding: 20px 36px; font-size: 1.1rem; gap: 16px; }
}
.btn-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(229, 218, 255, 0.4);
}
.btn-cta .arrow {
  transition: transform 0.3s;
}
.btn-cta:hover .arrow { transform: translateX(6px); }

.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  min-width: 0;
  perspective: 1200px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s;
}
.hero-visual:active {
  transform: scale(0.98);
}
.hero-visual-hint {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.hero-visual:hover .hero-visual-hint,
.hero-visual:focus .hero-visual-hint,
.hero-visual-hint-mobile { opacity: 1; }
.hero-visual-hint-mobile {
  position: static;
  transform: none;
  margin-top: 12px;
  display: block;
}
@media (max-width: 767px) {
  .hero-visual .hero-visual-hint:not(.hero-visual-hint-mobile) { display: none; }
}
/* Click overlay - boş ekranda gösterilir */
.hero-click-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .hero-click-overlay { font-size: 1.5rem; letter-spacing: 0.3em; }
}
.hero-visual.revealed .hero-click-overlay { opacity: 0; pointer-events: none; }

.hero-phone {
  position: relative;
  width: 160px;
  height: 320px;
  flex-shrink: 0;
}
@media (min-width: 380px) {
  .hero-phone { width: 200px; height: 400px; }
}
@media (min-width: 768px) {
  .hero-phone { width: 240px; height: 480px; }
}
.hero-phone .phone-wrap {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  animation: phoneIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-phone .phone-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 40px rgba(167,139,250,0.15);
}
@keyframes phoneIn {
  0% { opacity: 0; transform: scale(0.9) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}


.phone-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  position: relative;
}
/* Intro: boş ekran + fare ile spotlight */
.hero-visual.intro .hero-phone .phone-wrap { background: #0f0f1a; }
.hero-visual.intro .phone-inner {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  -webkit-mask-image: radial-gradient(
    circle var(--spot-r, 0px) at var(--spot-x, 50%) var(--spot-y, 50%),
    black,
    transparent
  );
  mask-image: radial-gradient(
    circle var(--spot-r, 0px) at var(--spot-x, 50%) var(--spot-y, 50%),
    black,
    transparent
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  transition: mask-image 0.06s ease-out, -webkit-mask-image 0.06s ease-out;
}
.hero-visual.revealing .phone-inner {
  animation: revealCircle 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes revealCircle {
  0% {
    -webkit-mask-image: radial-gradient(circle 0% at 50% 50%, black, transparent);
    mask-image: radial-gradient(circle 0% at 50% 50%, black, transparent);
  }
  100% {
    -webkit-mask-image: radial-gradient(circle 150% at 50% 50%, black, black);
    mask-image: radial-gradient(circle 150% at 50% 50%, black, black);
  }
}
.hero-visual.revealed .phone-inner {
  background: transparent;
  -webkit-mask-image: none;
  mask-image: none;
  animation: none;
}

.phone-inner .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.phone-inner .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
/* Tıklandığında geçiş için hafif pulse */
.hero-visual.clicked .phone-inner .hero-slide.active {
  animation: imgPulse 0.6s ease-out;
}
@keyframes imgPulse {
  0% { transform: scale(1); }
  15% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Hero slide dots */
.hero-slide-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
  pointer-events: none;
}
.slide-dot.active {
  background: var(--lav);
  transform: scale(1.2);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Marquee */
.marquee-wrap {
  padding: 16px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .marquee-wrap { padding: 24px 0; }
}
.marquee {
  display: flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .marquee { gap: 48px; }
}
.marquee span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 480px) {
  .marquee span { font-size: 1rem; }
}
@media (min-width: 768px) {
  .marquee span { font-size: 1.25rem; }
}
.marquee .dot { color: var(--purp); opacity: 0.6; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gallery - masonry */
.gallery {
  padding: 48px 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  background: var(--ink-dark);
}
@media (min-width: 480px) {
  .gallery { padding: 60px 24px; }
}
@media (min-width: 768px) {
  .gallery { padding: 100px 48px; }
}
@media (min-width: 1024px) {
  .gallery { padding: 120px 48px; }
}
.gallery-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .gallery-header { margin-bottom: 64px; }
}
.gallery-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.gallery-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .gallery-header p { font-size: 1.1rem; }
}
.gallery-masonry {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
}
@media (min-width: 480px) {
  .gallery-masonry { gap: 20px; }
}
.gallery-item {
  flex: 0 0 auto;
  width: calc(50% - 6px);
  max-width: 160px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0,0,0,0.2);
}
@media (min-width: 380px) {
  .gallery-item { width: 140px; max-width: none; }
}
@media (min-width: 480px) {
  .gallery-item { width: 160px; }
}
@media (min-width: 768px) {
  .gallery-item { width: 180px; border-radius: 16px; }
}
@media (min-width: 1024px) {
  .gallery-item { width: 200px; }
}
.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Reveal: varsayılan görünür — JS yüklenmeden içerik görünsün (mobilde boş sayfa olmasın) */
.reveal {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
/* Safari/geç yüklemede içerik gizlenmesin — bu blok kaldırıldı */
/* Mobil: scroll sırasında tüm içerik anında görünsün, gecikme/animasyon yok */
@media (max-width: 767px) {
  main,
  main section,
  .hero-content,
  .hero-title,
  .hero-desc,
  .hero-label,
  .btn-cta,
  .reveal,
  .reveal.visible,
  .marquee-wrap,
  .marquee,
  .gallery-header,
  .gallery-header h2,
  .gallery-header p,
  .gallery-masonry,
  .gallery-item,
  .features-inner,
  .features h2,
  .feature,
  .feature-content,
  .feature h3,
  .feature p,
  .download-inner,
  .download h2,
  .download-lead,
  .store-btns,
  .store-btn,
  .download-phone,
  .footer,
  .footer p,
  .footer-logo {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .reveal,
  .reveal.visible,
  .gallery-item,
  .feature-content {
    transform: translateY(0) !important;
    transition: none !important;
  }
}

/* Features */
.features {
  padding: 48px 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  background: linear-gradient(180deg, var(--ink-dark) 0%, var(--ink) 50%, var(--ink-dark) 100%);
}
@media (min-width: 480px) {
  .features { padding: 60px 24px; }
}
@media (min-width: 768px) {
  .features { padding: 100px 48px; }
}
@media (min-width: 1024px) {
  .features { padding: 120px 48px; }
}
.features-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-width: 0;
}
.features h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .features h2 { margin-bottom: 80px; }
}

/* Route: sağ-sol alternatif düzen */
.feature-route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.route-line {
  display: none;
}
@media (min-width: 768px) {
  .route-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(167,139,250,0.3) 5%,
      rgba(167,139,250,0.4) 50%,
      rgba(167,139,250,0.3) 95%,
      transparent 100%
    );
    transform: translateX(-50%);
    z-index: 0;
  }
}
.feature-route .feature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 24px 0;
  min-height: auto;
}
@media (min-width: 480px) {
  .feature-route .feature { padding: 32px 0; }
}
@media (min-width: 768px) {
  .feature-route .feature {
    padding: 56px 0;
    min-height: 160px;
  }
}
.feature-left {
  justify-content: flex-start;
}
.feature-right {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .feature-left,
  .feature-right {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .feature-left { padding-right: calc(50% + 40px); justify-content: flex-start; }
  .feature-right { padding-left: calc(50% + 40px); justify-content: flex-end; }
}
.feature-content {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  padding: 20px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
@media (min-width: 480px) {
  .feature-content { padding: 24px 28px; border-radius: 16px; }
}
.feature:hover .feature-content {
  background: rgba(255,255,255,0.05);
  border-color: rgba(167,139,250,0.3);
  transform: scale(1.02);
}
@media (hover: none) {
  .feature:active .feature-content { background: rgba(255,255,255,0.05); }
}
.feat-num {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--lav);
  opacity: 0.8;
  margin-bottom: 6px;
}
@media (min-width: 480px) {
  .feat-num { font-size: 0.85rem; margin-bottom: 8px; }
}
.feature h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (min-width: 480px) {
  .feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
}
@media (min-width: 768px) {
  .feature h3 { font-size: 1.4rem; }
}
.feature p {
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-size: 0.9rem;
}
@media (min-width: 480px) {
  .feature p { font-size: 0.95rem; }
}
@media (min-width: 768px) {
  .feature-content { min-width: 320px; }
}

/* Download */
.download {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-bottom: max(48px, env(safe-area-inset-bottom));
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px) {
  .download { padding: 60px 24px; padding-bottom: max(60px, env(safe-area-inset-bottom)); }
}
@media (min-width: 768px) {
  .download {
    min-height: 80vh;
    flex-direction: row;
    justify-content: space-around;
    padding: 100px 48px;
  }
}
@media (min-width: 1024px) {
  .download { padding: 120px 48px; }
}
.download::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  max-width: 100vw;
  background: var(--purp);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .download-inner {
    text-align: left;
    max-width: 420px;
  }
}
.download h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .download h2 { margin-bottom: 16px; }
}
@media (max-width: 380px) {
  .download h2 { font-size: 1.6rem; }
}
.download-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 100%;
  letter-spacing: 0.01em;
}
@media (min-width: 480px) {
  .download-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .download-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 22em;
    min-width: 18em;
  }
}
.store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
@media (min-width: 380px) {
  .store-btns { max-width: 280px; }
}
@media (min-width: 480px) {
  .store-btns { flex-direction: row; max-width: none; justify-content: center; gap: 16px; }
}
@media (min-width: 768px) {
  .store-btns { justify-content: flex-start; margin: 0; }
}
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  min-height: 48px;
  background: white;
  color: var(--ink);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
}
@media (min-width: 480px) {
  .store-btn { padding: 18px 32px; min-height: 52px; font-size: 1rem; }
}
.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.download-phone {
  position: relative;
  z-index: 2;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .download-phone { margin-top: 0; }
}
.phone-single {
  width: 140px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.1);
}
@media (min-width: 380px) {
  .phone-single { width: 180px; height: 360px; border-radius: 24px; border-width: 4px; }
}
@media (min-width: 768px) {
  .phone-single { width: 220px; height: 440px; border-radius: 28px; }
}
@media (min-width: 1024px) {
  .phone-single { width: 240px; height: 480px; border-radius: 32px; }
}
.phone-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  padding: 32px 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  text-align: center;
  background: var(--ink-dark);
}
@media (min-width: 480px) {
  .footer { padding: 40px 24px; padding-bottom: max(40px, env(safe-area-inset-bottom)); }
}
@media (min-width: 768px) {
  .footer { padding: 48px; }
}
.footer-company {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
  padding: 8px 4px;
  min-height: 44px;
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) {
  .footer-company { font-size: 0.9rem; margin-top: 16px; }
}
.footer-company:hover {
  color: var(--lav);
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 480px) {
  .footer-social { gap: 20px; margin-top: 24px; }
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.footer-social a:hover {
  background: rgba(167,139,250,0.3);
  color: white;
  transform: translateY(-3px);
}
.footer-social svg {
  flex-shrink: 0;
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
}
@media (min-width: 480px) {
  .footer-logo { font-size: 1.25rem; }
}
.footer-logo span { color: var(--lav); }
.footer p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .footer p { font-size: 0.9rem; margin-top: 12px; }
}

/* ===== RESPONSIVE - Mobile first ===== */

/* Çok küçük ekranlar (taşma önleme) */
@media (max-width: 374px) {
  .header { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .hero { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); gap: 20px; }
  .hero-title { font-size: 1.85rem; }
  .hero-desc { font-size: 0.9rem; }
  .btn-cta { padding: 14px 20px; font-size: 0.9rem; min-height: 44px; }
  .hero-phone { width: 140px; height: 280px; }
  .hero-phone .phone-wrap { border-radius: 20px; }
  .gallery { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .gallery-masonry { gap: 8px; }
  .gallery-item { width: calc(50% - 4px); max-width: none; }
  .features { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .feature-content { padding: 16px; max-width: 100%; }
  .download { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .store-btns { flex-direction: column; max-width: 100%; }
  .store-btn { width: 100%; }
  .phone-single { width: 120px; height: 240px; }
  .footer { padding-left: 12px; padding-right: 12px; padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .full-nav a { font-size: 1.25rem; padding: 16px 12px; }
}

/* Metin bütünlüğü: taşmayı önle ama gereksiz tireleme yapma */
h1, h2, h3, p, .hero-label, .hero-desc, .feature-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Mobile: hero stacked, centered */
@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: max(72px, calc(56px + env(safe-area-inset-top)));
    min-height: auto;
    padding-bottom: max(40px, env(safe-area-inset-bottom));
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
  .hero-visual {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  .hero-desc br { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; max-width: 100%; }
  .scroll-hint {
    position: absolute;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
  }
  .cursor-dot { display: none !important; }
  .hero-slide-dots { margin-top: 16px; }
  .hero-phone { max-width: min(200px, 55vw); }
}

@media (max-width: 767px) {
  .gallery-masonry { max-width: 100%; }
  .gallery-item { min-width: 0; }
  .feature-content { max-width: 100%; width: 100%; }
  .download-inner { width: 100%; max-width: 100%; }
  .download-phone { max-width: 100%; }
  .store-btns { width: 100%; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: max(100px, calc(80px + env(safe-area-inset-top)));
  }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 48px; }
}

/* Desktop: metin solda, telefon sağda, orantılı yan boşluklar */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding-left: max(48px, 8vw);
    padding-right: max(48px, 8vw);
  }
  .hero-content {
    flex: 0 1 auto;
    max-width: 520px;
  }
  .hero-visual {
    flex: 0 0 auto;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-left: max(64px, 10vw);
    padding-right: max(64px, 10vw);
  }
  .hero-content { max-width: 560px; }
}

/* ===== Legal Pages (Privacy, Terms, Contact) ===== */
.legal-page {
  padding-top: max(80px, calc(60px + env(safe-area-inset-top)));
  min-height: 100vh;
  background: var(--ink-dark);
}

.legal-hero {
  padding: 48px 20px 32px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  text-align: center;
  position: relative;
}
@media (min-width: 480px) {
  .legal-hero { padding: 60px 24px 40px; }
}
@media (min-width: 768px) {
  .legal-hero { padding: 80px 48px 48px; }
}
.legal-hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--lav), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-updated {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

.legal-content {
  padding: 0 20px 64px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}
@media (min-width: 480px) {
  .legal-content { padding: 0 24px 80px; }
}
@media (min-width: 768px) {
  .legal-content { padding: 0 48px 100px; }
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .legal-inner h2 { font-size: 1.5rem; margin-top: 44px; margin-bottom: 16px; }
}
.legal-inner h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .legal-inner p { font-size: 1rem; }
}
.legal-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-inner ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.legal-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purp);
  opacity: 0.6;
}
.legal-inner a {
  color: var(--lav);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-inner a:hover {
  color: white;
}
.legal-contact-info {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-top: 8px;
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .footer-legal-links { gap: 12px; margin-top: 20px; }
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  padding: 4px 2px;
}
@media (min-width: 480px) {
  .footer-legal-links a { font-size: 0.85rem; }
}
.footer-legal-links a:hover,
.footer-legal-links a.active {
  color: var(--lav);
}
.footer-sep {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ===== Contact Page ===== */
.contact-page .legal-inner {
  max-width: 960px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
  }
}
.contact-form-wrap h2 {
  margin-top: 0;
}
.contact-form-wrap > p {
  margin-bottom: 24px;
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--ink);
  color: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purp);
  background: rgba(255,255,255,0.07);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  min-height: 52px;
  background: white;
  color: var(--ink);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
  align-self: flex-start;
}
.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(229, 218, 255, 0.3);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact info cards */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: border-color 0.3s, background 0.3s;
}
.contact-card:hover {
  border-color: rgba(167,139,250,0.3);
  background: rgba(255,255,255,0.05);
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(167,139,250,0.15);
  color: var(--lav);
  margin-bottom: 14px;
}
.contact-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}
.contact-link {
  font-size: 0.9rem;
  color: var(--lav);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.contact-link:hover {
  color: white;
}
.contact-store-links {
  display: flex;
  gap: 16px;
}

/* Form success message */
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(167,139,250,0.15);
  color: var(--lav);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Mobile legal page font fallback */
@media (max-width: 767px) {
  .legal-hero h1,
  .legal-inner h2,
  .contact-card h3,
  .btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  }
}
