/* =====================================================================
   ESTORIX · CINEMA — anasayfa kaydırma filmi (Apple ürün sayfası dili)
   ---------------------------------------------------------------------
   Yalnız anasayfada (body.is-cinema) ve TÜM katmanlardan SONRA yüklenir.
   Motor: assets/js/estorix-cinema.js — sahnelere `--p` (0‥1) yazar,
   hareketin tamamı buradaki calc()'larla üretilir.

   Sözleşme:
   · [data-cx-scene]  → JS `--p` yazar, `.is-live` sınıfı ekler
   · `.is-live` yoksa (JS yok / reduced-motion) her şey statik ve görünür
   · Renk/ölçü belirteçleri `body.is-cinema` altında kapsanır; alt sayfalara
     ve klasik gövdeye sızmaz.
   ===================================================================== */

body.is-cinema {
  --cx-bg: #000000;
  --cx-bg-soft: #0a0a0c;
  --cx-ink: #f5f5f7;
  --cx-dim: #a1a1a6;
  --cx-faint: #6e6e73;
  --cx-blue: #0071e3;
  --cx-blue-lit: #2997ff;
  --cx-line: rgba(255, 255, 255, 0.14);
  --cx-line-soft: rgba(255, 255, 255, 0.08);
  --cx-pad: clamp(20px, 5vw, 48px);
  --cx-max: 1240px;
  --cx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cx-film-h: 54vh;
  --cx-bezel: 13px;
  --cx-screen-r: 8px;
}

/* KRİTİK: estorix-landing.css `html/body { overflow-x: hidden }` diyor; bu, body'yi
   kaydırma kabı yapıp `position: sticky`'yi öldürüyor. `clip` aynı taşma korumasını
   verir ama kaydırma kabı YARATMAZ — sinema sahneleri ancak böyle sabitlenir. */
html:has(body.is-cinema) { overflow-x: clip; }
body.is-cinema { overflow-x: clip; }

/* Sinema şeridi — siyah zeminin sürekliliği (bölümler arası beyaz sızıntı yok) */
body.is-cinema .cx-strip {
  position: relative;
  background: var(--cx-bg);
  color: var(--cx-ink);
  isolation: isolate;
}

body.is-cinema .cx-strip *,
body.is-cinema .cx-strip *::before,
body.is-cinema .cx-strip *::after {
  box-sizing: border-box;
}

/* ZIRH: sahneler eski kimlik seçicilerini (#problem-solution, #moduller,
   #estorix-showcase …) miras alıyor; o kurallar beyaz zemin/padding dayatıyor
   ve kimlik özgüllüğü (1,0,0) sınıf kurallarını yeniyor. Bu blok onları keser. */
body.estorix-vibe.is-cinema .cx-strip .cx-scene {
  position: relative;
  background: var(--cx-bg) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Kimlik seçicileri (1,2,1) sınıf zırhını yener — sahnelerin kendi kimlikleriyle
   yazılmış ikinci zırh katmanı (1,4,0). Yeni bir kimlik eklenirse buraya da yazılmalı. */
body.estorix-vibe.is-cinema #hero.cx-scene,
body.estorix-vibe.is-cinema #problem-solution.cx-scene,
body.estorix-vibe.is-cinema #estorix-showcase.cx-scene,
body.estorix-vibe.is-cinema #moduller.cx-scene {
  background: var(--cx-bg) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

body.is-cinema .cx-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.is-cinema .cx-wrap {
  width: 100%;
  max-width: var(--cx-max);
  margin: 0 auto;
  padding: 0 var(--cx-pad);
}

/* ---------- ortak tipografi ---------- */
body.is-cinema .cx-eyebrow {
  margin: 0 0 18px;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cx-blue-lit);
}

body.is-cinema .cx-h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.042em;
  font-weight: 700;
  color: var(--cx-ink);
}

body.is-cinema .cx-h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--cx-ink);
}

body.is-cinema .cx-lead {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.47;
  color: var(--cx-dim);
  max-width: 62ch;
}

/* Tek vurgu rengi. Gradyan YALNIZ hero başlığında kalır — her yerde kullanılınca
   "SaaS şablonu" hissi veriyor, Apple tek aksan rengi kullanır. */
body.is-cinema .cx-tint { color: var(--cx-blue-lit); }

body.is-cinema .cx-hero__copy .cx-tint {
  background: linear-gradient(100deg, #2997ff 0%, #7bb8ff 42%, #dbeaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- düğmeler ---------- */
body.is-cinema .cx-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body.is-cinema .cx-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.35s var(--cx-ease), background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

body.is-cinema .cx-btn--fill {
  background: var(--cx-blue);
  color: #fff;
}

body.is-cinema .cx-btn--fill:hover {
  background: #0a84ff;
  transform: translateY(-2px);
}

body.is-cinema .cx-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cx-line);
  color: var(--cx-ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.is-cinema .cx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

body.is-cinema .cx-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cx-blue-lit);
  text-decoration: none;
  font-weight: 500;
}

body.is-cinema .cx-link:hover { text-decoration: underline; }

/* =====================================================================
   1 · HERO — ekran tam kadrajdan cihaz kadrajına iner
   ===================================================================== */
body.is-cinema .cx-hero { --p: 0; }
body.is-cinema .cx-hero.is-live { height: 240vh; }

body.is-cinema .cx-hero__sticky {
  justify-content: flex-start;
  padding-top: clamp(96px, 14vh, 168px);
}

/* atmosfer: yumuşak ışık kürelerinin çok yavaş sürüklenmesi */
body.is-cinema .cx-sky {
  position: absolute;
  inset: -20% -10% 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(1 - var(--p) * 0.55);
}

body.is-cinema .cx-sky__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

body.is-cinema .cx-sky__orb--a {
  width: 46vw;
  height: 46vw;
  left: -8vw;
  top: 6vh;
  background: radial-gradient(circle, rgba(0, 90, 200, 0.42), transparent 68%);
  transform: translate3d(0, calc(var(--p) * -14vh), 0);
}

body.is-cinema .cx-sky__orb--b {
  width: 40vw;
  height: 40vw;
  right: -6vw;
  top: -6vh;
  background: radial-gradient(circle, rgba(214, 122, 40, 0.24), transparent 68%);
  transform: translate3d(0, calc(var(--p) * 10vh), 0);
}

body.is-cinema .cx-sky__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.6;
}

body.is-cinema .cx-hero__copy {
  position: relative;
  z-index: 3;
  text-align: center;
  transform: translate3d(0, calc(var(--p) * -9vh), 0);
  opacity: clamp(0, calc(1.25 - var(--p) * 3.2), 1);
  will-change: transform, opacity;
}

body.is-cinema .cx-hero__copy .cx-h1 { margin-inline: auto; max-width: 17ch; }

body.is-cinema .cx-hero__sub {
  margin: 22px auto 0;
  max-width: 56ch;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  line-height: 1.45;
  color: var(--cx-dim);
}

body.is-cinema .cx-hero__copy .cx-btns { justify-content: center; }

body.is-cinema .cx-hero__trust {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 0.9rem;
  color: var(--cx-faint);
}

body.is-cinema .cx-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.is-cinema .cx-hero__trust i { color: #30d158; font-size: 0.8em; }

/* sahne: ekran aşağıdan yükselir, yükselirken cihaz kadrajına oturur */
body.is-cinema .cx-hero__stage {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(1180px, 92vw);
  transform:
    translate3d(-50%, calc(-50% + 63vh - var(--p) * 63vh), 0)
    scale(calc(1.06 - var(--p) * 0.2));
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Hero cihazı: kadraj indikçe kasa da kapanır (p arttıkça çerçeve belirir) */
body.is-cinema .cx-screen {
  position: relative;
  margin: 0;
  padding: calc(var(--p) * var(--cx-bezel)) calc(var(--p) * var(--cx-bezel)) calc(var(--p) * var(--cx-bezel) * 1.55);
  border-radius: calc(var(--cx-screen-r) + var(--p) * var(--cx-bezel));
  background: linear-gradient(180deg, #34343a 0%, #1b1b1f 42%, #0e0e11 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, calc(var(--p) * 0.18)) inset,
    0 0 0 1px rgba(0, 0, 0, calc(var(--p) * 0.85)),
    0 60px 130px -46px rgba(0, 0, 0, 0.95);
}

body.is-cinema .cx-screen__inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--cx-screen-r);
  overflow: hidden;
  background: #050506;
}

body.is-cinema .cx-screen__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(112deg,
    rgba(255, 255, 255, 0.075) 0%,
    rgba(255, 255, 255, 0.025) 17%,
    rgba(255, 255, 255, 0) 38%);
}

body.is-cinema .cx-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

/* zemin yansıması — cihaz bir yüzeyin üstünde durur */
body.is-cinema .cx-hero__stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(41, 151, 255, 0.22), transparent 70%);
  filter: blur(18px);
  opacity: var(--p);
  pointer-events: none;
}

/* ekranın alt kenarı sayfaya erisin — kadraj kesilmiş gibi durmasın */
body.is-cinema .cx-hero__sticky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32vh;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--cx-bg) 78%);
  opacity: clamp(0, calc(1.05 - var(--p) * 1.5), 1);
  pointer-events: none;
}

body.is-cinema .cx-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cx-faint);
  opacity: clamp(0, calc(1 - var(--p) * 5), 1);
  pointer-events: none;
}

body.is-cinema .cx-cue__dot {
  width: 22px;
  height: 34px;
  border: 1px solid var(--cx-line);
  border-radius: 12px;
  position: relative;
}

body.is-cinema .cx-cue__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--cx-dim);
  animation: cx-cue 1.9s var(--cx-ease) infinite;
}

@keyframes cx-cue {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =====================================================================
   2 · MANİFESTO — kelimeler kaydırmayla aydınlanır
   ===================================================================== */
body.is-cinema .cx-say { --p: 0; }
body.is-cinema .cx-say.is-live { height: 215vh; }

body.is-cinema .cx-say__sticky { justify-content: center; }

body.is-cinema .cx-say__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cx-faint);
  margin: 0 0 26px;
}

body.is-cinema .cx-say .cx-h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cx-dim);
  margin-bottom: 22px;
}

body.is-cinema .cx-say .cx-h2 .cx-tint { background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--cx-blue-lit); }

body.is-cinema .cx-words {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: -0.028em;
  font-weight: 600;
  max-width: 20ch;
}

body.is-cinema .cx-word {
  display: inline-block;
  color: var(--cx-ink);
  /* n = toplam kelime, i = sıra; ikisini de PHP yazar */
  opacity: clamp(0.14, calc((var(--p) * 1.45 * var(--n) - var(--i)) * 0.85), 1);
  transform: translate3d(0, calc(clamp(0, calc(var(--i) + 1 - var(--p) * 1.45 * var(--n)), 1) * 0.16em), 0);
}

body.is-cinema .cx-word--hi {
  background: linear-gradient(96deg, #2997ff, #a1c9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* manifestonun sonunda beliren üç kart */
body.is-cinema .cx-tri {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 6vh, 60px);
  opacity: clamp(0, calc((var(--p) - 0.62) * 4), 1);
  transform: translate3d(0, calc(clamp(0, calc(1 - (var(--p) - 0.62) * 4), 1) * 26px), 0);
}

body.is-cinema .cx-tri__item {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--cx-line-soft);
}

body.is-cinema .cx-tri__item--sol {
  border-color: rgba(41, 151, 255, 0.35);
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.16), rgba(0, 113, 227, 0.04));
}

body.is-cinema .cx-tri__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cx-blue-lit);
  margin-bottom: 14px;
}

body.is-cinema .cx-tri__t {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--cx-ink);
  letter-spacing: -0.01em;
}

body.is-cinema .cx-tri__d {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--cx-dim);
}

/* =====================================================================
   3 · FİLM — gerçek ekranlar kaydırmayla birbirine karışır
   ===================================================================== */
body.is-cinema .cx-film { --p: 0; }

