/* SplitTable — marka sitesi
   Palet: SplitTable/DesignSystem/Theme.swift (birebir)
   Hareket: yalnız transform + opacity. prefers-reduced-motion ile tamamen kapanır. */

:root {
  /* Marka kırmızısı. --primary-2 turuncu/somon DEĞİL, kırmızının açık tonu:
     koyu zeminde #b02600 okunmuyor (kontrast 2.6), #e8442a okunuyor (4.9).
     Turuncuya kaçmaması CEO kararı (2026-08-05). */
  --primary: #b02600;
  --primary-2: #e8442a;
  --secondary: #0d6478;
  --tertiary: #803e9d;
  --error: #b41340;

  --bg: #f0f1ef;
  --card: #ffffff;
  --ink: #2d2f2e;
  --ink-2: #5a5c5b;
  --line: #d9dbd7;
  --dark: #131416;
  --dark-2: #1c1d20;
  --on-dark: #f2f3f2;
  --on-dark-2: #a9aba9;

  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  --shell: 1280px;
  /* Gradient kırmızı ailesinde kalır: koyu kırmızı → parlak kırmızı. */
  --grad: linear-gradient(135deg, #9e2200 0%, #d13314 100%);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* line-height 1.06: Türkçe'de ğ/ş/Ç gibi harflerin işaret ve kuyrukları 0.98'de
   bir üst/alt satıra biniyordu. Aşağıdaki .big-line padding'i ile birlikte çalışır. */
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.045em; line-height: 1.06; }
h1 { font-size: clamp(40px, 5.4vw, 84px); }
h2 { font-size: clamp(34px, 5.2vw, 78px); }
h3 { font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -0.035em; line-height: 1.1; }
p { margin: 0; }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
}
.eyebrow.on-dark { color: var(--primary-2); }
.lead { font-size: clamp(18px, 1.7vw, 24px); color: var(--ink-2); line-height: 1.45; }
.lead.on-dark { color: var(--on-dark-2); }
.tiny { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.band { padding: clamp(80px, 11vw, 160px) 0; }
section { scroll-margin-top: 90px; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 0 32px; border: 0; border-radius: var(--r-full);
  font: inherit; font-size: 17px; font-weight: 800; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(176,38,0,.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(176,38,0,.36); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost.on-dark { color: var(--on-dark); border-color: rgba(255,255,255,.25); }
.btn-ghost.on-dark:hover { border-color: #fff; }
.btn-sm { min-height: 46px; padding: 0 22px; font-size: 15px; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 90; padding: 14px 20px; transition: transform .4s var(--ease); }
.nav-wrap.hidden { transform: translateY(-130%); }
.nav {
  max-width: var(--shell); margin: 0 auto;
  display: flex; align-items: center; gap: 26px;
  padding: 9px 9px 9px 22px; border-radius: var(--r-full);
  background: rgba(255,255,255,.72); backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 10px 34px rgba(19,20,22,.09);
}
/* Logo: iki nokta + küçük harf wordmark ("split" ince, "table" kalın).
   Kaynak dosyalar: logo/assets/ — bu CSS onun web karşılığı, birebir aynı oranlar. */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo .wordmark {
  font-family: "Satoshi", -apple-system, sans-serif;
  font-weight: 500; font-size: 25px; letter-spacing: -0.045em; line-height: 1;
}
.logo .wordmark b { font-weight: 700; }
.logo svg { transition: transform .45s var(--ease); }
.logo:hover svg { transform: translateY(-2px) scale(1.06); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 700; color: var(--ink-2); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--primary); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh; display: grid; place-items: center;
  position: relative; overflow: hidden; padding: 130px 0 90px;
}
.blobs { position: absolute; inset: -20%; z-index: 0; filter: blur(70px); opacity: .75; }
.blob { position: absolute; border-radius: 50%; }
.blob.b1 { width: 46vw; height: 46vw; left: 4%;  top: 6%;  background: radial-gradient(circle, rgba(232,68,42,.8), transparent 68%); animation: float1 18s ease-in-out infinite; }
.blob.b2 { width: 40vw; height: 40vw; right: 2%; top: 22%; background: radial-gradient(circle, rgba(176,38,0,.55), transparent 68%); animation: float2 22s ease-in-out infinite; }
.blob.b3 { width: 34vw; height: 34vw; left: 32%; bottom: 0; background: radial-gradient(circle, rgba(13,100,120,.35), transparent 68%); animation: float3 26s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-7%, 5%) scale(.95); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%, -9%) scale(1.15); } }

