/* MAYKA TR v2 — kurumsal ekosistem sayfası
 *
 * MİMARİ KURALLAR (v1'deki "her şey üst üste bindi" hatasının kaynağı buydu):
 *   1. TEK scroll otoritesi vardır: GSAP ScrollTrigger. Bu dosyada
 *      `position: sticky` YOKTUR. Pin'i yalnızca JS kurar.
 *   2. Katmanlı crossfade (birden çok bölümün üst üste durup opacity ile
 *      değişmesi) YOKTUR. Her konu kendi scroll uzunluğuna sahiptir.
 *      v1'deki .mx-stack tam olarak bu yüzden okunamaz hale geliyordu.
 *   3. Negatif margin yok, bölümler arası çakışma yok. Her <section>
 *      normal akışta, position: relative.
 *
 * Token'lar shared/mayka-landing.css :root'tan gelir. Yeni palet yok.
 */

/* ============================================================
   0a · Marka token'ları — maytras.com ile hizalı
   Paylaşılan shared/mayka-landing.css dosyasına DOKUNULMAZ
   (onu maykagrup dahil başka landing'ler de kullanıyor); değerler
   burada, yalnızca bu sayfa için geçersiz kılınır.
   Kaynak: maytras.com :root — 2026-08-27'de okundu.
   ============================================================ */

:root {
  --mayka-bg: #070a12;            /* maytras --dark-bg */
  --mayka-bg-elevated: #0f1421;   /* zeminden bir kademe açık */
  --mayka-gold: #cfaf6b;          /* maytras --primary-gold */
  --mayka-gold-bright: #e8cf88;   /* maytras gradient açık ucu */
  --mayka-text: #f4f6fb;          /* maytras --text-primary */
  --mayka-muted: #8b95ab;         /* maytras --text-secondary */
  --mayka-navy: #1a2238;          /* maytras --primary-navy */
  --mayka-border: rgba(207, 175, 107, 0.16);  /* maytras --glass-border */
  --mayka-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --mayka-font: "Inter", system-ui, -apple-system, sans-serif;
  --mayka-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

/* ============================================================
   0 · Temel
   ============================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--mayka-bg, #07090d);
  color: var(--mayka-text, #f2f4f8);
  font-family: var(--mayka-font, "Inter", system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, canvas { display: block; max-width: 100%; }

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--mayka-gold, #d4af37);
  outline-offset: 3px;
}

/* ============================================================
   1 · Ortak yerleşim
   ============================================================ */

.wrap {
  width: min(100% - 2.5rem, 76rem);
  margin-inline: auto;
}

.wrap--narrow { width: min(100% - 2.5rem, 54rem); }

/* Her bölüm normal akışta durur — üst üste binme imkânsız */
.sec {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
}

.sec--tight { padding-block: clamp(4rem, 8vw, 7rem); }

/* Bölümler arası ince altın çizgi — akışın kopmadığını gösterir */
.sec + .sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2.5rem, 76rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.22) 22%,
    rgba(212, 175, 55, 0.22) 78%,
    transparent
  );
}

/* ============================================================
   2 · Tipografi
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mayka-gold, #d4af37);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.display {
  margin: 0;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-weight: 300;
  /* serif'ten sans'a geçişte optik boy büyür: puntolar bir tık kısıldı,
     tracking sıkıldı. */
  font-size: clamp(2.05rem, 4.9vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--mayka-text, #f2f4f8);
}

/* Space Grotesk'in italiği yoktur; sentetik eğim bozuk görünür.
   Vurgu, italik yerine ağırlık + renk ile veriliyor. */
.display em {
  font-style: normal;
  font-weight: 500;
  color: var(--mayka-gold-bright, #e8cf88);
}

.h2 {
  margin: 0;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.024em;
}

.h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
  color: #b9c1cf;
}

.body {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--mayka-muted, #8b95a8);
}

.micro {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #6b7385;
}