body.is-cinema .cx-film__sticky {
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  padding: clamp(84px, 12vh, 130px) 0 clamp(28px, 5vh, 54px);
}

body.is-cinema .cx-film__head {
  text-align: center;
  position: relative;
  z-index: 2;
}

body.is-cinema .cx-film__head .cx-h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }

body.is-cinema .cx-film__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1440px;
  position: relative;
  z-index: 2;
}

/* Cihaz gövdesi: alüminyum kasa + siyah çerçeve + zemin gölgesi.
   Görsel dosyası yok, tamamı CSS — ekranın "yapıştırılmış dikdörtgen" durması biter. */
body.is-cinema .cx-film__device {
  position: relative;
  width: min(100%, calc(var(--cx-film-h) * 16 / 9 + 2 * var(--cx-bezel)));
  margin: 0 auto;
  padding: var(--cx-bezel) var(--cx-bezel) calc(var(--cx-bezel) * 1.55);
  border-radius: calc(var(--cx-screen-r) + var(--cx-bezel));
  background:
    linear-gradient(180deg, #34343a 0%, #1b1b1f 42%, #0e0e11 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.6) inset,
    0 0 0 1px rgba(0, 0, 0, 0.85),
    0 60px 120px -46px rgba(0, 0, 0, 0.95),
    0 0 150px -30px rgba(0, 113, 227, 0.18);
  cursor: zoom-in;
  display: block;
  border: 0;
}

/* kasa üzerinde ince ışık çizgisi — metal hissi */
body.is-cinema .cx-film__device::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 40%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

body.is-cinema .cx-film__screen {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--cx-screen-r);
  overflow: hidden;
  background: #050506;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9), 0 0 22px rgba(0, 0, 0, 0.55) inset;
}

/* zemin gölgesi — cihaz bir yüzeyin üstünde durur */
body.is-cinema .cx-film__device::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -22px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75), transparent 72%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
/* cam yansıması: ekranın gerçek bir panel olduğunu hissettirir */
body.is-cinema .cx-film__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(112deg,
      rgba(255, 255, 255, 0.085) 0%,
      rgba(255, 255, 255, 0.028) 17%,
      rgba(255, 255, 255, 0) 38%),
    radial-gradient(120% 70% at 50% -20%, rgba(255, 255, 255, 0.06), transparent 60%);
}

/* ---------- kare setleri: 'd' masaüstü, 'm' telefon ----------
   `display: contents` şart: kareler .cx-film__device'a göre mutlak konumlanır,
   araya kutu giren bir sarmalayıcı konumlandırmayı bozar. */
body.is-cinema .cx-set { display: contents; }
body.is-cinema .cx-set--m { display: none; }

body.is-cinema .cx-set--d > .cx-cap,
body.is-cinema .cx-set--m > .cx-cap { position: absolute; inset: 0; }
body.is-cinema .cx-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity, transform;
}

/* Motor yoksa (JS kapalı / hareket azaltma): tek afiş + alt yazı ızgarası.
   Dokuz kare üst üste yığılmaz; içerik kaybolmadan sade kalır. */
body.is-cinema .cx-film:not(.is-live) .cx-frame { display: none; }
body.is-cinema .cx-film:not(.is-live) .cx-frame:first-of-type { display: block; opacity: 1; }

body.is-cinema .cx-film__hint {
  position: absolute;
  right: calc(var(--cx-bezel) + 12px);
  bottom: calc(var(--cx-bezel) + 12px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 980px;
  font-size: 0.76rem;
  color: var(--cx-ink);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--cx-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

body.is-cinema .cx-film__side {
  position: relative;
  min-height: 240px;
}

body.is-cinema .cx-cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
}

body.is-cinema .cx-film:not(.is-live) .cx-film__body { grid-template-columns: minmax(0, 1fr); }
body.is-cinema .cx-film:not(.is-live) .cx-film__device { cursor: default; }
body.is-cinema .cx-film:not(.is-live) .cx-film__hint { display: none; }
body.is-cinema .cx-film:not(.is-live) .cx-film__side {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 26px;
  text-align: left;
}
body.is-cinema .cx-film:not(.is-live) .cx-cap {
  position: static;
  opacity: 1;
  transform: none;
  align-items: flex-start;
}

body.is-cinema .cx-cap__ch {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cx-blue-lit);
}

body.is-cinema .cx-cap__t {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--cx-ink);
}

body.is-cinema .cx-cap__d {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cx-dim);
}

body.is-cinema .cx-cap__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.is-cinema .cx-cap__list li {
  font-size: 0.8rem;
  padding: 5px 11px;
  border-radius: 980px;
  color: var(--cx-dim);
  border: 1px solid var(--cx-line-soft);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- bölüm rayı: ince ilerleme çizgisi (Apple bölüm göstergesi) ---------- */
body.is-cinema .cx-rail {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--cx-pad);
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  justify-content: center;
  width: 100%;
  max-width: 760px;
  position: relative;
  z-index: 3;
}

body.is-cinema .cx-rail__item { flex: 1 1 0; min-width: 0; --f: 0; }

body.is-cinema .cx-rail__item button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  width: 100%;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

body.is-cinema .cx-rail__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--cx-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s ease;
}

body.is-cinema .cx-rail__item.is-on .cx-rail__label { color: var(--cx-ink); }
body.is-cinema .cx-rail__item button:hover .cx-rail__label { color: var(--cx-dim); }

body.is-cinema .cx-rail__track {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

body.is-cinema .cx-rail__fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background: var(--cx-ink);
  transform: scaleX(var(--f));
  transform-origin: left center;
  will-change: transform;
}

body.is-cinema .cx-film:not(.is-live) .cx-rail { display: none; }
/* =====================================================================
   4 · TAM KADRAJ — paralaks ekran + iddia
   ===================================================================== */
body.is-cinema .cx-bleed { --p: 0; }
body.is-cinema .cx-bleed.is-live { height: 190vh; }

body.is-cinema .cx-bleed__sticky { justify-content: center; }

body.is-cinema .cx-bleed__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}

body.is-cinema .cx-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  transform: translate3d(0, calc((var(--p) - 0.5) * 16vh), 0) scale(1.16);
  will-change: transform;
  filter: blur(1.6px);
  opacity: 0.62;
}

body.is-cinema .cx-bleed__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, var(--cx-bg) 0%, rgba(0, 0, 0, 0.42) 24%, rgba(0, 0, 0, 0.62) 55%, var(--cx-bg) 100%);
}

body.is-cinema .cx-bleed__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

body.is-cinema .cx-bleed .cx-h2 {
  max-width: 18ch;
  margin-inline: auto;
  transform: translate3d(0, calc((0.5 - var(--p)) * 6vh), 0);
}

body.is-cinema .cx-bleed .cx-lead { margin-inline: auto; text-align: center; }

body.is-cinema .cx-stats {
  list-style: none;
  margin: clamp(30px, 6vh, 58px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.is-cinema .cx-stats li {
  padding: 20px 14px;
  border-radius: 18px;
  border: 1px solid var(--cx-line-soft);
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.is-cinema .cx-stats b {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cx-ink);
  line-height: 1;
}

body.is-cinema .cx-stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--cx-dim);
}

/* =====================================================================
   5 · MODÜL RAYI — dikey kaydırma yatay filme dönüşür
   ===================================================================== */
/* =====================================================================
   MODÜL RAYI — Square tasarım dili (koyu uyarlama)
   ---------------------------------------------------------------------
   sd-square.css'in kuralları burada da geçerli, yalnızca zemin koyu:
     1) gölge yok — derinlik 1px kenarlıkla verilir
     2) renk yalnızca durum bildirir → ikon/rozet gradyanı kaldırıldı
     3) gövde metni 14px/22px
     4) 8px ızgara
     5) yuvarlaklık kademeli: kart 12 · form 8 · rozet & buton hap
   Odaktaki kart renkle değil, kenarlık ve yüzey tonuyla öne çıkar
   (`.is-odak`, motorun yazdığı sınıf).
   ===================================================================== */
body.is-cinema .cx-mods { --p: 0; }

body.is-cinema .cx-mods__sticky {
  justify-content: center;
  gap: 24px;
  padding: clamp(72px, 9vh, 96px) 0 24px;
}

body.is-cinema .cx-mods__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

body.is-cinema .cx-mods__head .cx-lead {
  margin: 0;
  max-width: 56ch;
  text-align: center;
}

/* --- Square sayaç: 8px ızgara, tabular sayı, renksiz --- */
body.is-cinema .cx-mods__count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

body.is-cinema .cx-mods__count b { font-weight: 600; color: var(--cx-ink); }
body.is-cinema .cx-mods__count span,
body.is-cinema .cx-mods__count em { font-style: normal; font-weight: 400; color: rgba(255, 255, 255, 0.4); }

body.is-cinema .cx-mods__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

body.is-cinema .cx-mods__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 8px var(--cx-pad);
  will-change: transform;
}

/* motor yoksa / mobilde: doğal yatay kaydırma */
body.is-cinema .cx-mods:not(.is-live) .cx-mods__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

body.is-cinema .cx-mods:not(.is-live) .cx-mods__track { transform: none !important; }
body.is-cinema .cx-mods:not(.is-live) .cx-mod { scroll-snap-align: center; }
body.is-cinema .cx-mods:not(.is-live) .cx-mods__count { display: none; }

/* --- kart: düz yüzey, 1px kenarlık, 12px köşe, gölgesiz --- */
body.is-cinema .cx-mod {
  flex: 0 0 min(336px, 80vw);
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 12px;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: border-color 0.35s ease, background-color 0.35s ease;
}

/* rayın ortasındaki kart — Square'de vurgu renk değil, kontrast */
body.is-cinema .cx-mod.is-odak {
  background: #141416;
  border-color: rgba(255, 255, 255, 0.28);
}

body.is-cinema .cx-mod:hover { border-color: rgba(255, 255, 255, 0.4); }

/* --- üst satır: ikon + kademe rozeti --- */
body.is-cinema .cx-mod__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

body.is-cinema .cx-mod__ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--cx-ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

body.is-cinema .cx-mod__tier {
  display: inline-block;
  align-self: center;
  margin: 0;
  padding: 4px 10px;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* --- başlık ve açıklama: Square tipografisi --- */
body.is-cinema .cx-mod__t {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cx-ink);
}

body.is-cinema .cx-mod__d {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 22px;
  color: var(--cx-dim);
}