/* Hero: solda söz, sağda masa fotoğrafı (me&u düzeni). */
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
  text-align: left;
}
.hero-copy { min-width: 0; }
.hero-foto { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 30px 70px rgba(19,20,22,.22); }
.hero-foto img { width: 100%; height: clamp(380px, 62vh, 640px); object-fit: cover; display: block; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .line { display: block; overflow: hidden; padding-block: .1em; margin-block: -.1em; }
.hero h1 .line > span { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
.hero.on h1 .line > span { transform: none; }
.hero h1 .line:nth-child(2) > span { transition-delay: .1s; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .lead { max-width: 30ch; margin: 26px 0 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.hero-note { margin-top: 30px; font-size: 14px; font-weight: 700; color: var(--ink-2); letter-spacing: .02em; }

/* uçuşan ödeme baloncukları */
/* 🔴 `.pops` artık `.hero-foto`'nun İÇİNDE (index.html). Eskiden hero'nun doğrudan
   çocuğuydu ve `inset:0` TÜM bölümü kaplıyordu — telefonda tek kolona düşünce
   baloncuk "Hesap için beklemek yok" başlığının üstüne biniyordu. Artık kutu
   fotoğrafın kendisi; yazının üstüne binmesi fiziksel olarak imkânsız. */
.pops { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.pop {
  position: absolute; display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: var(--r-full); padding: 9px 16px 9px 9px;
  box-shadow: 0 12px 30px rgba(19,20,22,.12);
  font-size: 14px; font-weight: 700; white-space: nowrap;
  opacity: 0; transform: translateY(18px) scale(.9);
  animation: popIn 5.4s ease-in-out infinite;
}
.pop .av { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.pop .ok { color: var(--secondary); font-weight: 800; }
/* Yüzdeler artık FOTOĞRAFIN kendi kutusuna göre — kenarlardan güvenli pay bırakıldı. */
.pop.p1 { left: 6%;  top: 11%;    animation-delay: .15s; }
.pop.p2 { right: 6%; top: 40%;    animation-delay: 1.5s; }
.pop.p3 { left: 9%;  bottom: 17%; animation-delay: 2.85s; }
.pop.p4 { right: 7%; bottom: 7%;  animation-delay: 4.2s; }
/* İlk rozet ~0,6 sn'de görünür, ~3 sn görünür kalır. Eski kurguda ilk rozet 1 sn'de
   çıkıp 9 sn'lik turda kayboluyordu; ziyaretçi görmeden aşağı kaydırıyordu. */
@keyframes popIn {
  0%   { opacity: 0; transform: translateY(14px) scale(.92); }
  9%   { opacity: 1; transform: translateY(0) scale(1); }
  46%  { opacity: 1; transform: translateY(0) scale(1); }
  56%  { opacity: 0; transform: translateY(-12px) scale(.96); }
  100% { opacity: 0; transform: translateY(-12px) scale(.96); }
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint i { display: block; width: 1px; height: 34px; background: linear-gradient(var(--ink-2), transparent); animation: hint 2s ease-in-out infinite; }
@keyframes hint { 0%,100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- kayan şerit ---------- */
.marquee { background: var(--primary); color: #fff; padding: 22px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: slide 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-size: clamp(20px, 2.4vw, 34px); font-weight: 800; letter-spacing: -0.03em;
  padding: 0 28px; display: flex; align-items: center; gap: 28px; white-space: nowrap;
}
.marquee span::after { content: "✳"; font-size: .6em; opacity: .7; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- ortak: reveal ---------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .09s; } .rv.d2 { transition-delay: .18s; }
.rv.d3 { transition-delay: .27s; } .rv.d4 { transition-delay: .36s; }

/* büyük başlık: satır satır açılır.
   padding/margin çifti: kırpma kutusunu glif yüksekliğinden biraz büyütür (ğ'nin işareti,
   ş'nin kuyruğu kesilmesin), ama dizilimi kaydırmaz. */
.big-line { display: block; overflow: hidden; padding-block: .1em; margin-block: -.1em; }
.big-line > span { display: block; transform: translateY(115%); transition: transform .9s var(--ease); }
.rv.in .big-line > span { transform: none; }
.rv.in .big-line:nth-child(2) > span { transition-delay: .08s; }
.rv.in .big-line:nth-child(3) > span { transition-delay: .16s; }

/* ---------- PROBLEM (koyu) ---------- */
.dark-band { background: var(--dark); color: var(--on-dark); }
.dark-band h2 { color: #fff; }
.prob-head { max-width: 20ch; }
.prob-list { list-style: none; margin: 54px 0 0; padding: 0; max-width: 760px; }
.prob-list li {
  display: flex; align-items: baseline; gap: 22px; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12); font-size: clamp(18px, 2vw, 26px); font-weight: 600;
}
.prob-list li b { color: var(--primary-2); font-size: 14px; font-weight: 800; letter-spacing: .1em; flex: 0 0 30px; }

.clock { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 70px); margin-top: 80px; flex-wrap: wrap; }
.clock-item { text-align: center; }
.clock-item .v { font-size: clamp(52px, 9vw, 128px); font-weight: 800; letter-spacing: -0.06em; line-height: .9; }
.clock-item.old .v { color: var(--on-dark-2); position: relative; display: inline-block; }
.clock-item.old .v::after {
  content: ""; position: absolute; left: -6%; right: -6%; top: 52%; height: 5px; background: var(--error);
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .5s;
}
.rv.in .clock-item.old .v::after { transform: scaleX(1); }
.clock-item.new .v { color: var(--primary-2); }
.clock-item .k { font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); margin-top: 14px; }
.clock-arrow { font-size: clamp(32px, 5vw, 60px); color: var(--on-dark-2); }

/* ---------- SAHNE (sticky, 3 adım) ---------- */
.scene { position: relative; }
.scene-sticky {
  position: sticky; top: 0; height: 100svh; display: grid; align-items: center;
  grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--shell); margin: 0 auto; padding: 0 28px;
}
.scene-steps { position: relative; }
.scene-step { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(26px); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.scene-step.on { opacity: 1; transform: none; pointer-events: auto; }
.scene-step .n {
  width: 54px; height: 54px; border-radius: var(--r-full); background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 21px; font-weight: 800; margin-bottom: 26px;
}
.scene-step h3 { margin-bottom: 16px; }
.scene-step p { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); max-width: 34ch; }
.scene-steps-holder { position: relative; min-height: 330px; }
.scene-dots { display: flex; gap: 10px; margin-top: 40px; }
.scene-dots i { width: 34px; height: 4px; border-radius: var(--r-full); background: var(--line); transition: background .3s; }
.scene-dots i.on { background: var(--primary); }
.scene-phone-wrap { display: grid; place-items: center; }

/* ---------- telefon ---------- */
.phone {
  width: 296px; background: #f6f6f5; border-radius: 46px; border: 10px solid #0a0b0c;
  box-shadow: 0 40px 80px rgba(19,20,22,.28); padding: 14px 12px 0; position: relative; font-size: 13px;
}
.phone .notch { width: 100px; height: 24px; background: #0a0b0c; border-radius: var(--r-full); position: absolute; top: -3px; left: 50%; transform: translateX(-50%); }
/* sabit yükseklik: en uzun ekran (hesap) 616px — üç ekran da aynı kutuda durur, taşma kırpılır */
.screens { position: relative; height: 620px; overflow: hidden; }
.screen { position: absolute; inset: 0; opacity: 0; transform: scale(.97); transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none; }
.screen.on { opacity: 1; transform: none; }

.ph-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px 10px; }
.ph-title { font-weight: 800; font-size: 17px; letter-spacing: -0.03em; }
.ph-sub { font-size: 11px; color: var(--ink-2); }
.ph-badge { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: #e6d0f4; color: var(--tertiary); padding: 5px 9px; border-radius: var(--r-full); }
.ph-card { background: #fff; border-radius: 18px; padding: 14px; margin-bottom: 9px; box-shadow: 0 6px 18px rgba(45,47,46,.06); }
.ph-cap { font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); text-align: center; }
.ph-total { font-size: 34px; font-weight: 800; letter-spacing: -0.045em; text-align: center; margin-top: 3px; }
.ph-bar { height: 8px; border-radius: var(--r-full); background: #eceeea; margin: 13px 0 8px; overflow: hidden; }
.ph-bar i { display: block; height: 100%; border-radius: var(--r-full); background: var(--grad); width: 0; transition: width 1.1s var(--ease); }
.ph-note { text-align: center; font-size: 11px; font-weight: 800; color: var(--primary); }
.ph-row { display: flex; align-items: center; gap: 10px; }
.ph-row + .ph-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0f1ef; }
.ph-ic { width: 32px; height: 32px; border-radius: 10px; background: #f0f1ef; display: grid; place-items: center; font-size: 15px; }
.ph-row b { display: block; font-weight: 700; font-size: 13px; letter-spacing: -0.01em; }
.ph-row small { color: var(--ink-2); font-size: 10px; }
.ph-row .amt { margin-left: auto; font-weight: 800; font-size: 13px; }
.ph-row .amt.paid { color: var(--secondary); }
.ph-row.pick { border-radius: 12px; transition: background .4s var(--ease), transform .4s var(--ease); padding: 6px; margin: -6px -6px 0; }
.ph-row.pick.on { background: rgba(232,68,42,.13); transform: scale(1.02); }
.ph-dashed { border: 1.5px dashed var(--line); background: transparent; }
.ph-pay {
  background: var(--grad); color: #fff; text-align: center; font-weight: 800; font-size: 14px;
  padding: 15px; border-radius: var(--r-full); margin: 14px 4px 10px; box-shadow: 0 12px 24px rgba(176,38,0,.34);
  transition: transform .3s var(--ease);
}
.ph-pay.tap { transform: scale(.94); }
.ph-tabs { display: flex; justify-content: space-around; padding: 9px 0 13px; border-top: 1px solid rgba(45,47,46,.07); }
.ph-tab { font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #c3c5c1; text-align: center; }
.ph-tab.on { color: var(--primary); }
.ph-tab span { display: block; font-size: 15px; margin-bottom: 3px; }

/* QR ekranı */
.qr-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 20px; padding-bottom: 40px; }
.qr-box {
  width: 168px; height: 168px; border-radius: 26px; background: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(45,47,46,.12); position: relative; overflow: hidden;
}
.qr-box svg { width: 108px; height: 108px; }
.qr-box::after {
  content: ""; position: absolute; left: 0; right: 0; height: 3px; background: var(--primary-2);
  box-shadow: 0 0 18px 4px rgba(232,68,42,.75); animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 12%; } 50% { top: 86%; } }
.qr-text { font-weight: 800; font-size: 15px; text-align: center; letter-spacing: -0.02em; }

/* ödendi ekranı */
.done-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; padding-bottom: 40px; text-align: center; }
.done-ring { width: 108px; height: 108px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 46px; box-shadow: 0 18px 40px rgba(176,38,0,.35); }
.done-screen b { font-size: 26px; letter-spacing: -0.04em; }
.done-screen span { color: var(--ink-2); font-size: 14px; }

/* ---------- sayaçlar ---------- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.counter .v { font-size: clamp(46px, 6vw, 92px); font-weight: 800; letter-spacing: -0.06em; line-height: .9; color: var(--primary); }
.counter .v small { font-size: .42em; letter-spacing: -0.03em; margin-left: 4px; color: var(--ink); }
.counter .k { margin-top: 16px; font-size: 16px; font-weight: 700; color: var(--ink-2); max-width: 20ch; }

/* ---------- zig-zag faydalar ---------- */
.zig { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.zig + .zig { margin-top: clamp(70px, 10vw, 150px); }
.zig:nth-child(even) .zig-art { order: -1; }
.zig h2 { max-width: 14ch; }
.zig .lead { margin-top: 22px; max-width: 34ch; }
.zig-art { border-radius: var(--r-xl); padding: clamp(26px, 4vw, 52px); position: relative; overflow: hidden; min-height: 340px; display: grid; place-items: center; }
.zig-art.a1 { background: linear-gradient(150deg, #ffe9e2, #ffd3c6); }
.zig-art.a2 { background: linear-gradient(150deg, #dff0f5, #c6e6ef); }
.zig-art.a3 { background: linear-gradient(150deg, #f0e6f7, #e2d0ef); }

/* masa animasyonu */
.tables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.tbl { background: rgba(255,255,255,.75); border-radius: 18px; padding: 14px; text-align: center; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.tbl b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.tbl span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.tbl.free { background: #fff; box-shadow: 0 10px 26px rgba(45,47,46,.1); }
.tbl.free span { color: var(--secondary); }

/* garson turu */
.runner { width: 100%; max-width: 320px; }
.runner-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.runner-track { height: 4px; background: rgba(255,255,255,.8); border-radius: var(--r-full); margin: 14px 0 26px; position: relative; }
.runner-dot { position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); transform: translate(-50%,-50%); box-shadow: 0 6px 16px rgba(176,38,0,.35); animation: run 3.2s ease-in-out infinite; }
@keyframes run { 0%,100% { left: 0; } 50% { left: 100%; } }
.runner-note { background: rgba(255,255,255,.8); border-radius: 16px; padding: 14px 16px; font-size: 14px; font-weight: 700; }

/* kasa fişi */
.receipt { background: #fff; border-radius: 18px; padding: 20px; width: 100%; max-width: 300px; box-shadow: 0 16px 40px rgba(45,47,46,.12); }
.receipt-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.receipt-row:last-child { border: 0; font-weight: 800; font-size: 17px; padding-top: 14px; }
.receipt-row .ok { color: var(--secondary); font-weight: 800; }

/* ---------- fotoğraf şeridi ---------- */
.foto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.foto {
  margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--dark); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.foto:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(19,20,22,.2); }
.foto img { width: 100%; height: clamp(300px, 34vw, 440px); object-fit: cover; display: block; transition: transform .8s var(--ease); }
.foto:hover img { transform: scale(1.04); }
.foto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 66px 26px 24px; color: #fff;
  background: linear-gradient(transparent, rgba(10,11,12,.86) 62%);
}
.foto figcaption b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.foto figcaption span { display: block; font-size: 15px; color: rgba(255,255,255,.82); margin-top: 5px; }

/* ---------- yönetici dashboard ---------- */
.dash { background: var(--dark-2); border-radius: var(--r-lg); padding: 20px; }
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding: 0 4px; }
.dash-top b { font-size: 16px; letter-spacing: -0.02em; color: #fff; }
.dash-top span { font-size: 12px; color: var(--on-dark-2); display: flex; align-items: center; gap: 7px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #58c39a; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.tcard { background: #16171a; border: 1px solid rgba(255,255,255,.07); border-radius: 18px; padding: 14px; }
.tcard .no { font-size: 12px; font-weight: 800; color: var(--on-dark-2); letter-spacing: .06em; }
.tcard .amt { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; margin: 7px 0 9px; color: #fff; }
.tcard .mini { height: 5px; border-radius: var(--r-full); background: rgba(255,255,255,.12); overflow: hidden; }
.tcard .mini i { display: block; height: 100%; width: 0; background: var(--primary-2); transition: width 1.4s var(--ease); }
.tcard.warn { border-color: rgba(180,19,64,.5); }
.tcard.warn .mini i { background: var(--error); }
.tcard.done .mini i { background: #58c39a; }
.tcard .st { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-top: 9px; color: var(--on-dark-2); }
.tcard.warn .st { color: #ff6f92; }
.tcard.done .st { color: #58c39a; }
.dash-foot { display: flex; gap: 11px; margin-top: 12px; }
.dash-foot div { flex: 1; background: #16171a; border-radius: 18px; padding: 14px; }
.dash-foot b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.dash-foot span { font-size: 10px; color: var(--on-dark-2); letter-spacing: .06em; text-transform: uppercase; font-weight: 800; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.mgr-list { list-style: none; margin: 34px 0 0; padding: 0; }
.mgr-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: 18px; }
.mgr-list li b { color: #fff; display: block; }
.mgr-list li span { color: var(--on-dark-2); font-size: 16px; }
.mgr-list .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary-2); margin-top: 9px; flex: 0 0 9px; }

/* ---------- yorumlar (kayan) ---------- */
/* overflow:hidden şart — kayan sıralar yoksa sayfayı yatayda genişletir */
.q-rows { display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.q-row { display: flex; width: max-content; gap: 20px; }
.q-row.left  { animation: qslide 55s linear infinite; }
.q-row.right { animation: qslide 62s linear infinite reverse; }
.q-rows:hover .q-row { animation-play-state: paused; }
@keyframes qslide { to { transform: translateX(-50%); } }
.quote {
  background: var(--card); border-radius: var(--r-lg); padding: 28px; width: 380px; flex: 0 0 380px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(19,20,22,.12); }
.quote .mark { font-size: 36px; line-height: .7; color: var(--primary-2); font-weight: 800; }
.quote p { font-size: 17px; margin-top: 14px; letter-spacing: -0.01em; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--bg); }
.quote .av { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 42px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; }
.quote .who b { display: block; font-size: 15px; font-weight: 800; }
.quote .who span { display: block; font-size: 14px; color: var(--ink-2); }
.quote .metric { display: inline-block; margin-top: 15px; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; background: rgba(13,100,120,.09); color: var(--secondary); padding: 7px 12px; border-radius: var(--r-full); }

/* ---------- hesaplayıcı ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-panel {
  background: var(--card); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 52px);
  display: flex; flex-direction: column; justify-content: center;
}
.field + .field { margin-top: 34px; }
.field label { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.field label b { font-size: 26px; color: var(--primary); letter-spacing: -0.03em; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; margin-top: 18px; border-radius: var(--r-full); background: var(--bg); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 32px; height: 32px; border-radius: 50%; background: var(--grad); border: 4px solid #fff; box-shadow: 0 5px 16px rgba(176,38,0,.4); cursor: grab; }
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
input[type="range"]::-moz-range-thumb { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); border: 4px solid #fff; box-shadow: 0 5px 16px rgba(176,38,0,.4); cursor: grab; }
.calc-out { background: var(--grad); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.calc-out .k { font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.calc-out .big { font-size: clamp(48px, 7vw, 96px); font-weight: 800; letter-spacing: -0.06em; line-height: .95; margin: 14px 0 10px; }
.calc-out .sub { font-size: 17px; opacity: .9; }
.calc-lines { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.3); }
.calc-line { display: flex; justify-content: space-between; gap: 16px; font-size: 16px; padding: 8px 0; }
.calc-line span { opacity: .88; }
.calc-line b { font-weight: 800; }

/* ---------- kurulum ---------- */
.steps-line { position: relative; margin-top: 60px; }
.steps-line::before { content: ""; position: absolute; left: 0; right: 0; top: 26px; height: 3px; background: var(--line); }
.steps-line::after { content: ""; position: absolute; left: 0; top: 26px; height: 3px; background: var(--grad); width: 0; transition: width 1.6s var(--ease); }
.rv.in .steps-line::after { width: 100%; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.st-item .bullet { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); display: grid; place-items: center; font-weight: 800; color: var(--primary); font-size: 19px; position: relative; z-index: 1; }
.st-item h3 { font-size: 22px; margin: 22px 0 10px; }
.st-item p { color: var(--ink-2); font-size: 16px; }

/* ---------- SSS ---------- */
.faq { max-width: 900px; margin: 0 auto; }
details { background: var(--card); border-radius: var(--r-lg); padding: 24px 30px; margin-bottom: 12px; transition: box-shadow .3s var(--ease); }
details[open] { box-shadow: 0 16px 40px rgba(19,20,22,.08); }
details summary { cursor: pointer; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 28px; font-weight: 700; color: var(--primary); line-height: 1; transition: transform .3s var(--ease); }
details[open] summary::after { content: "+"; transform: rotate(45deg); }
details p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 76px); align-items: start; }
.form-stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.form-stats b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.04em; color: var(--primary-2); }
.form-stats span { font-size: 14px; color: var(--on-dark-2); }
form.lead-form { background: var(--card); border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 42px); color: var(--ink); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f { margin-bottom: 16px; }
.f label { display: block; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.f input, .f select, .f textarea { width: 100%; font: inherit; font-size: 16px; padding: 15px 17px; border: 2px solid var(--bg); border-radius: 14px; background: #fafbfa; color: var(--ink); transition: border-color .2s, background .2s; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.f textarea { min-height: 88px; resize: vertical; }
form.lead-form .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--ink-2); margin-top: 16px; line-height: 1.5; }
.form-ok { display: none; background: rgba(13,100,120,.08); border: 1px solid rgba(13,100,120,.3); color: var(--secondary); border-radius: 16px; padding: 16px; font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ---------- footer ---------- */
footer { background: var(--dark); color: var(--on-dark-2); padding: 70px 0 30px; }
.foot-top { display: flex; flex-wrap: wrap; gap: 46px; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { max-width: 340px; }
.foot-brand .logo { color: #fff; }
.foot-brand .logo .wordmark { font-size: 23px; }
.foot-brand p { font-size: 15px; margin-top: 16px; }
.foot-col b { display: block; color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 15px; text-decoration: none; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-col span { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 11px; }
.foot-bottom { padding-top: 26px; font-size: 12px; line-height: 1.6; }
.foot-bottom p + p { margin-top: 12px; }

/* ---------- responsive ----------
   ≥1500 geniş · 1120–1500 tam · 940–1120 dar masaüstü (iki kolon korunur) · 640–940 tablet · <640 telefon */
@media (min-width: 1500px) { :root { --shell: 1380px; } }

@media (max-width: 1120px) {
  .counters { grid-template-columns: repeat(2, 1fr); gap: 46px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .quote { width: 330px; flex-basis: 330px; }
}

@media (max-width: 940px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: none; }
  .hero-foto img { height: clamp(280px, 42vh, 420px); }
  .pop.p2, .pop.p4 { display: none; }
  .split, .calc, .form-grid, .zig { grid-template-columns: 1fr; }
  .zig:nth-child(even) .zig-art { order: 0; }
  .zig-art { min-height: 280px; }
  /* mobilde sahne akışa döner: önce telefon (kendi kendine dönen demo), sonra üç adım */
  .scene-sticky { display: flex; flex-direction: column; height: auto; position: static; padding: 70px 28px; gap: 44px; }
  .scene-steps-holder { min-height: 0; }
  .scene-step { position: relative; opacity: 1; transform: none; margin-bottom: 42px; }
  .scene-step:last-child { margin-bottom: 0; }
  .scene-dots { display: none; }
  .scene-phone-wrap { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .foto-grid { grid-template-columns: 1fr; }
  .foto img { height: clamp(260px, 52vw, 380px); }
  .steps-line::before, .steps-line::after { display: none; }
}

@media (max-width: 640px) {
  .shell { padding: 0 20px; }
  .band { padding: 70px 0; }
  .counters, .steps-grid, .f-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav .btn { width: auto; }
  .nav { padding: 8px 8px 8px 18px; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .quote { width: 280px; flex-basis: 280px; padding: 22px; }
  .clock { gap: 16px; }
  .prob-list li { gap: 14px; }
  /* Fotoğraf küçüldü: dört rozet sığmaz, ikisi gizlenir. Konumlar artık
     fotoğrafın kutusuna göre olduğu için ayrıca kaydırmaya gerek yok. */
  .pop.p2, .pop.p4 { display: none; }
  .pop { font-size: 13px; padding: 7px 13px 7px 7px; }
  .pop .av { width: 24px; height: 24px; font-size: 11px; }
  .pop.p1 { left: 5%; top: 8%; } .pop.p3 { left: 5%; bottom: 12%; }
}

/* ---------- hareket kapalı ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
  .hero h1 .line > span, .big-line > span { transform: none; }
  .scene-step { opacity: 1; position: relative; }
  .pop { opacity: 1; transform: none; }
}
