/* =========================================================================
   TELEPORT — ortak site stili
   Uygulamanın tasarım dili birebir referans alındı:
     arka plan #0A0A0A · köşeler 12/16px · BELİRGİN beyaz çerçeveler
     (white70 = butonlar/alanlar, white24 = kartlar/diyaloglar)
     birincil buton: beyaz zemin + siyah yazı
   ========================================================================= */

:root {
  --bg: #0a0a0a;
  --surface: #0f0f0f;
  --surface-2: #141414;

  /* Uygulamadaki çerçeve tonları */
  --line: rgba(255, 255, 255, 0.24);   /* AppColors.disabledBorder */
  --line-soft: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.70); /* AppColors.onBackgroundSecondary */

  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.70);
  --text-3: rgba(255, 255, 255, 0.55);
  --text-4: rgba(255, 255, 255, 0.38);

  --glow: rgba(94, 96, 190, 0.13);

  --r-sm: 12px;
  --r: 16px;

  --gutter: 2.25rem;

  --wrap: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Marka yazısı için geometrik font (Poppins) */
  --font-display: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -35vh;
  left: 50%;
  width: min(1100px, 130vw);
  height: 80vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Yan boşluk tek değişkenden yönetiliyor: hem .wrap hem de açılır menünün
   satırları aynı hizada dursun diye. */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------- ÜST BAR
   İçerik akışı üstte, yan yana. Sağda indirme butonu.                    */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
}

.nav-brand img { width: 30px; height: 30px; }

.nav-brand span {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  /* Sığmazsa alt satıra sarsın; kesilip görünmez olmasın. */
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-right: auto;
  min-width: 0;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 0.8rem; flex: none; }

/* Üç çizgi (hamburger) — yalnızca dar ekranda görünür. */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.15s;
}

/* Menü açıkken üç çizgi çarpıya dönüşür. */
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.lang a {
  color: var(--text-4);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.6rem;
  transition: color 0.2s, background 0.2s;
}

.lang a:hover { color: var(--text-2); }
.lang a[aria-current="true"] { background: rgba(255, 255, 255, 0.1); color: var(--text); }

/* Açılır menünün içindeki dil geçişi — yalnızca hamburger modunda görünür. */
.lang-in-menu { display: none; }

/* --------------------------------------------------------------- BUTONLAR
   Uygulamadaki gibi: köşe 12px, yükseklik ~52, belirgin çerçeve.         */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-sm);
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.12s;
}

.btn:hover { background: rgba(255, 255, 255, 0.07); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary:hover { background: #e9e9e9; border-color: #e9e9e9; }

.btn-sm { min-height: 40px; padding: 0.5rem 1.05rem; font-size: 0.86rem; }

.btn.disabled,
.btn[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
  color: var(--text-4);
  border-color: var(--line);
  background: transparent;
}

.btn-primary.disabled,
.btn-primary[aria-disabled="true"] {
  background: rgba(255, 255, 255, 0.14);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.45);
}

/* Mağaza butonları */
.stores { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.66rem 1.25rem 0.7rem;
  background: transparent;
  min-height: 52px;
  transition: background 0.2s;
}

.store-btn:hover { background: rgba(255, 255, 255, 0.07); }
.store-btn svg { width: 24px; height: 24px; flex: none; color: var(--text); }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.25; }
.store-btn .store-top { font-size: 0.66rem; color: var(--text-4); letter-spacing: 0.06em; text-transform: uppercase; }
.store-btn .store-name { font-size: 0.98rem; font-weight: 600; color: var(--text); }

.store-btn.soon {
  cursor: default;
  pointer-events: none;
  border-color: var(--line);
}

.store-btn.soon svg,
.store-btn.soon .store-name { color: var(--text-4); }

/* --------------------------------------------------------------- BÖLÜMLER */

section { position: relative; z-index: 1; }

.section { padding: 5rem 0; }
.section + .section { border-top: 1px solid var(--line-soft); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 0.9rem;
}

h1, h2, h3 { color: var(--text); font-weight: 700; letter-spacing: -0.015em; }

h2 { font-size: clamp(1.55rem, 3.4vw, 2.15rem); line-height: 1.25; margin-bottom: 0.8rem; }
h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }

.lead { font-size: 1.02rem; color: var(--text-3); max-width: 60ch; }

.section-head { margin-bottom: 2.8rem; max-width: 60ch; }

/* --------------------------------------------------------------------- HERO */

.hero { padding: 4.5rem 0 4rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.05rem, 5vw, 3.15rem);
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero p.lead { font-size: 1.1rem; color: var(--text-2); margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }


/* ------------------------------------------------------- TELEFON ÇİZİMLERİ */

.phone-art { display: flex; justify-content: center; }
.phone-art svg { width: 100%; max-width: 250px; height: auto; }

.phone-frame { fill: #0f0f0f; stroke: rgba(255, 255, 255, 0.55); stroke-width: 1.5; }
.phone-screen { fill: #0a0a0a; }
.art-line { stroke: rgba(255, 255, 255, 0.35); stroke-width: 1.5; stroke-linecap: round; fill: none; }
.art-soft-2 { fill: rgba(255, 255, 255, 0.14); }
.art-strong { fill: rgba(255, 255, 255, 0.3); }
.art-white { fill: #ffffff; }
.art-stroke { fill: none; stroke: rgba(255, 255, 255, 0.24); stroke-width: 1.5; }

/* -------------------------------------------------------------- ADIMLAR (3) */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.step {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.5rem 1.25rem 1.4rem;
}

.step-icon {
  width: 38px; height: 38px;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}

.step-icon svg { width: 100%; height: 100%; }

.step-no { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--text-4); margin-bottom: 0.4rem; }
.step h3 { font-size: 0.98rem; }
.step p { font-size: 0.87rem; color: var(--text-3); }

/* ------------------------------------------------------------------ KARTLAR */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards.cards-4 .card { padding: 1.5rem 1.3rem; }
.cards.cards-4 .card h3 { font-size: 1rem; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.6rem 1.45rem;
  transition: background 0.2s, border-color 0.2s;
}

.card:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.4); }

.card-icon { width: 32px; height: 32px; margin-bottom: 1rem; color: var(--text-2); }
.card-icon svg { width: 100%; height: 100%; }
.card p { font-size: 0.92rem; color: var(--text-3); }

/* --------------------------------------------------------------- İKİLİ BLOK */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

.bullets { list-style: none; margin-top: 1.6rem; display: grid; gap: 1rem; }
.bullets li { display: flex; gap: 0.8rem; align-items: flex-start; }

.bullets .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 0.62rem; flex: none;
}

.bullets strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 0.05rem; }
.bullets span.txt { font-size: 0.93rem; color: var(--text-3); }

/* ------------------------------------------------- VURGULU ÇERÇEVE (highlight)
   Uygulamadaki "beyaz çerçeveli" öne çıkan kutu.                          */

.highlight {
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  padding: 2.2rem 2rem;
}

.highlight h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
.highlight .lead { color: var(--text-2); }
.highlight .form-actions { margin-top: 1.6rem; }

/* -------------------------------------------------------------- GÜVENLİK */

.safety { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }

.safety-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.5rem 1.4rem;
}

.safety-item p { font-size: 0.9rem; color: var(--text-3); }

.notice {
  margin-top: 1.6rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 1.05rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-3);
}

.notice strong { color: var(--text); }

/* -------------------------------------------------------------------- SSS */

.faq { display: grid; gap: 0.7rem; max-width: 760px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--text-4);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
}

.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 1.25rem 1.15rem; font-size: 0.92rem; color: var(--text-3); }

/* ------------------------------------------------------------------- FOOTER */

footer { border-top: 1px solid var(--line-soft); padding: 3rem 0 2.2rem; position: relative; z-index: 1; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-4); }

/* Alt bilgide logo + marka yazısı yan yana (üst bardaki kilitle aynı). */
.footer-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-lockup img { width: 32px; height: 32px; }

.footer-lockup span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.footer-cols { display: flex; flex-wrap: wrap; gap: 3rem; }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 0.9rem;
}

.footer-col a {
  display: block; font-size: 0.88rem; color: var(--text-3);
  text-decoration: none; margin-bottom: 0.55rem; transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.socials { display: flex; gap: 0.55rem; margin-top: 1.1rem; }

.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.socials a:hover { color: var(--text); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.06); }
.socials svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem; color: var(--text-4);
}

.footer-bottom a { color: var(--text-4); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-2); }

/* -------------------------------------------------------------- İÇ SAYFALAR */

.page-head { padding: 3.2rem 0 2.2rem; }
.page-head h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); line-height: 1.2; margin-bottom: 0.7rem; }

.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--text-4);
  text-decoration: none; margin-bottom: 1.5rem;
}

.back-link:hover { color: var(--text-2); }

/* --------------------------------------------------------- YASAL METİNLER
   Gizlilik / Şartlar / Hesap Silme / Çocuk Güvenliği sayfalarının gövdesi.
   Metinlere dokunulmaz; yalnızca sitenin tipografisine oturtulur.          */