/* --- alt modüller: ince ayraçla ayrılmış hap etiketler --- */
body.is-cinema .cx-mod__chips {
  list-style: none;
  margin: 0 0 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.is-cinema .cx-mod__chip {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 1000px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

body.is-cinema a.cx-mod__chip:hover {
  color: #101010;
  background: #fff;
  border-color: #fff;
}

/* --- kart aksiyonu: hap buton (Square'de birincil aksiyon nötr) --- */
body.is-cinema .cx-mod__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  height: 40px;
  padding: 0 16px;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--cx-ink);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body.is-cinema .cx-mod__cta i { font-size: 11px; transition: transform 0.25s ease; }

body.is-cinema .cx-mod__cta:hover {
  background: #fff;
  border-color: #fff;
  color: #101010;
}

body.is-cinema .cx-mod__cta:hover i { transform: translateX(3px); }

/* --- ilerleme rayı: 2px, hap, düz beyaz --- */
body.is-cinema .cx-mods__bar {
  width: min(320px, 60vw);
  height: 2px;
  margin: 0 auto;
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

body.is-cinema .cx-mods__bar > span {
  display: block;
  height: 100%;
  width: 22%;
  border-radius: 1000px;
  background: #fff;
  transform: translateX(0);
  will-change: transform;
}

body.is-cinema .cx-mods:not(.is-live) .cx-mods__bar { display: none; }

/* =====================================================================
   Şeridin beyaz bölümlere devri
   ===================================================================== */
body.is-cinema .cx-outro {
  position: relative;
  height: clamp(120px, 18vh, 200px);
  background: linear-gradient(to bottom, var(--cx-bg), #ffffff);
}

/* =====================================================================
   Koyu zeminde üst çubuk
   ===================================================================== */
/* !important — akışkan katman (estorix-home-fluid.css) beyaz zemini zorluyor */
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .estorix-topbar__shell {
  background: rgba(18, 18, 20, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .brand-text,
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .brand-x,
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .epm-nav-link,
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .estorix-call-trigger,
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .estorix-account-chip__name {
  color: #f5f5f7;
  /* estorix-vibe.css marka yazısına -webkit-text-fill-color veriyor */
  -webkit-text-fill-color: #f5f5f7;
}

body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .brand-x {
  color: var(--cx-blue-lit);
  -webkit-text-fill-color: var(--cx-blue-lit);
}

body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .epm-nav-link:hover { color: #fff; }

/* !important — estorix-home-apple.css `.is-corp .btn-secondary` koyu metni zorluyor */
body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f5f5f7 !important;
}

body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .estorix-call-trigger {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

body.estorix-vibe.is-home.is-cinema header.estorix-topbar.is-on-dark .mobile-menu-toggle span { background: #f5f5f7; }

body.estorix-vibe.is-home.is-cinema header.estorix-topbar .estorix-topbar__shell {
  transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* =====================================================================
   Duyarlılık
   ===================================================================== */
@media (max-width: 1024px) {
  body.is-cinema .cx-film__body { grid-template-columns: minmax(0, 1fr); }
  body.is-cinema .cx-film__side { min-height: 190px; text-align: center; }
  body.is-cinema .cx-cap { align-items: center; }
  body.is-cinema .cx-cap__list { justify-content: center; }
  body.is-cinema .cx-tri { grid-template-columns: minmax(0, 1fr); }
  body.is-cinema .cx-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  /* film ve hero telefonda dikey ekran görüntüsü oynatır */
  body.is-cinema .cx-set--d { display: none; }
  body.is-cinema .cx-set--m { display: contents; }

  /* Telefon kasası: kalın çerçeve, dynamic island ve yan tuşlar */
  body.is-cinema {
    --cx-bezel: 9px;
    --cx-screen-r: 30px;
  }

  body.is-cinema .cx-film__device {
    width: min(80vw, calc(var(--cx-film-h) * 430 / 932 + 2 * var(--cx-bezel)));
    border-radius: 40px;
    background: linear-gradient(150deg, #43434a 0%, #1d1d21 30%, #101013 70%, #2a2a30 100%);
  }

  body.is-cinema .cx-film__screen { aspect-ratio: 430 / 932; }

  /* dynamic island */
  body.is-cinema .cx-film__screen::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 17px;
    border-radius: 999px;
    background: #050506;
    pointer-events: none;
  }

  /* yan tuşlar */
  body.is-cinema .cx-film__device::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 21%;
    width: 2px;
    height: 7%;
    border-radius: 2px;
    background: linear-gradient(180deg, #4a4a52, #26262b);
    box-shadow: 0 calc(9% + 6px) 0 #3a3a42, 0 calc(18% + 12px) 0 #3a3a42;
    pointer-events: none;
  }

  body.is-cinema .cx-hero__stage { width: min(66vw, 300px); }
  body.is-cinema .cx-screen { border-radius: calc(var(--cx-screen-r) + var(--p) * 12px); }
  body.is-cinema .cx-screen__inner { aspect-ratio: 430 / 932; }


  body.is-cinema .cx-hero.is-live { height: 210vh; }
  body.is-cinema .cx-hero__sticky { padding-top: clamp(84px, 13vh, 120px); }
  body.is-cinema { --cx-film-h: 55vh; }

  body.is-cinema .cx-hero__stage {
    width: 100vw;
    transform:
      translate3d(-50%, calc(30vh - var(--p) * 24vh), 0)
      scale(calc(1.18 - var(--p) * 0.24));
  }
  body.is-cinema .cx-say.is-live { height: 200vh; }
  body.is-cinema .cx-words { max-width: none; }
  body.is-cinema .cx-film__sticky { padding-top: clamp(84px, 12vh, 116px); }
  body.is-cinema .cx-film__head .cx-lead { display: none; }
  body.is-cinema .cx-film__side { min-height: 150px; }

  /* motor yokken alt yazı ızgarası telefonda tek sütun */
  body.is-cinema .cx-film:not(.is-live) .cx-film__side { grid-template-columns: minmax(0, 1fr); gap: 26px; }

  /* Telefon: dikey kadraj başlık + alt yazı + rayla birlikte tek ekrana sığmalı */
  body.is-cinema .cx-film__sticky { gap: 14px; padding-bottom: 22px; }
  body.is-cinema .cx-film__head .cx-h2 { font-size: clamp(1.25rem, 5.4vw, 1.6rem); }
  body.is-cinema .cx-film__device { border-radius: 24px; }
  body.is-cinema .cx-cap__ch { margin-bottom: 7px; font-size: 0.68rem; }
  body.is-cinema .cx-cap__t { font-size: 1.28rem; margin-bottom: 8px; }
  body.is-cinema .cx-cap__d { font-size: 0.92rem; line-height: 1.45; }
  body.is-cinema .cx-cap__list { margin-top: 11px; gap: 6px; }
  body.is-cinema .cx-cap__list li { font-size: 0.72rem; padding: 4px 9px; }
  body.is-cinema .cx-rail { gap: 10px; max-width: none; }
  body.is-cinema .cx-rail__label { font-size: 0.68rem; }
  body.is-cinema .cx-rail__item button { gap: 6px; padding: 6px 0; }
  body.is-cinema .cx-bleed.is-live { height: 170vh; }
  body.is-cinema .cx-cue { display: none; }
}

@media (max-width: 480px) {
  body.is-cinema .cx-stats { grid-template-columns: minmax(0, 1fr); }
  body.is-cinema .cx-stats li { padding: 16px 14px; }
  body.is-cinema .cx-btn { padding: 12px 20px; font-size: 0.94rem; }
}

/* =====================================================================
   Hareket azaltma / motor yok → her şey sabit ve okunur
   ===================================================================== */
body.is-cinema .cx-scene:not(.is-live) .cx-sticky {
  position: static;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding-top: clamp(90px, 12vh, 140px);
  padding-bottom: clamp(50px, 8vh, 90px);
}

body.is-cinema .cx-scene:not(.is-live) .cx-hero__copy,
body.is-cinema .cx-scene:not(.is-live) .cx-word,
body.is-cinema .cx-scene:not(.is-live) .cx-tri {
  opacity: 1;
  transform: none;
}

body.is-cinema .cx-scene:not(.is-live) .cx-hero__stage {
  position: relative;
  left: auto;
  bottom: auto;
  margin: clamp(36px, 6vh, 70px) auto 0;
  transform: none;
}

body.is-cinema .cx-scene:not(.is-live) .cx-cue { display: none; }
body.is-cinema .cx-hero:not(.is-live) .cx-hero__sticky::after { display: none; }
body.is-cinema .cx-scene:not(.is-live) .cx-screen { border-radius: 18px; }
body.is-cinema .cx-scene:not(.is-live) .cx-sky { opacity: 0.7; }
body.is-cinema .cx-scene:not(.is-live) .cx-bleed__media img { transform: none; }
body.is-cinema .cx-scene:not(.is-live) .cx-bleed .cx-h2 { transform: none; }

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-cue__dot::after { animation: none; }
  body.is-cinema .cx-btn,
  body.is-cinema .cx-mod { transition: none; }
}

/* =====================================================================
   AÇIK BÖLÜM (.cx-light) — sayfanın alt yarısı
   ---------------------------------------------------------------------
   Zemin beyaza döner ama tipografi ölçeği, boşluk ritmi ve buton dili
   sinema katmanıyla AYNI kalır. Amaç: "iki ayrı sayfa birleştirilmiş"
   hissini bitirmek. Eski katmanlar `!important` kullandığı için burada da
   yer yer gerekiyor; seçiciler `body.estorix-vibe.is-cinema .cx-light`
   ile kapsanır, klasik gövdeye ve alt sayfalara sızmaz.
   ===================================================================== */

body.is-cinema .cx-light {
  --lt-ink: #1d1d1f;
  --lt-dim: #6e6e73;
  --lt-line: rgba(0, 0, 0, 0.09);
  --lt-surface: #f5f5f7;
  background: #ffffff;
  position: relative;
}

/* ---------- bölüm başlıkları: sinema ölçeğiyle aynı ---------- */
body.estorix-vibe.is-cinema .cx-light .section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
  color: var(--lt-ink) !important;
  max-width: 20ch;
  margin-inline: auto;
}

body.estorix-vibe.is-cinema .cx-light .section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.16rem) !important;
  line-height: 1.47 !important;
  letter-spacing: -0.005em;
  color: var(--lt-dim) !important;
  max-width: 60ch !important;
  margin-inline: auto !important;
}

body.estorix-vibe.is-cinema .cx-light .estorix-section-kicker {
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--cx-blue) !important;
}

body.estorix-vibe.is-cinema .cx-light .section-header { margin-bottom: clamp(34px, 5vh, 58px); }

/* gradyan yazı açık zeminde tek aksan rengine döner */
body.estorix-vibe.is-cinema .cx-light .gradient-text {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--cx-blue) !important;
  -webkit-text-fill-color: var(--cx-blue) !important;
}

/* ---------- bölüm ritmi ---------- */
body.estorix-vibe.is-cinema .cx-light > section,
body.estorix-vibe.is-cinema .cx-light > div > section {
  padding-top: clamp(64px, 9vh, 108px) !important;
  padding-bottom: clamp(64px, 9vh, 108px) !important;
}

/* dönüşümlü zemin — Apple ritmi: beyaz / açık gri */
body.estorix-vibe.is-cinema .cx-light .ex-market,
body.estorix-vibe.is-cinema .cx-light .seo-usecase-section,
body.estorix-vibe.is-cinema .cx-light .estorix-download {
  background: var(--lt-surface) !important;
}

body.estorix-vibe.is-cinema .cx-light .ex-market--okc,
body.estorix-vibe.is-cinema .cx-light .ex-shop,
body.estorix-vibe.is-cinema .cx-light .seo-ecosystem-section,
body.estorix-vibe.is-cinema .cx-light .seo-faq-section {
  background: #ffffff !important;
}

/* ---------- kartlar: düz, saç teli çerçeve, büyük yarıçap ---------- */
body.estorix-vibe.is-cinema .cx-light .ex-market__card,
body.estorix-vibe.is-cinema .cx-light .ex-shop__card,
body.estorix-vibe.is-cinema .cx-light .seo-eco-card,
body.estorix-vibe.is-cinema .cx-light .seo-usecase-card,
body.estorix-vibe.is-cinema .cx-light .estorix-quote-card,
body.estorix-vibe.is-cinema .cx-light .estorix-pricing-card,
body.estorix-vibe.is-cinema .cx-light .estorix-download__card {
  border-radius: 20px !important;
  border: 1px solid var(--lt-line) !important;
  box-shadow: none !important;
  background: #ffffff !important;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

body.estorix-vibe.is-cinema .cx-light .ex-market__card:hover,
body.estorix-vibe.is-cinema .cx-light .ex-shop__card:hover,
body.estorix-vibe.is-cinema .cx-light .seo-usecase-card:hover,
body.estorix-vibe.is-cinema .cx-light .estorix-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -26px rgba(0, 0, 0, 0.32) !important;
  border-color: rgba(0, 113, 227, 0.35) !important;
}

/* ---------- butonlar: sinema hap dili ---------- */
body.estorix-vibe.is-cinema .cx-light .btn,
body.estorix-vibe.is-cinema .cx-light .estorix-pricing-card__cta,
body.estorix-vibe.is-cinema .cx-light .cta-buttons > a {
  border-radius: 980px !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em;
}

body.estorix-vibe.is-cinema .cx-light .btn-primary {
  background: var(--cx-blue) !important;
  border-color: var(--cx-blue) !important;
}

/* ---------- kaydırmayla beliriş (motor `is-in` ekler) ---------- */
body.is-cinema .cx-light [data-cx-rise] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
  will-change: opacity, transform;
}

body.is-cinema .cx-light [data-cx-rise].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-light [data-cx-rise] { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------
   Entegrasyon kartları — cihazlar ve logolar canlı
   --------------------------------------------------------------------- */
body.is-cinema .cx-light .ex-market__card { position: relative; overflow: hidden; }

/* kart üstünde kayan ışık — üzerine gelince geçer */
body.is-cinema .cx-light .ex-market__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(0, 113, 227, 0.09), transparent);
  transform: skewX(-14deg);
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-cinema .cx-light .ex-market__card:hover::before { left: 120%; }

/* ÖKC cihazı: yavaşça süzülür, kartın üstüne gelince öne çıkar */
body.is-cinema .cx-light .ex-okc__device {
  /* özgün kural `display: grid; place-items: center` — bozmadan yalnız derinlik ekle */
  perspective: 900px;
  transform-style: preserve-3d;
}

body.is-cinema .cx-light .ex-okc__device img {
  transform-origin: 50% 85%;
  animation: cx-suzul 6.5s ease-in-out infinite;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.18));
}