/* ============================================================
   3 · Üst bar + bölüm rayı (akış sürekliliği)
   ============================================================ */

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.92), rgba(7, 9, 13, 0));
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.top.is-solid {
  background: rgba(7, 9, 13, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand b {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--mayka-gold, #d4af37);
}
.brand span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mayka-muted, #8b95a8);
}

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.7rem); }
.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #b9c1cf;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--mayka-gold-bright, #e8c547); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1.25rem;
  border: 1px solid var(--mayka-gold, #d4af37);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--mayka-gold-bright, #e8c547);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.btn:hover { background: var(--mayka-gold, #d4af37); color: #07090d; }
.btn--solid { background: var(--mayka-gold, #d4af37); color: #07090d; }
.btn--solid:hover { background: var(--mayka-gold-bright, #e8c547); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.2); color: #cdd4e0; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* Sol kenar rayı: hangi bölümdeyiz — akışın "kopuk" hissini gideren şey */
.rail {
  position: fixed;
  top: 50%;
  left: clamp(0.9rem, 2vw, 1.7rem);
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rail.is-on { opacity: 1; pointer-events: auto; }

.rail a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #5d6577;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.rail i {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease, background 0.25s ease;
}
.rail a.is-current { color: var(--mayka-gold-bright, #e8c547); }
.rail a.is-current i { width: 2.6rem; }
.rail a:hover { color: #b9c1cf; }

/* Üstte ince ilerleme çubuğu */
.progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 70;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--mayka-gold, #d4af37), var(--mayka-gold-bright, #e8c547));
}

/* ============================================================
   4 · Sahne (kare-dizisi) — hero ve yolculuk ortak
   Pin'i JS kurar; burada sticky YOK.
   ============================================================ */

.scene {
  position: relative;
  background: var(--mayka-bg, #07090d);
}

/* Tam ekran + kırpma yalnızca sahne motoru çalışırken */
.scenes-on .scene {
  height: 100vh;
  overflow: hidden;
}

/* Motor kapalıyken canvas boş, perde de tek ekran için tasarlanmış bir
   gradyan; uzun bir kolonun üzerine yayılınca metni boğuyor. İkisini de gizle. */
html:not(.scenes-on) .scene__canvas,
html:not(.scenes-on) .scene__scrim,
html:not(.scenes-on) .scene__count,
html:not(.scenes-on) .hero__cue { display: none; }

.scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.scene__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Sahneler karanlıktan aydınlığa gidiyor (Gümrük/Teknoloji çok parlak).
     Perde, metnin oturduğu sol kolonu her sahnede okunur tutacak kadar
     güçlü; sağ tarafta görüntüyü boğmayacak kadar hızlı açılıyor. */
  background:
    linear-gradient(100deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.8) 28%, rgba(7, 9, 13, 0.42) 52%, rgba(7, 9, 13, 0.08) 76%, rgba(7, 9, 13, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.6) 0%, transparent 26%, transparent 68%, rgba(7, 9, 13, 0.75) 100%);
}

.scene__inner {
  position: relative;
  z-index: 2;
}

/* Dikey ortalama ve tam yükseklik yalnızca sahne motoru çalışırken anlamlı.
   Motor kapalıyken (mobil) `height:100%` içeriği viewport'a hapsedip
   taşırıyordu — beat'ler 2994px, kutu 844px. */
.scenes-on .scene__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

/* --- Hero içeriği --- */
.hero__copy { max-width: 40rem; }

.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  text-shadow: 0 2px 40px rgba(7, 9, 13, 0.8);
}

.hero__lead { text-shadow: 0 1px 22px rgba(7, 9, 13, 0.85); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7385;
}
.hero__cue::after {
  content: "";
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(180deg, var(--mayka-gold, #d4af37), transparent);
}

/* --- Durak metni: yalnızca tipografi. Görünürlüğü .beat yönetir --- */
.station__n {
  display: block;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--mayka-gold, #d4af37);
}

.station__k {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mayka-muted, #8b95a8);
}

.station h3 {
  margin: 0.9rem 0 0.9rem;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.026em;
  text-shadow: 0 2px 30px rgba(7, 9, 13, 0.85);
}

.station p {
  margin: 0;
  max-width: 31rem;
  color: #c3cad6;
  text-shadow: 0 1px 16px rgba(7, 9, 13, 0.9);
}

/* --- Açılış beat'leri: koridorun iki metin katmanı ---------------------
   Koridor tek bir çekimdir. Açılış tezi ve kimlik, aynı pinlenmiş sahnenin
   iki beat'idir; daha önce kimlik ayrı bir bölüm olduğu için kamera ortada
   kesiliyor ve ~2 ekranlık boşluk oluşuyordu. Duraklarla aynı davranış. */
/* MİMARİ: beat'leri üst üste bindirip opacity ile değiştiren kurallar
   YALNIZCA `html.scenes-on` altında geçerlidir. Bu sınıfı v2.js, kare-dizisi
   sahneleri gerçekten çalışıyorsa ekler. Mobilde / reduced-motion'da /
   JS yokken sınıf hiç eklenmez; beat'ler normal akışta alt alta dizilir ve
   ezilecek bir kural kalmaz.
   ÖNCEKİ HATA: kurallar `.js` altındaydı (0,2,0); mobil media query'deki
   `.beat` (0,1,0) onu ezemiyordu ve telefonda 11 beat üst üste binip
   görünmez kalıyordu. Media query özgüllük eklemez. */
.beats {
  position: relative;
  width: 100%;
}

.scenes-on .beats { min-height: min(32rem, 64vh); }

.scenes-on .beat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(1.4rem);
  pointer-events: none;
  /* çıkış hızlı, giriş gecikmeli → iki beat asla birlikte okunmaz */
  transition: opacity 0.2s ease-out, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.scenes-on .beat.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition:
    opacity 0.46s ease-out 0.16s,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

/* Kimlik beat'i koridorun üzerinde durur; metin gölgesi okunurluğu tutar */
.beat--kimlik .h2,
.beat--kimlik .lead,
.beat--kimlik .h3 { text-shadow: 0 1px 22px rgba(7, 9, 13, 0.85); }

.beat--kimlik .facts li { border-top-color: rgba(255, 255, 255, 0.14); }
.beat--kimlik .facts li:last-child { border-bottom-color: rgba(255, 255, 255, 0.14); }
.beat--kimlik .body { color: #c3cad6; }

.beat--kimlik .note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  font-size: 0.84rem;
  background: rgba(7, 9, 13, 0.55);
  backdrop-filter: blur(3px);
}

/* Kaydırın ipucu yalnızca ilk beat'te */
.hero__cue { transition: opacity 0.35s ease; }
.hero__cue.is-off { opacity: 0; }

/* Sahne içi durak sayacı */
.scene__count {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.scene__count b {
  display: block;
  width: 1.9rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.3s ease;
}
.scene__count b.is-on { background: var(--mayka-gold, #d4af37); }

/* ============================================================
   5 · Video arkaplanlı bölümler
   ============================================================ */

.film {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.film__still,
.film__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Stok görüntüler parlak/mavi; MAYKA paletine çekilir */
  filter: saturate(0.45) contrast(1.06) brightness(0.5);
}

/* Durağan kare videonun ALTINDA durur: video oynarsa üstünü kapatır,
   hiç yüklenemezse görüntü yine de görünür. Poster'a güvenmek yeterli
   değil — video load() çağrıldıktan sonra poster bırakılıyor. */
.film__still { z-index: -3; }

.film__grade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.93) 0%, rgba(7, 9, 13, 0.72) 38%, rgba(7, 9, 13, 0.34) 70%, rgba(7, 9, 13, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.9) 0%, transparent 22%, transparent 72%, rgba(7, 9, 13, 0.95) 100%),
    radial-gradient(circle at 78% 30%, rgba(212, 175, 55, 0.11), transparent 46%);
}

/* ============================================================
   6 · İçerik blokları
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cell {
  background: var(--mayka-bg, #07090d);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  transition: background 0.3s ease;
}
.cell:hover { background: var(--mayka-bg-elevated, #0e1219); }

.cell__k {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mayka-gold, #d4af37);
}

.cell p { margin: 0.7rem 0 0; font-size: 0.9rem; color: var(--mayka-muted, #8b95a8); }

.cell__link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--mayka-gold-bright, #e8c547);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 2px;
}

/* Numaralı liste (kimlik / kanıt) */
.facts { margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: 0; list-style: none; }

.facts li {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.facts li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.facts .num {
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-size: 1.4rem;
  color: var(--mayka-gold, #d4af37);
}

/* Sayı bandı */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.stats b {
  display: block;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--mayka-gold-bright, #e8c547);
}
.stats span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--mayka-muted, #8b95a8);
}

/* Uyarı / sınır kutusu (tüzel ayrım) */
.note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--mayka-gold, #d4af37);
  background: rgba(212, 175, 55, 0.05);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #b9c1cf;
}

/* ============================================================
   6b · Diptik — iki ürün, iki görüntü (Teknoloji)
   "MAYKOPS, MAYTRAS'ın modülü değildir" ifadesinin görsel karşılığı.
   ============================================================ */

.diptych {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.dip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(76vh, 40rem);
  display: flex;
  align-items: flex-end;
  /* Arka plan YOK: .dip__bg z-index:-2 ile boyanır ve isolation:isolate
     nedeniyle opak bir arka plan onu tamamen gizler. */
}

.dip__still,
.dip__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.04) brightness(0.72);
}

.dip__still { z-index: -3; }

.dip__grade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.4) 0%, rgba(7, 9, 13, 0.1) 22%, rgba(7, 9, 13, 0.62) 46%, rgba(7, 9, 13, 0.92) 76%, rgba(7, 9, 13, 0.97) 100%),
    radial-gradient(circle at 72% 26%, rgba(212, 175, 55, 0.1), transparent 48%);
}

.dip__body { padding: clamp(1.7rem, 3vw, 2.6rem); }

.dip__name {
  margin: 0.7rem 0 0.25rem;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.dip__role {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--mayka-gold-bright, #e8c547);
}

.dip__body p { margin: 0 0 0.8rem; max-width: 30rem; color: #b9c1cf; font-size: 0.92rem; }
.dip__body .micro { color: #7d8698; }

/* ============================================================
   6d · Belgeler — denetlenmiş kapsam ve sertifikalar
   ============================================================ */

.quote {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3vw, 2.6rem);
  border-left: 2px solid var(--mayka-gold, #d4af37);
  background: rgba(212, 175, 55, 0.05);
}

.quote p {
  margin: 0;
  max-width: 46rem;
  font-family: var(--mayka-display, "Space Grotesk", sans-serif);
  font-size: clamp(1.05rem, 1.75vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--mayka-text, #f4f6fb);
}

.quote cite {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mayka-muted, #8b95a8);
}

.certs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.cert {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: var(--mayka-bg, #07090d);
  text-decoration: none;
  transition: background 0.3s ease;
}
.cert:hover { background: var(--mayka-bg-elevated, #0e1219); }

.cert__std {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mayka-gold-bright, #e8c547);
}

.cert__name {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #b9c1cf;
}

.cert__no {
  margin-top: auto;
  padding-top: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #6b7385;
}

/* PDF olduğunu sessizce belli et */
.cert::after {
  content: "PDF ↗";
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: #5d6577;
  transition: color 0.25s ease;
}
.cert:hover::after { color: var(--mayka-gold, #d4af37); }

@media (max-width: 1100px) { .certs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .certs { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   7 · SSS
   ============================================================ */

.faq { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(255, 255, 255, 0.09); }

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 500;
  color: var(--mayka-text, #f2f4f8);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--mayka-gold-bright, #e8c547); }

.faq summary::after {
  content: "";
  flex: none;
  width: 0.66rem;
  height: 0.66rem;
  border-right: 1px solid var(--mayka-gold, #d4af37);
  border-bottom: 1px solid var(--mayka-gold, #d4af37);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.28s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

.faq p {
  margin: 0 0 1.5rem;
  max-width: 46rem;
  color: var(--mayka-muted, #8b95a8);
}

/* ============================================================
   8 · Kapanış + footer
   ============================================================ */

.close__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.foot {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  font-size: 0.78rem;
  color: #6b7385;
}
.foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
  justify-content: space-between;
}
.foot a { text-decoration: none; }
.foot a:hover { color: var(--mayka-gold-bright, #e8c547); }

/* Footer site haritası — mevcut 16 sayfanın iç bağlantısını korur */
.foot__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin-top: clamp(2.2rem, 4vw, 3rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot__h {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mayka-gold, #d4af37);
}

.foot__links a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.82rem;
  color: #8b95a8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.foot__links a:hover { color: var(--mayka-text, #f2f4f8); }

@media (max-width: 700px) {
  .foot__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   9 · Scroll ile beliren içerik (tek ortak davranış — dağınık efekt yok)
   ============================================================ */

/* JS yoksa içerik olduğu gibi görünür: gizleme yalnızca .js altında geçerli.
   Aksi hâlde script bloklandığında sayfanın metni tamamen kaybolur. */
.js [data-rise] {
  opacity: 0;
  transform: translateY(1.6rem);
}

/* DİKKAT — özgüllük: gizleyen kural `.js [data-rise]` (0,2,0) olduğu için
   gösteren kuralın da en az o kadar güçlü olması gerekir. Sade `.is-rise`
   (0,1,0) yazıldığında sınıf eklense bile eleman gizli kalıyordu. */
.js [data-rise].is-rise,
.is-rise {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   10 · Duyarlılık
   ============================================================ */

@media (max-width: 1100px) {
  .rail { display: none; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


@media (max-width: 620px) {
  .grid--2, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .facts li { grid-template-columns: minmax(0, 1fr); gap: 0.5rem; }
}

/* Mobilde sahne pin'lenmez (JS engeller); duraklar normal listeye döner */

/* Mobilde açılış pinlenmez → beat'ler normal akışa döner */

/* ---------- JS yokken tam geri dönüş ----------
   Sahneler pinlenmeyeceği için sabit yüksekliği ve kırpmayı kaldır;
   beat'ler normal akışta alt alta okunur. Kare dizisi ve sahne süsleri
   gizlenir, çünkü onları süren şey JS'tir. */
html:not(.js) .scene {
  height: auto;
  overflow: visible;
}
html:not(.js) .scene__inner { padding-block: clamp(5rem, 12vw, 8rem); }
html:not(.js) .beats { min-height: 0; }
html:not(.js) .beat + .beat {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
html:not(.js) .scene__canvas,
html:not(.js) .scene__scrim,
html:not(.js) .scene__count,
html:not(.js) .hero__cue,
html:not(.js) .rail { display: none; }
html:not(.js) .station h3,
html:not(.js) .station p,
html:not(.js) .beat--kimlik .h2,
html:not(.js) .beat--kimlik .lead { text-shadow: none; }

/* --- Mobil fotoğraf hikâyesi ------------------------------------------
   Telefonda kare dizisi çalışmıyor; her beat kendi sahnesinin tek karesini
   gösterir. Pin yok, scroll kilidi yok — okuyucu kendi hızında geziyor.
   11 görsel toplam ~204 KB (masaüstünün 22 MB'ı yerine). */
.beat__still { display: none; }

/* ============================================================
   11 · MOBİL — tek yerde toplanmış katman
   Kare-dizisi sahneleri burada çalışmaz (html.scenes-on eklenmez), bu yüzden
   beat'ler zaten normal akıştadır; ezilecek kural yok. Burada yalnızca
   yerleşim, menü ve tipografi ölçeği ayarlanır.
   ============================================================ */

/* --- Hamburger: masaüstünde yok --- */
.burger { display: none; }
.top__actions { display: flex; align-items: center; gap: 0.6rem; }

.mmenu { display: none; }

@media (max-width: 860px) {

  /* --- Üst bar: marka + dil + hamburger --- */
  .nav { display: none; }
  .top { padding: 0.85rem 1.1rem; gap: 0.75rem; }
  .brand b { font-size: 0.95rem; letter-spacing: 0.24em; }
  .brand span { font-size: 0.56rem; }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;              /* dokunma hedefi en az 44px */
    height: 44px;
    padding: 0 10px;
    border: 1px solid var(--mayka-border, rgba(207,175,107,0.28));
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
  }
  .burger span {
    display: block;
    height: 1.5px;
    background: var(--mayka-gold-bright, #e8cf88);
    border-radius: 2px;
    transition: transform 0.28s var(--mayka-ease), opacity 0.2s ease;
  }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* --- Açılan menü --- */
  .mmenu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 55;
    padding: 5.5rem 1.4rem 2rem;
    background: rgba(7, 10, 18, 0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.26s ease, transform 0.32s var(--mayka-ease), visibility 0.26s;
    overflow-y: auto;
  }
  .mmenu.is-open { opacity: 1; visibility: visible; transform: none; }
  body.menu-acik { overflow: hidden; }

  .mmenu__nav { display: flex; flex-direction: column; }
  .mmenu__nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--mayka-display, "Space Grotesk", sans-serif);
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--mayka-text, #f4f6fb);
  }
  .mmenu__cta { align-self: flex-start; margin-top: 1.6rem; }

  /* --- Yerleşim --- */
  .rail { display: none; }
  .wrap, .wrap--narrow { width: calc(100% - 2.2rem); }
  .sec { padding-block: clamp(3.5rem, 12vw, 5rem); }
  .split, .grid--2, .grid--3, .grid--4, .diptych, .certs { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 1rem; }
  .foot__links { grid-template-columns: minmax(0, 1fr); }

  /* --- Motor KAPALIYKEN: metin normal akışta, alt alta --- */
  html:not(.scenes-on) .scene__inner { padding-block: clamp(3.5rem, 12vw, 5rem); }
  html:not(.scenes-on) .beat { padding-block: clamp(1.8rem, 6vw, 2.6rem); }
  html:not(.scenes-on) .beat + .beat { border-top: 1px solid rgba(255, 255, 255, 0.09); }
  .hero__copy, .station p, .lead, .body { max-width: none; }

  /* Arka planı olmayan metin: gölgeye gerek yok, okunurluğu düşürüyor */
  .station h3, .station p,
  .beat--kimlik .h2, .beat--kimlik .lead, .beat--kimlik .h3,
  .hero__title, .hero__lead { text-shadow: none; }

  /* --- Motor AÇIKKEN telefonda: metin görüntünün altına yaslanır,
         ortada dursa görüntünün konusunu kapatıyor --- */
  .scenes-on .station p,
  .scenes-on .hero__lead { max-width: 30rem; }
  .scenes-on .hero__cta { margin-top: 1.4rem; }
  .scenes-on .beat--kimlik .split { gap: 1.4rem; }
  .scenes-on .beat--kimlik .facts { margin-top: 1.2rem; }
  .scenes-on .beat--kimlik .facts li { padding: 0.7rem 0; }
  /* Kimlik beat'i telefonda ekrana sığmıyordu (818px içerik, ~480px yer).
     Tescilli unvan kalır — en kritik bilgi; diğer iki madde zaten Ticaret ve
     Teknoloji bölümlerinin kendisi. Not de aşağıda SSS'te tekrar geçiyor. */
  .scenes-on .beat--kimlik .note { display: none; }
  .scenes-on .beat--kimlik .facts li:nth-child(n+2) { display: none; }
  .scenes-on .beat--kimlik .facts li { border-bottom: 0; padding: 0.8rem 0 0; }
  .scenes-on .beat--kimlik .lead { font-size: 0.95rem; }

  /* --- Telefonda kare-dizisi yerleşimi -----------------------------------
     Telefon dikey (9:19.5), kareler yatay (16:9). Tam ekran doldurmak kareyi
     6 kat büyütüp yatayda %70'ini kırpıyor: kompozisyon yok oluyor.
     Bunun yerine kare tam genişlikte 16:9 panel olarak üstte durur, metin
     altına iner. Kamera yine scroll ile sürülür; büyütme 1.6 kata düşer. --- */
  .scenes-on .scene__canvas {
    inset: auto 0 auto 0;
    top: 4.6rem;
    height: auto;
    aspect-ratio: 16 / 9;
    border-block: 1px solid rgba(207, 175, 107, 0.14);
  }

  /* Perde yalnızca karenin alt kenarında: sayfaya yumuşak geçiş */
  .scenes-on .scene__scrim {
    inset: auto 0 auto 0;
    top: 4.6rem;
    height: auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg,
      rgba(7,10,18,0.35) 0%, rgba(7,10,18,0) 34%,
      rgba(7,10,18,0.15) 72%, rgba(7,10,18,0.92) 100%);
  }

  /* Metin, karenin hemen altından başlar. Kare üstten 4.6rem'de ve tam
     genişlikte 16:9 olduğu için yüksekliği 56.25vw; metin de tam oradan
     itibaren akar — aksi hâlde ekranın dibine yapışıp arada 200px+ boşluk
     kalıyordu. */
  .scenes-on .scene__inner {
    align-items: flex-start;
    padding-top: calc(4.6rem + 56.25vw + 1.6rem);
    padding-bottom: 3rem;
    height: 100%;
  }
  .scenes-on .beats { min-height: 0; height: 100%; }
  .scenes-on .beat { justify-content: flex-start; }
  .scenes-on .station h3,
  .scenes-on .station p,
  .scenes-on .hero__title,
  .scenes-on .hero__lead { text-shadow: none; }
  .scenes-on .scene__count { bottom: 1.1rem; }

  /* --- Tipografi ölçeği --- */
  .display { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  .h2 { font-size: clamp(1.55rem, 7vw, 2.05rem); }
  .station h3 { font-size: clamp(1.5rem, 6.5vw, 1.95rem); }
  .station__n { font-size: 1.8rem; }
  .lead { font-size: 1rem; }

  /* --- Diptik: tek sütun, taşma yok --- */
  .dip { min-height: min(56vh, 26rem); }
  .dip__body { padding: 1.3rem 1.2rem; width: 100%; }
  .dip__body p { max-width: none; }
  .dip__name { font-size: 1.75rem; }


  /* --- Beat görselleri: yalnızca sahne motoru KAPALIYKEN yedek olarak.
         (reduced-motion veya JS yok). Motor açıksa kare dizisi oynuyor. --- */
  html:not(.scenes-on) .beat__still {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(207, 175, 107, 0.14);
    filter: saturate(0.9) contrast(1.02);
  }

  /* Görsel + metin birlikte belirsin — pin değil, sadece küçük bir nefes */
  html:not(.scenes-on) .beat__still,
  html:not(.scenes-on) .beat > .hero__copy,
  .beat > .split,
  .beat > .station {
    opacity: 0;
    transform: translateY(0.9rem);
    transition: opacity 0.6s var(--mayka-ease), transform 0.7s var(--mayka-ease);
  }
  html:not(.scenes-on) .beat.is-seen .beat__still,
  .beat.is-seen > .hero__copy,
  .beat.is-seen > .split,
  .beat.is-seen > .station { opacity: 1; transform: none; }
  html:not(.scenes-on) .beat.is-seen .beat__still { transition-delay: 0s; }
  .beat.is-seen > .hero__copy,
  .beat.is-seen > .split,
  .beat.is-seen > .station { transition-delay: 0.1s; }

  /* Durak numarası görselin hemen altında, sıralamayı taşır */
  .station__n { display: block; margin-bottom: 0.15rem; }

  /* --- Dokunma hedefleri --- */
  .btn { padding: 0.72rem 1.15rem; }
  .faq summary { padding: 1.1rem 0; }
  .cert { padding: 1.25rem 1.1rem; }
}

@media (max-width: 620px) {
  .stats { grid-template-columns: minmax(0, 1fr); }
  .facts li { grid-template-columns: minmax(0, 1fr); gap: 0.4rem; }
  .row { grid-template-columns: 2.4rem minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  [data-rise] { opacity: 1; transform: none; }
  .beat { position: static; opacity: 1; transform: none; }
  .beats { min-height: 0; }
  .film__bg { display: none; }
  * { transition-duration: 0.01ms !important; }
}