.doc {
  max-width: 760px;
  padding: 0 0 4rem;
}

.doc .updated {
  font-size: 0.85rem;
  color: var(--text-4);
  margin-bottom: 2.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
}

.doc h2 {
  font-size: 1.2rem;
  margin-top: 2.6rem;
  margin-bottom: 0.7rem;
}

.doc h3 {
  font-size: 1rem;
  color: var(--text);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.doc p {
  margin-bottom: 0.9rem;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.75;
}

.doc ul,
.doc ol {
  margin: 0 0 1rem 1.35rem;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.75;
}

.doc li { margin-bottom: 0.4rem; }

.doc strong { color: var(--text); font-weight: 600; }

.doc a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

.doc a:hover { border-bottom-color: #fff; }


/* ------------------------------------------------------------------ FORMLAR */

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.9rem 1.8rem;
  max-width: 660px;
}

.field { margin-bottom: 1.3rem; }

.field label {
  display: block; font-size: 0.86rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem;
}

.field .hint { font-size: 0.78rem; color: var(--text-4); font-weight: 400; margin-top: 0.35rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
  min-height: 52px;
  transition: border-color 0.2s;
}

.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-4); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: #141414; color: #fff; }

.trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.form-note { font-size: 0.82rem; color: var(--text-4); margin-top: 1.2rem; }

.alert {
  display: none;
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
}

.alert.show { display: block; }
.alert.ok { border: 1px solid rgba(120, 220, 150, 0.5); background: rgba(40, 90, 55, 0.18); color: #a9dcba; }
.alert.err { border: 1px solid rgba(230, 130, 130, 0.5); background: rgba(90, 40, 40, 0.18); color: #e6a8a8; }

/* Metin içi bağlantılar */
.card p a, .safety-item p a, .faq-body a, .notice a, .lead a, .form-note a, .bullets a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

.card p a:hover, .safety-item p a:hover, .faq-body a:hover,
.notice a:hover, .lead a:hover, .form-note a:hover, .bullets a:hover { border-bottom-color: #fff; }

/* ------------------------------------------------------------------ RESPONS */

/* Üst bardaki linkler sığmadığında KESİLMEZ: aralık daralır, gerekirse
   alt satıra sarar. Yatay kaydırma yok — hiçbir link gizli kalmıyor. */
@media (max-width: 1180px) {
  .nav-links { gap: 1.05rem; }
  .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 1040px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cards.cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { order: -1; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards, .safety { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* Telefonda 2 sütun kalan ızgaralar tek sütuna iner. (.cards-4 ve .steps
   kendi kuralları daha güçlü olduğu için yukarıdaki 1fr'den etkilenmiyordu.) */
@media (max-width: 620px) {
  .steps,
  .cards.cards-4 { grid-template-columns: 1fr; }
}

/* Linkler tek satıra sığmadığı genişlikten itibaren hamburger devreye girer:
   linkler kesilmez, üst bardan çıkıp açılır panele taşınır. */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    padding: 0.4rem 0 0.8rem;
    background: #0d0d0e;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }

  .nav.menu-open .nav-links { display: flex; }

  .nav-links a {
    padding: 0.9rem var(--gutter);
    font-size: 0.98rem;
    color: var(--text-2);
  }

  .nav-links a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

  /* Dil geçişi bardan çıkar, menünün en altına gelir: dar ekranda üst bar
     kalabalıklaşmıyor ama TR/EN hiçbir zaman kaybolmuyor. */
  .nav-right > .lang { display: none; }

  .lang-in-menu {
    display: inline-flex;
    align-self: flex-start;
    margin: 0.7rem var(--gutter) 0.2rem;
  }

  .lang-in-menu a { padding: 0.4rem 0.85rem; font-size: 0.8rem; }

  .nav-right { margin-left: auto; }
}

@media (max-width: 560px) {
  :root { --gutter: 1.35rem; }
  .hero { padding: 2.5rem 0 3rem; }
  .highlight { padding: 1.6rem 1.3rem; }
  .form-card { padding: 1.4rem 1.2rem; }
  .store-btn { flex: 1 1 100%; }
  .footer-cols { gap: 2rem; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; flex: 1 1 auto; }
  /* Uzun e-posta/URL'ler dar ekranda taşmasın. */
  .footer-col a, .form-note, .doc a { overflow-wrap: anywhere; }
  .doc { padding-bottom: 2.5rem; }
}