/* her kart farklı fazda süzülsün — sıra dışı ama düzenli */
body.is-cinema .cx-light .ex-market__grid--3 > *:nth-child(2) .ex-okc__device img { animation-delay: -2.2s; }
body.is-cinema .cx-light .ex-market__grid--3 > *:nth-child(3) .ex-okc__device img { animation-delay: -4.4s; }

body.is-cinema .cx-light .ex-market__card:hover .ex-okc__device img {
  animation-play-state: paused;
  transform: translateY(-8px) rotateX(7deg) rotateY(-6deg) scale(1.045);
  filter: drop-shadow(0 26px 30px rgba(15, 23, 42, 0.26));
}

@keyframes cx-suzul {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-7px) rotate(-1.1deg); }
}

/* pazaryeri logoları: belirir, üzerine gelince yükselir */
body.is-cinema .cx-light .ex-market__logo img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-cinema .cx-light .ex-market__card:hover .ex-market__logo img {
  transform: translateY(-3px) scale(1.05);
}

/* "Canlı" rozeti: nabız — entegrasyonun akan bir şey olduğunu söyler */
body.is-cinema .cx-light .ex-market__status--live {
  position: relative;
  z-index: 2;
}

body.is-cinema .cx-light .ex-market__status--live::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.55);
  animation: cx-nabiz 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes cx-nabiz {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-light .ex-okc__device img { animation: none; }
  body.is-cinema .cx-light .ex-market__status--live::after { animation: none; }
  body.is-cinema .cx-light .ex-market__card::before { display: none; }
}

/* =====================================================================
   6 · KAPANIŞ SAHNESİ — koyu şeridin son sözü
   ===================================================================== */
body.is-cinema .cx-close { --p: 0; }
body.is-cinema .cx-close.is-live { height: 165vh; }

body.is-cinema .cx-close__sticky { justify-content: center; }

body.is-cinema .cx-close__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  transform: translate3d(0, calc((0.5 - var(--p)) * 5vh), 0);
}

body.is-cinema .cx-close .cx-h2 { max-width: 17ch; margin-inline: auto; }
body.is-cinema .cx-close .cx-lead { margin-inline: auto; text-align: center; max-width: 54ch; }
body.is-cinema .cx-close .cx-btns { justify-content: center; }
body.is-cinema .cx-close .cx-hero__trust { margin-top: 30px; }

/* alttan yükselen tek ışık — sahne kapanırken güçlenir */
body.is-cinema .cx-glow {
  position: absolute;
  left: 50%;
  bottom: -34%;
  width: 118vw;
  height: 90vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.30), transparent 62%);
  filter: blur(46px);
  opacity: clamp(0.25, calc(0.2 + var(--p) * 0.9), 1);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 760px) {
  body.is-cinema .cx-close.is-live { height: 150vh; }
}

/* =====================================================================
   C4 · AMBİYANS RENGİ — aktif karenin baskın rengi sahneye vurur
   ===================================================================== */
body.is-cinema .cx-film { --cx-amb: 0, 113, 227; }

body.is-cinema .cx-film__device {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.6) inset,
    0 0 0 1px rgba(0, 0, 0, 0.85),
    0 60px 120px -46px rgba(0, 0, 0, 0.95),
    0 0 160px -30px rgba(var(--cx-amb), 0.34);
  transition: box-shadow 0.7s ease;
}

/* sahnenin arkasındaki geniş renk yayılımı */
body.is-cinema .cx-film__sticky::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 92vw;
  height: 72vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(var(--cx-amb), 0.16), transparent 62%);
  filter: blur(60px);
  opacity: 0.9;
  transition: background 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

body.is-cinema .cx-cap__ch { color: rgb(var(--cx-amb)); transition: color 0.6s ease; }
body.is-cinema .cx-rail__item.is-on .cx-rail__fill { background: rgb(var(--cx-amb)); }

/* =====================================================================
   C1 · YÖNLENDİRİLMİŞ VURGU + KAMERA HAREKETİ
   ---------------------------------------------------------------------
   Ekran görüntüsü kare boyunca yavaşça yakınlaşır (kamera itmesi) ve
   o karenin anlattığı yere bir vurgu kutusu oturur. Video dosyası yok:
   hareket kaydırmadan gelir, dolayısıyla ileri-geri kusursuz çalışır.
   ===================================================================== */
body.is-cinema .cx-hot {
  position: absolute;
  z-index: 3;
  border: 2px solid rgba(var(--cx-amb), 0.95);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 0 9999px rgba(0, 0, 0, 0.18),
    0 10px 30px -12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

body.is-cinema .cx-hot.is-on { opacity: 1; transform: none; }

body.is-cinema .cx-hot__tag {
  position: absolute;
  left: -2px;
  bottom: calc(100% + 8px);
  display: inline-block;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 8px;
  background: rgb(var(--cx-amb));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.8);
}

/* etiket üste sığmıyorsa kutunun İÇİNE, sol üste oturur */
body.is-cinema .cx-hot.is-below .cx-hot__tag {
  bottom: auto;
  top: 7px;
  left: 7px;
}

@media (max-width: 760px) {
  body.is-cinema .cx-hot { border-width: 1.5px; border-radius: 8px; }
  body.is-cinema .cx-hot__tag { font-size: 0.62rem; padding: 4px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-hot { transition: none; }
}

body.is-cinema .cx-film:not(.is-live) .cx-hot { display: none; }

/* ---------------------------------------------------------------------
   DONANIM MAĞAZASI — POS terminalleri canlı
   Cihaz fotoğrafları süzülür; üzerine gelince 3B eğilip öne çıkar.
   Müşteri ekranlı modellerde (A2L / U2L / GL 18.5") ekran camında
   yavaşça geçen bir parlama var — çift ekranı görünür kılar.
   --------------------------------------------------------------------- */
body.is-cinema .cx-light .ex-shop__media {
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

body.is-cinema .cx-light .ex-shop__img {
  transform-origin: 50% 88%;
  animation: cx-suzul 7.5s ease-in-out infinite;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
  filter: drop-shadow(0 12px 16px rgba(15, 23, 42, 0.14));
}

/* kartlar sırayla farklı fazda süzülsün */
body.is-cinema .cx-light .ex-shop__card:nth-child(3n+2) .ex-shop__img { animation-delay: -2.5s; }
body.is-cinema .cx-light .ex-shop__card:nth-child(3n+3) .ex-shop__img { animation-delay: -5s; }
body.is-cinema .cx-light .ex-shop__card:nth-child(4n+4) .ex-shop__img { animation-delay: -3.7s; }

body.is-cinema .cx-light .ex-shop__card:hover .ex-shop__img {
  animation-play-state: paused;
  transform: translateY(-9px) rotateX(6deg) rotateY(-7deg) scale(1.06);
  filter: drop-shadow(0 26px 32px rgba(15, 23, 42, 0.24));
}

/* müşteri ekranlı modeller: cam üzerinde geçen parlama */
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="a2lm"] .ex-shop__media::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="u2lm"] .ex-shop__media::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="gl18m"] .ex-shop__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(104deg,
    transparent 36%,
    rgba(255, 255, 255, 0.72) 45%,
    rgba(168, 214, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.30) 55%,
    transparent 64%);
  transform: translateX(-130%) skewX(-12deg);
  animation: cx-cam-parla 5.6s cubic-bezier(0.5, 0, 0.4, 1) infinite;
}

body.is-cinema .cx-light .ex-shop__card[data-shop-slug="gl18m"] .ex-shop__media::after { animation-delay: -1.9s; }
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="u2lm"] .ex-shop__media::after { animation-delay: -3.8s; }

@keyframes cx-cam-parla {
  0%, 58%  { transform: translateX(-130%) skewX(-12deg); }
  84%      { transform: translateX(130%) skewX(-12deg); }
  100%     { transform: translateX(130%) skewX(-12deg); }
}

/* "çift ekran" rozeti — müşteri ekranlı modellerde */
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="a2lm"]::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="u2lm"]::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="gl18m"]::after {
  content: "Çift ekran";
  position: absolute;
  z-index: 5;
  right: 10px;
  top: 10px;
  padding: 4px 9px;
  border-radius: 980px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0b3a66;
  background: rgba(210, 233, 255, 0.92);
  box-shadow: 0 2px 8px -2px rgba(11, 58, 102, 0.4);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-light .ex-shop__img { animation: none; }
  body.is-cinema .cx-light .ex-shop__card .ex-shop__media::after { animation: none; opacity: 0; }
}

/* =====================================================================
   2.5 · CANLI EKRAN — HTML/CSS ile canlandırılmış adisyon arayüzü
   ---------------------------------------------------------------------
   Video dosyası yok: motor sahneye adım sınıfları yazar (is-s0 … is-s7),
   geçişler CSS transition ile olur. Kaydırmaya bağlı olduğu için
   ileri-geri kusursuz çalışır ve her çözünürlükte keskin kalır.
   ===================================================================== */
body.is-cinema .cx-live { --p: 0; --lv-amb: 214, 122, 40; }
body.is-cinema .cx-live.is-live { height: 320vh; }

body.is-cinema .cx-live__sticky {
  justify-content: center;
  gap: clamp(16px, 3vh, 30px);
  padding: clamp(84px, 12vh, 130px) 0 clamp(24px, 4vh, 46px);
}

body.is-cinema .cx-live__head { text-align: center; }
body.is-cinema .cx-live__head .cx-h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }

body.is-cinema .cx-live__stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

body.is-cinema .cx-live__device {
  width: min(92vw, calc(var(--cx-film-h) * 16 / 9 + 2 * var(--cx-bezel)));
  padding: var(--cx-bezel) var(--cx-bezel) calc(var(--cx-bezel) * 1.55);
  border-radius: calc(var(--cx-screen-r) + var(--cx-bezel));
  background: linear-gradient(180deg, #34343a 0%, #1b1b1f 42%, #0e0e11 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 0 0 1px rgba(0, 0, 0, 0.85),
    0 60px 120px -46px rgba(0, 0, 0, 0.95),
    0 0 150px -30px rgba(var(--lv-amb), 0.30);
}

body.is-cinema .cx-live__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--cx-screen-r);
  overflow: hidden;
  background: #131b26;
  display: grid;
  grid-template-columns: 17% 1fr 30%;
  font-size: clamp(6px, 0.86vw, 12px);
  color: #dbe4f0;
  user-select: none;
}

body.is-cinema .cx-live__colhd {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 0.9em;
  font-size: 0.92em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fa3bd;
  background: #0f1620;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  overflow: hidden;
}

body.is-cinema .cx-live__masa { margin-left: auto; text-transform: none; color: #c9d6e6; }

/* --- kategori sütunu --- */
body.is-cinema .cx-live__cats {
  display: flex;
  flex-direction: column;
  background: #0f1620;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body.is-cinema .cx-live__cat {
  flex: 1 1 0;
  display: grid;
  place-items: center;
  padding: 0.2em;
  font-size: 0.92em;
  font-weight: 600;
  text-align: center;
  color: #b9c7da;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

body.is-cinema .cx-live__cat--fav { background: #c2701f; color: #fff; }

body.is-cinema .cx-live.is-s1 .cx-live__cat--target,
body.is-cinema .cx-live.is-s2 .cx-live__cat--target,
body.is-cinema .cx-live.is-s3 .cx-live__cat--target,
body.is-cinema .cx-live.is-s4 .cx-live__cat--target,
body.is-cinema .cx-live.is-s5 .cx-live__cat--target,
body.is-cinema .cx-live.is-s6 .cx-live__cat--target,
body.is-cinema .cx-live.is-s7 .cx-live__cat--target {
  background: #16324f;
  color: #4ea3ff;
  box-shadow: inset 3px 0 0 #2997ff;
}

/* --- ürün ızgarası --- */
body.is-cinema .cx-live__grid {
  display: flex;
  flex-direction: column;
  background: #16202c;
  min-width: 0;
  overflow: hidden;
}

body.is-cinema .cx-live__tiles {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.55s ease;
}

body.is-cinema .cx-live:not(.is-s0) .cx-live__tiles { opacity: 1; }

body.is-cinema .cx-live__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  padding: 0.4em;
  text-align: center;
  background: #1b2634;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

body.is-cinema .cx-live__tile b { font-weight: 600; font-size: 0.92em; color: #e6edf7; }
body.is-cinema .cx-live__tile i { font-style: normal; font-size: 0.88em; color: #e8a34a; }

body.is-cinema .cx-live__tile.is-hit {
  background: #2a3a4e;
  transform: scale(0.965);
  box-shadow: inset 0 0 0 2px rgba(var(--lv-amb), 0.9);
}

/* --- adisyon paneli --- */
body.is-cinema .cx-live__ticket {
  display: flex;
  flex-direction: column;
  background: #0f1620;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

body.is-cinema .cx-live__rows {
  flex: 1;
  position: relative;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  overflow: hidden;
}

body.is-cinema .cx-live__empty {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 0.95em;
  transition: opacity 0.4s ease;
}

body.is-cinema .cx-live:not(.is-s0):not(.is-s1) .cx-live__empty { opacity: 0; }

body.is-cinema .cx-live__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 0.6em;
  border-radius: 0.5em;
  background: #17222f;
  border-left: 2px solid rgba(var(--lv-amb), 0.85);
  opacity: 0;
  transform: translate3d(0, -8px, 0) scale(0.97);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-cinema .cx-live__row.is-in { opacity: 1; transform: none; }

body.is-cinema .cx-live__qty {
  display: grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 0.35em;
  background: #24313f;
  font-size: 0.88em;
  color: #cfe0f5;
}

body.is-cinema .cx-live__nm {
  font-size: 0.9em;
  font-weight: 600;
  color: #eaf1fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-cinema .cx-live__pr {
  font-size: 0.86em;
  color: #e8a34a;
  white-space: nowrap;
}

body.is-cinema .cx-live__sum {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.6em 0.8em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9em;
  letter-spacing: 0.05em;
  color: #93a5bd;
}

body.is-cinema .cx-live__sum b {
  font-size: 1.35em;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

body.is-cinema .cx-live__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 0 0.55em 0.55em;
  padding: 0.75em;
  border-radius: 0.5em;
  background: #d97a17;
  color: #fff;
  font-weight: 700;
  font-size: 0.95em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

body.is-cinema .cx-live__pay.is-press {
  transform: scale(0.955);
  background: #b8630f;
  box-shadow: 0 0 0 4px rgba(217, 122, 23, 0.28);
}

/* --- ödeme katmanı --- */
body.is-cinema .cx-live__cash {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  background: rgba(9, 14, 20, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate3d(0, 3%, 0);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-cinema .cx-live.is-s6 .cx-live__cash,
body.is-cinema .cx-live.is-s7 .cx-live__cash { opacity: 1; transform: none; }

body.is-cinema .cx-live__cash-amt {
  font-size: 4.2em;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

body.is-cinema .cx-live__cash-amt span { color: #e8a34a; }

body.is-cinema .cx-live__cash-lb {
  margin: 0;
  font-size: 0.95em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa3bd;
}

body.is-cinema .cx-live__cash-ways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5em;
  width: min(74%, 640px);
  margin-top: 0.4em;
}

body.is-cinema .cx-live__cash-ways span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.7em 0.3em;
  border-radius: 0.5em;
  background: #1a2634;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92em;
  font-weight: 600;
  color: #d7e3f2;
  white-space: nowrap;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

body.is-cinema .cx-live__cash-ways span.is-pick {
  background: #0f7a4e;
  border-color: #16a06a;
  color: #fff;
  transform: translateY(-2px);
}

body.is-cinema .cx-live__cash-done {
  margin: 0.3em 0 0;
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.95em;
  font-weight: 600;
  color: #34d399;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.is-cinema .cx-live.is-s7 .cx-live__cash-done { opacity: 1; transform: none; }

/* --- imleç --- */
body.is-cinema .cx-live__cursor {
  position: absolute;
  z-index: 6;
  width: 1.6em;
  height: 1.6em;
  margin: -0.8em 0 0 -0.8em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0.35em rgba(255, 255, 255, 0.22), 0 6px 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), top 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, transform 0.2s ease;
  pointer-events: none;
}

body.is-cinema .cx-live__cursor.is-on { opacity: 1; }
body.is-cinema .cx-live__cursor.is-tap { transform: scale(0.7); }

body.is-cinema .cx-live__note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--cx-faint);
  text-align: center;
  max-width: 52ch;
}

/* motor yoksa: ekran son hâlinde (dolu adisyon) durur */
body.is-cinema .cx-live:not(.is-live) .cx-live__row { opacity: 1; transform: none; }
body.is-cinema .cx-live:not(.is-live) .cx-live__empty,
body.is-cinema .cx-live:not(.is-live) .cx-live__cursor { display: none; }
body.is-cinema .cx-live:not(.is-live) .cx-live__tiles { opacity: 1; }

@media (max-width: 760px) {
  body.is-cinema .cx-live.is-live { height: 300vh; }
  body.is-cinema .cx-live__device { width: 94vw; }
  body.is-cinema .cx-live__screen { font-size: clamp(5px, 1.5vw, 9px); }
  body.is-cinema .cx-live__cash-ways { width: 92%; grid-template-columns: repeat(2, 1fr); }
  body.is-cinema .cx-live__note { font-size: 0.76rem; }
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-live__row,
  body.is-cinema .cx-live__cash,
  body.is-cinema .cx-live__cursor { transition: none; }
}

/* =====================================================================
   HERO — RioTouch A2L cihaz fotoğrafı (ekranında dashboard.php)
   ---------------------------------------------------------------------
   Fotoğrafın kendisi cihaz olduğu için CSS monitör kasası KAPATILIR;
   yerine gerçek bir zemin gölgesi ve altta yükselen ışık kullanılır.
   ===================================================================== */
body.is-cinema .cx-screen--dev {
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block;
}

body.is-cinema .cx-screen--dev img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* cihaz zemine oturur: yumuşak, aşağı kayan gölge */
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55))
    drop-shadow(0 52px 60px rgba(0, 0, 0, 0.45));
}

/* hero sahnesi cihaz oranına göre daralır (A2L ~1.06:1, geniş ekran değil) */
body.is-cinema .cx-hero__stage:has(.cx-screen--dev) {
  width: min(680px, 50vw);
}

/* altta ekranın rengini yansıtan ışık havuzu */
body.is-cinema .cx-hero__stage:has(.cx-screen--dev)::after {
  left: 14%;
  right: 14%;
  bottom: 2%;
  height: 10%;
  background: radial-gradient(ellipse at center, rgba(41, 151, 255, 0.30), transparent 72%);
  filter: blur(22px);
}

@media (max-width: 760px) {
  body.is-cinema .cx-hero__stage:has(.cx-screen--dev) { width: min(88vw, 420px); }
  body.is-cinema .cx-screen--dev img {
    filter:
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55))
      drop-shadow(0 34px 40px rgba(0, 0, 0, 0.45));
  }
}

/* :has() desteklemeyen tarayıcı: sahne yine de makul kalsın */
@supports not selector(:has(*)) {
  body.is-cinema .cx-hero__stage { width: min(680px, 50vw); }
}

/* =====================================================================
   DONANIM & ÖKC CİHAZLARI — belirgin hareket
   ---------------------------------------------------------------------
   İlk turda süzülme çok hafifti (7px / 7.5sn) ve fark edilmiyordu.
   Burada: (1) kart görüş alanına girince yaylı bir "yükselme",
   (2) sürekli ama net bir süzülme, (3) süzülmeyle senkron gölge,
   (4) her cihaz fotoğrafında geçen cam parlaması.
   ===================================================================== */

/* --- 1) giriş: kart göründüğünde cihaz aşağıdan yükselir --- */
body.is-cinema .cx-light .ex-shop__img,
body.is-cinema .cx-light .ex-okc__device img {
  opacity: 0;
  transform: translateY(34px) rotateX(-14deg) scale(0.93);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.16, 1.02, 0.3, 1);
  animation: none;
}

body.is-cinema .cx-light .ex-shop__card.is-in .ex-shop__img,
body.is-cinema .cx-light .ex-market__card.is-in .ex-okc__device img,
body.is-cinema .cx-light .ex-shop__card.cx-seen .ex-shop__img,
body.is-cinema .cx-light .ex-market__card.cx-seen .ex-okc__device img {
  opacity: 1;
  transform: none;
  /* giriş bitince sürekli süzülmeye devreder */
  animation: cx-suzul 4.6s ease-in-out 0.9s infinite;
}

/* --- 2) sürekli süzülme: görülebilir genlik --- */
@keyframes cx-suzul {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  28%      { transform: translateY(-13px) rotate(-1.8deg) scale(1.018); }
  62%      { transform: translateY(-4px) rotate(0.9deg) scale(1.006); }
}

/* kart sırasına göre faz kayması — hepsi aynı anda zıplamasın */
body.is-cinema .cx-light .ex-shop__card:nth-child(4n+2) .ex-shop__img { animation-delay: 1.05s; }
body.is-cinema .cx-light .ex-shop__card:nth-child(4n+3) .ex-shop__img { animation-delay: 1.2s; }
body.is-cinema .cx-light .ex-shop__card:nth-child(4n+4) .ex-shop__img { animation-delay: 1.35s; }
body.is-cinema .cx-light .ex-market__grid--3 > *:nth-child(2) .ex-okc__device img { animation-delay: 1.1s; }
body.is-cinema .cx-light .ex-market__grid--3 > *:nth-child(3) .ex-okc__device img { animation-delay: 1.3s; }

/* --- 3) süzülmeyle senkron zemin gölgesi --- */
body.is-cinema .cx-light .ex-shop__media,
body.is-cinema .cx-light .ex-okc__device { position: relative; }

body.is-cinema .cx-light .ex-shop__media::before {
  content: "";
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 12%;
  height: 12px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.30), transparent 72%);
  filter: blur(7px);
  animation: cx-golge 4.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cx-golge {
  0%, 100% { transform: scaleX(1); opacity: 0.85; }
  28%      { transform: scaleX(0.82); opacity: 0.45; }
  62%      { transform: scaleX(0.95); opacity: 0.7; }
}

/* --- 4) cam parlaması: her cihaz fotoğrafında --- */
body.is-cinema .cx-light .ex-shop__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(104deg,
    transparent 36%,
    rgba(255, 255, 255, 0.62) 45%,
    rgba(168, 214, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.24) 55%,
    transparent 64%);
  transform: translateX(-135%) skewX(-12deg);
  animation: cx-cam-parla 7s cubic-bezier(0.5, 0, 0.4, 1) infinite;
}

/* müşteri ekranlı modeller daha sık ve daha güçlü parlar */
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="a2lm"] .ex-shop__media::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="u2lm"] .ex-shop__media::after,
body.is-cinema .cx-light .ex-shop__card[data-shop-slug="gl18m"] .ex-shop__media::after {
  background: linear-gradient(104deg,
    transparent 34%,
    rgba(255, 255, 255, 0.85) 44%,
    rgba(150, 205, 255, 0.62) 50%,
    rgba(255, 255, 255, 0.35) 56%,
    transparent 66%);
  animation-duration: 4.4s;
}

body.is-cinema .cx-light .ex-shop__card:nth-child(2n) .ex-shop__media::after { animation-delay: -2.1s; }
body.is-cinema .cx-light .ex-shop__card:nth-child(3n) .ex-shop__media::after { animation-delay: -4.2s; }

/* --- 5) hover: süzülme durur, cihaz öne çıkar --- */
body.is-cinema .cx-light .ex-shop__card:hover .ex-shop__img,
body.is-cinema .cx-light .ex-market__card:hover .ex-okc__device img {
  animation-play-state: paused;
  transform: translateY(-12px) rotateX(8deg) rotateY(-8deg) scale(1.08);
  filter: drop-shadow(0 30px 34px rgba(15, 23, 42, 0.28));
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-light .ex-shop__img,
  body.is-cinema .cx-light .ex-okc__device img {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none;
  }
  body.is-cinema .cx-light .ex-shop__media::after,
  body.is-cinema .cx-light .ex-shop__media::before { animation: none; opacity: 0; }
}

/* =====================================================================
   CANLI EKRAN v2 — masadetay.php ile birebir düzen
   ---------------------------------------------------------------------
   Sütunlar: kategoriler (2 sütunlu ızgara) · ürünler (4 sütun + arama) ·
   adisyon (Yeni/Geçmiş, satır meta bilgileri, kampanya menüsü, ara toplam +
   kalan tutar, 5 eylem, Ödeme Al, Kapat) · sağ ikon rayı.
   Renkler gerçek ekran görüntüsünden alındı.
   ===================================================================== */
body.is-cinema .cx-live__screen {
  grid-template-columns: 19.5% 1fr 30% 6.4%;
  background: #131b26;
}

/* ---------- ortak sütun başlığı ---------- */
body.is-cinema .cx-live__colhd {
  background: #101a25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #7f94ad;
  font-size: 0.88em;
  letter-spacing: 0.06em;
  padding: 0.72em 0.8em;
}

body.is-cinema .cx-live__masa {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  text-transform: none;
  letter-spacing: 0;
  color: #cddaea;
}

/* ---------- kategoriler: 2 sütun ---------- */
body.is-cinema .cx-live__cats {
  background: #0d1520;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

body.is-cinema .cx-live__catgrid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.055);
}

body.is-cinema .cx-live__cat {
  display: grid;
  place-items: center;
  padding: 0.25em 0.15em;
  text-align: center;
  font-size: 0.7em;
  overflow: hidden;
  word-break: break-word;
  hyphens: auto;
  font-weight: 600;
  line-height: 1.15;
  color: #c2cfdf;
  background: #131d2a;
  border: 0;
  transition: background-color 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}

body.is-cinema .cx-live__cat--fav { background: #bf6f1e; color: #fff; }

body.is-cinema .cx-live.is-s1 .cx-live__cat--target,
body.is-cinema .cx-live.is-s2 .cx-live__cat--target,
body.is-cinema .cx-live.is-s3 .cx-live__cat--target,
body.is-cinema .cx-live.is-s4 .cx-live__cat--target,
body.is-cinema .cx-live.is-s5 .cx-live__cat--target,
body.is-cinema .cx-live.is-s6 .cx-live__cat--target,
body.is-cinema .cx-live.is-s7 .cx-live__cat--target {
  background: #16324f;
  color: #4ea3ff;
  box-shadow: inset 3px 0 0 #2997ff;
}

/* ---------- ürünler ---------- */
body.is-cinema .cx-live__grid { background: #16202c; }

body.is-cinema .cx-live__search {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.35em 0.8em;
  border-radius: 0.4em;
  background: #1d2836;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #6f8299;
  font-size: 0.92em;
  text-transform: none;
  letter-spacing: 0;
  min-width: 34%;
}

body.is-cinema .cx-live__tile {
  background: #1a2431;
  border-radius: 0.35em;
  gap: 0.35em;
}

body.is-cinema .cx-live__tiles {
  gap: 0.45em;
  padding: 0.45em;
  background: transparent;
}

/* ---------- adisyon ---------- */
body.is-cinema .cx-live__ticket { background: #0d1520; }

body.is-cinema .cx-live__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4em;
  padding: 0.5em;
}

body.is-cinema .cx-live__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.55em;
  border-radius: 0.45em;
  background: #17222f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88em;
  font-weight: 600;
  color: #d5e2f1;
}

body.is-cinema .cx-live__tab--on {
  background: #0f4c46;
  border-color: #167064;
  color: #d8fff6;
}

body.is-cinema .cx-live__rows { padding: 0 0.5em; gap: 0.35em; }

body.is-cinema .cx-live__row {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.is-cinema .cx-live__rowin {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 0.55em;
  border-radius: 0.45em;
  background: #17222f;
  border-left: 2px solid #c9453d;
}

body.is-cinema .cx-live__row--menu .cx-live__rowin {
  grid-template-columns: auto 1fr auto auto auto;
  border-left-color: #c9453d;
}

/* kampanya menüsü başlığı */
body.is-cinema .cx-live__menuhd {
  display: block;
  padding: 0.35em 0.5em 0.3em;
  margin-bottom: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 0.45em 0.45em 0 0;
  background: #131e2b;
  color: #8ea3bb;
  font-size: 0.72em;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-cinema .cx-live__qty {
  width: 1.55em;
  height: 1.55em;
  border-radius: 0.3em;
  background: #253242;
  font-size: 0.85em;
  color: #dbe7f5;
}

body.is-cinema .cx-live__nm {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  font-size: 0.86em;
  font-weight: 700;
  color: #eef4fb;
  letter-spacing: 0.01em;
}

body.is-cinema .cx-live__meta {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.72em;
  min-width: 0;
  font-weight: 400;
  color: #7f93aa;
  white-space: nowrap;
}

body.is-cinema .cx-live__chip {
  padding: 0.05em 0.4em;
  border-radius: 0.3em;
  background: rgba(255, 255, 255, 0.07);
  color: #9db0c6;
}

body.is-cinema .cx-live__chip--user { color: #e06a62; background: rgba(224, 106, 98, 0.12); }

body.is-cinema .cx-live__mnu { color: #3fbf7f; font-size: 0.85em; }

body.is-cinema .cx-live__pr {
  padding: 0.2em 0.5em;
  border-radius: 0.35em;
  border: 1px solid rgba(232, 163, 74, 0.55);
  color: #e8a34a;
  font-size: 0.8em;
  font-weight: 600;
  white-space: nowrap;
}

body.is-cinema .cx-live__dots { color: #6f8299; font-size: 0.9em; line-height: 1; }

/* ---------- toplam ---------- */
body.is-cinema .cx-live__sum {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2em;
  padding: 0.55em 0.7em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-cinema .cx-live__sumrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  color: #93a5bd;
}

body.is-cinema .cx-live__sumrow b {
  font-size: 1.25em;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

body.is-cinema .cx-live__sumrow--sub { letter-spacing: 0; }
body.is-cinema .cx-live__sumrow--sub b { font-size: 1.05em; color: #cddaea; }

/* ---------- 5 eylem düğmesi ---------- */
body.is-cinema .cx-live__acts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0 0.5em 0.45em;
  border-radius: 0.45em;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

body.is-cinema .cx-live__acts span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  padding: 0.5em 0.1em;
  background: #17222f;
  font-size: 0.68em;
  color: #a9bbd0;
  text-align: center;
  line-height: 1.1;
}

body.is-cinema .cx-live__acts i { font-size: 1.15em; }

body.is-cinema .cx-live__pay { margin: 0 0.5em 0.35em; }

body.is-cinema .cx-live__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  margin: 0 0.5em 0.5em;
  padding: 0.6em;
  border-radius: 0.45em;
  background: #3a1a1c;
  border: 1px solid #5d2529;
  color: #e88b86;
  font-weight: 600;
  font-size: 0.9em;
}

/* ---------- sağ ikon rayı ---------- */
body.is-cinema .cx-live__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  padding: 0.5em 0.2em;
  background: #0b121b;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

body.is-cinema .cx-live__brand {
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #eef4fb;
  margin-bottom: 0.35em;
}

body.is-cinema .cx-live__brand b { color: #2997ff; }

body.is-cinema .cx-live__railbtn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  padding: 0.22em 0;
  color: #93a5bd;
  font-size: 0.82em;
  line-height: 1;
  width: 100%;
}

body.is-cinema .cx-live__railbtn em {
  font-style: normal;
  font-size: 0.62em;
  white-space: nowrap;
  letter-spacing: 0.01em;
  color: #7d90a8;
}

body.is-cinema .cx-live__railbtn--lock { color: #e05b52; }
body.is-cinema .cx-live__railbtn--lock em { color: #e05b52; }

body.is-cinema .cx-live__railbtn--dot::after {
  content: "";
  position: absolute;
  top: 0.15em;
  right: 22%;
  width: 0.34em;
  height: 0.34em;
  border-radius: 50%;
  background: #e0483d;
}

body.is-cinema .cx-live__railfoot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  color: #3fbf7f;
  font-size: 0.85em;
}

body.is-cinema .cx-live__railchip {
  display: grid;
  place-items: center;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  background: rgba(232, 163, 74, 0.16);
  border: 1px solid rgba(232, 163, 74, 0.5);
  color: #e8a34a;
  font-size: 0.9em;
}

/* ödeme katmanı ray hariç tüm ekranı kaplar */
body.is-cinema .cx-live__cash { z-index: 7; }

@media (max-width: 760px) {
  body.is-cinema .cx-live__screen { grid-template-columns: 17% 1fr 32% 0; }
  body.is-cinema .cx-live__rail { display: none; }
  body.is-cinema .cx-live__meta { display: none; }
  body.is-cinema .cx-live__acts span { font-size: 0.62em; }
  body.is-cinema .cx-live__search { display: none; }
}

/* =====================================================================
   TAHSİLAT KATMANI — masadetay.php ödeme ekranının birebir düzeni
   ---------------------------------------------------------------------
   Gerçek ekran AÇIK temalıdır (adisyon koyu, tahsilat beyaz). Dört sütun:
   ödenecek ürünler · seçilen ürünler · tutar + tuş takımı + ödeme türü · ray
   ===================================================================== */
body.is-cinema .cx-live__cash {
  display: grid;
  grid-template-columns: 23% 1fr 32% 6.4%;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #eef1f5;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #1f2a37;
}

body.is-cinema .cx-cash__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f6f8fa;
  border-right: 1px solid #dde3ea;
}

body.is-cinema .cx-cash__col--mid { background: #eef1f5; }
body.is-cinema .cx-cash__col--pad { background: #f6f8fa; }

/* ---- sekmeler ---- */
body.is-cinema .cx-cash__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4em;
  padding: 0.5em;
}

body.is-cinema .cx-cash__tab {
  display: grid;
  place-items: center;
  padding: 0.6em 0.3em;
  border-radius: 0.45em;
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.86em;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

body.is-cinema .cx-cash__tab--on {
  background: #fff;
  border-color: #d6dee7;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

body.is-cinema .cx-cash__tab--sel {
  background: #eda145;
  border-color: #e0913a;
  color: #fff;
}

/* ---- ödenecek ürün listesi ---- */
body.is-cinema .cx-cash__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  padding: 0 0.5em;
  overflow: hidden;
}

body.is-cinema .cx-cash__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 0.6em;
  border-radius: 0.45em;
  background: #1c2733;
  color: #e8eef6;
  font-size: 0.86em;
  font-weight: 600;
}

body.is-cinema .cx-cash__item b {
  display: grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 0.3em;
  background: #2b3949;
  font-size: 0.88em;
}

body.is-cinema .cx-cash__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.is-cinema .cx-cash__item i { font-style: normal; color: #eda145; }

/* ---- orta sütun boş durumu ---- */
body.is-cinema .cx-cash__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  color: #94a3b8;
  text-align: center;
}

body.is-cinema .cx-cash__empty i { font-size: 2.4em; opacity: 0.55; }
body.is-cinema .cx-cash__empty p { margin: 0; font-size: 0.86em; line-height: 1.5; }

/* ---- alt bilgi çubukları ---- */
body.is-cinema .cx-cash__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.7em 0.8em;
  background: #1c2733;
  color: #9fb2c8;
  font-size: 0.82em;
}

body.is-cinema .cx-cash__foot b {
  font-size: 1.25em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* ---- 3. sütun: tutar + tuş takımı ---- */
body.is-cinema .cx-cash__col--pad { padding: 0.5em; gap: 0.4em; }

body.is-cinema .cx-cash__step {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8em;
  font-weight: 600;
  color: #64748b;
}

body.is-cinema .cx-cash__step b {
  display: grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #1c2733;
  color: #fff;
  font-size: 0.85em;
}

body.is-cinema .cx-cash__amount {
  padding: 0.45em 0.6em;
  border-radius: 0.5em;
  background: #fff;
  border: 1px solid #dde3ea;
  font-size: 2.1em;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

body.is-cinema .cx-cash__amount span { color: #eda145; }

body.is-cinema .cx-cash__keys {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #dde3ea;
  border: 1px solid #dde3ea;
  border-radius: 0.5em;
  overflow: hidden;
}

body.is-cinema .cx-cash__keys > span {
  display: grid;
  place-items: center;
  padding: 0.55em 0.2em;
  background: #fff;
  font-size: 1.15em;
  font-weight: 600;
  color: #1f2a37;
  text-align: center;
  line-height: 1.1;
}

body.is-cinema .cx-cash__split {
  background: #fdf6ec !important;
  gap: 0.1em;
}

body.is-cinema .cx-cash__split b { font-size: 0.62em; font-weight: 700; color: #1f2a37; }
body.is-cinema .cx-cash__split i { font-style: normal; font-size: 0.58em; color: #d2803a; }

body.is-cinema .cx-cash__del {
  background: #fdecec !important;
  color: #c0392b !important;
  font-size: 0.62em !important;
  gap: 0.15em;
}

/* ---- ödeme türü ---- */
body.is-cinema .cx-cash__ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #dde3ea;
  border: 1px solid #dde3ea;
  border-radius: 0.5em;
  overflow: hidden;
}

body.is-cinema .cx-cash__ways > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.6em 0.3em;
  background: #fff;
  font-size: 0.85em;
  font-weight: 600;
  color: #1f2a37;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.is-cinema .cx-cash__wide { grid-column: span 2; }

body.is-cinema .cx-cash__ways > span.is-pick {
  background: #16a06a;
  color: #fff;
}

body.is-cinema .cx-cash__ikram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0.6em;
  border-radius: 0.5em;
  background: #fff;
  border: 1px solid #dde3ea;
  font-size: 0.82em;
  font-weight: 600;
  color: #1f2a37;
}

body.is-cinema .cx-cash__ikram i.fa-gift { color: #16a06a; }
body.is-cinema .cx-cash__ikram em { font-style: normal; font-weight: 400; color: #94a3b8; }

body.is-cinema .cx-cash__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  padding: 0.7em;
  border-radius: 0.5em;
  background: #e8edf3;
  border: 1px solid #d6dee7;
  color: #64748b;
  text-align: center;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

body.is-cinema .cx-cash__cta b { font-size: 0.95em; font-weight: 700; }
body.is-cinema .cx-cash__cta em { font-style: normal; font-size: 0.72em; }

body.is-cinema .cx-cash__cta.is-ready {
  background: #16a06a;
  border-color: #128a5a;
  color: #fff;
}

/* ---- sağ ray (açık tema) ---- */
body.is-cinema .cx-cash__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  padding: 0.5em 0.2em;
  background: #0b121b;
  overflow: hidden;
}

body.is-cinema .cx-cash__railfoot em {
  font-style: normal;
  font-size: 0.62em;
  color: #9fb2c8;
  white-space: nowrap;
}

/* ---- kapanış rozeti ---- */
body.is-cinema .cx-live__cash-done {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%) translateY(6px);
  margin: 0;
  padding: 0.5em 1em;
  border-radius: 999px;
  background: #0f7a4e;
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(15, 122, 78, 0.8);
  z-index: 8;
}

body.is-cinema .cx-live.is-s7 .cx-live__cash-done { transform: translateX(-50%); }

@media (max-width: 760px) {
  body.is-cinema .cx-live__cash { grid-template-columns: 30% 1fr 0 0; }
  body.is-cinema .cx-cash__col--mid { display: none; }
  body.is-cinema .cx-cash__rail { display: none; }
  body.is-cinema .cx-live__cash { grid-template-columns: 34% 1fr; }
  body.is-cinema .cx-cash__keys { grid-template-columns: repeat(3, 1fr); }
  body.is-cinema .cx-cash__split, body.is-cinema .cx-cash__del { display: none !important; }
}

/* =====================================================================
   DONANIM + ENTEGRASYON BÖLÜMLERİ — referans tasarım diline (Simpra) geçiş
   ---------------------------------------------------------------------
   Desen: çok büyük ortalanmış kalın başlık · açık gri (#f6f7f9) yumuşak
   kartlar (çerçevesiz, gölgesiz) · büyük ürün fotoğrafı · altında ince
   ayraçlarla ayrılmış ✓ özellik satırları · hap biçimli CTA.
   ===================================================================== */

/* --- büyük, kalın, ortalanmış bölüm başlığı --- */
body.estorix-vibe.is-cinema .cx-light .ex-market .section-title,
body.estorix-vibe.is-cinema .cx-light .ex-shop .section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  max-width: 22ch;
}

body.estorix-vibe.is-cinema .cx-light .ex-market .section-subtitle,
body.estorix-vibe.is-cinema .cx-light .ex-shop .section-subtitle {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem) !important;
  max-width: 56ch !important;
}

body.estorix-vibe.is-cinema .cx-light .ex-market .section-header,
body.estorix-vibe.is-cinema .cx-light .ex-shop .section-header {
  margin-bottom: clamp(40px, 6vh, 72px);
}

/* --- kart dili: açık gri dolgu, çerçevesiz, yumuşak köşe --- */
body.estorix-vibe.is-cinema .cx-light .ex-market__card,
body.estorix-vibe.is-cinema .cx-light .ex-shop__card {
  background: #f6f7f9 !important;
  border: 1px solid transparent !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  overflow: hidden;
}

body.estorix-vibe.is-cinema .cx-light .ex-market__card:hover,
body.estorix-vibe.is-cinema .cx-light .ex-shop__card:hover {
  background: #ffffff !important;
  border-color: #e6eaef !important;
  box-shadow: 0 26px 54px -30px rgba(15, 23, 42, 0.35) !important;
  transform: translateY(-5px);
}

/* --- ürün fotoğrafı alanı: daha büyük, ferah --- */
body.is-cinema .cx-light .ex-shop__media {
  background: transparent;
  padding: 12px 12px 4px;
  min-height: 190px;
  display: grid;
  place-items: center;
}

body.is-cinema .cx-light .ex-shop__img {
  max-height: 172px;
  width: auto;
  object-fit: contain;
}

body.is-cinema .cx-light .ex-shop__name {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--lt-ink);
}

body.is-cinema .cx-light .ex-shop__ozet {
  font-size: 0.9rem !important;
  line-height: 1.5;
  color: var(--lt-dim);
}

body.is-cinema .cx-light .ex-shop__foot {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 12px;
}

body.is-cinema .cx-light .ex-shop__foot .btn,
body.is-cinema .cx-light .ex-shop__teklif {
  border-radius: 980px !important;
  font-weight: 600 !important;
}

/* --- ÖKC kartı: fotoğraf + logo + ✓ özellik satırları --- */
body.is-cinema .cx-light .ex-okc__feats {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 12px 0 4px;
  text-align: left;
}

body.is-cinema .cx-light .ex-okc__feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.86rem;
  line-height: 1.45;
  color: #44506180;
  color: #445061;
}

body.is-cinema .cx-light .ex-okc__feat i {
  flex: 0 0 auto;
  margin-top: 0.28em;
  font-size: 0.78em;
  color: #16a06a;
}

/* --- pazaryeri kartları da aynı dil --- */
body.is-cinema .cx-light .ex-market__name {
  font-size: 0.9rem !important;
  line-height: 1.5;
  color: var(--lt-dim) !important;
}

body.is-cinema .cx-light .ex-okc__model {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--lt-ink) !important;
}

/* --- ızgara boşlukları ferahlar --- */
body.is-cinema .cx-light .ex-market__grid,
body.is-cinema .cx-light .ex-shop__grid {
  gap: 20px !important;
}

/* --- ızgara altına hap CTA --- */
body.is-cinema .cx-light .ex-market__note,
body.is-cinema .cx-light .ex-shop__note {
  margin-top: 30px;
  font-size: 0.84rem;
  color: #8a94a3;
}

body.is-cinema .cx-light .ex-shop__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* =====================================================================
   KAYDIRMAYA BAĞLI CİHAZ HAREKETİ
   ---------------------------------------------------------------------
   Sürekli dönen keyframe animasyonu kullanıcıya "yok" gibi geldi.
   Artık hareket kaydırmadan geliyor: motor her cihaz fotoğrafına
   --tp (-1‥1, görüş alanındaki konum) ve --tc (0‥1, merkeze yakınlık)
   yazar; kullanıcı kaydırdıkça cihazlar yükselip eğiliyor.
   ===================================================================== */
body.is-cinema .cx-light .ex-shop__card.cx-seen .ex-shop__img,
body.is-cinema .cx-light .ex-market__card.cx-seen .ex-okc__device img,
body.is-cinema .cx-light .ex-shop__img,
body.is-cinema .cx-light .ex-okc__device img {
  --tp: 0;
  --tc: 0;
  animation: none !important;
  transform:
    translateY(calc(var(--tp) * -26px))
    rotate(calc(var(--tp) * -3deg))
    scale(calc(0.94 + var(--tc) * 0.09));
  transition: transform 0.18s linear, filter 0.5s ease;
  will-change: transform;
}

/* giriş hâlâ var: kart görünmeden önce şeffaf */
body.is-cinema .cx-light .ex-shop__card:not(.cx-seen) .ex-shop__img,
body.is-cinema .cx-light .ex-market__card:not(.cx-seen) .ex-okc__device img {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.16, 1.02, 0.3, 1);
}

body.is-cinema .cx-light .ex-shop__card.cx-seen .ex-shop__img,
body.is-cinema .cx-light .ex-market__card.cx-seen .ex-okc__device img { opacity: 1; }

/* hover: kaydırma hareketini bastırır, cihaz öne çıkar */
body.is-cinema .cx-light .ex-shop__card:hover .ex-shop__img,
body.is-cinema .cx-light .ex-market__card:hover .ex-okc__device img {
  transform: translateY(-14px) rotateX(9deg) rotateY(-9deg) scale(1.09) !important;
  filter: drop-shadow(0 32px 36px rgba(15, 23, 42, 0.3));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

/* zemin gölgesi de kaydırmayla nefes alır */
body.is-cinema .cx-light .ex-shop__media::before {
  animation: none;
  transform: scaleX(calc(0.72 + var(--tc, 0) * 0.3));
  opacity: calc(0.35 + var(--tc, 0) * 0.5);
  transition: transform 0.18s linear, opacity 0.18s linear;
}

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-light .ex-shop__img,
  body.is-cinema .cx-light .ex-okc__device img {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* =====================================================================
   DONANIM SAHNESİ — koyu şeritte cihaz ailesi
   ---------------------------------------------------------------------
   Kullanıcı "cihazları animasyon şeridinin içinde görmek" istedi: bu
   sahne artık aydınlık yarıda değil, filmin içinde. Cihazlar sahnenin
   başında ortada üst üste durur, kaydırma ilerledikçe yelpaze gibi
   açılır ve her biri kendi derinliğinde (--dz) süzülür.

   Tüm hareket motorun yazdığı `--p`den calc() ile türer; ayrı JS yok.
   Üç evre:
     --e  giriş     (0 → 0.34)  açılma, yükselme, ölçek
     --m  süzülme   (0.24 → 0.78) derinliğe göre dikey kayma, dönüş düzelir
     --c  künyeler  (0.42 → 0.78) etiket + isim düşer
   ===================================================================== */
body.is-cinema .cx-hw { --p: 0; }
body.is-cinema .cx-hw.is-live { height: 235vh; }

body.is-cinema .cx-hw__sticky {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  overflow: hidden;
}

/* evreler — sahnenin ilerlemesinden türer */
body.is-cinema .cx-hw__sticky {
  --e: clamp(0, calc(var(--p, 0) / 0.34), 1);
  --m: clamp(0, calc((var(--p, 0) - 0.24) / 0.54), 1);
  --c: clamp(0, calc((var(--p, 0) - 0.42) / 0.36), 1);
}

body.is-cinema .cx-hw__glow {
  opacity: calc(0.25 + var(--e) * 0.75);
  transform: translateX(-50%) scale(calc(0.6 + var(--e) * 0.55));
}

/* --- başlık: cihazlar açılırken hafifçe yukarı çekilir --- */
body.is-cinema .cx-hw__head {
  text-align: center;
  transform: translate3d(0, calc(var(--m) * -2.2vh), 0);
}

body.is-cinema .cx-hw__head .cx-lead {
  margin-inline: auto;
  text-align: center;
  max-width: 56ch;
}

/* --- sahne: cihazların dizildiği düzlem --- */
body.is-cinema .cx-hw__stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(14px, 3.2vw, 54px);
  width: 100%;
  max-width: 1320px;
  padding-inline: clamp(16px, 4vw, 40px);
  perspective: 1600px;
  perspective-origin: 50% 40%;
}

/* --- tek cihaz --- */
body.is-cinema .cx-hw__item {
  --i: 0;
  --dz: 1;
  --h: 28vh;
  --ofs: calc(var(--i) - 1.5);        /* -1.5 · -0.5 · 0.5 · 1.5 */
  --gec: calc(1 - var(--e));          /* girişin tersi */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  flex: 0 0 auto;
  transform-style: preserve-3d;
  will-change: transform, opacity;

  /* ortada üst üste dur → yelpaze gibi aç → derinliğe göre süzül */
  transform:
    translate3d(
      calc(var(--ofs) * var(--gec) * -14vw),
      calc(var(--gec) * 8vh - var(--m) * var(--dz) * 2.6vh),
      0
    )
    rotateY(calc(var(--ofs) * var(--gec) * 9deg))
    rotateX(calc(var(--gec) * 5deg))
    scale(calc(0.78 + var(--e) * 0.22));
  opacity: calc(0.1 + var(--e) * 0.9);
}

/* girişte öndekiler üstte kalsın (yelpaze doğru katmanlansın) */
body.is-cinema .cx-hw__item:nth-child(1) { z-index: 1; }
body.is-cinema .cx-hw__item:nth-child(2) { z-index: 3; }
body.is-cinema .cx-hw__item:nth-child(3) { z-index: 4; }
body.is-cinema .cx-hw__item:nth-child(4) { z-index: 2; }

body.is-cinema .cx-hw__shot {
  position: relative;
  display: block;
  filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.72));
}

/* zemin gölgesi — cihaz süzüldükçe daralıp koyulaşır */
body.is-cinema .cx-hw__shot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 84%;
  height: 20px;
  transform: translateX(-50%) scaleX(calc(0.55 + var(--e) * 0.45 - var(--m) * var(--dz) * 0.14));
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0) 72%);
  opacity: calc(var(--e) * 0.9);
  pointer-events: none;
}

body.is-cinema .cx-hw__shot img {
  display: block;
  height: var(--h);
  width: auto;
  max-width: 30vw;
  object-fit: contain;
}

/* --- künye: cihaz yerine oturunca düşer --- */
body.is-cinema .cx-hw__cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  opacity: var(--c);
  transform: translate3d(0, calc((1 - var(--c)) * 14px), 0);
}

body.is-cinema .cx-hw__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cx-blue-lit);
}

body.is-cinema .cx-hw__cap b {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

body.is-cinema .cx-hw__cap em {
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}

/* --- alt: CTA + not --- */
body.is-cinema .cx-hw__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: var(--c);
  transform: translate3d(0, calc((1 - var(--c)) * 16px), 0);
}

body.is-cinema .cx-hw__note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* --- dar ekran: 2×2 ızgara, yelpaze yerine sıralı yükselme --- */
@media (max-width: 900px) {
  body.is-cinema .cx-hw.is-live { height: 210vh; }

  body.is-cinema .cx-hw__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    justify-items: center;
    gap: clamp(16px, 4vh, 34px) 12px;
    max-width: 560px;
  }

  body.is-cinema .cx-hw__item {
    /* her kart kendi sırasına göre biraz gecikmeli girer */
    --e: clamp(0, calc((var(--p, 0) - var(--i) * 0.06) / 0.3), 1);
    transform:
      translate3d(0, calc(var(--gec) * 6vh - var(--m) * var(--dz) * 1.6vh), 0)
      scale(calc(0.84 + var(--e) * 0.16));
    gap: 9px;
  }

  body.is-cinema .cx-hw__shot img { max-width: 42vw; }
  body.is-cinema .cx-hw__item:nth-child(1) { --h: 21vh; }
  body.is-cinema .cx-hw__item:nth-child(2) { --h: 20vh; }
  body.is-cinema .cx-hw__item:nth-child(3) { --h: 22vh; }
  body.is-cinema .cx-hw__item:nth-child(4) { --h: 16vh; }
  body.is-cinema .cx-hw__cap b { font-size: 0.86rem; white-space: normal; }
  body.is-cinema .cx-hw__cap em { font-size: 0.72rem; }
  body.is-cinema .cx-hw__tag { font-size: 0.6rem; }
}

/* --- motor yoksa / hareket azaltılmışsa: sahne düz bir vitrindir --- */
body.is-cinema .cx-hw:not(.is-live) .cx-hw__sticky { --e: 1; --m: 0; --c: 1; }
body.is-cinema .cx-hw:not(.is-live) .cx-hw__item { transform: none; opacity: 1; }
body.is-cinema .cx-hw:not(.is-live) .cx-hw__cap,
body.is-cinema .cx-hw:not(.is-live) .cx-hw__foot { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  body.is-cinema .cx-hw__sticky { --e: 1; --m: 0; --c: 1; }
  body.is-cinema .cx-hw__item,
  body.is-cinema .cx-hw__head,
  body.is-cinema .cx-hw__cap,
  body.is-cinema .cx-hw__foot { transform: none !important; opacity: 1 !important; }
}

/* =====================================================================
   ŞERİDİN ORTAK ÖĞELERİ — Square disiplini
   ---------------------------------------------------------------------
   sd-square.css'in kuralları koyu zemine uyarlanır:
     · buton 48px, hap, birincil aksiyon nötr (siyah yerine beyaz)
     · gölge ve backdrop-filter yok — derinlik 1px kenarlıkla
     · renk yalnızca durum bildirir → üst etiket ve başlık vurgusu nötr
     · gövde metni 14px/22px
   Bu blok dosyanın sonunda; önceki mavi/gradyan tanımlarını bilinçli ezer.
   ===================================================================== */
body.is-cinema .cx-btn {
  height: 48px;
  padding: 0 24px;
  gap: 8px;
  border-radius: 1000px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* birincil aksiyon: Square'de mavi buton yoktur (koyu zeminde beyaz) */
body.is-cinema .cx-btn--fill {
  background: #fff;
  border-color: #fff;
  color: #101010;
}

body.is-cinema .cx-btn--fill:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.86);
  color: #101010;
  transform: none;
}

/* ikincil aksiyon: dolgu yok, 1px kenarlık */
body.is-cinema .cx-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--cx-ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-cinema .cx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: none;
}

/* üst etiket ve başlık vurgusu: renk bilgi taşımıyor → nötr tonlar */
body.is-cinema .cx-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

body.is-cinema .cx-tint,
body.is-cinema .cx-hero__copy .cx-tint,
body.is-cinema .cx-say .cx-h2 .cx-tint {
  color: rgba(255, 255, 255, 0.46);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

body.is-cinema .cx-link {
  color: var(--cx-ink);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

/* --- modül kartları: yüzey zeminden bir kademe ayrışsın --- */
body.is-cinema .cx-mod { background: #111113; }
body.is-cinema .cx-mod.is-odak {
  background: #17171a;
  border-color: rgba(255, 255, 255, 0.34);
}

/* --- donanım sahnesi: Square hizası --------------------------------
   Cihazlar farklı boyda olduğu için künyeler dağılıyordu. Görsel alanı
   sabit yükseklikte bir kutuya oturur, künyeler tek taban çizgisinde
   hizalanır; derinlik süzülmesi künyeyi değil yalnızca cihazı taşır. */
body.is-cinema .cx-hw__stage { align-items: stretch; }

body.is-cinema .cx-hw__item {
  justify-content: flex-end;
  gap: 16px;
  /* dikey süzülme görsele taşındı: künye sabit kalır */
  transform:
    translate3d(
      calc(var(--ofs) * var(--gec) * -14vw),
      calc(var(--gec) * 8vh),
      0
    )
    rotateY(calc(var(--ofs) * var(--gec) * 9deg))
    rotateX(calc(var(--gec) * 5deg))
    scale(calc(0.78 + var(--e) * 0.22));
}

body.is-cinema .cx-hw__shot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 38vh;
  transform: translate3d(0, calc(var(--m) * var(--dz) * -2vh), 0);
}

body.is-cinema .cx-hw__shot img { max-height: 100%; }

/* künye: Square tipografisi, renk taşımayan etiket */
body.is-cinema .cx-hw__cap { gap: 6px; }

body.is-cinema .cx-hw__tag {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1000px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}

body.is-cinema .cx-hw__cap b {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body.is-cinema .cx-hw__cap em {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

body.is-cinema .cx-hw__note { font-size: 13px; line-height: 20px; }

@media (max-width: 900px) {
  body.is-cinema .cx-hw__shot { height: 24vh; }
  body.is-cinema .cx-hw__item {
    transform:
      translate3d(0, calc(var(--gec) * 6vh), 0)
      scale(calc(0.84 + var(--e) * 0.16));
  }
}

/* --- donanım sahnesi, telefon: 844px'lik ekrana tam otursun ---------
   2×2 ızgara + künyeler 934px sürüyordu; başlık ve CTA kırpılıyordu. */
@media (max-width: 900px) {
  body.is-cinema .cx-hw__sticky {
    gap: 16px;
    padding: 64px 0 20px;
  }

  body.is-cinema .cx-hw__head { gap: 6px; }
  body.is-cinema .cx-hw__shot { height: 19vh; }
  body.is-cinema .cx-hw__stage { gap: 16px 12px; }
  body.is-cinema .cx-hw__item { gap: 8px; }
  body.is-cinema .cx-hw__cap { gap: 4px; }
  body.is-cinema .cx-hw__cap em { font-size: 12px; line-height: 18px; }
  body.is-cinema .cx-hw__foot { gap: 8px; }
  body.is-cinema .cx-hw__note { font-size: 12px; line-height: 18px; }
}

/* dar telefonda açıklama alt notla aynı bilgiyi verdiği için düşer */
@media (max-width: 600px) {
  body.is-cinema .cx-hw__head .cx-lead { display: none; }
}

body.is-cinema .cx-hw__foot { padding-inline: 20px; }
